diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index cdbddd0d35e..d445bd0769f 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -1,3 +1,4 @@ + --- name: Docker @@ -158,12 +159,13 @@ jobs: password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Build and push id: docker_build - uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0 + uses: docker/build-push-action@v6 with: push: ${{ github.event_name != 'pull_request' }} context: . - tags: ${{ steps.meta.outputs.tags }} file: docker/${{ matrix.os }}/Dockerfile + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }} annotations: ${{ steps.meta.outputs.annotations }} provenance: mode=max sbom: true diff --git a/.github/workflows/periodic_update.yml b/.github/workflows/periodic_update.yml index c0d5d3b7291..f046ac72a72 100644 --- a/.github/workflows/periodic_update.yml +++ b/.github/workflows/periodic_update.yml @@ -1,8 +1,6 @@ --- name: Periodic update -# Controls when the action will run. Workflow runs when manually triggered using the UI -# or API, or on a schedule. on: workflow_dispatch: inputs: @@ -11,42 +9,40 @@ on: default: false description: If true, also update .po files. schedule: - # At 15:32 (UTC) on Saturday. - # See https://crontab.guru/#32_15_*_*_SAT - cron: "32 15 * * SAT" permissions: {} -# A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: update-configure: - # The type of runner that the job will run on runs-on: ubuntu-latest permissions: contents: write pull-requests: write - # Steps represent a sequence of tasks that will be executed as part of the job steps: - name: Create URL to the run output id: vars run: echo "run-url=https://github.com/$GITHUB_REPOSITORY/actions/runs/${GITHUB_RUN_ID}" >> "${GITHUB_OUTPUT}" - - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 + + - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 with: persist-credentials: false + - name: "Check that autoconf scripts are up-to-date:" run: | rm -f config.guess config.sub wget http://git.savannah.gnu.org/cgit/config.git/plain/config.guess && chmod +x config.guess wget http://git.savannah.gnu.org/cgit/config.git/plain/config.sub && chmod +x config.sub - # Display changes, only to follow along in the logs. + - run: git diff -- config.guess config.sub - name: Double check if files are modified run: git status --ignored + - name: Create Pull Request id: cpr - uses: peter-evans/create-pull-request@84ae59a2cdc2258d6fa0732dd66352dddae2a412 # v7.0.9 + uses: peter-evans/create-pull-request@84ae59a2cdc2258d6fa0732dd66352dddae2a412 with: commit-message: "config.guess + config.sub: updated from http://git.savannah.gnu.org/cgit/config.git/plain/" branch: periodic/update-configure @@ -56,31 +52,29 @@ jobs: If the two files are deleted in this PR, please check the logs of the workflow here: [Workflow run summary](${{ steps.vars.outputs.run-url }}) - Automated changes by [create-pull-request](https://github.com/peter-evans/create-pull-request) GitHub action - - name: Check outputs - if: ${{ steps.cpr.outputs.pull-request-number }} - run: | - echo "Pull Request Number - ${STEPS_CPR_OUTPUTS_PULL_REQUEST_NUMBER}" - echo "Pull Request URL - ${STEPS_CPR_OUTPUTS_PULL_REQUEST_URL}" - env: - STEPS_CPR_OUTPUTS_PULL_REQUEST_NUMBER: ${{ steps.cpr.outputs.pull-request-number }} - STEPS_CPR_OUTPUTS_PULL_REQUEST_URL: ${{ steps.cpr.outputs.pull-request-url }} + Automated changes by create-pull-request GitHub action + update-i18n: - # The type of runner that the job will run on runs-on: ubuntu-latest permissions: contents: write pull-requests: write - # Steps represent a sequence of tasks that will be executed as part of the job + # 🔥 Prevent overlapping runs + concurrency: + group: periodic-i18n + cancel-in-progress: false + steps: - name: Create URL to the run output id: vars run: echo "run-url=https://github.com/$GITHUB_REPOSITORY/actions/runs/${GITHUB_RUN_ID}" >> "${GITHUB_OUTPUT}" - - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 + + - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 with: persist-credentials: false + - name: Install dependencies run: | sudo apt update @@ -88,6 +82,7 @@ jobs: gettext \ libgdal-dev \ libproj-dev + - name: Configure grass with minimal packages run: | ./configure \ @@ -97,50 +92,59 @@ jobs: --without-freetype \ --without-opengl \ --without-pdal + - name: Build grass core run: make -j"$(nproc)" - - name: Create .pot files (containing original messages) + + - name: Create .pot files run: cd locale && make pot - - name: Merge new messages (Done by Weblate plugin) - # Default false, but will be true if manually chosen. See https://stackoverflow.com/a/73495922 + + - name: Merge new messages if: ${{ inputs.update_po || false }} run: cd locale && make update-po + - name: Verify the .po files run: cd locale && make verify + - name: Preview changed files run: git diff | head -n2000 - # The POT-Creation-Date gets updated by xgettext with the latest - # version-controlled modification time among all the given input files. + - name: Preview changed files, except for the POT-Creation-Date run: | git diff --ignore-matching-lines=^\"POT-Creation-Date: | head -n2000 + - name: Get if files were updated id: changed-files continue-on-error: true run: | git diff --exit-code --quiet --ignore-matching-lines=^\"POT-Creation-Date: + - name: Translation files were changed if: ${{ steps.changed-files.outcome == 'failure' }} run: echo "Translation files were changed" + - name: Translation files were not changed if: ${{ steps.changed-files.outcome == 'success' }} run: echo "Translation files were not changed" + - name: Double check if files are modified run: git status --ignored + - name: Create Pull Request if: ${{ steps.changed-files.outcome == 'failure' }} id: cpr - uses: peter-evans/create-pull-request@84ae59a2cdc2258d6fa0732dd66352dddae2a412 # v7.0.9 + uses: peter-evans/create-pull-request@84ae59a2cdc2258d6fa0732dd66352dddae2a412 with: commit-message: "locale: Update translation files" - branch: periodic/update-i18n - title: "locale: Update translation files" + branch: periodic/update-i18n-${{ github.run_id }} + title: "locale: Update translation files (${{ github.run_number }})" body: | This updates the .pot template files, as well as all language-specific .po files if the option was selected. [Workflow run summary](${{ steps.vars.outputs.run-url }}) - Automated changes by [create-pull-request](https://github.com/peter-evans/create-pull-request) GitHub action + Automated changes by create-pull-request GitHub action + - name: Check outputs if: ${{ steps.changed-files.outcome == 'failure' && steps.cpr.outputs.pull-request-number }} run: | diff --git a/locale/po/grasslibs_ar.po b/locale/po/grasslibs_ar.po index 01464bde251..4fc24151923 100644 --- a/locale/po/grasslibs_ar.po +++ b/locale/po/grasslibs_ar.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: grassmods_ar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-08-23 20:17+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Arabic \n" @@ -9307,10 +9307,6 @@ msgstr "غير موجود'%s' الفيكتور" msgid "Unknown query tool" msgstr "مسقط غير معروف" -#, fuzzy, c-format -#~ msgid "Unable to seek: %s" -#~ msgstr " %s لم يمكن فتح" - #, fuzzy, python-format #~ msgid "%s map <%s> not found in GRASS spatial database" #~ msgstr "'%s'الى '%s'لم يمكن نسخ فيكتور" @@ -9949,6 +9945,10 @@ msgstr "مسقط غير معروف" #~ msgid "Unable to rewrite feature/offset %" #~ msgstr "لم يمكن فتحه %s فى %s" +#, fuzzy, c-format +#~ msgid "Unable to seek: %s" +#~ msgstr " %s لم يمكن فتح" + #, fuzzy, python-format #~ msgid "Unable to set the color rules for raster map <%s>." #~ msgstr "[%s فى %s]لم يمكن انشاء ملف العنوان الرئيسى" diff --git a/locale/po/grasslibs_bn.po b/locale/po/grasslibs_bn.po index ceb953ecab0..9619ac2d387 100644 --- a/locale/po/grasslibs_bn.po +++ b/locale/po/grasslibs_bn.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: grasslibs_bn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-08-23 20:17+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Bengali \n" diff --git a/locale/po/grasslibs_cs.po b/locale/po/grasslibs_cs.po index 8a35f960b98..4127944f335 100644 --- a/locale/po/grasslibs_cs.po +++ b/locale/po/grasslibs_cs.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: grasslibs_cs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-08-23 20:17+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Czech \n" diff --git a/locale/po/grasslibs_de.po b/locale/po/grasslibs_de.po index ef1518c16a9..b2c1c625dba 100644 --- a/locale/po/grasslibs_de.po +++ b/locale/po/grasslibs_de.po @@ -16,7 +16,7 @@ msgid "" msgstr "" "Project-Id-Version: grasslibs_de\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-08-23 20:17+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: German \n" diff --git a/locale/po/grasslibs_el.po b/locale/po/grasslibs_el.po index a2632752ee2..22e22c840ca 100644 --- a/locale/po/grasslibs_el.po +++ b/locale/po/grasslibs_el.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: grasslibs_el\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-08-23 20:17+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Greek \n" diff --git a/locale/po/grasslibs_es.po b/locale/po/grasslibs_es.po index 5f9f2745a36..bfae052d7ef 100644 --- a/locale/po/grasslibs_es.po +++ b/locale/po/grasslibs_es.po @@ -16,7 +16,7 @@ msgid "" msgstr "" "Project-Id-Version: grasslibs_es\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-08-26 13:29+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Spanish \n" @@ -9087,12 +9087,6 @@ msgstr "Área %d no tiene contornos" msgid "Unknown query tool" msgstr "Herramienta de consulta desconocida" -#~ msgid "disabled" -#~ msgstr "deshabilitado" - -#~ msgid "enabled" -#~ msgstr "habilitado" - #, python-format #~ msgid "" #~ "\n" @@ -10665,6 +10659,12 @@ msgstr "Herramienta de consulta desconocida" #~ msgid "color" #~ msgstr "color" +#~ msgid "disabled" +#~ msgstr "deshabilitado" + +#~ msgid "enabled" +#~ msgstr "habilitado" + #~ msgid "fully qualified initial Mapset directory" #~ msgstr "directorio de mapas inicial completamente cualificado" diff --git a/locale/po/grasslibs_fi.po b/locale/po/grasslibs_fi.po index da358ab0800..e050c2a5804 100644 --- a/locale/po/grasslibs_fi.po +++ b/locale/po/grasslibs_fi.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: grasslibs_fi\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-08-23 20:17+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Finnish \n" diff --git a/locale/po/grasslibs_fr.po b/locale/po/grasslibs_fr.po index 1ce29d6132e..cf4a03a87c9 100644 --- a/locale/po/grasslibs_fr.po +++ b/locale/po/grasslibs_fr.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: grasslibs_fr\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-11-07 03:28+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: French \n" @@ -9062,16 +9062,6 @@ msgstr "Surface %d sans contours" msgid "Unknown query tool" msgstr "Outil de recherche inconnu" -#, c-format -#~ msgid "Unable to seek: %s" -#~ msgstr "Recherche de : %s impossible" - -#~ msgid "disabled" -#~ msgstr "désactivé" - -#~ msgid "enabled" -#~ msgstr "activé" - #, python-format #~ msgid "" #~ "\n" @@ -10682,6 +10672,10 @@ msgstr "Outil de recherche inconnu" #~ msgid "Unable to seek" #~ msgstr "Recherche impossible" +#, c-format +#~ msgid "Unable to seek: %s" +#~ msgstr "Recherche de : %s impossible" + #, python-format #~ msgid "Unable to set the color rules for raster map <%s>." #~ msgstr "Impossible de définir les règles de couleur pour la carte raster <%s>." @@ -10898,6 +10892,12 @@ msgstr "Outil de recherche inconnu" #~ msgid "color" #~ msgstr "couleur" +#~ msgid "disabled" +#~ msgstr "désactivé" + +#~ msgid "enabled" +#~ msgstr "activé" + #~ msgid "force removal of .gislock if exists (use with care!). Only with -text flag" #~ msgstr "force la suppression de .gislock si il existe (utiliser avec précausion). Uniquement avec l'argument -text" diff --git a/locale/po/grasslibs_hu.po b/locale/po/grasslibs_hu.po index 1b3194df5ff..695adcbc604 100644 --- a/locale/po/grasslibs_hu.po +++ b/locale/po/grasslibs_hu.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: grasslibs_hu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-08-23 20:17+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Hungarian \n" @@ -8927,9 +8927,6 @@ msgstr "" msgid "Unknown query tool" msgstr "" -#~ msgid "enabled" -#~ msgstr "engedélyezett" - #, fuzzy #~ msgid "Map <{}> not found in current mapset" #~ msgstr "<%s> térkép nincs az aktuális térképcsoportban" @@ -8940,3 +8937,6 @@ msgstr "" #~ msgid "The error message: %s" #~ msgstr "A hibaüzenet: %s" + +#~ msgid "enabled" +#~ msgstr "engedélyezett" diff --git a/locale/po/grasslibs_id_ID.po b/locale/po/grasslibs_id_ID.po index f9d9dcef679..c2c9d3fb060 100644 --- a/locale/po/grasslibs_id_ID.po +++ b/locale/po/grasslibs_id_ID.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: grasslibs_id_ID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-08-23 20:17+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Indonesian \n" diff --git a/locale/po/grasslibs_it.po b/locale/po/grasslibs_it.po index 14d96cbeab0..5b87945967e 100644 --- a/locale/po/grasslibs_it.po +++ b/locale/po/grasslibs_it.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: grasslibs_it\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-08-23 20:17+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Italian \n" @@ -9038,12 +9038,6 @@ msgstr "L'area %d non ha contorni" msgid "Unknown query tool" msgstr "Strumento di interrogazione sconosciuto" -#~ msgid "disabled" -#~ msgstr "disabilitato" - -#~ msgid "enabled" -#~ msgstr "abilitato" - #, python-format #~ msgid "" #~ "\n" @@ -9675,6 +9669,12 @@ msgstr "Strumento di interrogazione sconosciuto" #~ msgid "color" #~ msgstr "colore" +#~ msgid "disabled" +#~ msgstr "disabilitato" + +#~ msgid "enabled" +#~ msgstr "abilitato" + #~ msgid "initial database (path to GIS data)" #~ msgstr "database iniziale (percorso ai dati GIS)" diff --git a/locale/po/grasslibs_ja.po b/locale/po/grasslibs_ja.po index 86de397ae2d..4c75935c5f7 100644 --- a/locale/po/grasslibs_ja.po +++ b/locale/po/grasslibs_ja.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: grasslibs_ja\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-08-23 20:18+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Japanese \n" @@ -8987,9 +8987,6 @@ msgstr "" msgid "Unknown query tool" msgstr "不明な問い合わせツール" -#~ msgid "enabled" -#~ msgstr "有効化" - #~ msgid "Absurd polygon." #~ msgstr "不正なポリゴン" @@ -9213,6 +9210,9 @@ msgstr "不明な問い合わせツール" #~ msgid "color" #~ msgstr "カラー" +#~ msgid "enabled" +#~ msgstr "有効化" + #~ msgid "invalid color name" #~ msgstr "無効なカラー名" diff --git a/locale/po/grasslibs_ko.po b/locale/po/grasslibs_ko.po index 4865573ffb3..533afee2132 100644 --- a/locale/po/grasslibs_ko.po +++ b/locale/po/grasslibs_ko.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: grasslibs_ko\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-08-23 20:18+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Korean \n" diff --git a/locale/po/grasslibs_lv.po b/locale/po/grasslibs_lv.po index 8c1230dfcb7..4a563c66bac 100644 --- a/locale/po/grasslibs_lv.po +++ b/locale/po/grasslibs_lv.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: grasslibs_lv\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-08-23 20:18+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Latvian \n" @@ -8972,10 +8972,6 @@ msgstr "" msgid "Unknown query tool" msgstr "" -#, fuzzy, c-format -#~ msgid "Unable to seek: %s" -#~ msgstr "Nevar aizvākt %s" - #~ msgid "Area computation is not supported for LL projections" #~ msgstr "Objekta id" @@ -9068,6 +9064,10 @@ msgstr "" #~ msgid "Unable to read band reference file for raster map <%s>" #~ msgstr "Nav iespējams nolasīt rastra kartes <%s> krāsu failu" +#, fuzzy, c-format +#~ msgid "Unable to seek: %s" +#~ msgstr "Nevar aizvākt %s" + #, fuzzy, python-format #~ msgid "Unable to write band identifier for raster map <%s>" #~ msgstr "Nav iespējams nolasīt rastra kartes <%s> krāsu failu" diff --git a/locale/po/grasslibs_ml.po b/locale/po/grasslibs_ml.po index c2e5b7ebed7..36edcb47ef5 100644 --- a/locale/po/grasslibs_ml.po +++ b/locale/po/grasslibs_ml.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: grasslibs_ml\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-08-23 20:18+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Malayalam \n" diff --git a/locale/po/grasslibs_pl.po b/locale/po/grasslibs_pl.po index ee8fc0891ed..97dc090aa97 100644 --- a/locale/po/grasslibs_pl.po +++ b/locale/po/grasslibs_pl.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: grasslibs_pl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-08-23 20:18+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Polish \n" diff --git a/locale/po/grasslibs_pt.po b/locale/po/grasslibs_pt.po index 1d59ea85eb7..e4637da7cfb 100644 --- a/locale/po/grasslibs_pt.po +++ b/locale/po/grasslibs_pt.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: grasslibs_pt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-08-23 20:18+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Portuguese \n" diff --git a/locale/po/grasslibs_pt_BR.po b/locale/po/grasslibs_pt_BR.po index 3dbdf9e3623..80faec0d1dd 100644 --- a/locale/po/grasslibs_pt_BR.po +++ b/locale/po/grasslibs_pt_BR.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: grasslibs_pt_BR\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-08-26 13:42+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Portuguese (Brazil) \n" @@ -9126,16 +9126,6 @@ msgstr "A área %d não tem fronteiras" msgid "Unknown query tool" msgstr "Ferramenta de consulta desconhecida" -#, c-format -#~ msgid "Unable to seek: %s" -#~ msgstr "Não foi possível procurar: %s" - -#~ msgid "disabled" -#~ msgstr "desativado" - -#~ msgid "enabled" -#~ msgstr "ativado" - #, python-format #~ msgid "" #~ "\n" @@ -10390,6 +10380,10 @@ msgstr "Ferramenta de consulta desconhecida" #~ msgid "Unable to restore feature/offset %" #~ msgstr "Não foi possível restaurar feição/offset %" +#, c-format +#~ msgid "Unable to seek: %s" +#~ msgstr "Não foi possível procurar: %s" + #, python-format #~ msgid "Unable to set the color rules for raster map <%s>." #~ msgstr "Não foi possível definir regras de cores para o mapa raster <%s>." @@ -10553,6 +10547,12 @@ msgstr "Ferramenta de consulta desconhecida" #~ msgid "color" #~ msgstr "cor" +#~ msgid "disabled" +#~ msgstr "desativado" + +#~ msgid "enabled" +#~ msgstr "ativado" + #~ msgid "grass.script.array.read is deprecated and does not work on MS Windows, pass raster name in the constructor" #~ msgstr "grass.script.array.read está obsoleto e não funciona no MS Windows, passe o nome raster no construtor" diff --git a/locale/po/grasslibs_ro.po b/locale/po/grasslibs_ro.po index e73ec42818b..fcd129463d1 100644 --- a/locale/po/grasslibs_ro.po +++ b/locale/po/grasslibs_ro.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: grasslibs_ro\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-08-23 20:18+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Romanian \n" diff --git a/locale/po/grasslibs_ru.po b/locale/po/grasslibs_ru.po index f1050271c7c..6ce4cca9905 100644 --- a/locale/po/grasslibs_ru.po +++ b/locale/po/grasslibs_ru.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: grasslibs_ru\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-08-26 13:42+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Russian \n" @@ -9182,16 +9182,6 @@ msgstr "Полигон %d не содержит границ" msgid "Unknown query tool" msgstr "Неизвестный инструмент запроса" -#, c-format -#~ msgid "Unable to seek: %s" -#~ msgstr "Не удалось выполнить поиск: %s" - -#~ msgid "disabled" -#~ msgstr "отключено" - -#~ msgid "enabled" -#~ msgstr "включено" - #, python-format #~ msgid "" #~ "\n" @@ -10558,6 +10548,10 @@ msgstr "Неизвестный инструмент запроса" #~ msgid "Unable to rewrite feature/offset %" #~ msgstr "Не удалось переписать объект/смещение %" +#, c-format +#~ msgid "Unable to seek: %s" +#~ msgstr "Не удалось выполнить поиск: %s" + #, python-format #~ msgid "Unable to set the color rules for raster map <%s>." #~ msgstr "Не удалось задать правила выделения цветом для растровой карты <%s>." @@ -10731,6 +10725,12 @@ msgstr "Неизвестный инструмент запроса" #~ msgid "create temporary location (use with the --exec flag)" #~ msgstr "создать временную область (используется с флагом --exec)" +#~ msgid "disabled" +#~ msgstr "отключено" + +#~ msgid "enabled" +#~ msgstr "включено" + #~ msgid "grass.script.array.read is deprecated and does not work on MS Windows, pass raster name in the constructor" #~ msgstr "Модуль grass.script.array.read устарел и не работает на MS Windows, необходимо передать в конструктор имя растровой карты" diff --git a/locale/po/grasslibs_si.po b/locale/po/grasslibs_si.po index 2b26f015786..433ffd42557 100644 --- a/locale/po/grasslibs_si.po +++ b/locale/po/grasslibs_si.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: grasslibs_si\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-08-23 20:18+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Sinhala \n" diff --git a/locale/po/grasslibs_sl.po b/locale/po/grasslibs_sl.po index 126837b9441..5b19462ce6c 100644 --- a/locale/po/grasslibs_sl.po +++ b/locale/po/grasslibs_sl.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: grasslibs_sl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-08-23 20:18+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Slovenian \n" @@ -9366,10 +9366,6 @@ msgstr "Vneseni vektor '%s' ni bil najden" msgid "Unknown query tool" msgstr "Nepoznan \"location\"" -#, fuzzy, c-format -#~ msgid "Unable to seek: %s" -#~ msgstr "Ne morem odpreti %s" - #, fuzzy, python-format #~ msgid "%s map <%s> not found in GRASS spatial database" #~ msgstr "ne morem odpreti rastrskega sloja [%s v %s]" @@ -10039,6 +10035,10 @@ msgstr "Nepoznan \"location\"" #~ msgid "Unable to rewrite feature/offset %" #~ msgstr "Nezmožen odpreti datoteko %s v %s" +#, fuzzy, c-format +#~ msgid "Unable to seek: %s" +#~ msgstr "Ne morem odpreti %s" + #, fuzzy, python-format #~ msgid "Unable to set the color rules for raster map <%s>." #~ msgstr "Nezmožen ustvariti datoteko z vzglavjem za [%s v %s]" diff --git a/locale/po/grasslibs_sv.po b/locale/po/grasslibs_sv.po index f5ba5e76202..ded1b8b232e 100644 --- a/locale/po/grasslibs_sv.po +++ b/locale/po/grasslibs_sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-10-26 23:01+0000\n" "Last-Translator: Daniel Nylander \n" "Language-Team: Swedish \n" diff --git a/locale/po/grasslibs_ta.po b/locale/po/grasslibs_ta.po index 7c630931820..627cf15adb1 100644 --- a/locale/po/grasslibs_ta.po +++ b/locale/po/grasslibs_ta.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: grasslibs_ta\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-08-23 20:18+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Tamil \n" diff --git a/locale/po/grasslibs_th.po b/locale/po/grasslibs_th.po index 5ddcc5e9350..941b7b0f158 100644 --- a/locale/po/grasslibs_th.po +++ b/locale/po/grasslibs_th.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: grasslibs_th\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-08-23 20:19+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Thai \n" diff --git a/locale/po/grasslibs_tr.po b/locale/po/grasslibs_tr.po index efc6e2287c9..6423ddf94f6 100644 --- a/locale/po/grasslibs_tr.po +++ b/locale/po/grasslibs_tr.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: grasslibs_tr\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-08-23 20:19+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Turkish \n" diff --git a/locale/po/grasslibs_uk.po b/locale/po/grasslibs_uk.po index 81b3db99227..9f2dbec5235 100644 --- a/locale/po/grasslibs_uk.po +++ b/locale/po/grasslibs_uk.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: grasslibs_uk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-08-23 20:19+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Ukrainian \n" diff --git a/locale/po/grasslibs_vi.po b/locale/po/grasslibs_vi.po index 5baa88252c5..0afd8fec825 100644 --- a/locale/po/grasslibs_vi.po +++ b/locale/po/grasslibs_vi.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: grasslibs_vi\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-08-23 20:19+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Vietnamese \n" diff --git a/locale/po/grasslibs_zh.po b/locale/po/grasslibs_zh.po index 2330f481915..ed571204bff 100644 --- a/locale/po/grasslibs_zh.po +++ b/locale/po/grasslibs_zh.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: grasslibs_zh\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-08-23 20:19+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Chinese (Simplified) \n" diff --git a/locale/po/grasslibs_zh_CN.po b/locale/po/grasslibs_zh_CN.po index d62f673b5c4..635c5df0859 100644 --- a/locale/po/grasslibs_zh_CN.po +++ b/locale/po/grasslibs_zh_CN.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: grasslibs_zh_CN\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-06-21 12:47+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2017-01-25 08:30+0000\n" "Last-Translator: \n" "Language-Team: Chinese (China) (https://www.transifex.com/grass-gis/teams/45198/zh_CN/)\n" @@ -72,6 +72,11 @@ msgstr "" msgid "Failed to initialize Cairo surface (width: %d, height: %d): %s" msgstr "" +#: ../lib/cairodriver/graph.c:399 +#, c-format +msgid "Unable to open file: %s" +msgstr "" + #: ../lib/cairodriver/raster.c:107 msgid "Failed to create cairo surface" msgstr "" @@ -348,7 +353,7 @@ msgstr "" msgid "send data: invalid C-type" msgstr "" -#: ../lib/db/dbmi_client/column.c:136 ../lib/vector/Vlib/ascii.c:429 +#: ../lib/db/dbmi_client/column.c:136 ../lib/vector/Vlib/ascii.c:440 #: ../lib/vector/Vlib/write_pg.c:685 #, c-format msgid "Unable to describe table <%s>" @@ -360,7 +365,7 @@ msgid "Array of values to select from column <%s> is empty" msgstr "" #: ../lib/db/dbmi_client/copy_tab.c:109 ../lib/db/dbmi_client/copy_tab.c:129 -#: ../lib/db/dbmi_client/db.c:40 ../lib/vector/Vlib/ascii.c:405 +#: ../lib/db/dbmi_client/db.c:40 ../lib/vector/Vlib/ascii.c:416 #: ../lib/vector/Vlib/write_ogr.c:192 ../lib/vector/Vlib/write_pg.c:3035 #, c-format msgid "Unable to start driver <%s>" @@ -368,13 +373,13 @@ msgstr "" #: ../lib/db/dbmi_client/copy_tab.c:114 ../lib/db/dbmi_client/copy_tab.c:135 #: ../lib/db/dbmi_client/db.c:45 ../lib/ogsf/gp3.c:219 ../lib/ogsf/gv3.c:356 -#: ../lib/rst/interp_float/vinput2d.c:107 ../lib/vector/Vlib/array.c:275 -#: ../lib/vector/Vlib/ascii.c:411 ../lib/vector/Vlib/cats.c:601 +#: ../lib/rst/interp_float/vinput2d.c:107 ../lib/vector/Vlib/array.c:274 +#: ../lib/vector/Vlib/ascii.c:422 ../lib/vector/Vlib/cats.c:603 #: ../lib/vector/Vlib/close_nat.c:165 ../lib/vector/Vlib/map.c:339 -#: ../lib/vector/Vlib/net_build.c:159 ../lib/vector/Vlib/net_build.c:209 -#: ../lib/vector/Vlib/net_build.c:503 ../lib/vector/Vlib/net_build.c:800 -#: ../lib/vector/Vlib/net_build.c:976 ../lib/vector/Vlib/write_ogr.c:197 -#: ../lib/vector/Vlib/write_pg.c:3040 ../lib/vector/neta/timetables.c:140 +#: ../lib/vector/Vlib/net_build.c:158 ../lib/vector/Vlib/net_build.c:208 +#: ../lib/vector/Vlib/net_build.c:502 ../lib/vector/Vlib/net_build.c:799 +#: ../lib/vector/Vlib/net_build.c:975 ../lib/vector/Vlib/write_ogr.c:197 +#: ../lib/vector/Vlib/write_pg.c:3040 ../lib/vector/neta/timetables.c:141 #: ../lib/vector/neta/utils.c:123 #, c-format msgid "Unable to open database <%s> by driver <%s>" @@ -396,7 +401,7 @@ msgid "Table <%s> already exists in database <%s>" msgstr "" #: ../lib/db/dbmi_client/copy_tab.c:246 ../lib/db/dbmi_client/copy_tab.c:320 -#: ../lib/db/dbmi_client/table.c:111 ../lib/vector/Vlib/write_ogr.c:209 +#: ../lib/db/dbmi_client/table.c:117 ../lib/vector/Vlib/write_ogr.c:209 #, c-format msgid "Unable to open select cursor: '%s'" msgstr "" @@ -438,24 +443,29 @@ msgstr "" msgid "Unable to drop table: '%s'" msgstr "" -#: ../lib/db/dbmi_client/select.c:119 ../lib/db/dbmi_client/select.c:221 -#: ../lib/db/dbmi_client/select.c:289 +#: ../lib/db/dbmi_client/select.c:119 ../lib/db/dbmi_client/select.c:224 +#: ../lib/db/dbmi_client/select.c:293 msgid "Missing column name" msgstr "" -#: ../lib/db/dbmi_client/select.c:216 ../lib/db/dbmi_client/select.c:284 +#: ../lib/db/dbmi_client/select.c:219 ../lib/db/dbmi_client/select.c:288 msgid "Missing key column name" msgstr "" -#: ../lib/db/dbmi_client/select.c:318 ../lib/vector/Vlib/cats.c:606 +#: ../lib/db/dbmi_client/select.c:322 ../lib/vector/Vlib/cats.c:608 #, c-format msgid "Unable select records from table <%s>" msgstr "" -#: ../lib/db/dbmi_client/select.c:334 +#: ../lib/db/dbmi_client/select.c:338 msgid "Key column type is not integer" msgstr "" +#: ../lib/db/dbmi_client/table.c:63 ../lib/db/dbmi_client/table.c:84 +#, c-format +msgid "Table name too long: <%s>" +msgstr "" + #: ../lib/db/dbmi_driver/d_error.c:36 #, c-format msgid "DBMI-%s driver error:" @@ -496,16 +506,21 @@ msgstr "" msgid "GRASS_NOTIFY command <%s> failed" msgstr "" -#: ../lib/display/tran_colr.c:44 +#: ../lib/display/tran_colr.c:43 #, c-format msgid "String <%s> is too long" msgstr "" -#: ../lib/display/tran_colr.c:111 ../lib/display/tran_colr.c:113 +#: ../lib/display/tran_colr.c:109 ../lib/display/tran_colr.c:111 #, c-format msgid "[%s]: No such color" msgstr "" +#: ../lib/driver/font2.c:188 +#, c-format +msgid "Font name <%s> is too long" +msgstr "" + #: ../lib/driver/parse_ftcap.c:85 #, c-format msgid "%s: Unable to read font definition file; use the default" @@ -533,19 +548,19 @@ msgstr "" msgid "Performs unit tests for the gjson library" msgstr "" -#: ../lib/external/parson/test/test_parson_wrapper.c:35 +#: ../lib/external/parson/test/test_parson_wrapper.c:34 msgid "" "\n" "++ Running gjson wrapper unit tests ++" msgstr "" -#: ../lib/external/parson/test/test_parson_wrapper.c:40 +#: ../lib/external/parson/test/test_parson_wrapper.c:39 msgid "" "\n" "-- gjson wrapper unit tests failure --" msgstr "" -#: ../lib/external/parson/test/test_parson_wrapper.c:42 +#: ../lib/external/parson/test/test_parson_wrapper.c:41 msgid "" "\n" "-- gjson wrapper unit tests finished successfully --" @@ -796,22 +811,22 @@ msgstr "" msgid "West adjusted from %s to %s" msgstr "" -#: ../lib/gis/alloc.c:44 ../lib/gis/alloc.c:87 ../lib/gis/alloc.c:133 +#: ../lib/gis/alloc.c:43 ../lib/gis/alloc.c:85 ../lib/gis/alloc.c:131 #, c-format msgid "Current region rows: %d, cols: %d" msgstr "" -#: ../lib/gis/alloc.c:48 +#: ../lib/gis/alloc.c:47 #, c-format msgid "G_malloc: unable to allocate %lu bytes of memory at %s:%d" msgstr "" -#: ../lib/gis/alloc.c:90 +#: ../lib/gis/alloc.c:88 #, c-format msgid "G_calloc: unable to allocate %lu * %lu bytes of memory at %s:%d" msgstr "" -#: ../lib/gis/alloc.c:137 +#: ../lib/gis/alloc.c:135 #, c-format msgid "G_realloc: unable to allocate %lu bytes of memory at %s:%d" msgstr "" @@ -995,7 +1010,7 @@ msgstr "" msgid "%s: shouldn't happen: code=%d P=(%f,%f) S=(%f,%f)(%f,%f)" msgstr "" -#: ../lib/gis/done_msg.c:37 +#: ../lib/gis/done_msg.c:36 #, c-format msgid "%s complete. %s" msgstr "" @@ -1017,7 +1032,7 @@ msgstr "" msgid "WARNING: " msgstr "" -#: ../lib/gis/error.c:367 ../lib/gis/parser.c:1743 +#: ../lib/gis/error.c:367 ../lib/gis/parser.c:1742 #, c-format msgid "ERROR: " msgstr "" @@ -1032,7 +1047,7 @@ msgstr "" msgid "Using <%s@%s>..." msgstr "" -#: ../lib/gis/get_ellipse.c:263 ../lib/proj/ellipse.c:241 +#: ../lib/gis/get_ellipse.c:263 ../lib/proj/ellipse.c:240 #, c-format msgid "Unable to open ellipsoid table file <%s>" msgstr "" @@ -1062,15 +1077,15 @@ msgstr "" msgid "<%s> file not found for location <%s>" msgstr "" -#: ../lib/gis/get_projinfo.c:146 ../lib/gis/get_projinfo.c:272 +#: ../lib/gis/get_projinfo.c:145 ../lib/gis/get_projinfo.c:270 #: ../lib/gis/key_value3.c:62 #, c-format msgid "Unable to open input file <%s>: %s" msgstr "" -#: ../lib/gis/get_projinfo.c:198 ../lib/gis/get_projinfo.c:324 -#: ../lib/gis/key_value3.c:40 ../lib/gis/make_loc.c:545 -#: ../lib/gis/make_loc.c:597 +#: ../lib/gis/get_projinfo.c:197 ../lib/gis/get_projinfo.c:322 +#: ../lib/gis/key_value3.c:40 ../lib/gis/make_loc.c:541 +#: ../lib/gis/make_loc.c:592 #, c-format msgid "Error closing output file <%s>: %s" msgstr "" @@ -1085,27 +1100,27 @@ msgstr "" msgid "Region file %s/%s/%s is empty" msgstr "" -#: ../lib/gis/gisinit.c:78 ../lib/gis/gisinit.c:129 +#: ../lib/gis/gisinit.c:78 ../lib/gis/gisinit.c:128 #, c-format -msgid "Module built against version %s but trying to use version %s. In case of errors you need to rebuild the module against GRASS GIS version %s." +msgid "Module built against version %s but trying to use version %s. In case of errors you need to rebuild the module against GRASS version %s." msgstr "" -#: ../lib/gis/gisinit.c:86 ../lib/gis/gisinit.c:137 +#: ../lib/gis/gisinit.c:85 ../lib/gis/gisinit.c:135 #, c-format -msgid "Module built against version %s but trying to use version %s. You need to rebuild GRASS GIS or untangle multiple installations." +msgid "Module built against version %s but trying to use version %s. You need to rebuild GRASS or untangle multiple installations." msgstr "" -#: ../lib/gis/gisinit.c:101 +#: ../lib/gis/gisinit.c:100 #, c-format msgid "MAPSET %s - permission denied" msgstr "" -#: ../lib/gis/gisinit.c:104 +#: ../lib/gis/gisinit.c:103 #, c-format msgid "MAPSET %s not found at %s" msgstr "" -#: ../lib/gis/gisinit.c:155 +#: ../lib/gis/gisinit.c:153 msgid "System not initialized. Programmer forgot to call G_gisinit()." msgstr "" @@ -1118,8 +1133,8 @@ msgstr "" msgid "Failed to create directory [%s]" msgstr "" -#: ../lib/gis/key_value3.c:33 ../lib/gis/make_loc.c:530 -#: ../lib/gis/make_loc.c:582 +#: ../lib/gis/key_value3.c:33 ../lib/gis/make_loc.c:526 +#: ../lib/gis/make_loc.c:577 #, c-format msgid "Unable to open output file <%s>: %s" msgstr "" @@ -1159,8 +1174,8 @@ msgstr "" #: ../lib/ogsf/gs3.c:120 ../lib/ogsf/gs3.c:185 ../lib/ogsf/gs3.c:261 #: ../lib/ogsf/gs3.c:333 ../lib/ogsf/gs3.c:440 ../lib/ogsf/gs3.c:528 #: ../lib/ogsf/gs3.c:588 ../lib/ogsf/gs3.c:646 ../lib/ogsf/gs3.c:716 -#: ../lib/ogsf/gs3.c:786 ../lib/ogsf/gsd_legend.c:238 ../lib/raster/open.c:176 -#: ../lib/raster/open.c:868 ../lib/raster/open.c:905 ../lib/raster/open.c:958 +#: ../lib/ogsf/gs3.c:786 ../lib/ogsf/gsd_legend.c:238 ../lib/raster/open.c:175 +#: ../lib/raster/open.c:867 ../lib/raster/open.c:904 ../lib/raster/open.c:957 #: ../lib/rst/interp_float/output2d.c:268 #: ../lib/rst/interp_float/output2d.c:355 #: ../lib/rst/interp_float/output2d.c:429 @@ -1209,12 +1224,12 @@ msgstr "" msgid "LOCATION <%s> not available" msgstr "" -#: ../lib/gis/lrand48.c:90 +#: ../lib/gis/lrand48.c:88 #, c-format msgid "gettimeofday failed: %s" msgstr "" -#: ../lib/gis/lrand48.c:121 +#: ../lib/gis/lrand48.c:119 msgid "Pseudo-random number generator not seeded" msgstr "" @@ -1247,34 +1262,34 @@ msgstr "" msgid "Unable to access mapset element %s (%s): %s" msgstr "" -#: ../lib/gis/mkstemp.c:133 +#: ../lib/gis/mkstemp.c:132 msgid "Attempt to create read-only temporary file" msgstr "" -#: ../lib/gis/mkstemp.c:139 +#: ../lib/gis/mkstemp.c:138 #, c-format msgid "Unrecognised access mode: %o" msgstr "" -#: ../lib/gis/myname.c:46 +#: ../lib/gis/myname.c:45 msgid "This location has no description." msgstr "" -#: ../lib/gis/omp_threads.c:29 +#: ../lib/gis/omp_threads.c:28 msgid "Option is NULL." msgstr "" -#: ../lib/gis/omp_threads.c:31 +#: ../lib/gis/omp_threads.c:30 msgid "Option key is NULL." msgstr "" -#: ../lib/gis/omp_threads.c:46 +#: ../lib/gis/omp_threads.c:45 #, c-format msgid "One thread is set up for parallel computing." msgid_plural "%d threads are set up for parallel computing." msgstr[0] "" -#: ../lib/gis/omp_threads.c:52 +#: ../lib/gis/omp_threads.c:51 msgid "GRASS is not compiled with OpenMP support, parallel computation is disabled. Only one thread will be used." msgstr "" @@ -1298,6 +1313,27 @@ msgstr "" msgid "G__open(write): Unable to open '%s': %s" msgstr "" +#: ../lib/gis/open.c:197 ../lib/gis/open.c:289 ../lib/gis/open.c:322 +#: ../lib/gis/open_misc.c:160 ../lib/gis/open_misc.c:232 +#: ../lib/gis/open_misc.c:250 ../lib/gis/seek.c:55 ../lib/gis/seek.c:65 +#: ../lib/raster/close.c:401 ../lib/raster/close.c:447 +#: ../lib/raster/close.c:546 ../lib/raster/format.c:195 +#: ../lib/raster/put_row.c:145 ../lib/raster/put_row.c:524 +#: ../lib/raster3d/open.c:303 ../lib/raster3d/tilewrite.c:182 +#: ../lib/segment/get_row.c:65 ../lib/segment/get_row.c:86 +#: ../lib/segment/pagein.c:95 ../lib/segment/pageout.c:41 +#: ../lib/segment/put_row.c:69 ../lib/segment/put_row.c:94 +#: ../lib/segment/setup.c:57 ../lib/vector/Vlib/break_polygons.c:240 +#: ../lib/vector/Vlib/break_polygons.c:257 +#: ../lib/vector/Vlib/break_polygons.c:277 +#: ../lib/vector/Vlib/break_polygons.c:305 +#: ../lib/vector/Vlib/break_polygons.c:369 +#: ../lib/vector/Vlib/break_polygons.c:412 ../lib/vector/rtree/index.c:144 +#: ../lib/vector/rtree/io.c:104 ../lib/vector/rtree/io.c:204 +#, c-format +msgid "File read/write operation failed: %s (%d)" +msgstr "" + #: ../lib/gis/open_misc.c:46 #, c-format msgid "G__open_misc(read): mapset <%s> doesn't match xmapset <%s>" @@ -1308,189 +1344,189 @@ msgstr "" msgid "G__open_misc(write): xmapset <%s> != G_mapset() <%s>" msgstr "" -#: ../lib/gis/parser.c:350 +#: ../lib/gis/parser.c:349 msgid "Bug in UI description. Missing module description" msgstr "" -#: ../lib/gis/parser.c:360 +#: ../lib/gis/parser.c:359 msgid "Bug in UI description. Missing option key" msgstr "" -#: ../lib/gis/parser.c:362 +#: ../lib/gis/parser.c:361 #, c-format msgid "Bug in UI description. Option key <%s> is not valid" msgstr "" -#: ../lib/gis/parser.c:366 +#: ../lib/gis/parser.c:365 #, c-format msgid "Bug in UI description. Description for option <%s> missing" msgstr "" -#: ../lib/gis/parser.c:419 +#: ../lib/gis/parser.c:418 #, c-format msgid "Bug in UI description. Option '%s' in <%s> does not exist" msgstr "" -#: ../lib/gis/parser.c:552 +#: ../lib/gis/parser.c:551 msgid "Use either --quiet or --verbose flag, not both. Assuming --verbose." msgstr "" -#: ../lib/gis/parser.c:568 +#: ../lib/gis/parser.c:567 msgid "Use either --quiet or --verbose flag, not both. Assuming --quiet." msgstr "" -#: ../lib/gis/parser.c:585 +#: ../lib/gis/parser.c:584 msgid "Use either --qq or --verbose flag, not both. Assuming --qq." msgstr "" -#: ../lib/gis/parser.c:616 +#: ../lib/gis/parser.c:615 #, c-format msgid "Sorry <%s> is not a valid option" msgstr "" -#: ../lib/gis/parser.c:628 +#: ../lib/gis/parser.c:627 msgid "Your installation doesn't include GUI, exiting." msgstr "" -#: ../lib/gis/parser.c:651 ../lib/init/grass.py:166 +#: ../lib/gis/parser.c:650 ../lib/init/grass.py:146 msgid "ERROR" msgstr "" -#: ../lib/gis/parser.c:989 +#: ../lib/gis/parser.c:988 msgid "Unable to determine program name" msgstr "" -#: ../lib/gis/parser.c:1012 ../lib/gis/parser.c:1093 +#: ../lib/gis/parser.c:1011 ../lib/gis/parser.c:1092 #, c-format msgid "%s: Sorry, <%c> is not a valid flag" msgstr "" -#: ../lib/gis/parser.c:1044 ../lib/gis/parser.c:1054 ../lib/gis/parser.c:1064 +#: ../lib/gis/parser.c:1043 ../lib/gis/parser.c:1053 ../lib/gis/parser.c:1063 #, c-format msgid "Please update the usage of <%s>: flag <%c> has been renamed to <%s>" msgstr "" -#: ../lib/gis/parser.c:1083 +#: ../lib/gis/parser.c:1082 #, c-format msgid "Please update the usage of <%s>: flag <%c> has been renamed to option <%s>" msgstr "" -#: ../lib/gis/parser.c:1230 +#: ../lib/gis/parser.c:1229 #, c-format msgid "%s: Sorry, <%s=> is ambiguous" msgstr "" -#: ../lib/gis/parser.c:1234 +#: ../lib/gis/parser.c:1233 #, c-format msgid "Option <%s=> matches" msgstr "" -#: ../lib/gis/parser.c:1254 +#: ../lib/gis/parser.c:1253 #, c-format msgid "Please update the usage of <%s>: option <%s> has been renamed to flag <%s>" msgstr "" -#: ../lib/gis/parser.c:1259 +#: ../lib/gis/parser.c:1258 #, c-format msgid "Please update the usage of <%s>: option <%s> has been renamed to flag <%c>" msgstr "" -#: ../lib/gis/parser.c:1270 +#: ../lib/gis/parser.c:1269 #, c-format msgid "Please update the usage of <%s>: option <%s> has been renamed to <%s>" msgstr "" -#: ../lib/gis/parser.c:1283 +#: ../lib/gis/parser.c:1282 #, c-format msgid "%s: Sorry, <%s> is not a valid parameter" msgstr "" -#: ../lib/gis/parser.c:1290 ../lib/gis/parser.c:1551 +#: ../lib/gis/parser.c:1289 ../lib/gis/parser.c:1550 #, c-format msgid "<%s> is an abbreviation for <%s>" msgstr "" -#: ../lib/gis/parser.c:1295 +#: ../lib/gis/parser.c:1294 #, c-format msgid "Option <%s> does not accept multiple answers" msgstr "" -#: ../lib/gis/parser.c:1368 +#: ../lib/gis/parser.c:1367 #, c-format msgid "" "Illegal range syntax for parameter <%s>\n" "\tPresented as: %s" msgstr "" -#: ../lib/gis/parser.c:1375 +#: ../lib/gis/parser.c:1374 #, c-format msgid "" "Value <%s> out of range for parameter <%s>\n" "\tLegal range: %s" msgstr "" -#: ../lib/gis/parser.c:1381 +#: ../lib/gis/parser.c:1380 #, c-format msgid "Missing value for parameter <%s>" msgstr "" -#: ../lib/gis/parser.c:1385 +#: ../lib/gis/parser.c:1384 #, c-format msgid "Invalid value <%s> for parameter <%s>" msgstr "" -#: ../lib/gis/parser.c:1391 +#: ../lib/gis/parser.c:1390 #, c-format msgid "" "Value <%s> ambiguous for parameter <%s>\n" "\tValid options: %s" msgstr "" -#: ../lib/gis/parser.c:1577 +#: ../lib/gis/parser.c:1576 #, c-format msgid "" "Required parameter <%s> not set:\n" "\t(%s)" msgstr "" -#: ../lib/gis/parser.c:1670 +#: ../lib/gis/parser.c:1669 #, c-format msgid "" "Option <%s> must be provided in multiples of %d\n" "\tYou provided %d item(s): %s" msgstr "" -#: ../lib/gis/parser.c:1745 ../lib/gis/parser.c:1755 +#: ../lib/gis/parser.c:1744 ../lib/gis/parser.c:1754 #, c-format msgid "option <%s>: <%s> exists. To overwrite, use the --overwrite flag" msgstr "" -#: ../lib/gis/parser.c:1867 +#: ../lib/gis/parser.c:1866 #, c-format msgid "%s= is not a separator option" msgstr "" -#: ../lib/gis/parser.c:1870 +#: ../lib/gis/parser.c:1869 #, c-format msgid "No separator given for %s=" msgstr "" -#: ../lib/gis/parser.c:1932 ../lib/gis/parser.c:1951 +#: ../lib/gis/parser.c:1931 ../lib/gis/parser.c:1950 #, c-format msgid "%s= is not a file option" msgstr "" -#: ../lib/gis/parser.c:1934 +#: ../lib/gis/parser.c:1933 #, c-format msgid "Opening multiple files not supported for %s=" msgstr "" -#: ../lib/gis/parser.c:1940 +#: ../lib/gis/parser.c:1939 #, c-format msgid "Unable to open %s file <%s>: %s" msgstr "" -#: ../lib/gis/parser.c:1947 +#: ../lib/gis/parser.c:1946 #, c-format msgid "Unable to create %s file <%s>: %s" msgstr "" @@ -1574,25 +1610,25 @@ msgid "Flags:" msgstr "" #: ../lib/gis/parser_help.c:222 ../lib/gis/parser_html.c:185 -#: ../lib/gis/parser_interface.c:329 ../lib/gis/parser_md_cli.c:313 -#: ../lib/gis/parser_md_python.c:473 ../lib/gis/parser_rest.c:158 +#: ../lib/gis/parser_interface.c:329 ../lib/gis/parser_md_cli.c:343 +#: ../lib/gis/parser_md_python.c:555 ../lib/gis/parser_rest.c:158 msgid "Allow output files to overwrite existing files" msgstr "" #: ../lib/gis/parser_help.c:224 ../lib/gis/parser_html.c:189 -#: ../lib/gis/parser_interface.c:337 ../lib/gis/parser_md_cli.c:320 +#: ../lib/gis/parser_interface.c:337 ../lib/gis/parser_md_cli.c:350 msgid "Print usage summary" msgstr "" #: ../lib/gis/parser_help.c:225 ../lib/gis/parser_html.c:192 -#: ../lib/gis/parser_interface.c:344 ../lib/gis/parser_md_cli.c:323 -#: ../lib/gis/parser_md_python.c:478 ../lib/gis/parser_rest.c:162 +#: ../lib/gis/parser_interface.c:344 ../lib/gis/parser_md_cli.c:353 +#: ../lib/gis/parser_md_python.c:560 ../lib/gis/parser_rest.c:162 msgid "Verbose module output" msgstr "" #: ../lib/gis/parser_help.c:226 ../lib/gis/parser_html.c:195 -#: ../lib/gis/parser_interface.c:351 ../lib/gis/parser_md_cli.c:326 -#: ../lib/gis/parser_md_python.c:482 ../lib/gis/parser_rest.c:165 +#: ../lib/gis/parser_interface.c:351 ../lib/gis/parser_md_cli.c:356 +#: ../lib/gis/parser_md_python.c:564 ../lib/gis/parser_rest.c:165 msgid "Quiet module output" msgstr "" @@ -1601,7 +1637,7 @@ msgid "Super quiet module output" msgstr "" #: ../lib/gis/parser_help.c:228 ../lib/gis/parser_html.c:198 -#: ../lib/gis/parser_md_cli.c:332 +#: ../lib/gis/parser_md_cli.c:362 msgid "Force launching GUI dialog" msgstr "" @@ -1632,12 +1668,12 @@ msgid "SYNOPSIS" msgstr "" #: ../lib/gis/parser_html.c:159 ../lib/gis/parser_rest.c:140 -#: ../lib/init/grass.py:322 +#: ../lib/init/grass.py:302 msgid "Flags" msgstr "" -#: ../lib/gis/parser_html.c:207 ../lib/gis/parser_md.c:69 -#: ../lib/gis/parser_rest.c:173 ../lib/init/grass.py:342 +#: ../lib/gis/parser_html.c:207 ../lib/gis/parser_md.c:71 +#: ../lib/gis/parser_rest.c:173 ../lib/init/grass.py:322 msgid "Parameters" msgstr "" @@ -1646,24 +1682,24 @@ msgid "Options" msgstr "" #: ../lib/gis/parser_html.c:257 ../lib/gis/parser_md_cli.c:113 -#: ../lib/gis/parser_md_python.c:246 ../lib/gis/parser_rest.c:224 +#: ../lib/gis/parser_md_python.c:266 ../lib/gis/parser_rest.c:224 msgid "Default" msgstr "" -#: ../lib/gis/parser_json.c:378 +#: ../lib/gis/parser_json.c:383 #, c-format msgid "Input string not understood: <%s>. Multiple '@' chars?" msgstr "" -#: ../lib/gis/parser_md_cli.c:103 ../lib/gis/parser_md_python.c:197 +#: ../lib/gis/parser_md_cli.c:103 ../lib/gis/parser_md_python.c:217 msgid "Allowed values" msgstr "" -#: ../lib/gis/parser_md_cli.c:329 ../lib/gis/parser_md_python.c:487 +#: ../lib/gis/parser_md_cli.c:359 ../lib/gis/parser_md_python.c:569 msgid "Very quiet module output" msgstr "" -#: ../lib/gis/parser_md_python.c:168 +#: ../lib/gis/parser_md_python.c:192 msgid "Used as" msgstr "" @@ -2009,11 +2045,11 @@ msgid "Project name (not path to project)" msgstr "" #: ../lib/gis/parser_standard_options.c:730 -msgid "GRASS GIS database directory" +msgid "GRASS database directory" msgstr "" #: ../lib/gis/parser_standard_options.c:731 -msgid "Default: path to the current GRASS GIS database" +msgid "Default: path to the current GRASS database" msgstr "" #: ../lib/gis/parser_standard_options.c:743 @@ -2174,7 +2210,7 @@ msgstr "" msgid "Other Projection" msgstr "" -#: ../lib/gis/proj3.c:132 ../lib/vector/Vlib/header.c:563 +#: ../lib/gis/proj3.c:132 ../lib/vector/Vlib/header.c:565 msgid "Unknown projection" msgstr "" @@ -2374,12 +2410,7 @@ msgstr "" msgid "Invalid compressed field: %s" msgstr "" -#: ../lib/gis/seek.c:54 ../lib/gis/seek.c:61 -#, c-format -msgid "Unable to seek: %s" -msgstr "" - -#: ../lib/gis/seek.c:59 +#: ../lib/gis/seek.c:62 msgid "Seek offset out of range" msgstr "" @@ -2491,203 +2522,247 @@ msgstr "" msgid "parse error" msgstr "" -#: ../lib/gis/units.c:209 -msgid "square unit" -msgstr "" - +#. GTC: localized area units #: ../lib/gis/units.c:209 msgid "square units" msgstr "" +#. GTC: localized area units #: ../lib/gis/units.c:211 -msgid "unit" +msgid "square unit" msgstr "" -#: ../lib/gis/units.c:211 +#. GTC: localized units +#: ../lib/gis/units.c:215 msgid "units" msgstr "" -#: ../lib/gis/units.c:216 -msgid "square meter" +#. GTC: localized units +#: ../lib/gis/units.c:217 +msgid "unit" msgstr "" -#: ../lib/gis/units.c:216 +#. GTC: localized area units +#: ../lib/gis/units.c:224 msgid "square meters" msgstr "" -#: ../lib/gis/units.c:218 -msgid "meter" +#. GTC: localized area units +#: ../lib/gis/units.c:226 +msgid "square meter" msgstr "" -#: ../lib/gis/units.c:218 +#. GTC: localized units +#: ../lib/gis/units.c:230 msgid "meters" msgstr "" -#: ../lib/gis/units.c:223 -msgid "square kilometer" +#. GTC: localized units +#: ../lib/gis/units.c:232 +msgid "meter" msgstr "" -#: ../lib/gis/units.c:223 +#. GTC: localized area units +#: ../lib/gis/units.c:239 msgid "square kilometers" msgstr "" -#: ../lib/gis/units.c:225 -msgid "kilometer" +#. GTC: localized area units +#: ../lib/gis/units.c:241 +msgid "square kilometer" msgstr "" -#: ../lib/gis/units.c:225 +#. GTC: localized units +#: ../lib/gis/units.c:245 msgid "kilometers" msgstr "" -#: ../lib/gis/units.c:230 -msgid "acre" +#. GTC: localized units +#: ../lib/gis/units.c:247 +msgid "kilometer" msgstr "" -#: ../lib/gis/units.c:230 +#. GTC: localized area units +#: ../lib/gis/units.c:254 msgid "acres" msgstr "" -#: ../lib/gis/units.c:238 -msgid "hectare" +#. GTC: localized area units +#: ../lib/gis/units.c:256 +msgid "acre" msgstr "" -#: ../lib/gis/units.c:238 +#. GTC: localized area units +#: ../lib/gis/units.c:266 msgid "hectares" msgstr "" -#: ../lib/gis/units.c:246 -msgid "square mile" +#. GTC: localized area units +#: ../lib/gis/units.c:268 +msgid "hectare" msgstr "" -#: ../lib/gis/units.c:246 +#. GTC: localized area units +#: ../lib/gis/units.c:278 msgid "square miles" msgstr "" -#: ../lib/gis/units.c:248 -msgid "mile" +#. GTC: localized area units +#: ../lib/gis/units.c:280 +msgid "square mile" msgstr "" -#: ../lib/gis/units.c:248 +#. GTC: localized units +#: ../lib/gis/units.c:284 msgid "miles" msgstr "" -#: ../lib/gis/units.c:253 +#. GTC: localized units +#: ../lib/gis/units.c:286 +msgid "mile" +msgstr "" + +#. GTC: localized area units, do not confuse with US feet +#: ../lib/gis/units.c:293 msgid "square feet" msgstr "" -#: ../lib/gis/units.c:253 +#. GTC: localized area units, do not confuse with US foot +#: ../lib/gis/units.c:295 msgid "square foot" msgstr "" -#: ../lib/gis/units.c:255 +#. GTC: localized units, do not confuse with US feet +#: ../lib/gis/units.c:299 msgid "feet" msgstr "" -#: ../lib/gis/units.c:255 +#. GTC: localized units, do not confuse with US foot +#: ../lib/gis/units.c:301 msgid "foot" msgstr "" -#: ../lib/gis/units.c:260 +#. GTC: localized area units, do not confuse with feet +#: ../lib/gis/units.c:308 msgid "square US feet" msgstr "" -#: ../lib/gis/units.c:260 +#. GTC: localized area units, do not confuse with foot +#: ../lib/gis/units.c:310 msgid "square US foot" msgstr "" -#: ../lib/gis/units.c:262 +#. GTC: localized units, do not confuse with feet +#: ../lib/gis/units.c:314 msgid "US feet" msgstr "" -#: ../lib/gis/units.c:262 +#. GTC: localized units, do not confuse with foot +#: ../lib/gis/units.c:316 msgid "US foot" msgstr "" -#: ../lib/gis/units.c:267 -msgid "square degree" -msgstr "" - -#: ../lib/gis/units.c:267 +#. GTC: localized area units +#: ../lib/gis/units.c:323 msgid "square degrees" msgstr "" -#: ../lib/gis/units.c:269 -msgid "degree" +#. GTC: localized area units +#: ../lib/gis/units.c:325 +msgid "square degree" msgstr "" -#: ../lib/gis/units.c:269 +#. GTC: localized units +#: ../lib/gis/units.c:329 msgid "degrees" msgstr "" -#: ../lib/gis/units.c:273 -msgid "year" +#. GTC: localized units +#: ../lib/gis/units.c:331 +msgid "degree" msgstr "" -#: ../lib/gis/units.c:273 +#. GTC: localized time units +#: ../lib/gis/units.c:337 msgid "years" msgstr "" -#: ../lib/gis/units.c:277 -msgid "month" +#. GTC: localized time units +#: ../lib/gis/units.c:339 +msgid "year" msgstr "" -#: ../lib/gis/units.c:277 +#. GTC: localized time units +#: ../lib/gis/units.c:345 msgid "months" msgstr "" -#: ../lib/gis/units.c:281 -msgid "day" +#. GTC: localized time units +#: ../lib/gis/units.c:347 +msgid "month" msgstr "" -#: ../lib/gis/units.c:281 +#. GTC: localized time units +#: ../lib/gis/units.c:353 msgid "days" msgstr "" -#: ../lib/gis/units.c:285 -msgid "hour" +#. GTC: localized time units +#: ../lib/gis/units.c:355 +msgid "day" msgstr "" -#: ../lib/gis/units.c:285 +#. GTC: localized time units +#: ../lib/gis/units.c:361 msgid "hours" msgstr "" -#: ../lib/gis/units.c:289 -msgid "minute" +#. GTC: localized time units +#: ../lib/gis/units.c:363 +msgid "hour" msgstr "" -#: ../lib/gis/units.c:289 +#. GTC: localized time units +#: ../lib/gis/units.c:369 msgid "minutes" msgstr "" -#: ../lib/gis/units.c:293 -msgid "second" +#. GTC: localized time units +#: ../lib/gis/units.c:371 +msgid "minute" msgstr "" -#: ../lib/gis/units.c:293 +#. GTC: localized time units +#: ../lib/gis/units.c:377 msgid "seconds" msgstr "" -#: ../lib/gis/view.c:169 +#. GTC: localized time units +#: ../lib/gis/units.c:379 +msgid "second" +msgstr "" + +#: ../lib/gis/view.c:166 #, c-format msgid "Unable to open %s for writing" msgstr "" -#: ../lib/gis/view.c:254 ../lib/gis/view.c:471 +#: ../lib/gis/view.c:250 ../lib/gis/view.c:467 #, c-format msgid "Unable to open %s for reading" msgstr "" -#: ../lib/gis/view.c:457 +#: ../lib/gis/view.c:453 #, c-format msgid "GRASS window when view was saved:\n" msgstr "" -#: ../lib/gis/view.c:535 +#: ../lib/gis/view.c:531 #, c-format msgid " Window saved in \"%s\" is completely outside of current GRASS window." msgstr "" -#: ../lib/gis/view.c:540 +#: ../lib/gis/view.c:536 #, c-format msgid " Only %d%% of window saved in \"%s\" overlaps with current GRASS window." msgstr "" @@ -2696,200 +2771,200 @@ msgstr "" msgid "Task already has a worker" msgstr "" -#: ../lib/gis/writ_zeros.c:57 ../lib/vector/Vlib/break_polygons.c:250 -#: ../lib/vector/Vlib/break_polygons.c:265 -#: ../lib/vector/Vlib/break_polygons.c:287 -#: ../lib/vector/Vlib/break_polygons.c:384 +#: ../lib/gis/writ_zeros.c:56 ../lib/vector/Vlib/break_polygons.c:261 +#: ../lib/vector/Vlib/break_polygons.c:281 +#: ../lib/vector/Vlib/break_polygons.c:309 +#: ../lib/vector/Vlib/break_polygons.c:416 #, c-format msgid "File writing error in %s() %d:%s" msgstr "" -#: ../lib/gmath/del2g.c:47 +#: ../lib/gmath/del2g.c:46 msgid " taking FFT of image..." msgstr "" -#: ../lib/gmath/del2g.c:53 +#: ../lib/gmath/del2g.c:52 msgid " computing del**2 g..." msgstr "" -#: ../lib/gmath/del2g.c:56 +#: ../lib/gmath/del2g.c:55 msgid " taking FFT of del**2 g..." msgstr "" -#: ../lib/gmath/del2g.c:60 +#: ../lib/gmath/del2g.c:59 msgid " multiplying transforms..." msgstr "" -#: ../lib/gmath/del2g.c:63 +#: ../lib/gmath/del2g.c:62 msgid " taking inverse FFT..." msgstr "" -#: ../lib/gmath/la.c:72 ../lib/gmath/la.c:126 +#: ../lib/gmath/la.c:71 ../lib/gmath/la.c:123 msgid "Matrix dimensions out of range" msgstr "" -#: ../lib/gmath/la.c:158 +#: ../lib/gmath/la.c:154 msgid "Matrix is not initialised fully." msgstr "" -#: ../lib/gmath/la.c:163 +#: ../lib/gmath/la.c:159 msgid "Unable to allocate space for matrix copy" msgstr "" -#: ../lib/gmath/la.c:228 +#: ../lib/gmath/la.c:222 msgid "Input matrix is uninitialized" msgstr "" -#: ../lib/gmath/la.c:293 +#: ../lib/gmath/la.c:285 msgid "First scalar multiplier must be non-zero" msgstr "" -#: ../lib/gmath/la.c:299 ../lib/gmath/la.c:307 ../lib/gmath/la.c:366 +#: ../lib/gmath/la.c:291 ../lib/gmath/la.c:299 ../lib/gmath/la.c:357 msgid "One or both input matrices uninitialised" msgstr "" -#: ../lib/gmath/la.c:312 ../lib/gmath/la.c:371 +#: ../lib/gmath/la.c:304 ../lib/gmath/la.c:362 msgid "Matrix order does not match" msgstr "" -#: ../lib/gmath/la.c:318 +#: ../lib/gmath/la.c:310 msgid "Unable to allocate space for matrix sum" msgstr "" -#: ../lib/gmath/la.c:376 +#: ../lib/gmath/la.c:367 msgid "Unable to allocate space for matrix product" msgstr "" -#: ../lib/gmath/la.c:480 +#: ../lib/gmath/la.c:470 msgid "Input: one or both data matrices uninitialised" msgstr "" -#: ../lib/gmath/la.c:485 +#: ../lib/gmath/la.c:475 msgid "Principal matrix is not properly dimensioned" msgstr "" -#: ../lib/gmath/la.c:490 +#: ../lib/gmath/la.c:480 msgid "Input: you must have at least one array to solve" msgstr "" -#: ../lib/gmath/la.c:496 +#: ../lib/gmath/la.c:486 msgid "Could not allocate space for solution matrix" msgstr "" -#: ../lib/gmath/la.c:502 ../lib/gmath/la.c:510 +#: ../lib/gmath/la.c:492 ../lib/gmath/la.c:500 msgid "Could not allocate space for working matrix" msgstr "" -#: ../lib/gmath/la.c:563 +#: ../lib/gmath/la.c:553 msgid "Matrix (or submatrix is singular). Solution undetermined" msgstr "" -#: ../lib/gmath/la.c:567 +#: ../lib/gmath/la.c:557 msgid "Problem in LA routine." msgstr "" -#: ../lib/gmath/la.c:573 +#: ../lib/gmath/la.c:563 msgid "Procedure not yet available for selected matrix type" msgstr "" -#: ../lib/gmath/la.c:601 +#: ../lib/gmath/la.c:590 msgid "Matrix is not square. Cannot determine inverse" msgstr "" -#: ../lib/gmath/la.c:606 +#: ../lib/gmath/la.c:595 msgid "Unable to allocate space for matrix" msgstr "" -#: ../lib/gmath/la.c:623 +#: ../lib/gmath/la.c:612 msgid "Matrix is singular" msgstr "" -#: ../lib/gmath/la.c:628 +#: ../lib/gmath/la.c:617 msgid "Problem in LA procedure." msgstr "" -#: ../lib/gmath/la.c:710 +#: ../lib/gmath/la.c:696 msgid "Element array has not been allocated" msgstr "" -#: ../lib/gmath/la.c:715 +#: ../lib/gmath/la.c:701 msgid "Specified element is outside array bounds" msgstr "" -#: ../lib/gmath/la.c:767 +#: ../lib/gmath/la.c:751 msgid "Specified matrix column index is outside range" msgstr "" -#: ../lib/gmath/la.c:772 ../lib/gmath/la.c:812 ../lib/gmath/la.c:1166 -#: ../lib/gmath/la.c:1213 ../lib/gmath/la.c:1284 +#: ../lib/gmath/la.c:756 ../lib/gmath/la.c:795 ../lib/gmath/la.c:1141 +#: ../lib/gmath/la.c:1187 ../lib/gmath/la.c:1257 msgid "Matrix is not initialised" msgstr "" -#: ../lib/gmath/la.c:777 ../lib/gmath/la.c:817 +#: ../lib/gmath/la.c:761 ../lib/gmath/la.c:800 msgid "Could not allocate space for vector structure" msgstr "" -#: ../lib/gmath/la.c:807 +#: ../lib/gmath/la.c:790 msgid "Specified matrix row index is outside range" msgstr "" -#: ../lib/gmath/la.c:846 +#: ../lib/gmath/la.c:828 msgid "Specified row index is outside range" msgstr "" -#: ../lib/gmath/la.c:851 +#: ../lib/gmath/la.c:833 msgid "Specified column index is outside range" msgstr "" -#: ../lib/gmath/la.c:870 +#: ../lib/gmath/la.c:852 msgid "Unknown vector type." msgstr "" -#: ../lib/gmath/la.c:922 +#: ../lib/gmath/la.c:902 msgid "Input matrix and vector have differing dimensions1" msgstr "" -#: ../lib/gmath/la.c:927 ../lib/gmath/la.c:1042 ../lib/gmath/la.c:1321 +#: ../lib/gmath/la.c:907 ../lib/gmath/la.c:1019 ../lib/gmath/la.c:1294 msgid "Output vector is uninitialized" msgstr "" -#: ../lib/gmath/la.c:1047 ../lib/gmath/la.c:1326 +#: ../lib/gmath/la.c:1024 ../lib/gmath/la.c:1299 msgid "Vectors are not of the same type" msgstr "" -#: ../lib/gmath/la.c:1052 +#: ../lib/gmath/la.c:1029 msgid "Output vector is of incorrect type" msgstr "" -#: ../lib/gmath/la.c:1057 ../lib/gmath/la.c:1336 +#: ../lib/gmath/la.c:1034 ../lib/gmath/la.c:1309 msgid "Matrices not allowed" msgstr "" -#: ../lib/gmath/la.c:1063 ../lib/gmath/la.c:1342 +#: ../lib/gmath/la.c:1040 ../lib/gmath/la.c:1315 msgid "Vectors have differing dimensions" msgstr "" -#: ../lib/gmath/la.c:1069 ../lib/gmath/la.c:1348 +#: ../lib/gmath/la.c:1046 ../lib/gmath/la.c:1321 msgid "Output vector has incorrect dimension" msgstr "" -#: ../lib/gmath/la.c:1115 +#: ../lib/gmath/la.c:1091 msgid "Vector dimensions out of range" msgstr "" -#: ../lib/gmath/la.c:1120 +#: ../lib/gmath/la.c:1096 msgid "Row/column out of range" msgstr "" -#: ../lib/gmath/la.c:1331 +#: ../lib/gmath/la.c:1304 msgid "Output vector is not the same type as others" msgstr "" -#: ../lib/gmath/la.c:1391 +#: ../lib/gmath/la.c:1363 msgid "Vector structure is not initialised" msgstr "" -#: ../lib/gmath/la.c:1511 ../lib/gmath/la.c:1519 ../lib/gmath/la.c:1524 +#: ../lib/gmath/la.c:1482 ../lib/gmath/la.c:1490 ../lib/gmath/la.c:1495 msgid "Input format error" msgstr "" @@ -3159,12 +3234,12 @@ msgstr "" msgid "Write 3d array to g3d map <%s>" msgstr "" -#: ../lib/gpde/n_gwflow.c:445 ../lib/gpde/n_gwflow.c:719 +#: ../lib/gpde/n_gwflow.c:447 ../lib/gpde/n_gwflow.c:721 #, c-format msgid "The total sum of the water budget: %g\n" msgstr "" -#: ../lib/gpde/n_gwflow.c:447 ../lib/gpde/n_gwflow.c:721 +#: ../lib/gpde/n_gwflow.c:449 ../lib/gpde/n_gwflow.c:723 #, c-format msgid "The total sum of the water budget is significantly larger then 0: %g\n" msgstr "" @@ -3289,12 +3364,12 @@ msgstr "" msgid "prepare_signature: outline has odd number of points." msgstr "" -#: ../lib/imagery/iclass_statistics.c:225 ../lib/imagery/iscatt_core.c:957 +#: ../lib/imagery/iclass_statistics.c:225 ../lib/imagery/iscatt_core.c:965 #, c-format msgid "prepare_signature: scan line %d has odd number of points." msgstr "" -#: ../lib/imagery/iclass_statistics.c:235 ../lib/imagery/iscatt_core.c:966 +#: ../lib/imagery/iclass_statistics.c:235 ../lib/imagery/iscatt_core.c:976 msgid "signature: perimeter points out of order." msgstr "" @@ -3324,74 +3399,74 @@ msgstr "" msgid "Unable to write header into category raster condition file <%s>." msgstr "" -#: ../lib/imagery/iscatt_core.c:98 +#: ../lib/imagery/iscatt_core.c:99 #, c-format msgid "Unable to write into category raster condition file <%s>." msgstr "" -#: ../lib/imagery/iscatt_core.c:250 +#: ../lib/imagery/iscatt_core.c:252 #, c-format msgid "Unable to open category raster conditions file <%s>." msgstr "" -#: ../lib/imagery/iscatt_core.c:258 +#: ../lib/imagery/iscatt_core.c:260 #, c-format msgid "Unable to find patch raster <%s>." msgstr "" -#: ../lib/imagery/iscatt_core.c:274 +#: ../lib/imagery/iscatt_core.c:276 #, c-format msgid "Resolutions of patch <%s> and patched file <%s> are not same." msgstr "" -#: ../lib/imagery/iscatt_core.c:300 ../lib/imagery/iscatt_core.c:341 +#: ../lib/imagery/iscatt_core.c:302 ../lib/imagery/iscatt_core.c:345 #, c-format msgid "Corrupted category raster conditions file <%s> (fseek failed)" msgstr "" -#: ../lib/imagery/iscatt_core.c:331 +#: ../lib/imagery/iscatt_core.c:334 #, c-format msgid "Unable to write into category raster conditions file <%s>" msgstr "" -#: ../lib/imagery/iscatt_core.c:518 +#: ../lib/imagery/iscatt_core.c:524 msgid "Unable to read from category raster condition file." msgstr "" -#: ../lib/imagery/iscatt_core.c:525 +#: ../lib/imagery/iscatt_core.c:531 msgid "Invalid size of category raster conditions file." msgstr "" -#: ../lib/imagery/iscatt_core.c:568 +#: ../lib/imagery/iscatt_core.c:574 msgid "Data inconsistent. Value computed for scatter plot is out of initialized range." msgstr "" -#: ../lib/imagery/iscatt_core.c:738 +#: ../lib/imagery/iscatt_core.c:741 #, c-format msgid "Unable to find raster <%s>" msgstr "" -#: ../lib/imagery/iscatt_core.c:747 +#: ../lib/imagery/iscatt_core.c:750 #, c-format msgid "Unable to open raster <%s>" msgstr "" -#: ../lib/imagery/iscatt_core.c:753 +#: ../lib/imagery/iscatt_core.c:759 #, c-format msgid "Raster <%s> type is not <%s>" msgstr "" -#: ../lib/imagery/iscatt_core.c:766 +#: ../lib/imagery/iscatt_core.c:772 #, c-format msgid "Unable to read range of raster <%s>" msgstr "" -#: ../lib/imagery/iscatt_core.c:790 +#: ../lib/imagery/iscatt_core.c:796 #, c-format msgid "Unable to open category raster condition file <%s>" msgstr "" -#: ../lib/imagery/iscatt_core.c:803 +#: ../lib/imagery/iscatt_core.c:812 msgid "Corrupted category raster conditions file (fseek failed)" msgstr "" @@ -3405,19 +3480,19 @@ msgstr "" msgid "group <%s> references the following raster maps\n" msgstr "" -#: ../lib/imagery/list_subgp.c:90 +#: ../lib/imagery/list_subgp.c:88 #, c-format msgid "subgroup <%s> of group <%s> is empty\n" msgstr "" -#: ../lib/imagery/list_subgp.c:103 +#: ../lib/imagery/list_subgp.c:101 #, c-format msgid "subgroup <%s> of group <%s> references the following raster maps\n" msgstr "" #: ../lib/imagery/manage_signatures.c:85 ../lib/imagery/manage_signatures.c:129 -#: ../lib/imagery/manage_signatures.c:185 -#: ../lib/imagery/manage_signatures.c:194 +#: ../lib/imagery/manage_signatures.c:187 +#: ../lib/imagery/manage_signatures.c:196 #, c-format msgid "%s is not in the current mapset (%s)" msgstr "" @@ -3434,35 +3509,35 @@ msgid "Unable to remove %s signature" msgstr "" #: ../lib/imagery/manage_signatures.c:97 ../lib/imagery/manage_signatures.c:139 -#: ../lib/imagery/manage_signatures.c:204 ../lib/manage/do_copy.c:62 +#: ../lib/imagery/manage_signatures.c:206 ../lib/manage/do_copy.c:62 #: ../lib/manage/do_remove.c:86 ../lib/manage/do_remove.c:108 #: ../lib/manage/do_rename.c:84 ../lib/manage/do_rename.c:107 #, c-format msgid "%s is missing" msgstr "" -#: ../lib/imagery/manage_signatures.c:153 ../lib/manage/do_copy.c:51 +#: ../lib/imagery/manage_signatures.c:154 ../lib/manage/do_copy.c:51 #: ../lib/manage/do_copy.c:68 #, c-format msgid "Unable to copy <%s> to current mapset as <%s>" msgstr "" -#: ../lib/imagery/manage_signatures.c:215 +#: ../lib/imagery/manage_signatures.c:217 #, c-format msgid "Unable to rename <%s> to <%s>" msgstr "" -#: ../lib/imagery/points.c:120 +#: ../lib/imagery/points.c:118 #, c-format msgid "Unable to open control point file for group [%s in %s]" msgstr "" -#: ../lib/imagery/points.c:128 +#: ../lib/imagery/points.c:126 #, c-format msgid "Bad format in control point file for group [%s in %s]" msgstr "" -#: ../lib/imagery/points.c:154 +#: ../lib/imagery/points.c:151 #, c-format msgid "Unable to create control point file for group [%s in %s]" msgstr "" @@ -3487,212 +3562,212 @@ msgstr "" msgid "Invalid signature file: Original class value presence not readable" msgstr "" -#: ../lib/imagery/target.c:38 +#: ../lib/imagery/target.c:37 #, c-format msgid "Unable to read target file for group [%s]" msgstr "" -#: ../lib/init/grass.py:162 +#: ../lib/init/grass.py:142 msgid "WARNING" msgstr "" -#: ../lib/init/grass.py:167 ../lib/init/grass.py:2363 +#: ../lib/init/grass.py:147 ../lib/init/grass.py:2427 msgid "Exiting..." msgstr "" -#: ../lib/init/grass.py:321 +#: ../lib/init/grass.py:301 msgid "Usage" msgstr "" -#: ../lib/init/grass.py:323 +#: ../lib/init/grass.py:303 msgid "print this help message" msgstr "" -#: ../lib/init/grass.py:324 +#: ../lib/init/grass.py:304 msgid "show version information and exit" msgstr "" -#: ../lib/init/grass.py:325 +#: ../lib/init/grass.py:305 msgid "create given database, project or mapset if it doesn't exist" msgstr "" -#: ../lib/init/grass.py:326 +#: ../lib/init/grass.py:306 msgid "exit after creation of project or mapset. Only with -c flag" msgstr "" -#: ../lib/init/grass.py:328 +#: ../lib/init/grass.py:308 msgid "force removal of .gislock if exists (use with care!). Only with --text flag" msgstr "" -#: ../lib/init/grass.py:331 +#: ../lib/init/grass.py:311 msgid "use text based interface (skip graphical welcome screen)" msgstr "" -#: ../lib/init/grass.py:332 ../lib/init/grass.py:334 ../lib/init/grass.py:336 +#: ../lib/init/grass.py:312 ../lib/init/grass.py:314 ../lib/init/grass.py:316 msgid "and set as default" msgstr "" -#: ../lib/init/grass.py:333 +#: ../lib/init/grass.py:313 msgid "use text based interface (show graphical welcome screen)" msgstr "" -#: ../lib/init/grass.py:335 +#: ../lib/init/grass.py:315 msgid "use $DEFAULT_GUI graphical user interface" msgstr "" -#: ../lib/init/grass.py:337 +#: ../lib/init/grass.py:317 msgid "print GRASS configuration parameters" msgstr "" -#: ../lib/init/grass.py:339 +#: ../lib/init/grass.py:319 msgid "options: arch,build,compiler,date,path,python_path,revision,svn_revision,version" msgstr "" -#: ../lib/init/grass.py:343 +#: ../lib/init/grass.py:323 msgid "initial GRASS database directory" msgstr "" -#: ../lib/init/grass.py:344 +#: ../lib/init/grass.py:324 msgid "directory containing GRASS projects" msgstr "" -#: ../lib/init/grass.py:345 +#: ../lib/init/grass.py:325 msgid "initial GRASS project (location)" msgstr "" -#: ../lib/init/grass.py:347 +#: ../lib/init/grass.py:327 msgid "directory containing mapsets with one common coordinate reference system" msgstr "" -#: ../lib/init/grass.py:350 +#: ../lib/init/grass.py:330 msgid "initial GRASS mapset" msgstr "" -#: ../lib/init/grass.py:351 +#: ../lib/init/grass.py:331 msgid "fully qualified initial mapset directory" msgstr "" -#: ../lib/init/grass.py:352 +#: ../lib/init/grass.py:332 msgid "Environment variables relevant for startup" msgstr "" -#: ../lib/init/grass.py:353 +#: ../lib/init/grass.py:333 msgid "set root path for configuration directory" msgstr "" -#: ../lib/init/grass.py:354 +#: ../lib/init/grass.py:334 msgid "select GUI (text, gui, gtext)" msgstr "" -#: ../lib/init/grass.py:355 +#: ../lib/init/grass.py:335 msgid "set html web browser for help pages" msgstr "" -#: ../lib/init/grass.py:357 +#: ../lib/init/grass.py:337 msgid "set additional path(s) to local GRASS modules or user scripts" msgstr "" -#: ../lib/init/grass.py:360 +#: ../lib/init/grass.py:340 msgid "set additional GISBASE for locally installed GRASS Addons" msgstr "" -#: ../lib/init/grass.py:362 +#: ../lib/init/grass.py:342 msgid "set Python interpreter name to override 'python'" msgstr "" -#: ../lib/init/grass.py:363 +#: ../lib/init/grass.py:343 msgid "execute GRASS module or script" msgstr "" -#: ../lib/init/grass.py:364 +#: ../lib/init/grass.py:344 msgid "provided executable will be executed in GRASS session" msgstr "" -#: ../lib/init/grass.py:365 +#: ../lib/init/grass.py:345 msgid "GRASS module, script or any other executable" msgstr "" -#: ../lib/init/grass.py:366 +#: ../lib/init/grass.py:346 msgid "parameters of the executable" msgstr "" -#: ../lib/init/grass.py:367 +#: ../lib/init/grass.py:347 msgid "standard flags" msgstr "" -#: ../lib/init/grass.py:368 ../lib/init/grass.py:1949 +#: ../lib/init/grass.py:348 ../lib/init/grass.py:1909 msgid "deprecated, use --tmp-project instead" msgstr "" -#: ../lib/init/grass.py:369 +#: ../lib/init/grass.py:349 msgid "location was renamed to project" msgstr "" -#: ../lib/init/grass.py:370 +#: ../lib/init/grass.py:350 msgid "create temporary project (use with the --exec flag)" msgstr "" -#: ../lib/init/grass.py:372 +#: ../lib/init/grass.py:352 msgid "created in a temporary directory and deleted at exit" msgstr "" -#: ../lib/init/grass.py:374 +#: ../lib/init/grass.py:354 msgid "create temporary mapset (use with the --exec flag)" msgstr "" -#: ../lib/init/grass.py:375 +#: ../lib/init/grass.py:355 msgid "created in the specified project and deleted at exit" msgstr "" -#: ../lib/init/grass.py:376 +#: ../lib/init/grass.py:356 msgid "timeout for acquiring a mapset lock" msgstr "" -#: ../lib/init/grass.py:378 +#: ../lib/init/grass.py:358 msgid "time for which the process will attempt to get a lock in seconds" msgstr "" -#: ../lib/init/grass.py:414 +#: ../lib/init/grass.py:392 msgid "Failed to create configuration directory '{}' with error: {}" msgstr "" -#: ../lib/init/grass.py:456 +#: ../lib/init/grass.py:434 #, python-brace-format msgid "Unable to create temporary directory <{tmpdir_name}>! Exiting." msgstr "" -#: ../lib/init/grass.py:514 +#: ../lib/init/grass.py:492 #, python-brace-format msgid "Invalid line in RC file ({file}): '{line}' ({error})\n" msgstr "" -#: ../lib/init/grass.py:520 +#: ../lib/init/grass.py:498 #, python-brace-format msgid "Empty RC file ({file})" msgstr "" -#: ../lib/init/grass.py:607 +#: ../lib/init/grass.py:585 #, python-format msgid "GUI <%s> not supported in this version" msgstr "" -#: ../lib/init/grass.py:643 +#: ../lib/init/grass.py:621 msgid "" "The python command does not work as expected.\n" "Please check your installation or set the GRASS_PYTHON environment variable." msgstr "" -#: ../lib/init/grass.py:648 +#: ../lib/init/grass.py:626 msgid "GRASS GUI not found. Please check your installation." msgstr "" -#: ../lib/init/grass.py:650 +#: ../lib/init/grass.py:628 msgid "" "{}\n" "Switching to text based interface mode." msgstr "" -#: ../lib/init/grass.py:657 +#: ../lib/init/grass.py:635 msgid "" "It appears that the X Windows system is not active.\n" "A graphical based user interface is not supported.\n" @@ -3700,73 +3775,77 @@ msgid "" "Switching to text based interface mode." msgstr "" -#: ../lib/init/grass.py:730 +#: ../lib/init/grass.py:668 +msgid "Error creating project: {}" +msgstr "" + +#: ../lib/init/grass.py:695 #, python-brace-format msgid "Unable to create new project because the project <{location}> already exists." msgstr "" -#: ../lib/init/grass.py:736 +#: ../lib/init/grass.py:701 #, python-brace-format msgid "Unable to create new project <{location}> because <{path}> is a file." msgstr "" -#: ../lib/init/grass.py:740 +#: ../lib/init/grass.py:705 #, python-brace-format msgid "Unable to create new project <{location}> because the directory <{path}> already exists." msgstr "" -#: ../lib/init/grass.py:745 +#: ../lib/init/grass.py:710 #, python-brace-format msgid "Unable to create new project in the directory <{path}> for an unknown reason." msgstr "" -#: ../lib/init/grass.py:827 +#: ../lib/init/grass.py:792 msgid "Mapset <{}> already exists. Unable to create a new temporary mapset of that name." msgstr "" -#: ../lib/init/grass.py:832 +#: ../lib/init/grass.py:797 msgid "Mapset <{}> already exists." msgstr "" -#: ../lib/init/grass.py:840 +#: ../lib/init/grass.py:805 msgid "A new mapset can be created using '-c' flag." msgstr "" -#: ../lib/init/grass.py:842 +#: ../lib/init/grass.py:807 msgid "Maybe you meant a different directory." msgstr "" -#: ../lib/init/grass.py:870 +#: ../lib/init/grass.py:835 msgid "Provide CRS to create a project" msgstr "" -#: ../lib/init/grass.py:874 +#: ../lib/init/grass.py:839 msgid "Creating new GRASS project <{}>..." msgstr "" -#: ../lib/init/grass.py:885 +#: ../lib/init/grass.py:850 #, python-brace-format msgid "Unable to create new mapset <{mapset}> because <{path}> is a file." msgstr "" -#: ../lib/init/grass.py:894 +#: ../lib/init/grass.py:859 msgid "The mapset <{}> is missing the WIND file (computational region). It will be fixed now. Note that this warning may become an error in future versions." msgstr "" -#: ../lib/init/grass.py:904 +#: ../lib/init/grass.py:869 #, python-brace-format msgid "No CRS is needed for creating mapset <{mapset}>, but <{geofile}> was provided as CRS. Did you mean to create a new project?" msgstr "" -#: ../lib/init/grass.py:910 +#: ../lib/init/grass.py:875 msgid "Creating new GRASS mapset <{}>..." msgstr "" -#: ../lib/init/grass.py:934 +#: ../lib/init/grass.py:899 msgid "GRASS database directory, project and mapset not set properly. Use GUI or command line to set them." msgstr "" -#: ../lib/init/grass.py:994 +#: ../lib/init/grass.py:959 #, python-brace-format msgid "" "Error reading data path information from g.gisenv.\n" @@ -3777,168 +3856,168 @@ msgid "" "Check the <{file}> file." msgstr "" -#: ../lib/init/grass.py:1286 +#: ../lib/init/grass.py:1251 msgid "Building user fontcap..." msgstr "" -#: ../lib/init/grass.py:1352 +#: ../lib/init/grass.py:1317 msgid "The SHELL variable is not set" msgstr "" -#: ../lib/init/grass.py:1369 +#: ../lib/init/grass.py:1334 #, python-brace-format msgid "Unsupported shell <{sh}>: {env_file}" msgstr "" -#: ../lib/init/grass.py:1389 +#: ../lib/init/grass.py:1351 #, python-format msgid "Executing <%s> ..." msgstr "" -#: ../lib/init/grass.py:1413 +#: ../lib/init/grass.py:1375 #, python-brace-format msgid "" "Execution of <{cmd}> failed:\n" "{error}" msgstr "" -#: ../lib/init/grass.py:1426 +#: ../lib/init/grass.py:1388 #, python-format msgid "Execution of <%s> finished." msgstr "" -#: ../lib/init/grass.py:1470 +#: ../lib/init/grass.py:1430 #, python-brace-format msgid "Unable to close GUI. {0}" msgstr "" -#: ../lib/init/grass.py:1489 +#: ../lib/init/grass.py:1449 #, python-format msgid "Welcome to GRASS %s" msgstr "" -#: ../lib/init/grass.py:1515 +#: ../lib/init/grass.py:1475 msgid "GRASS homepage:" msgstr "" #. GTC Running through: SHELL NAME -#: ../lib/init/grass.py:1517 +#: ../lib/init/grass.py:1477 msgid "This version running through:" msgstr "" -#: ../lib/init/grass.py:1520 +#: ../lib/init/grass.py:1480 msgid "Help is available with the command:" msgstr "" -#: ../lib/init/grass.py:1521 +#: ../lib/init/grass.py:1481 msgid "See the licence terms with:" msgstr "" -#: ../lib/init/grass.py:1522 +#: ../lib/init/grass.py:1482 msgid "See citation options with:" msgstr "" -#: ../lib/init/grass.py:1527 +#: ../lib/init/grass.py:1487 msgid "If required, restart the GUI with:" msgstr "" -#: ../lib/init/grass.py:1529 +#: ../lib/init/grass.py:1489 msgid "Start the GUI with:" msgstr "" -#: ../lib/init/grass.py:1531 +#: ../lib/init/grass.py:1491 msgid "When ready to quit enter:" msgstr "" -#: ../lib/init/grass.py:1713 +#: ../lib/init/grass.py:1673 msgid "2D and 3D raster masks present" msgstr "" -#: ../lib/init/grass.py:1714 +#: ../lib/init/grass.py:1674 msgid "Raster mask present" msgstr "" -#: ../lib/init/grass.py:1715 +#: ../lib/init/grass.py:1675 msgid "3D raster mask present" msgstr "" -#: ../lib/init/grass.py:1760 +#: ../lib/init/grass.py:1720 msgid "Done." msgstr "" -#: ../lib/init/grass.py:1762 +#: ../lib/init/grass.py:1722 msgid "Goodbye from GRASS" msgstr "" -#: ../lib/init/grass.py:1823 +#: ../lib/init/grass.py:1783 msgid "Please install the GRASS development package" msgstr "" -#: ../lib/init/grass.py:1869 +#: ../lib/init/grass.py:1829 #, python-format msgid "Parameter <%s> not supported" msgstr "" -#: ../lib/init/grass.py:1918 +#: ../lib/init/grass.py:1878 #, python-format msgid "use mapset %(metavar)s" msgstr "" -#: ../lib/init/grass.py:1924 +#: ../lib/init/grass.py:1884 #, python-format msgid "use temporary mapset in project %(metavar)s" msgstr "" -#: ../lib/init/grass.py:1932 +#: ../lib/init/grass.py:1892 msgid "path to mapset (or project if creating one)" msgstr "" -#: ../lib/init/grass.py:1935 +#: ../lib/init/grass.py:1895 msgid "use temporary mapset" msgstr "" -#: ../lib/init/grass.py:1942 +#: ../lib/init/grass.py:1902 #, python-format msgid "use temporary project with %(metavar)s (EPSG, georeferenced file, ...)" msgstr "" -#: ../lib/init/grass.py:1956 +#: ../lib/init/grass.py:1916 msgid "mapset locking timeout in seconds" msgstr "" -#: ../lib/init/grass.py:1962 +#: ../lib/init/grass.py:1922 msgid "remove lock if present" msgstr "" -#: ../lib/init/grass.py:1976 +#: ../lib/init/grass.py:1936 msgid "Option --tmp-location is deprecated, use --tmp-project instead\n" msgstr "" -#: ../lib/init/grass.py:2021 +#: ../lib/init/grass.py:1981 msgid "execute module or script (followed by executable with arguments)" msgstr "" -#: ../lib/init/grass.py:2077 +#: ../lib/init/grass.py:2043 msgid "Flag -e requires also flag -c" msgstr "" -#: ../lib/init/grass.py:2079 +#: ../lib/init/grass.py:2045 msgid "Flag -c requires name of project or mapset" msgstr "" -#: ../lib/init/grass.py:2082 +#: ../lib/init/grass.py:2048 msgid "Either --tmp-project or --tmp-mapset can be used, not both" msgstr "" -#: ../lib/init/grass.py:2089 +#: ../lib/init/grass.py:2055 msgid "Coordinate reference system argument (e.g. EPSG) is needed for --tmp-project" msgstr "" -#: ../lib/init/grass.py:2096 +#: ../lib/init/grass.py:2062 msgid "Only one argument (e.g. EPSG) is needed for --tmp-project, mapset name <{}> provided" msgstr "" -#: ../lib/init/grass.py:2218 +#: ../lib/init/grass.py:2282 #, python-brace-format msgid "" "Unable to start GRASS. You have the choice to:\n" @@ -3955,24 +4034,24 @@ msgid "" "See also: https://grass.osgeo.org/{cmd_name}/manuals/helptext.html" msgstr "" -#: ../lib/init/grass.py:2239 +#: ../lib/init/grass.py:2303 msgid "Starting GRASS..." msgstr "" -#: ../lib/init/grass.py:2288 +#: ../lib/init/grass.py:2352 msgid "Failed to start GRASS, grassdata directory cannot be found or created." msgstr "" -#: ../lib/init/grass.py:2295 +#: ../lib/init/grass.py:2359 msgid "Failed to start GRASS, no default project to copy in the installation or copying failed." msgstr "" -#: ../lib/init/grass.py:2400 +#: ../lib/init/grass.py:2464 #, python-format msgid "Launching <%s> GUI in the background, please wait..." msgstr "" -#: ../lib/init/grass.py:2438 +#: ../lib/init/grass.py:2502 #, python-format msgid "Failed to start shell '%s'" msgstr "" @@ -4036,8 +4115,8 @@ msgstr "" #: ../lib/manage/do_remove.c:54 ../lib/manage/do_rename.c:51 #: ../lib/ogsf/gp3.c:61 ../lib/ogsf/gp3.c:202 ../lib/ogsf/gv3.c:60 -#: ../lib/ogsf/gv3.c:339 ../lib/vector/Vlib/legal_vname.c:147 -#: ../lib/vector/Vlib/legal_vname.c:150 ../lib/vector/Vlib/map.c:263 +#: ../lib/ogsf/gv3.c:339 ../lib/vector/Vlib/legal_vname.c:145 +#: ../lib/vector/Vlib/legal_vname.c:148 ../lib/vector/Vlib/map.c:263 #: ../lib/vector/Vlib/open.c:246 #, c-format msgid "Vector map <%s> not found" @@ -4224,7 +4303,7 @@ msgstr "" msgid "Check no. of frames requested and keyframes marked" msgstr "" -#: ../lib/ogsf/gp2.c:709 +#: ../lib/ogsf/gp2.c:713 msgid "Unknown icon marker, using \"sphere\"" msgstr "" @@ -4253,13 +4332,13 @@ msgid "Vector map <%s> loaded (%d points)" msgstr "" #: ../lib/ogsf/gp3.c:213 ../lib/ogsf/gv3.c:350 -#: ../lib/rst/interp_float/vinput2d.c:98 ../lib/vector/Vlib/array.c:269 -#: ../lib/vector/Vlib/ascii.c:399 ../lib/vector/Vlib/cats.c:592 +#: ../lib/rst/interp_float/vinput2d.c:98 ../lib/vector/Vlib/array.c:268 +#: ../lib/vector/Vlib/ascii.c:410 ../lib/vector/Vlib/cats.c:594 #: ../lib/vector/Vlib/copy.c:649 ../lib/vector/Vlib/copy.c:764 #: ../lib/vector/Vlib/map.c:300 ../lib/vector/Vlib/map.c:433 -#: ../lib/vector/Vlib/net_build.c:153 ../lib/vector/Vlib/net_build.c:204 -#: ../lib/vector/Vlib/net_build.c:497 ../lib/vector/Vlib/net_build.c:794 -#: ../lib/vector/Vlib/net_build.c:971 ../lib/vector/neta/timetables.c:135 +#: ../lib/vector/Vlib/net_build.c:152 ../lib/vector/Vlib/net_build.c:203 +#: ../lib/vector/Vlib/net_build.c:496 ../lib/vector/Vlib/net_build.c:793 +#: ../lib/vector/Vlib/net_build.c:970 ../lib/vector/neta/timetables.c:136 #: ../lib/vector/neta/utils.c:119 #, c-format msgid "Database connection not defined for layer %d" @@ -4285,32 +4364,32 @@ msgstr "" msgid "%d points without category. Unable to determine color rules for features without category." msgstr "" -#: ../lib/ogsf/gs2.c:1202 +#: ../lib/ogsf/gs2.c:1204 #, c-format msgid "no category info" msgstr "" -#: ../lib/ogsf/gs2.c:1220 +#: ../lib/ogsf/gs2.c:1222 #, c-format msgid "no data" msgstr "" -#: ../lib/ogsf/gs2.c:1644 +#: ../lib/ogsf/gs2.c:1646 #, c-format msgid "Raster map <%s> is outside of current region. Load failed." msgstr "" -#: ../lib/ogsf/gs2.c:1724 ../lib/ogsf/gs2.c:1731 ../lib/ogsf/gs2.c:1740 -#: ../lib/ogsf/gs2.c:1750 ../lib/ogsf/gs2.c:1759 ../lib/ogsf/gs2.c:1770 -#: ../lib/ogsf/gs2.c:1818 +#: ../lib/ogsf/gs2.c:1727 ../lib/ogsf/gs2.c:1734 ../lib/ogsf/gs2.c:1743 +#: ../lib/ogsf/gs2.c:1753 ../lib/ogsf/gs2.c:1762 ../lib/ogsf/gs2.c:1773 +#: ../lib/ogsf/gs2.c:1821 msgid "GS_load_att_map(): Out of memory. Unable to load map" msgstr "" -#: ../lib/ogsf/gs2.c:1847 +#: ../lib/ogsf/gs2.c:1850 msgid "Loading failed" msgstr "" -#: ../lib/ogsf/gs2.c:1851 +#: ../lib/ogsf/gs2.c:1854 msgid "Error finding range" msgstr "" @@ -4456,25 +4535,20 @@ msgstr "" msgid "Tried to pop an empty stack" msgstr "" -#: ../lib/pngdriver/graph_set.c:100 -#, c-format -msgid "png: truecolor status %s" -msgstr "" - -#: ../lib/pngdriver/graph_set.c:101 ../lib/psdriver/graph_set.c:197 -msgid "disabled" +#: ../lib/pngdriver/graph_set.c:105 +msgid "png: truecolor status enabled" msgstr "" -#: ../lib/pngdriver/graph_set.c:101 ../lib/psdriver/graph_set.c:197 -msgid "enabled" +#: ../lib/pngdriver/graph_set.c:106 +msgid "png: truecolor status disabled" msgstr "" -#: ../lib/pngdriver/graph_set.c:149 +#: ../lib/pngdriver/graph_set.c:154 #, c-format msgid "png: collecting to file '%s'" msgstr "" -#: ../lib/pngdriver/graph_set.c:150 +#: ../lib/pngdriver/graph_set.c:155 #, c-format msgid "png: image size %dx%d" msgstr "" @@ -4513,6 +4587,16 @@ msgstr "" msgid "Input PNG file has invalid palette" msgstr "" +#: ../lib/pngdriver/read_ppm.c:41 +#, c-format +msgid "PNG: invalid input file %s" +msgstr "" + +#: ../lib/pngdriver/read_ppm.c:92 +#, c-format +msgid "PNG: invalid input mask file %s" +msgstr "" + #: ../lib/pngdriver/write_png.c:38 msgid "Unable to write PNG" msgstr "" @@ -4560,16 +4644,16 @@ msgstr "" msgid "OGR can't get WKT-style parameter string (OGR Error code was %d)" msgstr "" -#: ../lib/proj/convert.c:470 +#: ../lib/proj/convert.c:474 #, c-format msgid "Updating spatial reference with embedded proj4 definition failed. Proj4 definition: <%s>" msgstr "" -#: ../lib/proj/convert.c:481 +#: ../lib/proj/convert.c:485 msgid "Updating spatial reference with embedded proj4 definition" msgstr "" -#: ../lib/proj/convert.c:619 +#: ../lib/proj/convert.c:623 msgid "No projection name! Projection parameters likely to be meaningless." msgstr "" @@ -4799,34 +4883,37 @@ msgstr "" msgid "The PROJ error message: %s" msgstr "" -#: ../lib/proj/get_proj.c:389 +#: ../lib/proj/get_proj.c:388 msgid "Option input overflowed option table" msgstr "" -#: ../lib/proj/get_proj.c:427 ../lib/proj/get_proj.c:446 +#: ../lib/proj/get_proj.c:426 ../lib/proj/get_proj.c:445 #, c-format msgid "Unable to initialize pj cause: %s" msgstr "" -#: ../lib/proj/get_proj.c:563 +#: ../lib/proj/get_proj.c:562 msgid "Input Projection Parameters" msgstr "" -#: ../lib/proj/get_proj.c:564 +#: ../lib/proj/get_proj.c:563 msgid "Input Unit Factor" msgstr "" -#: ../lib/proj/get_proj.c:574 +#: ../lib/proj/get_proj.c:573 msgid "Output Projection Parameters" msgstr "" -#: ../lib/proj/get_proj.c:575 +#: ../lib/proj/get_proj.c:574 msgid "Output Unit Factor" msgstr "" #: ../lib/psdriver/graph_set.c:196 -#, c-format -msgid "ps: truecolor status %s" +msgid "ps: truecolor status enabled" +msgstr "" + +#: ../lib/psdriver/graph_set.c:197 +msgid "ps: truecolor status disabled" msgstr "" #: ../lib/psdriver/graph_set.c:215 @@ -4839,7 +4926,7 @@ msgstr "" msgid "ps: image size %dx%d" msgstr "" -#: ../lib/raster/alloc_cell.c:150 +#: ../lib/raster/alloc_cell.c:149 #, c-format msgid "Rast__null_bitstream_size: cols (%d) is negative" msgstr "" @@ -4869,7 +4956,7 @@ msgstr "" msgid "Category support for vector map <%s@%s> invalid" msgstr "" -#: ../lib/raster/cats.c:972 +#: ../lib/raster/cats.c:971 #, c-format msgid "Unable to open %s file for map <%s>" msgstr "" @@ -4889,21 +4976,21 @@ msgstr "" msgid "Invalid descriptor: %d" msgstr "" -#: ../lib/raster/close.c:424 ../lib/raster/close.c:554 +#: ../lib/raster/close.c:429 ../lib/raster/close.c:569 #, c-format msgid "Unable to rename null file '%s' to '%s': %s" msgstr "" -#: ../lib/raster/close.c:496 +#: ../lib/raster/close.c:506 #, c-format msgid "Unable to rename cell file '%s' to '%s': %s" msgstr "" -#: ../lib/raster/close.c:576 +#: ../lib/raster/close.c:591 msgid "unable to write f_format file for CELL maps" msgstr "" -#: ../lib/raster/color_rand.c:32 +#: ../lib/raster/color_rand.c:31 #, c-format msgid "Rast_make_random_colors: min (%d) > max (%d)" msgstr "" @@ -4979,7 +5066,7 @@ msgstr "" msgid "Unable to open GDAL file" msgstr "" -#: ../lib/raster/gdal.c:306 ../lib/raster/open.c:615 +#: ../lib/raster/gdal.c:306 ../lib/raster/open.c:614 #, c-format msgid "Invalid map type <%d>" msgstr "" @@ -5119,22 +5206,22 @@ msgstr "" msgid "Error reading null row %d for <%s>" msgstr "" -#: ../lib/raster/histogram.c:53 +#: ../lib/raster/histogram.c:51 #, c-format msgid "Histogram for [%s in %s] missing (run r.support)" msgstr "" -#: ../lib/raster/histogram.c:60 +#: ../lib/raster/histogram.c:58 #, c-format msgid "Can't read histogram for [%s in %s]" msgstr "" -#: ../lib/raster/histogram.c:64 ../lib/raster/histogram.c:71 +#: ../lib/raster/histogram.c:62 ../lib/raster/histogram.c:69 #, c-format msgid "Invalid histogram file for [%s in %s]" msgstr "" -#: ../lib/raster/histogram.c:320 +#: ../lib/raster/histogram.c:317 #, c-format msgid "Unable to create histogram file for <%s>" msgstr "" @@ -5154,21 +5241,21 @@ msgstr "" msgid "generated by %s" msgstr "" -#: ../lib/raster/init.c:59 +#: ../lib/raster/init.c:57 msgid "Raster library not initialized. Programmer forgot to call Rast_init()." msgstr "" -#: ../lib/raster/init.c:111 +#: ../lib/raster/init.c:109 #, c-format msgid "Unknown compression method <%s>, using default %s" msgstr "" -#: ../lib/raster/init.c:115 +#: ../lib/raster/init.c:113 #, c-format msgid "No compression is not supported for GRASS raster maps, using default %s" msgstr "" -#: ../lib/raster/init.c:123 +#: ../lib/raster/init.c:121 #, c-format msgid "This GRASS version does not support %s compression, using default %s" msgstr "" @@ -5178,16 +5265,15 @@ msgstr "" msgid "Unknown interpolation method: %s" msgstr "" -#: ../lib/raster/json_color_out.c:69 ../lib/raster/json_color_out.c:157 -#: ../lib/raster/json_color_out.c:172 +#: ../lib/raster/json_color_out.c:69 ../lib/raster/json_color_out.c:103 msgid "Failed to initialize JSON object. Out of memory?" msgstr "" -#: ../lib/raster/json_color_out.c:103 +#: ../lib/raster/json_color_out.c:110 msgid "Failed to initialize JSON array. Out of memory?" msgstr "" -#: ../lib/raster/json_color_out.c:186 +#: ../lib/raster/json_color_out.c:176 msgid "Failed to serialize JSON to pretty format." msgstr "" @@ -5204,7 +5290,7 @@ msgstr "" msgid "not known" msgstr "" -#: ../lib/raster/mask_info.c:219 +#: ../lib/raster/mask_info.c:220 msgid "Single thread processing enforced due to raster mask being present." msgstr "" @@ -5216,115 +5302,115 @@ msgstr "" msgid "Rast_set_null_value: wrong data type!" msgstr "" -#: ../lib/raster/open.c:192 +#: ../lib/raster/open.c:191 #, c-format msgid "Unable to open raster map <%s@%s> since it is a reclass of raster map <%s@%s> which does not exist" msgstr "" -#: ../lib/raster/open.c:197 +#: ../lib/raster/open.c:196 #, c-format msgid "Error reading reclass file for raster map <%s>" msgstr "" -#: ../lib/raster/open.c:208 +#: ../lib/raster/open.c:207 #, c-format msgid "Error reading map type for raster map <%s>" msgstr "" -#: ../lib/raster/open.c:217 +#: ../lib/raster/open.c:216 #, c-format msgid "Raster map <%s@%s>: format field in header file invalid" msgstr "" -#: ../lib/raster/open.c:236 +#: ../lib/raster/open.c:235 #, c-format msgid "Compression with %s is not supported in this GRASS GIS installation" msgstr "" -#: ../lib/raster/open.c:243 +#: ../lib/raster/open.c:242 #, c-format msgid "Raster map <%s> is in different projection than current region. Found <%s>, should be <%s>." msgstr "" -#: ../lib/raster/open.c:250 +#: ../lib/raster/open.c:249 #, c-format msgid "Raster map <%s> is in different zone (%d) than current region (%d)" msgstr "" -#: ../lib/raster/open.c:257 +#: ../lib/raster/open.c:256 #, c-format msgid "Raster map <%s>: bytes per cell (%d) too large" msgstr "" -#: ../lib/raster/open.c:281 +#: ../lib/raster/open.c:280 #, c-format msgid "Raster map <%s@%s> is a GDAL link but GRASS is compiled without GDAL support" msgstr "" -#: ../lib/raster/open.c:293 +#: ../lib/raster/open.c:292 #, c-format msgid "Unable to open %s file for raster map <%s@%s>" msgstr "" -#: ../lib/raster/open.c:332 +#: ../lib/raster/open.c:331 #, c-format msgid "Error reading format for <%s@%s>" msgstr "" -#: ../lib/raster/open.c:543 +#: ../lib/raster/open.c:542 msgid "Unable to create GDAL link" msgstr "" -#: ../lib/raster/open.c:620 ../lib/raster/open.c:780 +#: ../lib/raster/open.c:619 ../lib/raster/open.c:779 #, c-format msgid "Raster map <%s> is not in the current mapset (%s)" msgstr "" -#: ../lib/raster/open.c:627 +#: ../lib/raster/open.c:626 #, c-format msgid "<%s> is an illegal file name" msgstr "" -#: ../lib/raster/open.c:643 ../lib/raster/open.c:726 ../lib/raster/open.c:804 +#: ../lib/raster/open.c:642 ../lib/raster/open.c:725 ../lib/raster/open.c:803 #, c-format msgid "No temp files available: %s" msgstr "" -#: ../lib/raster/open.c:776 +#: ../lib/raster/open.c:775 #, c-format msgid "Raster map <%s> does not exist in the current mapset (%s)" msgstr "" -#: ../lib/raster/open.c:843 +#: ../lib/raster/open.c:842 msgid "Rast_set_fp_type(): can only be called with FCELL_TYPE or DCELL_TYPE" msgstr "" -#: ../lib/raster/open.c:902 +#: ../lib/raster/open.c:901 #, c-format msgid "Raster map <%s> not found in mapset <%s>" msgstr "" -#: ../lib/raster/open.c:964 +#: ../lib/raster/open.c:963 #, c-format msgid "Unable to find '%s'" msgstr "" -#: ../lib/raster/open.c:975 +#: ../lib/raster/open.c:974 #, c-format msgid "Invalid type: field '%s' in file '%s'" msgstr "" -#: ../lib/raster/open.c:981 +#: ../lib/raster/open.c:980 #, c-format msgid "Missing type: field in file '%s'" msgstr "" -#: ../lib/raster/open.c:986 +#: ../lib/raster/open.c:985 #, c-format msgid "Raster map <%s> is not xdr: byte_order: %s" msgstr "" -#: ../lib/raster/open.c:1055 +#: ../lib/raster/open.c:1054 msgid "Rast_set_quant_rules() can be called only for raster maps opened for reading" msgstr "" @@ -5343,51 +5429,51 @@ msgstr "" msgid "Error writing compressed FP data for row %d of <%s>: %s" msgstr "" -#: ../lib/raster/put_row.c:395 ../lib/raster/put_row.c:402 +#: ../lib/raster/put_row.c:400 ../lib/raster/put_row.c:407 #, c-format msgid "Error writing compressed data for row %d of <%s>: %s" msgstr "" -#: ../lib/raster/put_row.c:413 +#: ../lib/raster/put_row.c:418 #, c-format msgid "Error writing uncompressed data for row %d of <%s>: %s" msgstr "" -#: ../lib/raster/put_row.c:473 +#: ../lib/raster/put_row.c:478 #, c-format msgid "Error writing data via GDAL for row %d of <%s>" msgstr "" -#: ../lib/raster/put_row.c:497 +#: ../lib/raster/put_row.c:502 msgid "GDAL output doesn't support writing null rows separately" msgstr "" -#: ../lib/raster/put_row.c:500 +#: ../lib/raster/put_row.c:505 #, c-format msgid "No null file for <%s>" msgstr "" -#: ../lib/raster/put_row.c:529 ../lib/raster/put_row.c:536 +#: ../lib/raster/put_row.c:539 ../lib/raster/put_row.c:546 #, c-format msgid "Error writing compressed null data for row %d of <%s>: %s" msgstr "" -#: ../lib/raster/put_row.c:571 +#: ../lib/raster/put_row.c:581 #, c-format msgid "Error writing null row %d of <%s>" msgstr "" -#: ../lib/raster/put_row.c:575 +#: ../lib/raster/put_row.c:585 #, c-format msgid "Error writing null row %d of <%s>: %s" msgstr "" -#: ../lib/raster/put_row.c:700 +#: ../lib/raster/put_row.c:710 #, c-format msgid "put_raster_row: raster map <%s> not open for write - request ignored" msgstr "" -#: ../lib/raster/put_row.c:709 +#: ../lib/raster/put_row.c:719 msgid "put_raster_row: unopened file descriptor - request ignored" msgstr "" @@ -5525,34 +5611,83 @@ msgstr "" msgid "Unable to create <%s> metadata file for raster map <%s@%s>" msgstr "" -#: ../lib/raster/reclass.c:168 +#: ../lib/raster/reclass.c:163 +#, c-format +msgid "Error reading beginning of header file for <%s@%s>: %s" +msgstr "" + +#: ../lib/raster/reclass.c:181 #, c-format msgid "Too many reclass categories for <%s@%s>" msgstr "" -#: ../lib/raster/reclass.c:171 +#: ../lib/raster/reclass.c:185 +#, c-format +msgid "Illegal reclass format in header file for <%s@%s>: %s" +msgstr "" + +#: ../lib/raster/reclass.c:253 +#, c-format +msgid "File too short, reading line %d" +msgstr "" + +#: ../lib/raster/reclass.c:260 +#, c-format +msgid "Line too long: %s..." +msgstr "" + +#: ../lib/raster/reclass.c:266 +#, c-format +msgid "Format is not key:value: %s" +msgstr "" + +#: ../lib/raster/reclass.c:279 +#, c-format +msgid "Unknown key at line: %s" +msgstr "" + +#: ../lib/raster/reclass.c:290 +#, c-format +msgid "Mapset not read, only raster name: %s" +msgstr "" + +#: ../lib/raster/reclass.c:294 #, c-format -msgid "Illegal reclass format in header file for <%s@%s>" +msgid "Raster name not read, only mapset: %s" msgstr "" -#: ../lib/raster/reclass.c:273 +#: ../lib/raster/reclass.c:297 +msgid "Raster name and mapset not read" +msgstr "" + +#: ../lib/raster/reclass.c:328 msgid "Illegal reclass request" msgstr "" -#: ../lib/raster/reclass.c:278 +#: ../lib/raster/reclass.c:333 msgid "Illegal reclass type" msgstr "" -#: ../lib/raster/reclass.c:284 +#: ../lib/raster/reclass.c:339 #, c-format msgid "Unable to create header file for <%s@%s>" msgstr "" -#: ../lib/raster/reclass.c:332 +#: ../lib/raster/reclass.c:387 #, c-format msgid "Unable to create dependency file in <%s@%s>" msgstr "" +#: ../lib/raster/reclass.c:474 +#, c-format +msgid "Reading integer failed on line: %s (after reading min: %d)" +msgstr "" + +#: ../lib/raster/reclass.c:479 +#, c-format +msgid "First entry (min) not read yet and reading integer failed on line: %s" +msgstr "" + #: ../lib/raster/sample.c:68 msgid "Unknown interpolation type" msgstr "" @@ -5565,16 +5700,16 @@ msgstr "" msgid "Rast_set_window() called while window split" msgstr "" -#: ../lib/raster/set_window.c:133 +#: ../lib/raster/set_window.c:132 msgid "Rast_set_read_window(): projection/zone differs from that of currently open raster maps" msgstr "" -#: ../lib/raster/set_window.c:161 +#: ../lib/raster/set_window.c:160 #, c-format msgid "Input window changed while maps are open for read. Map name <%s>" msgstr "" -#: ../lib/raster/set_window.c:179 +#: ../lib/raster/set_window.c:178 #, c-format msgid "Output window changed while maps are open for write. Map name <%s>" msgstr "" @@ -5588,15 +5723,15 @@ msgstr "" msgid "A virtual raster can not contain itself" msgstr "" -#: ../lib/raster/window.c:32 +#: ../lib/raster/window.c:31 msgid "Internal error: Rast_get_window() called with split window. Use Rast_get_input_window() or Rast_get_output_window() instead." msgstr "" -#: ../lib/raster/window.c:93 +#: ../lib/raster/window.c:90 msgid "Internal error: Rast_window_rows() called with split window. Use Rast_input_window_rows() or Rast_output_window_rows() instead." msgstr "" -#: ../lib/raster/window.c:130 +#: ../lib/raster/window.c:127 msgid "Internal error: Rast_window_cols() called with split window. Use Rast_input_window_cols() or Rast_output_window_cols() instead." msgstr "" @@ -5657,88 +5792,88 @@ msgstr "" msgid "%s: illegal value spec" msgstr "" -#: ../lib/raster3d/open.c:21 +#: ../lib/raster3d/open.c:24 msgid "Rast3d_open_cell_old_no_header: error in Rast3d_mask_open_old" msgstr "" -#: ../lib/raster3d/open.c:28 +#: ../lib/raster3d/open.c:31 msgid "Rast3d_open_cell_old_no_header: error in Rast3d_malloc" msgstr "" -#: ../lib/raster3d/open.c:40 +#: ../lib/raster3d/open.c:43 msgid "Rast3d_open_cell_old_no_header: error in G_open_old" msgstr "" -#: ../lib/raster3d/open.c:98 +#: ../lib/raster3d/open.c:100 msgid "Rast3d_open_cell_old: error in Rast3d_open_cell_old_no_header" msgstr "" -#: ../lib/raster3d/open.c:103 +#: ../lib/raster3d/open.c:105 msgid "Rast3d_open_cell_old: can't rewind file" msgstr "" -#: ../lib/raster3d/open.c:112 +#: ../lib/raster3d/open.c:114 msgid "Rast3d_open_cell_old: error in Rast3d_read_header" msgstr "" -#: ../lib/raster3d/open.c:120 +#: ../lib/raster3d/open.c:122 msgid "Rast3d_open_cell_old: projection does not match window projection" msgstr "" -#: ../lib/raster3d/open.c:126 +#: ../lib/raster3d/open.c:128 msgid "Rast3d_open_cell_old: zone does not match window zone" msgstr "" -#: ../lib/raster3d/open.c:138 ../lib/raster3d/open.c:156 +#: ../lib/raster3d/open.c:140 ../lib/raster3d/open.c:158 msgid "Rast3d_open_cell_old: can't read header" msgstr "" -#: ../lib/raster3d/open.c:145 +#: ../lib/raster3d/open.c:147 msgid "Rast3d_open_cell_old: index does not fit into long" msgstr "" -#: ../lib/raster3d/open.c:149 +#: ../lib/raster3d/open.c:151 msgid "Rast3d_open_cell_old: error in Rast3d_malloc" msgstr "" -#: ../lib/raster3d/open.c:174 +#: ../lib/raster3d/open.c:176 msgid "Rast3d_open_cell_old: error in Rast3d_fill_header" msgstr "" -#: ../lib/raster3d/open.c:219 +#: ../lib/raster3d/open.c:220 msgid "Rast3d_open_cell_new: error in Rast3d_mask_open_old" msgstr "" -#: ../lib/raster3d/open.c:228 +#: ../lib/raster3d/open.c:229 msgid "Rast3d_open_cell_new: error in Rast3d_malloc" msgstr "" -#: ../lib/raster3d/open.c:233 +#: ../lib/raster3d/open.c:234 #, c-format msgid "map <%s> is not in the current mapset" msgstr "" -#: ../lib/raster3d/open.c:243 +#: ../lib/raster3d/open.c:244 msgid "Rast3d_open_cell_new: could not open file" msgstr "" -#: ../lib/raster3d/open.c:288 ../lib/raster3d/open.c:293 +#: ../lib/raster3d/open.c:289 ../lib/raster3d/open.c:294 msgid "Rast3d_open_cell_new: can't write header" msgstr "" -#: ../lib/raster3d/open.c:313 +#: ../lib/raster3d/open.c:320 msgid "Rast3d_open_cell_new: error in Rast3d_fill_header" msgstr "" -#: ../lib/raster3d/param.c:83 +#: ../lib/raster3d/param.c:82 msgid "Rast3d_get_standard3d_params: precision value invalid" msgstr "" -#: ../lib/raster3d/param.c:105 +#: ../lib/raster3d/param.c:104 msgid "Rast3d_get_standard3d_params: tile dimension value invalid" msgstr "" -#: ../lib/raster3d/param.c:129 +#: ../lib/raster3d/param.c:128 msgid "Window replacing the default" msgstr "" @@ -5752,7 +5887,7 @@ msgstr "" msgid "Error reading range file for [%s in %s]" msgstr "" -#: ../lib/raster3d/range.c:146 +#: ../lib/raster3d/range.c:144 #, c-format msgid "Unable to open range file for <%s>" msgstr "" @@ -5761,7 +5896,7 @@ msgstr "" msgid "raster3d" msgstr "" -#: ../lib/rowio/setup.c:60 ../lib/rowio/setup.c:66 +#: ../lib/rowio/setup.c:59 ../lib/rowio/setup.c:65 #: ../lib/rst/interp_float/interp2d.c:138 #: ../lib/rst/interp_float/interp2d.c:144 #: ../lib/rst/interp_float/segmen2d.c:194 @@ -5772,7 +5907,7 @@ msgstr "" #: ../lib/rst/interp_float/segmen2d_parallel.c:84 #: ../lib/rst/interp_float/segmen2d_parallel.c:91 #: ../lib/rst/interp_float/segmen2d_parallel.c:99 -#: ../lib/rst/interp_float/segmen2d_parallel.c:262 ../lib/segment/open.c:115 +#: ../lib/rst/interp_float/segmen2d_parallel.c:262 ../lib/segment/open.c:114 #: ../lib/vector/Vlib/line.c:50 ../lib/vector/Vlib/line.c:153 #: ../lib/vector/Vlib/map.c:48 ../lib/vector/diglib/struct_alloc.c:489 #: ../lib/vector/neta/articulation_point.c:60 ../lib/vector/neta/bridge.c:59 @@ -5780,10 +5915,10 @@ msgstr "" #: ../lib/vector/neta/components.c:72 ../lib/vector/neta/components.c:182 #: ../lib/vector/neta/flow.c:67 ../lib/vector/neta/flow.c:190 #: ../lib/vector/neta/path.c:259 ../lib/vector/neta/spanningtree.c:103 -#: ../lib/vector/neta/timetables.c:69 ../lib/vector/neta/timetables.c:170 -#: ../lib/vector/neta/timetables.c:180 ../lib/vector/neta/timetables.c:193 -#: ../lib/vector/neta/timetables.c:276 ../lib/vector/neta/timetables.c:410 -#: ../lib/vector/neta/timetables.c:421 +#: ../lib/vector/neta/timetables.c:69 ../lib/vector/neta/timetables.c:171 +#: ../lib/vector/neta/timetables.c:181 ../lib/vector/neta/timetables.c:194 +#: ../lib/vector/neta/timetables.c:277 ../lib/vector/neta/timetables.c:411 +#: ../lib/vector/neta/timetables.c:422 msgid "Out of memory" msgstr "" @@ -5953,47 +6088,47 @@ msgstr "" msgid "Cannot write files" msgstr "" -#: ../lib/segment/format.c:141 +#: ../lib/segment/format.c:139 msgid "Segment format: file size too large" msgstr "" -#: ../lib/segment/format.c:142 +#: ../lib/segment/format.c:140 msgid "Please recompile with Large File Support (LFS)" msgstr "" -#: ../lib/segment/open.c:54 +#: ../lib/segment/open.c:53 msgid "Using memory cache" msgstr "" -#: ../lib/segment/open.c:67 +#: ../lib/segment/open.c:66 msgid "Using disk cache" msgstr "" -#: ../lib/segment/open.c:70 +#: ../lib/segment/open.c:69 msgid "Segment file name is NULL" msgstr "" -#: ../lib/segment/open.c:75 +#: ../lib/segment/open.c:74 msgid "Segment file exists already" msgstr "" -#: ../lib/segment/open.c:83 +#: ../lib/segment/open.c:82 msgid "Unable to create segment file" msgstr "" -#: ../lib/segment/open.c:91 +#: ../lib/segment/open.c:90 msgid "Could not write segment file" msgstr "" -#: ../lib/segment/open.c:95 +#: ../lib/segment/open.c:94 msgid "Illegal segment configuration parameter(s)" msgstr "" -#: ../lib/segment/open.c:104 +#: ../lib/segment/open.c:103 msgid "Unable to re-open segment file" msgstr "" -#: ../lib/segment/open.c:111 +#: ../lib/segment/open.c:110 msgid "Could not read segment file" msgstr "" @@ -6035,7 +6170,7 @@ msgstr "" msgid "Attempt to read points of nonexistent isle" msgstr "" -#: ../lib/vector/Vlib/area.c:94 ../lib/vector/Vlib/area.c:496 +#: ../lib/vector/Vlib/area.c:94 ../lib/vector/Vlib/area.c:495 #: ../lib/vector/Vlib/build_pg.c:126 ../lib/vector/Vlib/build_sfa.c:727 #: ../lib/vector/Vlib/close.c:269 ../lib/vector/Vlib/close_pg.c:102 #: ../lib/vector/Vlib/close_pg.c:150 ../lib/vector/Vlib/copy.c:451 @@ -6064,21 +6199,21 @@ msgstr "" msgid "Attempt to read topo for dead isle (%d)" msgstr "" -#: ../lib/vector/Vlib/array.c:93 +#: ../lib/vector/Vlib/array.c:92 #, c-format msgid "%d errors in category string" msgstr "" -#: ../lib/vector/Vlib/array.c:137 ../lib/vector/Vlib/array.c:262 +#: ../lib/vector/Vlib/array.c:136 ../lib/vector/Vlib/array.c:261 msgid "Mixed area and other type requested for vector array" msgstr "" -#: ../lib/vector/Vlib/array.c:147 ../lib/vector/Vlib/array.c:171 -#: ../lib/vector/Vlib/array.c:303 ../lib/vector/Vlib/array.c:337 +#: ../lib/vector/Vlib/array.c:146 ../lib/vector/Vlib/array.c:170 +#: ../lib/vector/Vlib/array.c:302 ../lib/vector/Vlib/array.c:336 msgid "Not enough space in vector array" msgstr "" -#: ../lib/vector/Vlib/array.c:287 +#: ../lib/vector/Vlib/array.c:286 #, c-format msgid "Unable to select record from table <%s> (key %s, where %s)" msgstr "" @@ -6088,140 +6223,140 @@ msgstr "" msgid "Error reading ASCII file: (bad type) [%s]" msgstr "" -#: ../lib/vector/Vlib/ascii.c:124 +#: ../lib/vector/Vlib/ascii.c:125 #, c-format msgid "Error reading ASCII file: (unknown type) [%s]" msgstr "" -#: ../lib/vector/Vlib/ascii.c:144 +#: ../lib/vector/Vlib/ascii.c:146 msgid "End of ASCII file reached before end of coordinates" msgstr "" -#: ../lib/vector/Vlib/ascii.c:156 +#: ../lib/vector/Vlib/ascii.c:158 #, c-format msgid "Error reading ASCII file: (bad point) [%s]" msgstr "" -#: ../lib/vector/Vlib/ascii.c:162 +#: ../lib/vector/Vlib/ascii.c:165 #, c-format msgid "Unparsable longitude value: [%s]" msgstr "" -#: ../lib/vector/Vlib/ascii.c:167 +#: ../lib/vector/Vlib/ascii.c:171 #, c-format msgid "Unparsable latitude value: [%s]" msgstr "" -#: ../lib/vector/Vlib/ascii.c:201 +#: ../lib/vector/Vlib/ascii.c:206 msgid "End of ASCII file reached before end of categories" msgstr "" -#: ../lib/vector/Vlib/ascii.c:212 +#: ../lib/vector/Vlib/ascii.c:217 #, c-format msgid "Error reading categories: [%s]" msgstr "" -#: ../lib/vector/Vlib/ascii.c:225 +#: ../lib/vector/Vlib/ascii.c:231 msgid "Unable to copy points" msgstr "" -#: ../lib/vector/Vlib/ascii.c:238 +#: ../lib/vector/Vlib/ascii.c:246 #, c-format msgid "Vector map <%s> is 2D. %d 3D features (faces or kernels) skipped." msgstr "" -#: ../lib/vector/Vlib/ascii.c:271 +#: ../lib/vector/Vlib/ascii.c:282 #, c-format msgid "" "Unexpected data in vector header:\n" "[%s]" msgstr "" -#: ../lib/vector/Vlib/ascii.c:307 +#: ../lib/vector/Vlib/ascii.c:318 #, c-format msgid "Unknown keyword <%s> in vector head" msgstr "" -#: ../lib/vector/Vlib/ascii.c:468 +#: ../lib/vector/Vlib/ascii.c:481 #, c-format msgid "Column <%s> does not exist" msgstr "" -#: ../lib/vector/Vlib/ascii.c:470 +#: ../lib/vector/Vlib/ascii.c:483 msgid "Available columns:" msgstr "" -#: ../lib/vector/Vlib/ascii.c:476 +#: ../lib/vector/Vlib/ascii.c:489 msgid "Export cancelled" msgstr "" -#: ../lib/vector/Vlib/ascii.c:511 +#: ../lib/vector/Vlib/ascii.c:526 #, c-format msgid "Unknown type of column <%s>, export cancelled" msgstr "" -#: ../lib/vector/Vlib/ascii.c:544 +#: ../lib/vector/Vlib/ascii.c:562 #, c-format msgid "Unable to select record from table <%s> (key %s, column %s)" msgstr "" -#: ../lib/vector/Vlib/ascii.c:672 +#: ../lib/vector/Vlib/ascii.c:694 #, c-format msgid "Unknown feature type %d" msgstr "" -#: ../lib/vector/Vlib/ascii.c:712 +#: ../lib/vector/Vlib/ascii.c:734 #, c-format msgid "Feature has more categories. Only one category (%d) is exported." msgstr "" -#: ../lib/vector/Vlib/ascii.c:732 +#: ../lib/vector/Vlib/ascii.c:754 #, c-format msgid "Cannot select attributes for cat = %d" msgstr "" -#: ../lib/vector/Vlib/ascii.c:737 +#: ../lib/vector/Vlib/ascii.c:759 msgid "Unable to fetch data from table" msgstr "" -#: ../lib/vector/Vlib/ascii.c:771 ../lib/vector/Vlib/net_build.c:214 -#: ../lib/vector/Vlib/net_build.c:508 ../lib/vector/Vlib/net_build.c:526 -#: ../lib/vector/Vlib/net_build.c:805 ../lib/vector/Vlib/net_build.c:823 -#: ../lib/vector/Vlib/net_build.c:981 +#: ../lib/vector/Vlib/ascii.c:793 ../lib/vector/Vlib/net_build.c:213 +#: ../lib/vector/Vlib/net_build.c:507 ../lib/vector/Vlib/net_build.c:525 +#: ../lib/vector/Vlib/net_build.c:804 ../lib/vector/Vlib/net_build.c:822 +#: ../lib/vector/Vlib/net_build.c:980 #, c-format msgid "Column <%s> not found in table <%s>" msgstr "" -#: ../lib/vector/Vlib/ascii.c:775 +#: ../lib/vector/Vlib/ascii.c:797 #, c-format msgid "Column <%s>: unsupported data type" msgstr "" -#: ../lib/vector/Vlib/ascii.c:862 +#: ../lib/vector/Vlib/ascii.c:884 msgid "Unknown format" msgstr "" -#: ../lib/vector/Vlib/ascii.c:872 +#: ../lib/vector/Vlib/ascii.c:894 msgid "Topology not available, unable to process areas" msgstr "" -#: ../lib/vector/Vlib/ascii.c:885 +#: ../lib/vector/Vlib/ascii.c:907 #, c-format msgid "Unable to get boundary of area id %d" msgstr "" -#: ../lib/vector/Vlib/ascii.c:899 +#: ../lib/vector/Vlib/ascii.c:921 #, c-format msgid "Unable to get boundary of isle id %d (area id %d)" msgstr "" -#: ../lib/vector/Vlib/ascii.c:916 +#: ../lib/vector/Vlib/ascii.c:938 #, c-format msgid "%d features without category skipped. To export also features without category use '%s=-1'." msgstr "" -#: ../lib/vector/Vlib/box.c:244 ../lib/vector/Vlib/read.c:181 -#: ../lib/vector/Vlib/read_nat.c:144 ../lib/vector/Vlib/read_pg.c:341 +#: ../lib/vector/Vlib/box.c:244 ../lib/vector/Vlib/read.c:184 +#: ../lib/vector/Vlib/read_nat.c:145 ../lib/vector/Vlib/read_pg.c:341 #: ../lib/vector/Vlib/read_sfa.c:50 ../lib/vector/Vlib/write_nat.c:188 #: ../lib/vector/Vlib/write_nat.c:304 ../lib/vector/Vlib/write_nat.c:672 #: ../lib/vector/Vlib/write_pg.c:247 ../lib/vector/Vlib/write_pg.c:396 @@ -6260,7 +6395,7 @@ msgstr "" msgid "Unable to read vector map" msgstr "" -#: ../lib/vector/Vlib/break_lines.c:578 +#: ../lib/vector/Vlib/break_lines.c:577 #, c-format msgid "Intersections: %d" msgstr "" @@ -6275,28 +6410,28 @@ msgid "Failed to create xpnt temporary file: %s" msgstr "" #: ../lib/vector/Vlib/break_polygons.c:164 -#: ../lib/vector/Vlib/break_polygons.c:452 +#: ../lib/vector/Vlib/break_polygons.c:484 msgid "Breaking polygons (pass 1: select break points)..." msgstr "" -#: ../lib/vector/Vlib/break_polygons.c:238 -#: ../lib/vector/Vlib/break_polygons.c:346 +#: ../lib/vector/Vlib/break_polygons.c:244 +#: ../lib/vector/Vlib/break_polygons.c:373 #, c-format msgid "File reading error in %s() %d:%s" msgstr "" -#: ../lib/vector/Vlib/break_polygons.c:300 -#: ../lib/vector/Vlib/break_polygons.c:564 +#: ../lib/vector/Vlib/break_polygons.c:322 +#: ../lib/vector/Vlib/break_polygons.c:596 msgid "Breaking polygons (pass 2: break at selected points)..." msgstr "" -#: ../lib/vector/Vlib/break_polygons.c:418 -#: ../lib/vector/Vlib/break_polygons.c:664 +#: ../lib/vector/Vlib/break_polygons.c:450 +#: ../lib/vector/Vlib/break_polygons.c:696 #, c-format msgid "Breaks: %d" msgstr "" -#: ../lib/vector/Vlib/break_polygons.c:603 +#: ../lib/vector/Vlib/break_polygons.c:635 msgid "Point not in search tree!" msgstr "" @@ -6310,36 +6445,36 @@ msgstr "" msgid "Removed bridges: %d" msgstr "" -#: ../lib/vector/Vlib/buffer2.c:356 +#: ../lib/vector/Vlib/buffer2.c:361 msgid "Line is not looped" msgstr "" -#: ../lib/vector/Vlib/buffer2.c:438 +#: ../lib/vector/Vlib/buffer2.c:443 #, c-format msgid "Unexpected result of line_intersection() res = %d" msgstr "" -#: ../lib/vector/Vlib/buffer2.c:587 +#: ../lib/vector/Vlib/buffer2.c:592 msgid "Next edge was visited (right) but it is not the first one !!! breaking loop" msgstr "" -#: ../lib/vector/Vlib/buffer2.c:598 +#: ../lib/vector/Vlib/buffer2.c:603 msgid "Next edge was visited (left) but it is not the first one !!! breaking loop" msgstr "" -#: ../lib/vector/Vlib/buffer2.c:646 +#: ../lib/vector/Vlib/buffer2.c:651 msgid "side != 0 feature not implemented" msgstr "" -#: ../lib/vector/Vlib/buffer2.c:892 ../lib/vector/Vlib/buffer2.c:940 +#: ../lib/vector/Vlib/buffer2.c:897 ../lib/vector/Vlib/buffer2.c:945 msgid "zero area size" msgstr "" -#: ../lib/vector/Vlib/buffer2.c:898 ../lib/vector/Vlib/buffer2.c:946 +#: ../lib/vector/Vlib/buffer2.c:903 ../lib/vector/Vlib/buffer2.c:951 msgid "Line was not closed" msgstr "" -#: ../lib/vector/Vlib/buffer2.c:912 ../lib/vector/Vlib/buffer2.c:965 +#: ../lib/vector/Vlib/buffer2.c:917 ../lib/vector/Vlib/buffer2.c:970 msgid "Vect_get_point_in_poly() failed" msgstr "" @@ -6405,7 +6540,7 @@ msgid "Number of redundant holes: %d" msgstr "" #: ../lib/vector/Vlib/build.c:884 ../lib/vector/Vlib/open.c:383 -#: ../lib/vector/Vlib/open.c:905 +#: ../lib/vector/Vlib/open.c:904 #, c-format msgid "Unable to open spatial index file for vector map <%s>" msgstr "" @@ -6549,7 +6684,7 @@ msgstr[0] "" #: ../lib/vector/Vlib/build_sfa.c:668 #, c-format msgid "One vertex registered" -msgid_plural "% vertices registered" +msgid_plural "%d vertices registered" msgstr[0] "" #: ../lib/vector/Vlib/build_nat.c:137 @@ -6641,7 +6776,7 @@ msgstr "" msgid "Updating TopoGeometry data..." msgstr "" -#: ../lib/vector/Vlib/build_pg.c:433 ../lib/vector/Vlib/open.c:1393 +#: ../lib/vector/Vlib/build_pg.c:433 ../lib/vector/Vlib/open.c:1392 #: ../lib/vector/Vlib/write_pg.c:630 ../lib/vector/Vlib/write_pg.c:898 msgid "Unable to open PG file" msgstr "" @@ -6738,32 +6873,32 @@ msgstr "" msgid "Unable to convert category string '%s' (from '%s') to category range" msgstr "" -#: ../lib/vector/Vlib/cats.c:573 ../lib/vector/Vlib/cats.c:677 +#: ../lib/vector/Vlib/cats.c:575 ../lib/vector/Vlib/cats.c:679 msgid "Layer number must be > 0 for category constraints" msgstr "" -#: ../lib/vector/Vlib/cats.c:586 +#: ../lib/vector/Vlib/cats.c:588 #, c-format msgid "'%s' and '%s' parameters were supplied, cats will be ignored" msgstr "" -#: ../lib/vector/Vlib/cats.c:596 +#: ../lib/vector/Vlib/cats.c:598 #, c-format msgid "Loading categories from table <%s>..." msgstr "" -#: ../lib/vector/Vlib/cats.c:609 +#: ../lib/vector/Vlib/cats.c:611 #, c-format msgid "One category loaded" msgid_plural "%d categories loaded" msgstr[0] "" -#: ../lib/vector/Vlib/cats.c:631 +#: ../lib/vector/Vlib/cats.c:633 #, c-format msgid "No categories selected with '%s' option" msgstr "" -#: ../lib/vector/Vlib/cats.c:641 +#: ../lib/vector/Vlib/cats.c:643 #, c-format msgid "%d errors in '%s' option" msgstr "" @@ -7116,8 +7251,8 @@ msgstr "" msgid "Unable to read feature id %d" msgstr "" -#: ../lib/vector/Vlib/graph.c:106 ../lib/vector/Vlib/net_build.c:670 -#: ../lib/vector/Vlib/net_build.c:1071 ../lib/vector/neta/flow.c:328 +#: ../lib/vector/Vlib/graph.c:106 ../lib/vector/Vlib/net_build.c:669 +#: ../lib/vector/Vlib/net_build.c:1070 ../lib/vector/neta/flow.c:328 msgid "GngFlatten error" msgstr "" @@ -7130,22 +7265,22 @@ msgstr "" msgid "dglShortestPath error: %s" msgstr "" -#: ../lib/vector/Vlib/header.c:87 +#: ../lib/vector/Vlib/header.c:88 #, c-format msgid "Unable to create header file for vector map <%s>" msgstr "" -#: ../lib/vector/Vlib/header.c:131 +#: ../lib/vector/Vlib/header.c:134 #, c-format msgid "Unable to open header file of vector <%s>" msgstr "" -#: ../lib/vector/Vlib/header.c:139 +#: ../lib/vector/Vlib/header.c:142 #, c-format msgid "Corrupted row in head: %s" msgstr "" -#: ../lib/vector/Vlib/header.c:177 +#: ../lib/vector/Vlib/header.c:180 #, c-format msgid "Unknown keyword '%s' in vector head" msgstr "" @@ -7162,47 +7297,47 @@ msgstr "" msgid "Vect_segment_intersection() ERROR (collinear non vertical segments)" msgstr "" -#: ../lib/vector/Vlib/intersect.c:1256 ../lib/vector/Vlib/intersect.c:1262 -#: ../lib/vector/Vlib/intersect.c:1264 ../lib/vector/Vlib/intersect.c:1309 -#: ../lib/vector/Vlib/intersect.c:1318 ../lib/vector/Vlib/intersect.c:1340 -#: ../lib/vector/Vlib/intersect.c:1357 ../lib/vector/Vlib/intersect2.c:1245 -#: ../lib/vector/Vlib/intersect2.c:1251 ../lib/vector/Vlib/intersect2.c:1253 -#: ../lib/vector/Vlib/intersect2.c:1292 ../lib/vector/Vlib/intersect2.c:1300 -#: ../lib/vector/Vlib/intersect2.c:1321 ../lib/vector/Vlib/intersect2.c:1337 +#: ../lib/vector/Vlib/intersect.c:1258 ../lib/vector/Vlib/intersect.c:1264 +#: ../lib/vector/Vlib/intersect.c:1266 ../lib/vector/Vlib/intersect.c:1311 +#: ../lib/vector/Vlib/intersect.c:1320 ../lib/vector/Vlib/intersect.c:1342 +#: ../lib/vector/Vlib/intersect.c:1359 ../lib/vector/Vlib/intersect2.c:1247 +#: ../lib/vector/Vlib/intersect2.c:1253 ../lib/vector/Vlib/intersect2.c:1255 +#: ../lib/vector/Vlib/intersect2.c:1294 ../lib/vector/Vlib/intersect2.c:1302 +#: ../lib/vector/Vlib/intersect2.c:1323 ../lib/vector/Vlib/intersect2.c:1339 msgid "Error while adding point to array. Out of memory" msgstr "" -#: ../lib/vector/Vlib/legal_vname.c:45 +#: ../lib/vector/Vlib/legal_vname.c:44 #, c-format msgid "Illegal vector map name <%s>. May not contain '.' or 'NULL'." msgstr "" -#: ../lib/vector/Vlib/legal_vname.c:52 +#: ../lib/vector/Vlib/legal_vname.c:51 #, c-format msgid "Illegal vector map name <%s>. Must start with a letter." msgstr "" -#: ../lib/vector/Vlib/legal_vname.c:61 +#: ../lib/vector/Vlib/legal_vname.c:60 #, c-format msgid "Illegal vector map name <%s>. Character '%c' not allowed." msgstr "" -#: ../lib/vector/Vlib/legal_vname.c:68 +#: ../lib/vector/Vlib/legal_vname.c:67 #, c-format msgid "Illegal vector map name <%s>. SQL keyword cannot be used as vector map name." msgstr "" -#: ../lib/vector/Vlib/legal_vname.c:104 ../lib/vector/Vlib/legal_vname.c:109 +#: ../lib/vector/Vlib/legal_vname.c:102 ../lib/vector/Vlib/legal_vname.c:107 #, c-format msgid "Output vector map name <%s> is not in the current mapset (%s)" msgstr "" -#: ../lib/vector/Vlib/legal_vname.c:123 ../lib/vector/Vlib/legal_vname.c:127 +#: ../lib/vector/Vlib/legal_vname.c:121 ../lib/vector/Vlib/legal_vname.c:125 #, c-format msgid "Output vector map name <%s> is not SQL compliant" msgstr "" -#: ../lib/vector/Vlib/legal_vname.c:165 ../lib/vector/Vlib/legal_vname.c:169 +#: ../lib/vector/Vlib/legal_vname.c:163 ../lib/vector/Vlib/legal_vname.c:167 #, c-format msgid "Output vector map <%s> is used as input" msgstr "" @@ -7225,22 +7360,22 @@ msgstr "" msgid "Invalid node id: %d" msgstr "" -#: ../lib/vector/Vlib/level_two.c:312 +#: ../lib/vector/Vlib/level_two.c:313 #, c-format msgid "Nodes not available for line %d" msgstr "" -#: ../lib/vector/Vlib/level_two.c:353 +#: ../lib/vector/Vlib/level_two.c:354 #, c-format msgid "Areas not available for line %d" msgstr "" -#: ../lib/vector/Vlib/level_two.c:358 +#: ../lib/vector/Vlib/level_two.c:359 #, c-format msgid "Line %d is not a boundary" msgstr "" -#: ../lib/vector/Vlib/level_two.c:440 +#: ../lib/vector/Vlib/level_two.c:441 #, c-format msgid "Topology info not available for feature %d" msgstr "" @@ -7264,13 +7399,13 @@ msgid "Unable to find vector map <%s> in <%s>" msgstr "" #: ../lib/vector/Vlib/map.c:156 ../lib/vector/Vlib/map.c:249 -#: ../lib/vector/Vlib/open.c:852 +#: ../lib/vector/Vlib/open.c:851 #, c-format msgid "Vector map <%s> already exists and will be overwritten" msgstr "" -#: ../lib/vector/Vlib/map.c:160 ../lib/vector/Vlib/open.c:843 -#: ../lib/vector/Vlib/open.c:857 +#: ../lib/vector/Vlib/map.c:160 ../lib/vector/Vlib/open.c:842 +#: ../lib/vector/Vlib/open.c:856 #, c-format msgid "Unable to delete vector map <%s>" msgstr "" @@ -7320,8 +7455,8 @@ msgstr "" msgid "Unable to open directory '%s'" msgstr "" -#: ../lib/vector/Vlib/map.c:493 ../lib/vector/Vlib/open.c:1501 -#: ../lib/vector/Vlib/open.c:1507 +#: ../lib/vector/Vlib/map.c:493 ../lib/vector/Vlib/open.c:1500 +#: ../lib/vector/Vlib/open.c:1506 #, c-format msgid "Filepath '%s/%s' exceeds max length" msgstr "" @@ -7341,102 +7476,102 @@ msgstr "" msgid "Unable to remove directory '%s': %s" msgstr "" -#: ../lib/vector/Vlib/merge_lines.c:245 +#: ../lib/vector/Vlib/merge_lines.c:244 #, c-format msgid "%d lines merged" msgstr "" -#: ../lib/vector/Vlib/merge_lines.c:246 +#: ../lib/vector/Vlib/merge_lines.c:245 #, c-format msgid "%d new lines" msgstr "" -#: ../lib/vector/Vlib/merge_lines.c:249 +#: ../lib/vector/Vlib/merge_lines.c:248 #, c-format msgid "%d boundaries merged" msgstr "" -#: ../lib/vector/Vlib/merge_lines.c:250 +#: ../lib/vector/Vlib/merge_lines.c:249 #, c-format msgid "%d new boundaries" msgstr "" -#: ../lib/vector/Vlib/merge_lines.c:253 +#: ../lib/vector/Vlib/merge_lines.c:252 #, c-format msgid "%d lines and boundaries merged" msgstr "" -#: ../lib/vector/Vlib/merge_lines.c:254 +#: ../lib/vector/Vlib/merge_lines.c:253 #, c-format msgid "%d new lines and boundaries" msgstr "" -#: ../lib/vector/Vlib/net_analyze.c:297 ../lib/vector/Vlib/net_analyze.c:338 +#: ../lib/vector/Vlib/net_analyze.c:296 ../lib/vector/Vlib/net_analyze.c:337 #, c-format msgid "Unable to find point with defined unique category for node <%d>." msgstr "" -#: ../lib/vector/Vlib/net_analyze.c:301 ../lib/vector/Vlib/net_analyze.c:342 +#: ../lib/vector/Vlib/net_analyze.c:300 ../lib/vector/Vlib/net_analyze.c:341 #, c-format msgid "" "There exists more than one point on node <%d> with unique category in field <%d>.\n" "The unique category layer may not be valid." msgstr "" -#: ../lib/vector/Vlib/net_analyze.c:454 +#: ../lib/vector/Vlib/net_analyze.c:453 msgid "Wrong line direction in Vect_net_get_line_cost()" msgstr "" -#: ../lib/vector/Vlib/net_build.c:97 ../lib/vector/Vlib/net_build.c:732 +#: ../lib/vector/Vlib/net_build.c:96 ../lib/vector/Vlib/net_build.c:731 msgid "Building graph..." msgstr "" -#: ../lib/vector/Vlib/net_build.c:137 ../lib/vector/Vlib/net_build.c:778 +#: ../lib/vector/Vlib/net_build.c:136 ../lib/vector/Vlib/net_build.c:777 msgid "Unable to build network graph" msgstr "" -#: ../lib/vector/Vlib/net_build.c:143 ../lib/vector/Vlib/net_build.c:784 +#: ../lib/vector/Vlib/net_build.c:142 ../lib/vector/Vlib/net_build.c:783 msgid "Forward costs column not specified" msgstr "" -#: ../lib/vector/Vlib/net_build.c:150 +#: ../lib/vector/Vlib/net_build.c:149 msgid "Turntable field < 1" msgstr "" -#: ../lib/vector/Vlib/net_build.c:166 +#: ../lib/vector/Vlib/net_build.c:165 #, c-format msgid "Turntable column <%s> not found in table <%s>" msgstr "" -#: ../lib/vector/Vlib/net_build.c:179 ../lib/vector/Vlib/net_build.c:222 -#: ../lib/vector/Vlib/net_build.c:516 ../lib/vector/Vlib/net_build.c:533 -#: ../lib/vector/Vlib/net_build.c:813 ../lib/vector/Vlib/net_build.c:830 -#: ../lib/vector/Vlib/net_build.c:989 +#: ../lib/vector/Vlib/net_build.c:178 ../lib/vector/Vlib/net_build.c:221 +#: ../lib/vector/Vlib/net_build.c:515 ../lib/vector/Vlib/net_build.c:532 +#: ../lib/vector/Vlib/net_build.c:812 ../lib/vector/Vlib/net_build.c:829 +#: ../lib/vector/Vlib/net_build.c:988 #, c-format msgid "Data type of column <%s> not supported (must be numeric)" msgstr "" -#: ../lib/vector/Vlib/net_build.c:200 ../lib/vector/Vlib/net_build.c:967 +#: ../lib/vector/Vlib/net_build.c:199 ../lib/vector/Vlib/net_build.c:966 msgid "Setting node costs..." msgstr "" -#: ../lib/vector/Vlib/net_build.c:277 ../lib/vector/Vlib/net_build.c:1032 +#: ../lib/vector/Vlib/net_build.c:276 ../lib/vector/Vlib/net_build.c:1031 #, c-format msgid "Database record for node %d (cat = %d) not found (cost set to 0)" msgstr "" -#: ../lib/vector/Vlib/net_build.c:332 ../lib/vector/Vlib/net_build.c:352 +#: ../lib/vector/Vlib/net_build.c:331 ../lib/vector/Vlib/net_build.c:351 msgid "Cannot add network arc for virtual node connection." msgstr "" -#: ../lib/vector/Vlib/net_build.c:364 +#: ../lib/vector/Vlib/net_build.c:363 #, c-format msgid "" "There exists more than one point of node <%d> with unique category field <%d>.\n" "The unique categories layer is not valid therefore you will probably get incorrect results." msgstr "" -#: ../lib/vector/Vlib/net_build.c:397 +#: ../lib/vector/Vlib/net_build.c:396 #, c-format msgid "" "Unable to find point representing intersection <%d> in unique categories field <%d>.\n" @@ -7444,7 +7579,7 @@ msgid "" "The unique categories layer is not valid therefore you will probably get incorrect results." msgstr "" -#: ../lib/vector/Vlib/net_build.c:412 +#: ../lib/vector/Vlib/net_build.c:411 #, c-format msgid "" "Unable to find node for point representing intersection <%d> in unique categories field <%d>.\n" @@ -7452,59 +7587,59 @@ msgid "" "The unique categories layer is not valid therefore you will probably get incorrect results." msgstr "" -#: ../lib/vector/Vlib/net_build.c:439 +#: ../lib/vector/Vlib/net_build.c:438 #, c-format msgid "Database record for turn with cat = %d is not found. (The turn was skipped." msgstr "" -#: ../lib/vector/Vlib/net_build.c:472 +#: ../lib/vector/Vlib/net_build.c:471 msgid "Cannot add network arc representing turn." msgstr "" -#: ../lib/vector/Vlib/net_build.c:494 ../lib/vector/Vlib/net_build.c:791 +#: ../lib/vector/Vlib/net_build.c:493 ../lib/vector/Vlib/net_build.c:790 msgid "Arc field < 1" msgstr "" -#: ../lib/vector/Vlib/net_build.c:547 ../lib/vector/Vlib/net_build.c:844 +#: ../lib/vector/Vlib/net_build.c:546 ../lib/vector/Vlib/net_build.c:843 msgid "Registering arcs..." msgstr "" -#: ../lib/vector/Vlib/net_build.c:565 +#: ../lib/vector/Vlib/net_build.c:564 #, c-format msgid "" "Line with id <%d> has more unique categories defined in field <%d>.\n" "The unique categories layer is not valid therefore you will probably get incorrect results." msgstr "" -#: ../lib/vector/Vlib/net_build.c:588 +#: ../lib/vector/Vlib/net_build.c:587 #, c-format msgid "Database record for line %d (cat = %d, forward/both direction(s)) not found (cost was set to 0)" msgstr "" -#: ../lib/vector/Vlib/net_build.c:604 +#: ../lib/vector/Vlib/net_build.c:603 #, c-format msgid "Database record for line %d (cat = %d, backward direction) not found(cost was set to 0)" msgstr "" -#: ../lib/vector/Vlib/net_build.c:667 ../lib/vector/Vlib/net_build.c:1068 +#: ../lib/vector/Vlib/net_build.c:666 ../lib/vector/Vlib/net_build.c:1067 msgid "Flattening the graph..." msgstr "" -#: ../lib/vector/Vlib/net_build.c:676 ../lib/vector/Vlib/net_build.c:1077 +#: ../lib/vector/Vlib/net_build.c:675 ../lib/vector/Vlib/net_build.c:1076 msgid "Graph was built" msgstr "" -#: ../lib/vector/Vlib/net_build.c:873 +#: ../lib/vector/Vlib/net_build.c:872 #, c-format msgid "Database record for line %d (cat = %d, forward/both direction(s)) not found (forward/both direction(s) of line skipped)" msgstr "" -#: ../lib/vector/Vlib/net_build.c:890 +#: ../lib/vector/Vlib/net_build.c:889 #, c-format msgid "Database record for line %d (cat = %d, backward direction) not found(direction of line skipped)" msgstr "" -#: ../lib/vector/Vlib/net_build.c:937 +#: ../lib/vector/Vlib/net_build.c:936 msgid "Cannot add network arc" msgstr "" @@ -7556,66 +7691,66 @@ msgstr "" msgid "Unable to open history file for vector map <%s>" msgstr "" -#: ../lib/vector/Vlib/open.c:805 +#: ../lib/vector/Vlib/open.c:804 #, c-format msgid "Unable to create vector map: <%s> is not in the current mapset (%s)" msgstr "" -#: ../lib/vector/Vlib/open.c:816 +#: ../lib/vector/Vlib/open.c:815 #, c-format msgid "Unable to create vector map: <%s> is not SQL compliant" msgstr "" -#: ../lib/vector/Vlib/open.c:877 +#: ../lib/vector/Vlib/open.c:876 #, c-format msgid "Unable to open history file of vector map <%s>" msgstr "" -#: ../lib/vector/Vlib/open.c:921 +#: ../lib/vector/Vlib/open.c:920 #, c-format msgid "Using OGR/%s format" msgstr "" -#: ../lib/vector/Vlib/open.c:925 +#: ../lib/vector/Vlib/open.c:924 msgid "Using PostGIS Topology format" msgstr "" -#: ../lib/vector/Vlib/open.c:927 +#: ../lib/vector/Vlib/open.c:926 msgid "Using PostGIS format" msgstr "" -#: ../lib/vector/Vlib/open.c:930 +#: ../lib/vector/Vlib/open.c:929 msgid "Using native format" msgstr "" -#: ../lib/vector/Vlib/open.c:1020 +#: ../lib/vector/Vlib/open.c:1019 #, c-format msgid "Unable to stat file <%s>" msgstr "" -#: ../lib/vector/Vlib/open.c:1085 +#: ../lib/vector/Vlib/open.c:1084 #, c-format msgid "unknown %d (update Vect_maptype_info)" msgstr "" -#: ../lib/vector/Vlib/open.c:1174 +#: ../lib/vector/Vlib/open.c:1173 msgid "Size of 'coor' file differs from value saved in topology file" msgstr "" -#: ../lib/vector/Vlib/open.c:1185 ../lib/vector/Vlib/open.c:1285 +#: ../lib/vector/Vlib/open.c:1184 ../lib/vector/Vlib/open.c:1284 #, c-format msgid "Please rebuild topology for vector map <%s@%s>" msgstr "" -#: ../lib/vector/Vlib/open.c:1274 +#: ../lib/vector/Vlib/open.c:1273 msgid "Size of 'coor' file differs from value saved in sidx file" msgstr "" -#: ../lib/vector/Vlib/open.c:1354 +#: ../lib/vector/Vlib/open.c:1353 msgid "Unable to open OGR file" msgstr "" -#: ../lib/vector/Vlib/open.c:1381 +#: ../lib/vector/Vlib/open.c:1380 msgid "OGR output also detected, using OGR" msgstr "" @@ -7854,32 +7989,32 @@ msgid "for this format/level not supported" msgstr "" #: ../lib/vector/Vlib/read.c:102 ../lib/vector/Vlib/read.c:138 -#: ../lib/vector/Vlib/read.c:176 +#: ../lib/vector/Vlib/read.c:179 msgid "Vector map is not open for reading" msgstr "" -#: ../lib/vector/Vlib/read.c:144 ../lib/vector/Vlib/read.c:188 +#: ../lib/vector/Vlib/read.c:145 ../lib/vector/Vlib/read.c:192 #, c-format msgid "Unable to read feature %d from vector map <%s>" msgstr "" -#: ../lib/vector/Vlib/read.c:208 +#: ../lib/vector/Vlib/read.c:214 msgid "Line index is out of range" msgstr "" -#: ../lib/vector/Vlib/read.c:232 +#: ../lib/vector/Vlib/read.c:238 msgid "Node index is out of range" msgstr "" -#: ../lib/vector/Vlib/read.c:256 +#: ../lib/vector/Vlib/read.c:262 msgid "Area index is out of range" msgstr "" -#: ../lib/vector/Vlib/read.c:280 +#: ../lib/vector/Vlib/read.c:286 msgid "Isle index is out of range" msgstr "" -#: ../lib/vector/Vlib/read_nat.c:150 ../lib/vector/Vlib/read_pg.c:347 +#: ../lib/vector/Vlib/read_nat.c:151 ../lib/vector/Vlib/read_pg.c:347 #: ../lib/vector/Vlib/read_sfa.c:56 ../lib/vector/Vlib/write_nat.c:311 #: ../lib/vector/Vlib/write_nat.c:678 ../lib/vector/Vlib/write_pg.c:254 #: ../lib/vector/Vlib/write_pg.c:419 ../lib/vector/Vlib/write_pg.c:2711 @@ -8020,40 +8155,40 @@ msgstr "" msgid "GRASS is not compiled with OGR/PostgreSQL support" msgstr "" -#: ../lib/vector/Vlib/remove_areas.c:106 ../lib/vector/Vlib/remove_areas.c:269 +#: ../lib/vector/Vlib/remove_areas.c:105 ../lib/vector/Vlib/remove_areas.c:268 msgid "Area is composed of dead boundary" msgstr "" -#: ../lib/vector/Vlib/remove_areas.c:194 ../lib/vector/Vlib/remove_areas.c:621 +#: ../lib/vector/Vlib/remove_areas.c:193 ../lib/vector/Vlib/remove_areas.c:620 #, c-format msgid "%d areas of total size %g removed" msgstr "" -#: ../lib/vector/Vlib/remove_areas.c:398 +#: ../lib/vector/Vlib/remove_areas.c:397 msgid "Could not delete line from coor" msgstr "" -#: ../lib/vector/Vlib/remove_areas.c:466 +#: ../lib/vector/Vlib/remove_areas.c:465 msgid "dissolve_neighbour > 0, failed to build new area" msgstr "" -#: ../lib/vector/Vlib/remove_areas.c:473 ../lib/vector/Vlib/remove_areas.c:515 +#: ../lib/vector/Vlib/remove_areas.c:472 ../lib/vector/Vlib/remove_areas.c:514 msgid "Dissolve with neighbour area: corrupt topology" msgstr "" -#: ../lib/vector/Vlib/remove_areas.c:510 +#: ../lib/vector/Vlib/remove_areas.c:509 msgid "Failed to build new area" msgstr "" -#: ../lib/vector/Vlib/remove_areas.c:559 ../lib/vector/Vlib/remove_areas.c:588 +#: ../lib/vector/Vlib/remove_areas.c:558 ../lib/vector/Vlib/remove_areas.c:587 msgid "Failed to build new isle" msgstr "" -#: ../lib/vector/Vlib/remove_areas.c:565 ../lib/vector/Vlib/remove_areas.c:594 +#: ../lib/vector/Vlib/remove_areas.c:564 ../lib/vector/Vlib/remove_areas.c:593 msgid "Dissolve with outer isle: corrupt topology" msgstr "" -#: ../lib/vector/Vlib/remove_areas.c:599 +#: ../lib/vector/Vlib/remove_areas.c:598 msgid "Area merging failed" msgstr "" @@ -8067,7 +8202,7 @@ msgstr "" msgid "Unable to delete item %d from spatial index" msgstr "" -#: ../lib/vector/Vlib/simple_features.c:228 +#: ../lib/vector/Vlib/simple_features.c:226 #, c-format msgid "Unknown Simple Features type (%d)" msgstr "" @@ -8082,34 +8217,44 @@ msgstr "" msgid "Unable to get number of simple features" msgstr "" -#: ../lib/vector/Vlib/simple_features.c:349 +#: ../lib/vector/Vlib/simple_features.c:350 #, c-format msgid "Unable to report simple features for vector map <%s>" msgstr "" -#: ../lib/vector/Vlib/snap.c:221 ../lib/vector/Vlib/snap.c:580 +#: ../lib/vector/Vlib/snap.c:224 ../lib/vector/Vlib/snap.c:590 msgid "Snap vertices Pass 1: select points" msgstr "" -#: ../lib/vector/Vlib/snap.c:264 ../lib/vector/Vlib/snap.c:632 +#: ../lib/vector/Vlib/snap.c:267 ../lib/vector/Vlib/snap.c:642 msgid "Snap vertices Pass 2: assign anchor vertices" msgstr "" -#: ../lib/vector/Vlib/snap.c:332 ../lib/vector/Vlib/snap.c:700 +#: ../lib/vector/Vlib/snap.c:335 ../lib/vector/Vlib/snap.c:710 msgid "Snap vertices Pass 3: snap to assigned points" msgstr "" -#: ../lib/vector/Vlib/snap.c:521 ../lib/vector/Vlib/snap.c:882 +#: ../lib/vector/Vlib/snap.c:524 ../lib/vector/Vlib/snap.c:892 #, c-format msgid "Snapped vertices: %d" msgstr "" -#: ../lib/vector/Vlib/snap.c:522 ../lib/vector/Vlib/snap.c:883 +#: ../lib/vector/Vlib/snap.c:525 ../lib/vector/Vlib/snap.c:893 #, c-format msgid "New vertices: %d" msgstr "" -#: ../lib/vector/Vlib/snap.c:909 +#: ../lib/vector/Vlib/snap.c:571 +#, c-format +msgid "Unable to create temporary file <%s>: %s" +msgstr "" + +#: ../lib/vector/Vlib/snap.c:575 +#, c-format +msgid "Unable to remove temporary file <%s>: %s" +msgstr "" + +#: ../lib/vector/Vlib/snap.c:919 msgid "Reading features..." msgstr "" @@ -8559,7 +8704,7 @@ msgstr "" msgid "Attempt to delete isle %d info from dead area %d" msgstr "" -#: ../lib/vector/diglib/plus_line.c:260 ../lib/vector/diglib/plus_line.c:301 +#: ../lib/vector/diglib/plus_line.c:261 ../lib/vector/diglib/plus_line.c:302 #, c-format msgid "Attempt to delete not registered line %d from node %d" msgstr "" @@ -8569,22 +8714,22 @@ msgstr "" msgid "Attempt to read line angle for the line which is not connected to the node: node %d, line %d" msgstr "" -#: ../lib/vector/diglib/plus_struct.c:567 +#: ../lib/vector/diglib/plus_struct.c:566 #, c-format msgid "This version of GRASS (%d.%d) is too old to read this topology format. Try to rebuild topology or upgrade GRASS to at least version %d." msgstr "" -#: ../lib/vector/diglib/plus_struct.c:576 +#: ../lib/vector/diglib/plus_struct.c:575 #, c-format msgid "Your GRASS version does not fully support topology format %d.%d of the vector. Consider to rebuild topology or upgrade GRASS." msgstr "" -#: ../lib/vector/diglib/plus_struct.c:589 +#: ../lib/vector/diglib/plus_struct.c:588 #, c-format msgid "Old topology format version %d.%d is not supported by this release. Try to rebuild topology using v.build or v.build.all module." msgstr "" -#: ../lib/vector/diglib/plus_struct.c:614 ../lib/vector/diglib/portable.c:210 +#: ../lib/vector/diglib/plus_struct.c:613 ../lib/vector/diglib/portable.c:210 #: ../lib/vector/diglib/portable.c:243 ../lib/vector/diglib/portable.c:684 msgid "Vector exceeds supported file size limit" msgstr "" @@ -8594,26 +8739,26 @@ msgstr "" msgid "Unable to find '%x' in %s" msgstr "" -#: ../lib/vector/diglib/spindex.c:457 +#: ../lib/vector/diglib/spindex.c:456 #, c-format msgid "Unable to delete node %d from spatial index" msgstr "" -#: ../lib/vector/diglib/spindex.c:500 +#: ../lib/vector/diglib/spindex.c:499 #, c-format msgid "Unable to delete line %d from spatial index" msgstr "" -#: ../lib/vector/diglib/spindex.c:536 +#: ../lib/vector/diglib/spindex.c:535 msgid "Attempt to delete sidx for dead area" msgstr "" -#: ../lib/vector/diglib/spindex.c:553 +#: ../lib/vector/diglib/spindex.c:552 #, c-format msgid "Unable to delete area %d from spatial index" msgstr "" -#: ../lib/vector/diglib/spindex.c:602 +#: ../lib/vector/diglib/spindex.c:601 #, c-format msgid "Unable to delete isle %d from spatial index" msgstr "" @@ -8681,8 +8826,8 @@ msgid "Computing minimum spanning tree..." msgstr "" #: ../lib/vector/neta/timetables.c:46 ../lib/vector/neta/timetables.c:73 -#: ../lib/vector/neta/timetables.c:205 ../lib/vector/neta/timetables.c:244 -#: ../lib/vector/neta/timetables.c:284 +#: ../lib/vector/neta/timetables.c:206 ../lib/vector/neta/timetables.c:245 +#: ../lib/vector/neta/timetables.c:285 #, c-format msgid "Unable to open select cursor: %s" msgstr "" diff --git a/locale/po/grassmods_ar.po b/locale/po/grassmods_ar.po index d67ce6943df..4ec5e82e564 100644 --- a/locale/po/grassmods_ar.po +++ b/locale/po/grassmods_ar.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: grassmods_ar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-07-26 01:36+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Arabic \n" @@ -180,7 +180,7 @@ msgstr "عرض كل الأعمدة لجدول معطى" #: ../general/g.proj/main.c:90 ../general/g.proj/main.c:99 #: ../general/g.proj/main.c:105 ../general/g.proj/main.c:114 #: ../general/g.proj/main.c:126 ../general/g.proj/main.c:135 -#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:244 +#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:245 #: ../general/g.region/main.c:91 ../general/g.region/main.c:97 #: ../general/g.region/main.c:102 ../general/g.region/main.c:108 #: ../general/g.region/main.c:113 ../general/g.region/main.c:118 @@ -313,13 +313,12 @@ msgstr "" #: ../db/db.connect/main.c:144 ../general/g.findfile/main.c:187 #: ../general/g.list/list.c:122 ../general/g.mapset/main.c:119 -#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:54 -#: ../general/g.proj/output.c:360 ../general/g.region/main.c:471 -#: ../general/g.version/main.c:140 ../misc/m.measure/main.c:87 -#: ../raster/r.describe/dumplist.c:38 ../raster/r.distance/report.c:211 -#: ../raster/r.distance/report.c:218 ../raster/r.distance/report.c:225 -#: ../raster/r.info/main.c:147 ../raster/r.proj/main.c:487 -#: ../raster/r.regression.line/main.c:101 +#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:351 +#: ../general/g.region/main.c:471 ../general/g.version/main.c:140 +#: ../misc/m.measure/main.c:87 ../raster/r.describe/dumplist.c:38 +#: ../raster/r.distance/report.c:211 ../raster/r.distance/report.c:218 +#: ../raster/r.distance/report.c:225 ../raster/r.info/main.c:147 +#: ../raster/r.proj/main.c:487 ../raster/r.regression.line/main.c:101 #: ../raster/r.regression.multi/main.c:197 #: ../raster/r.regression.multi/main.c:566 #: ../raster/r.stats.quantile/main.c:430 ../raster/r.stats.quantile/main.c:447 @@ -339,7 +338,7 @@ msgstr "" msgid "Failed to initialize JSON object. Out of memory?" msgstr "اسم الخريطة المخرجة" -#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:277 +#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:278 #: ../general/g.region/main.c:427 ../general/g.version/main.c:153 #: ../imagery/i.group/main.c:137 ../misc/m.measure/main.c:100 #: ../raster/r.proj/main.c:270 ../raster/r.regression.line/main.c:114 @@ -505,7 +504,7 @@ msgstr "" msgid "Lists all databases for a given driver and location." msgstr "عرض جميع قواعد البيانات لمشغل وموقع معين" -#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:383 +#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:374 #: ../general/g.region/main.c:990 ../general/g.version/main.c:409 #: ../imagery/i.group/main.c:301 ../raster/r.category/main.c:412 #: ../raster/r.describe/dumplist.c:71 ../raster/r.info/main.c:1000 @@ -6879,10 +6878,10 @@ msgstr "<%s> لم يمكن فتح" msgid "Converts between PPM/PGM and PNG image formats." msgstr "" -#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:141 -#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:140 -#: ../vector/v.external/proj.c:173 ../vector/v.in.lidar/main.c:525 -#: ../vector/v.in.ogr/proj.c:307 +#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:129 +#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:129 +#: ../vector/v.external/proj.c:158 ../vector/v.in.lidar/main.c:525 +#: ../vector/v.in.ogr/proj.c:228 #, fuzzy, c-format msgid "Project <%s> created" msgstr "%s لم يمكن فتح " @@ -7209,57 +7208,67 @@ msgstr "%s:لم يتم إنشاء الجدول" msgid "Name of new project (location) to create" msgstr "اسم المقع الجديد" -#: ../general/g.proj/main.c:239 -msgid "plain;Human readable text output;shell;shell script style text output;json;JSON (JavaScript Object Notation);wkt;Well-known text output;proj4;PROJ.4 style text output;" +#: ../general/g.proj/main.c:240 +msgid "plain;Human readable text output;shell;shell script style text output;wkt;Well-known text output;projjson;JSON (JavaScript Object Notation) version of WKT;proj4;PROJ.4 style text output;" msgstr "" -#: ../general/g.proj/main.c:271 ../vector/v.what.rast/main.c:159 +#: ../general/g.proj/main.c:272 ../vector/v.what.rast/main.c:159 #, c-format msgid "The format option can only be used with -%c flag" msgstr "" -#: ../general/g.proj/main.c:283 +#: ../general/g.proj/main.c:284 msgid "Flag 'j' is deprecated and will be removed in a future release. Please use format=proj4 instead." msgstr "" -#: ../general/g.proj/main.c:292 +#: ../general/g.proj/main.c:293 msgid "Flag 'w' is deprecated and will be removed in a future release. Please use format=wkt instead." msgstr "" -#: ../general/g.proj/main.c:312 +#: ../general/g.proj/main.c:313 #, fuzzy, c-format msgid "Only one of '%s', '%s', '%s', '%s' or '%s' options may be specified" msgstr "طبقتين يجب تحديدهم" -#: ../general/g.proj/main.c:364 +#: ../general/g.proj/main.c:365 msgid "Projection files missing" msgstr "" -#: ../general/g.proj/main.c:392 +#: ../general/g.proj/main.c:393 #, c-format msgid "No output format specified. Define one of the options: plain, shell, json, wkt, or proj4 using the -%c flag." msgstr "" -#: ../general/g.proj/main.c:397 +#: ../general/g.proj/main.c:398 #, c-format msgid "No output format specified. Define one of the options: plain, shell, json, or proj4 using the -%c flag." msgstr "" -#: ../general/g.proj/output.c:221 +#: ../general/g.proj/output.c:54 +#, fuzzy +msgid "JSON output is not available." +msgstr "لم توجد<%s>الخريطة الفيكتورية" + +#: ../general/g.proj/output.c:212 #, fuzzy msgid "Unable to convert projection information to PROJ format" msgstr "ضبط المنطقة الحالية من ابعاد الخريطة المدخلة" -#: ../general/g.proj/output.c:295 +#: ../general/g.proj/output.c:286 #, fuzzy, c-format msgid "Unable to create PROJ definition from srid <%s>" msgstr "<%s> لم يمكن فتح" -#: ../general/g.proj/output.c:337 +#: ../general/g.proj/output.c:328 #, fuzzy msgid "Unable to convert to WKT" msgstr "لم يمكن حشر صف جديد: %s" +#: ../general/g.proj/output.c:433 +#, fuzzy +msgid "Unable to convert to PROJJSON" +msgstr "لم يمكن حشر صف جديد: %s" + #: ../general/g.region/main.c:67 msgid "computational region" msgstr "" @@ -12215,10 +12224,10 @@ msgstr "الخريطة الفيكتورية لنقاط البدء" #: ../raster/r.grow.distance/main.c:392 ../raster/r.li/r.li.daemon/daemon.c:743 #: ../raster/r.mfilter/execute.c:82 ../raster/r.mfilter/execute.c:114 #: ../raster/r.mfilter/execute.c:165 ../raster/r.mfilter/getrow.c:24 -#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:786 -#: ../raster/r.path/main.c:822 ../raster/r.path/main.c:954 -#: ../raster/r.path/main.c:1073 ../raster/r.path/main.c:1103 -#: ../raster/r.path/main.c:1207 ../raster/r.thin/io.c:72 +#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:789 +#: ../raster/r.path/main.c:825 ../raster/r.path/main.c:957 +#: ../raster/r.path/main.c:1076 ../raster/r.path/main.c:1106 +#: ../raster/r.path/main.c:1210 ../raster/r.thin/io.c:72 #: ../raster/r.thin/io.c:82 ../raster3d/r3.in.v5d/v5d.c:1192 #: ../raster3d/r3.in.v5d/v5d.c:1443 ../raster3d/r3.in.v5d/v5d.c:1523 #: ../raster3d/r3.in.v5d/v5d.c:1848 ../raster3d/r3.in.v5d/v5d.c:1859 @@ -12243,9 +12252,9 @@ msgstr "" #: ../raster/r.clump/minsize.c:268 ../raster/r.clump/minsize.c:308 #: ../raster/r.clump/minsize.c:319 ../raster/r.clump/minsize.c:454 #: ../raster/r.clump/minsize.c:481 ../raster/r.clump/minsize.c:557 -#: ../raster/r.path/main.c:791 ../raster/r.path/main.c:827 -#: ../raster/r.path/main.c:962 ../raster/r.path/main.c:1078 -#: ../raster/r.path/main.c:1108 ../raster/r.path/main.c:1213 +#: ../raster/r.path/main.c:794 ../raster/r.path/main.c:830 +#: ../raster/r.path/main.c:965 ../raster/r.path/main.c:1081 +#: ../raster/r.path/main.c:1111 ../raster/r.path/main.c:1216 #, fuzzy msgid "Unable to read from temp file" msgstr "<%s> لم يمكن فتح" @@ -21407,7 +21416,7 @@ msgstr "" msgid "Starting point %d is outside the current region" msgstr "استخدام المنطقة الحالية" -#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:375 +#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:378 #, fuzzy, c-format msgid "Starting vector map <%s> contains no points in the current region" msgstr "استخدام المنطقة الحالية" @@ -21423,8 +21432,8 @@ msgid "Calculating flow directions..." msgstr "حساب الظلال من نموذج الإرتفاعت الرقمى" #: ../raster/r.drain/main.c:485 ../raster/r.in.lidar/main.c:783 -#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:598 -#: ../raster/r.path/main.c:628 ../raster/r.viewshed/grass.cpp:621 +#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:601 +#: ../raster/r.path/main.c:631 ../raster/r.viewshed/grass.cpp:621 #, fuzzy msgid "Writing output raster map..." msgstr "اسم خريطة الراستر المخرجة" @@ -21693,89 +21702,97 @@ msgstr "غير موجودة <%s> الخريطة الراسترية " msgid "Imagery group <%s> created" msgstr "dig_att لم يمكن العثور على ملف" -#: ../raster/r.external/proj.c:51 ../raster/r.external/proj.c:93 -#: ../raster/r.in.gdal/proj.c:51 ../raster/r.in.gdal/proj.c:93 -#, c-format -msgid "" -"Input contains an invalid CRS. WKT definition:\n" -"%s" +#: ../raster/r.external/proj.c:36 ../raster/r.external/proj.c:63 +#: ../raster/r.external/proj.c:122 ../raster/r.in.gdal/proj.c:36 +#: ../raster/r.in.gdal/proj.c:63 ../raster/r.in.gdal/proj.c:122 +#: ../vector/v.external/proj.c:92 ../vector/v.external/proj.c:151 +#: ../vector/v.in.ogr/proj.c:162 ../vector/v.in.ogr/proj.c:221 +msgid "Can't get WKT parameter string" msgstr "" -#: ../raster/r.external/proj.c:120 ../raster/r.in.gdal/proj.c:120 +#: ../raster/r.external/proj.c:56 ../raster/r.in.gdal/proj.c:56 +#: ../vector/v.external/proj.c:85 ../vector/v.in.ogr/proj.c:155 +#, fuzzy +msgid "Input contains an invalid CRS." +msgstr "الخريطة المدخلة حاوية الخطوط" + +#: ../raster/r.external/proj.c:66 ../raster/r.in.gdal/proj.c:66 +#: ../vector/v.external/proj.c:95 ../vector/v.in.ogr/proj.c:165 +#, fuzzy +msgid "WKT definition:" +msgstr "تحديد الخط المقطعى" + +#: ../raster/r.external/proj.c:99 ../raster/r.in.gdal/proj.c:99 +#: ../vector/v.external/proj.c:128 ../vector/v.in.ogr/proj.c:198 #, fuzzy msgid "No projection information available" msgstr "طباعة الأحصاء فى صورة شل سكربت" -#: ../raster/r.external/proj.c:133 +#: ../raster/r.external/proj.c:114 ../raster/r.in.gdal/proj.c:114 +#: ../vector/v.external/proj.c:143 ../vector/v.in.ogr/proj.c:213 #, fuzzy -msgid "Unable to convert input map coordinate reference system to GRASS format; cannot create new project." +msgid "Unable to convert input map projection to GRASS format; cannot create new project." msgstr "ضبط المنطقة الحالية من ابعاد الخريطة المدخلة" -#: ../raster/r.external/proj.c:139 ../raster/r.in.gdal/main.c:1039 -#: ../raster/r.in.gdal/proj.c:138 ../vector/v.external/proj.c:171 -#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:305 +#: ../raster/r.external/proj.c:127 ../raster/r.in.gdal/main.c:1039 +#: ../raster/r.in.gdal/proj.c:127 ../vector/v.external/proj.c:156 +#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:226 #, fuzzy, c-format msgid "Unable to create new project <%s>" msgstr "اسم الخريطة الراسترية الناتجة" -#: ../raster/r.external/proj.c:165 ../raster/r.in.gdal/proj.c:164 -#: ../vector/v.external/proj.c:197 ../vector/v.in.ogr/proj.c:331 +#: ../raster/r.external/proj.c:157 ../raster/r.in.gdal/proj.c:157 +#: ../vector/v.external/proj.c:186 ../vector/v.in.ogr/proj.c:256 #, fuzzy msgid "Unable to convert input map projection information to GRASS format." msgstr "ضبط المنطقة الحالية من ابعاد الخريطة المدخلة" -#: ../raster/r.external/proj.c:192 ../raster/r.in.gdal/proj.c:192 +#: ../raster/r.external/proj.c:238 ../raster/r.in.gdal/proj.c:238 #: ../raster/r.in.lidar/projection.c:126 -#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:228 -#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:360 +#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:267 +#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:337 #, fuzzy msgid "Over-riding projection check" msgstr "طباعة نوع الملف الراسترى فقط" -#: ../raster/r.external/proj.c:200 ../raster/r.in.gdal/proj.c:200 -#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 -#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.external/proj.c:236 -#: ../vector/v.in.lidar/projection.c:30 ../vector/v.in.ogr/proj.c:368 +#: ../raster/r.external/proj.c:244 ../raster/r.in.gdal/proj.c:244 +#: ../vector/v.external/proj.c:273 ../vector/v.in.ogr/proj.c:343 #, fuzzy -msgid "" -"Coordinate reference system of dataset does not appear to match current project.\n" -"\n" +msgid "Coordinate reference system of dataset does not appear to match current project.\n" msgstr "إعادة توقيع خريطة راسترية من مكان إلى المكان الحالى" -#: ../raster/r.external/proj.c:207 ../raster/r.external/proj.c:216 -#: ../raster/r.in.gdal/proj.c:207 ../raster/r.in.gdal/proj.c:216 -#: ../vector/v.external/proj.c:243 ../vector/v.external/proj.c:252 -#: ../vector/v.in.ogr/proj.c:375 ../vector/v.in.ogr/proj.c:384 +#: ../raster/r.external/proj.c:258 ../raster/r.in.gdal/proj.c:258 +#: ../vector/v.external/proj.c:287 ../vector/v.in.ogr/proj.c:357 #, fuzzy -msgid "Project PROJ_INFO is:\n" -msgstr "%s لم يمكن فتح " +msgid "Dataset CRS is:\n" +msgstr "عدم انشاء جدول الخواص" -#: ../raster/r.external/proj.c:236 ../raster/r.external/proj.c:243 -#: ../raster/r.in.gdal/proj.c:236 ../raster/r.in.gdal/proj.c:243 -#: ../vector/v.external/proj.c:272 ../vector/v.external/proj.c:279 -#: ../vector/v.in.ogr/proj.c:404 ../vector/v.in.ogr/proj.c:411 -msgid "Dataset PROJ_INFO is:\n" -msgstr "" +#: ../raster/r.external/proj.c:272 ../raster/r.in.gdal/proj.c:272 +#: ../vector/v.external/proj.c:301 ../vector/v.in.ogr/proj.c:371 +#, fuzzy +msgid "Project CRS is:\n" +msgstr "%s لم يمكن فتح " -#: ../raster/r.external/proj.c:324 ../raster/r.in.lidar/projection.c:89 -#: ../raster/r.in.pdal/projection.c:87 ../raster3d/r3.in.lidar/projection.c:90 -#: ../vector/v.external/proj.c:360 ../vector/v.in.lidar/projection.c:87 -#: ../vector/v.in.ogr/proj.c:492 ../vector/v.in.pdal/projection.c:87 +#: ../raster/r.external/proj.c:286 ../raster/r.in.gdal/proj.c:286 +#: ../raster/r.in.lidar/projection.c:89 ../raster/r.in.pdal/projection.c:87 +#: ../raster3d/r3.in.lidar/projection.c:90 ../vector/v.external/proj.c:315 +#: ../vector/v.in.lidar/projection.c:87 ../vector/v.in.ogr/proj.c:385 +#: ../vector/v.in.pdal/projection.c:87 #, c-format msgid "" "\n" "In case of no significant differences in the coordinate reference system definitions, use the -o flag to ignore them and use current project definition.\n" msgstr "" -#: ../raster/r.external/proj.c:328 ../raster/r.in.gdal/proj.c:327 -#: ../vector/v.external/proj.c:364 ../vector/v.in.ogr/proj.c:496 +#: ../raster/r.external/proj.c:290 ../raster/r.in.gdal/proj.c:290 +#: ../vector/v.external/proj.c:319 ../vector/v.in.ogr/proj.c:389 msgid "Consider generating a new project from the input dataset using the 'project' parameter.\n" msgstr "" -#: ../raster/r.external/proj.c:348 ../raster/r.in.gdal/proj.c:347 +#: ../raster/r.external/proj.c:310 ../raster/r.in.gdal/proj.c:310 #: ../raster/r.in.lidar/projection.c:136 ../raster/r.in.pdal/projection.c:134 -#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:384 -#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:516 +#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:339 +#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:409 #, fuzzy msgid "Coordinate reference system of input dataset and current project appear to match" msgstr "إعادة توقيع خريطة راسترية من مكان إلى المكان الحالى" @@ -22436,7 +22453,7 @@ msgstr "" msgid "Region resolution shouldn't be lesser than map %s resolution. Run g.region raster=%s to set proper resolution" msgstr "" -#: ../raster/r.geomorphon/pattern.c:228 +#: ../raster/r.geomorphon/pattern.c:229 #, fuzzy, c-format msgid "Internal error in %s()" msgstr "%d تحديث الخطا\n" @@ -23478,8 +23495,7 @@ msgstr "خريطة الإتجاه المخرجة" msgid "Error in %s (can't re-project GCP %i)" msgstr "" -#: ../raster/r.in.gdal/main.c:983 ../vector/v.external/proj.c:165 -#: ../vector/v.in.lidar/main.c:516 +#: ../raster/r.in.gdal/main.c:983 ../vector/v.in.lidar/main.c:516 #, fuzzy msgid "Unable to convert input map CRS to GRASS format; cannot create new project." msgstr "ضبط المنطقة الحالية من ابعاد الخريطة المدخلة" @@ -23536,17 +23552,6 @@ msgstr "%s لم يمكن فتح ملف المدى ل" msgid "Unable to open file <%s>: %s." msgstr "[%s]لم يتم فتح ملف الخلية ل " -#: ../raster/r.in.gdal/proj.c:132 ../vector/v.in.ogr/proj.c:299 -#, fuzzy -msgid "Unable to convert input map projection to GRASS format; cannot create new project." -msgstr "ضبط المنطقة الحالية من ابعاد الخريطة المدخلة" - -#: ../raster/r.in.gdal/proj.c:323 -msgid "" -"\n" -"In case of no significant differences in the CRS definitions, use the -o flag to ignore them and use current project definition.\n" -msgstr "" - #: ../raster/r.in.gridatb/file_io.c:16 #, fuzzy, c-format msgid "Unable to open file: %s" @@ -23937,6 +23942,14 @@ msgstr "" msgid "Unable to calculate trimmed mean without the trim option specified!" msgstr "" +#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 +#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.in.lidar/projection.c:30 +#, fuzzy +msgid "" +"Coordinate reference system of dataset does not appear to match current project.\n" +"\n" +msgstr "إعادة توقيع خريطة راسترية من مكان إلى المكان الحالى" + #: ../raster/r.in.lidar/projection.c:38 ../raster/r.in.pdal/projection.c:36 #: ../vector/v.in.lidar/projection.c:36 ../vector/v.in.pdal/projection.c:36 #, fuzzy @@ -27008,120 +27021,120 @@ msgstr "من فضلك اضبط الأوضاع" msgid "Do not break lines (faster for single-direction bitmask encoding)" msgstr "" -#: ../raster/r.path/main.c:384 +#: ../raster/r.path/main.c:387 #, fuzzy msgid "No start point(s) specified" msgstr "لم تحدد خرائط مدخلة" -#: ../raster/r.path/main.c:394 +#: ../raster/r.path/main.c:397 #, fuzzy, c-format msgid "Reading raster values map <%s> ..." msgstr "%-5d dig_att قراءة ملف...\n" -#: ../raster/r.path/main.c:399 +#: ../raster/r.path/main.c:402 #, fuzzy, c-format msgid "Unable to open temporary file <%s>: %s" msgstr "لم يتم تحديث الحدود" -#: ../raster/r.path/main.c:411 ../raster/r.path/main.c:489 -#: ../raster/r.path/main.c:506 +#: ../raster/r.path/main.c:414 ../raster/r.path/main.c:492 +#: ../raster/r.path/main.c:509 #, fuzzy msgid "Unable to write to tempfile" msgstr "لم يتم تحديث الحدود" -#: ../raster/r.path/main.c:419 +#: ../raster/r.path/main.c:422 #, fuzzy msgid "Unable to read range file" msgstr "<%s> لم يمكن فتح" -#: ../raster/r.path/main.c:422 +#: ../raster/r.path/main.c:425 #, fuzzy, c-format msgid "Invalid directions map <%s>" msgstr "%s:منطقة غير صالحة" -#: ../raster/r.path/main.c:427 +#: ../raster/r.path/main.c:430 msgid "Directional degrees can not be > 360" msgstr "" -#: ../raster/r.path/main.c:433 +#: ../raster/r.path/main.c:436 msgid "Directional degrees divided by 45 can not be > 8" msgstr "" -#: ../raster/r.path/main.c:438 +#: ../raster/r.path/main.c:441 #, c-format msgid "Bitmask encoded directions can not be > %d" msgstr "" -#: ../raster/r.path/main.c:445 +#: ../raster/r.path/main.c:448 msgid "Input direction format assumed to be degrees CCW from East divided by 45" msgstr "" -#: ../raster/r.path/main.c:450 +#: ../raster/r.path/main.c:453 msgid "Input direction format assumed to be bitmask encoded without Knight's move" msgstr "" -#: ../raster/r.path/main.c:456 +#: ../raster/r.path/main.c:459 msgid "Input direction format assumed to be degrees CCW from East" msgstr "" -#: ../raster/r.path/main.c:460 +#: ../raster/r.path/main.c:463 msgid "Input direction format assumed to be bitmask encoded with Knight's move" msgstr "" -#: ../raster/r.path/main.c:465 +#: ../raster/r.path/main.c:468 #, fuzzy, c-format msgid "Unable to detect format of input direction map <%s>" msgstr "اسم الخريطة الراسترية الناتجة" -#: ../raster/r.path/main.c:469 +#: ../raster/r.path/main.c:472 #, fuzzy, c-format msgid "Invalid directions format '%s'" msgstr "خريطة الإتجاه المخرجة" -#: ../raster/r.path/main.c:471 +#: ../raster/r.path/main.c:474 #, fuzzy, c-format msgid "Reading direction map <%s> ..." msgstr "dig قراءة ملف...\n" -#: ../raster/r.path/main.c:525 +#: ../raster/r.path/main.c:528 #, fuzzy msgid "Processing start points..." msgstr "التوقيع ..." -#: ../raster/r.path/main.c:535 ../vector/v.buffer/main.c:410 +#: ../raster/r.path/main.c:538 ../vector/v.buffer/main.c:410 #: ../vector/v.in.ogr/main.c:881 ../vector/v.overlay/main.c:237 #: ../vector/v.voronoi/main.c:215 #, fuzzy msgid "Unable to create temporary vector map" msgstr "اسم الخريطة الراسترية الناتجة" -#: ../raster/r.path/main.c:541 ../raster/r.path/main.c:557 +#: ../raster/r.path/main.c:544 ../raster/r.path/main.c:560 #, fuzzy, c-format msgid "No path at row %d, col %d" msgstr "%-5d تم تخطى فئات النقط الميت\n" -#: ../raster/r.path/main.c:546 ../vector/v.overlay/area_area.c:134 +#: ../raster/r.path/main.c:549 ../vector/v.overlay/area_area.c:134 #: ../vector/v.overlay/line_area.c:255 #, fuzzy msgid "Breaking lines..." msgstr "التوقيع ..." -#: ../raster/r.path/main.c:684 +#: ../raster/r.path/main.c:687 #, fuzzy msgid "Unable to increase point list" msgstr "<%s> لم يمكن فتح" -#: ../raster/r.path/main.c:887 +#: ../raster/r.path/main.c:890 #, c-format msgid "No path from row %d, col %d" msgstr "" -#: ../raster/r.path/main.c:901 +#: ../raster/r.path/main.c:904 #, fuzzy, c-format msgid "Invalid direction %d" msgstr "%s:منطقة غير صالحة" -#: ../raster/r.path/main.c:999 +#: ../raster/r.path/main.c:1002 #, fuzzy msgid "Path is leaving the current region" msgstr "استخدام المنطقة الحالية" @@ -41693,40 +41706,17 @@ msgstr "[%s]لم يتم فتح ملف الخلية ل " msgid "Link to vector map <%s> created." msgstr "dig_att لم يمكن العثور على ملف" -#: ../vector/v.external/proj.c:35 ../vector/v.in.ogr/main.c:741 -#: ../vector/v.in.ogr/proj.c:36 +#: ../vector/v.external/proj.c:34 ../vector/v.in.ogr/main.c:741 +#: ../vector/v.in.ogr/proj.c:34 #, fuzzy, c-format msgid "Geometry column <%s> not found in input layer <%s>" msgstr "غير موجودة <%s> المنطقة" -#: ../vector/v.external/proj.c:49 ../vector/v.in.ogr/proj.c:50 -#, fuzzy -msgid "Unable to convert input layer projection information to GRASS format for checking" -msgstr "ضبط المنطقة الحالية من ابعاد الخريطة المدخلة" - -#: ../vector/v.external/proj.c:55 ../vector/v.external/proj.c:85 -#: ../vector/v.in.ogr/proj.c:56 ../vector/v.in.ogr/proj.c:86 -msgid "Can't get WKT parameter string" -msgstr "" - -#: ../vector/v.external/proj.c:58 ../vector/v.external/proj.c:88 -#: ../vector/v.in.ogr/proj.c:59 ../vector/v.in.ogr/proj.c:89 -#, fuzzy, c-format -msgid "" -"WKT definition:\n" -"%s" -msgstr "تحديد الخط المقطعى" - -#: ../vector/v.external/proj.c:69 ../vector/v.in.ogr/proj.c:70 +#: ../vector/v.external/proj.c:46 ../vector/v.in.ogr/proj.c:46 #, fuzzy, c-format msgid "No projection information available for layer <%s>" msgstr "طباعة الأحصاء فى صورة شل سكربت" -#: ../vector/v.external/proj.c:78 ../vector/v.in.ogr/proj.c:79 -#, fuzzy, c-format -msgid "Projection for layer <%s> does not contain a valid CRS" -msgstr "الخريطة الراسترية المطلوب الضبط عليها" - #: ../vector/v.extract/extract.c:202 #, fuzzy, c-format msgid "No category found for area %d. Skipping." @@ -43621,16 +43611,16 @@ msgstr "" msgid "The spatial filter does not overlap with OGR layer <%s>. Nothing to import." msgstr "" -#: ../vector/v.in.ogr/proj.c:168 +#: ../vector/v.in.ogr/proj.c:85 msgid "Layer projections are unreadable" msgstr "" -#: ../vector/v.in.ogr/proj.c:184 +#: ../vector/v.in.ogr/proj.c:93 #, c-format msgid "Projection for layer <%s> is unreadable" msgstr "" -#: ../vector/v.in.ogr/proj.c:236 +#: ../vector/v.in.ogr/proj.c:113 #, c-format msgid "Projection of layer <%s> is different from projection of layer <%s>" msgstr "" @@ -51735,61 +51725,6 @@ msgstr "" msgid "Image file" msgstr "ملف المدخل" -#, fuzzy, c-format -#~ msgid "Unable to seek: %s" -#~ msgstr "<%s> لم يمكن فتح" - -#~ msgid "Print the stats in shell script style" -#~ msgstr "طباعة الأحصاء فى صورة شل سكربت" - -#, fuzzy -#~ msgid "Field separator for shell script style output" -#~ msgstr "طباعة الأحصاء فى صورة شل سكربت" - -#, fuzzy -#~ msgid "Print all map connection parameters in shell script style and exit" -#~ msgstr "طباعة إحداثيات الإتصال الحلى و الخروج" - -#, fuzzy -#~ msgid "Print stats in shell script style" -#~ msgstr "طباعة الأحصاء فى صورة شل سكربت" - -#, fuzzy -#~ msgid "Print raster3d information in shell style" -#~ msgstr "طباعة الأحصاء فى صورة شل سكربت" - -#, fuzzy -#~ msgid "Print range in shell style only" -#~ msgstr "طباعة الأحصاء فى صورة شل سكربت" - -#, fuzzy -#~ msgid "Shell script style" -#~ msgstr "طباعة الأحصاء فى صورة شل سكربت" - -#, fuzzy, c-format -#~ msgid "Only one of -%c, -%c, -%c, -%c or -%c flags may be specified" -#~ msgstr "طبقتين يجب تحديدهم" - -#, fuzzy -#~ msgid "Print in shell script style, but in one line (flat)" -#~ msgstr "طباعة الأحصاء فى صورة شل سكربت" - -#, fuzzy -#~ msgid "temperature" -#~ msgstr "نوع المظهر" - -#, fuzzy -#~ msgid "set" -#~ msgstr "الصفر قيمة حقيقية" - -#, fuzzy -#~ msgid "feature" -#~ msgstr "نوع المظهر" - -#, fuzzy -#~ msgid "features" -#~ msgstr "كتابة رؤوس قمم الخطوط" - #, fuzzy #~ msgid "\"-\" to write to stdout" #~ msgstr "القيمة التى تعنى قيمة منعدمة" @@ -52562,10 +52497,6 @@ msgstr "ملف المدخل" #~ msgid "Database indexes" #~ msgstr ":اسم قاعدة البيانات" -#, fuzzy -#~ msgid "Dataset ID" -#~ msgstr "عدم انشاء جدول الخواص" - #, fuzzy #~ msgid "Date format" #~ msgstr "الخريطة المخرجة" @@ -52953,6 +52884,10 @@ msgstr "ملف المدخل" #~ msgid "Field separator" #~ msgstr "الفاصل الحقلى بين بيانات المخرج" +#, fuzzy +#~ msgid "Field separator for shell script style output" +#~ msgstr "طباعة الأحصاء فى صورة شل سكربت" + #, fuzzy #~ msgid "Field separator in input text files" #~ msgstr "الفاصل الحقلي للمخرج" @@ -55922,6 +55857,10 @@ msgstr "ملف المدخل" #~ msgid "Only create patch size distribution file" #~ msgstr "[%s]لم يتم فتح ملف الخلية ل " +#, fuzzy, c-format +#~ msgid "Only one of -%c, -%c, -%c, -%c or -%c flags may be specified" +#~ msgstr "طبقتين يجب تحديدهم" + #, fuzzy #~ msgid "Only print selected polygons" #~ msgstr "طباعة عدات الخلية" @@ -56421,6 +56360,10 @@ msgstr "ملف المدخل" #~ msgid "Print Maxent command" #~ msgstr "طباعة المدى فقط" +#, fuzzy +#~ msgid "Print all map connection parameters in shell script style and exit" +#~ msgstr "طباعة إحداثيات الإتصال الحلى و الخروج" + #, fuzzy #~ msgid "Print attribut table" #~ msgstr "عدم انشاء جدول الخواص" @@ -56441,6 +56384,10 @@ msgstr "ملف المدخل" #~ msgid "Print history instead of info and exit" #~ msgstr "طباعة نوع الملف الراسترى فقط" +#, fuzzy +#~ msgid "Print in shell script style, but in one line (flat)" +#~ msgstr "طباعة الأحصاء فى صورة شل سكربت" + #, fuzzy #~ msgid "Print list of biogeographic regions" #~ msgstr "الحد الشرقى للمنطقة الجغرافية" @@ -56489,6 +56436,10 @@ msgstr "ملف المدخل" #~ msgid "Print range in shell script style" #~ msgstr "طباعة الأحصاء فى صورة شل سكربت" +#, fuzzy +#~ msgid "Print range in shell style only" +#~ msgstr "طباعة الأحصاء فى صورة شل سكربت" + #, fuzzy #~ msgid "Print raster array information in shell script style" #~ msgstr "طباعة الأحصاء فى صورة شل سكربت" @@ -56497,6 +56448,10 @@ msgstr "ملف المدخل" #~ msgid "Print raster data to be imported and exit" #~ msgstr "الملف الراسترى الطلوب إدخالة" +#, fuzzy +#~ msgid "Print raster3d information in shell style" +#~ msgstr "طباعة الأحصاء فى صورة شل سكربت" + #, fuzzy #~ msgid "Print result from matching taxa names and exit" #~ msgstr "طباعة إحداثيات الإتصال الحلى و الخروج" @@ -56509,6 +56464,10 @@ msgstr "ملف المدخل" #~ msgid "Print result of taxon matching in table format and exit" #~ msgstr "ملف المدخل" +#, fuzzy +#~ msgid "Print stats in shell script style" +#~ msgstr "طباعة الأحصاء فى صورة شل سكربت" + #, fuzzy #~ msgid "Print table structure" #~ msgstr "طباعة الجداول والخروج" @@ -56517,6 +56476,9 @@ msgstr "ملف المدخل" #~ msgid "Print the request URL and exit" #~ msgstr "طباعة الجداول والخروج" +#~ msgid "Print the stats in shell script style" +#~ msgstr "طباعة الأحصاء فى صورة شل سكربت" + #, fuzzy #~ msgid "Print the threshold value in shell script style" #~ msgstr "طباعة الأحصاء فى صورة شل سكربت" @@ -56537,6 +56499,10 @@ msgstr "ملف المدخل" #~ msgid "Projected conditions" #~ msgstr "التوقيع ..." +#, fuzzy, c-format +#~ msgid "Projection for layer <%s> does not contain a valid CRS" +#~ msgstr "الخريطة الراسترية المطلوب الضبط عليها" + #, fuzzy #~ msgid "Projection region" #~ msgstr "التوقيع ..." @@ -57124,6 +57090,10 @@ msgstr "ملف المدخل" #~ msgid "Shape statistics" #~ msgstr "عدم انشاء جدول الخواص" +#, fuzzy +#~ msgid "Shell script style" +#~ msgstr "طباعة الأحصاء فى صورة شل سكربت" + #, fuzzy #~ msgid "Show category numbers" #~ msgstr "طباعة عناوين الفئة" @@ -57643,6 +57613,14 @@ msgstr "ملف المدخل" #~ msgid "Unable to add column <%s>." #~ msgstr "[%s]لم يتم فتح ملف الخلية ل " +#, fuzzy +#~ msgid "Unable to convert input layer projection information to GRASS format for checking" +#~ msgstr "ضبط المنطقة الحالية من ابعاد الخريطة المدخلة" + +#, fuzzy +#~ msgid "Unable to convert input map coordinate reference system to GRASS format; cannot create new project." +#~ msgstr "ضبط المنطقة الحالية من ابعاد الخريطة المدخلة" + #, fuzzy, c-format #~ msgid "Unable to create new location <%s>" #~ msgstr "%s:لم يتم إنشاء الجدول" @@ -57667,6 +57645,10 @@ msgstr "ملف المدخل" #~ msgid "Unable to re-open data source <%s>" #~ msgstr "<%s> لم يمكن فتح" +#, fuzzy, c-format +#~ msgid "Unable to seek: %s" +#~ msgstr "<%s> لم يمكن فتح" + #, fuzzy #~ msgid "Unacceptable conditions for Designated Fill" #~ msgstr "dig_att عطل فى فتح ملف المدخل" @@ -58171,6 +58153,14 @@ msgstr "ملف المدخل" #~ msgid "evolution" #~ msgstr "اسم ااملف المخرج" +#, fuzzy +#~ msgid "feature" +#~ msgstr "نوع المظهر" + +#, fuzzy +#~ msgid "features" +#~ msgstr "كتابة رؤوس قمم الخطوط" + #, fuzzy #~ msgid "fixed distance between segment points" #~ msgstr "المسافة العظمى بين النقاط بوحدات الخريطة" @@ -58451,6 +58441,10 @@ msgstr "ملف المدخل" #~ msgid "selection" #~ msgstr "الصفر قيمة حقيقية" +#, fuzzy +#~ msgid "set" +#~ msgstr "الصفر قيمة حقيقية" + #, fuzzy #~ msgid "set seed for random number generation" #~ msgstr "نوع غير معروف" @@ -58487,6 +58481,10 @@ msgstr "ملف المدخل" #~ msgid "subsample" #~ msgstr "الخريطة الراسترية المطلوب تسجيلها" +#, fuzzy +#~ msgid "temperature" +#~ msgstr "نوع المظهر" + #, fuzzy #~ msgid "time series" #~ msgstr "الخريطة الراسترية المطلوب تسجيلها" diff --git a/locale/po/grassmods_bn.po b/locale/po/grassmods_bn.po index de1d1351f6a..b908f247c16 100644 --- a/locale/po/grassmods_bn.po +++ b/locale/po/grassmods_bn.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: grasslibs_bn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-07-26 01:36+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Bengali \n" @@ -176,7 +176,7 @@ msgstr "" #: ../general/g.proj/main.c:90 ../general/g.proj/main.c:99 #: ../general/g.proj/main.c:105 ../general/g.proj/main.c:114 #: ../general/g.proj/main.c:126 ../general/g.proj/main.c:135 -#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:244 +#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:245 #: ../general/g.region/main.c:91 ../general/g.region/main.c:97 #: ../general/g.region/main.c:102 ../general/g.region/main.c:108 #: ../general/g.region/main.c:113 ../general/g.region/main.c:118 @@ -302,13 +302,12 @@ msgstr "" #: ../db/db.connect/main.c:144 ../general/g.findfile/main.c:187 #: ../general/g.list/list.c:122 ../general/g.mapset/main.c:119 -#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:54 -#: ../general/g.proj/output.c:360 ../general/g.region/main.c:471 -#: ../general/g.version/main.c:140 ../misc/m.measure/main.c:87 -#: ../raster/r.describe/dumplist.c:38 ../raster/r.distance/report.c:211 -#: ../raster/r.distance/report.c:218 ../raster/r.distance/report.c:225 -#: ../raster/r.info/main.c:147 ../raster/r.proj/main.c:487 -#: ../raster/r.regression.line/main.c:101 +#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:351 +#: ../general/g.region/main.c:471 ../general/g.version/main.c:140 +#: ../misc/m.measure/main.c:87 ../raster/r.describe/dumplist.c:38 +#: ../raster/r.distance/report.c:211 ../raster/r.distance/report.c:218 +#: ../raster/r.distance/report.c:225 ../raster/r.info/main.c:147 +#: ../raster/r.proj/main.c:487 ../raster/r.regression.line/main.c:101 #: ../raster/r.regression.multi/main.c:197 #: ../raster/r.regression.multi/main.c:566 #: ../raster/r.stats.quantile/main.c:430 ../raster/r.stats.quantile/main.c:447 @@ -327,7 +326,7 @@ msgstr "" msgid "Failed to initialize JSON object. Out of memory?" msgstr "" -#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:277 +#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:278 #: ../general/g.region/main.c:427 ../general/g.version/main.c:153 #: ../imagery/i.group/main.c:137 ../misc/m.measure/main.c:100 #: ../raster/r.proj/main.c:270 ../raster/r.regression.line/main.c:114 @@ -481,7 +480,7 @@ msgstr "" msgid "Lists all databases for a given driver and location." msgstr "" -#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:383 +#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:374 #: ../general/g.region/main.c:990 ../general/g.version/main.c:409 #: ../imagery/i.group/main.c:301 ../raster/r.category/main.c:412 #: ../raster/r.describe/dumplist.c:71 ../raster/r.info/main.c:1000 @@ -6441,10 +6440,10 @@ msgstr "" msgid "Converts between PPM/PGM and PNG image formats." msgstr "" -#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:141 -#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:140 -#: ../vector/v.external/proj.c:173 ../vector/v.in.lidar/main.c:525 -#: ../vector/v.in.ogr/proj.c:307 +#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:129 +#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:129 +#: ../vector/v.external/proj.c:158 ../vector/v.in.lidar/main.c:525 +#: ../vector/v.in.ogr/proj.c:228 #, c-format msgid "Project <%s> created" msgstr "" @@ -6749,55 +6748,63 @@ msgstr "" msgid "Name of new project (location) to create" msgstr "" -#: ../general/g.proj/main.c:239 -msgid "plain;Human readable text output;shell;shell script style text output;json;JSON (JavaScript Object Notation);wkt;Well-known text output;proj4;PROJ.4 style text output;" +#: ../general/g.proj/main.c:240 +msgid "plain;Human readable text output;shell;shell script style text output;wkt;Well-known text output;projjson;JSON (JavaScript Object Notation) version of WKT;proj4;PROJ.4 style text output;" msgstr "" -#: ../general/g.proj/main.c:271 ../vector/v.what.rast/main.c:159 +#: ../general/g.proj/main.c:272 ../vector/v.what.rast/main.c:159 #, c-format msgid "The format option can only be used with -%c flag" msgstr "" -#: ../general/g.proj/main.c:283 +#: ../general/g.proj/main.c:284 msgid "Flag 'j' is deprecated and will be removed in a future release. Please use format=proj4 instead." msgstr "" -#: ../general/g.proj/main.c:292 +#: ../general/g.proj/main.c:293 msgid "Flag 'w' is deprecated and will be removed in a future release. Please use format=wkt instead." msgstr "" -#: ../general/g.proj/main.c:312 +#: ../general/g.proj/main.c:313 #, c-format msgid "Only one of '%s', '%s', '%s', '%s' or '%s' options may be specified" msgstr "" -#: ../general/g.proj/main.c:364 +#: ../general/g.proj/main.c:365 msgid "Projection files missing" msgstr "" -#: ../general/g.proj/main.c:392 +#: ../general/g.proj/main.c:393 #, c-format msgid "No output format specified. Define one of the options: plain, shell, json, wkt, or proj4 using the -%c flag." msgstr "" -#: ../general/g.proj/main.c:397 +#: ../general/g.proj/main.c:398 #, c-format msgid "No output format specified. Define one of the options: plain, shell, json, or proj4 using the -%c flag." msgstr "" -#: ../general/g.proj/output.c:221 +#: ../general/g.proj/output.c:54 +msgid "JSON output is not available." +msgstr "" + +#: ../general/g.proj/output.c:212 msgid "Unable to convert projection information to PROJ format" msgstr "" -#: ../general/g.proj/output.c:295 +#: ../general/g.proj/output.c:286 #, c-format msgid "Unable to create PROJ definition from srid <%s>" msgstr "" -#: ../general/g.proj/output.c:337 +#: ../general/g.proj/output.c:328 msgid "Unable to convert to WKT" msgstr "" +#: ../general/g.proj/output.c:433 +msgid "Unable to convert to PROJJSON" +msgstr "" + #: ../general/g.region/main.c:67 msgid "computational region" msgstr "" @@ -11414,10 +11421,10 @@ msgstr "" #: ../raster/r.grow.distance/main.c:392 ../raster/r.li/r.li.daemon/daemon.c:743 #: ../raster/r.mfilter/execute.c:82 ../raster/r.mfilter/execute.c:114 #: ../raster/r.mfilter/execute.c:165 ../raster/r.mfilter/getrow.c:24 -#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:786 -#: ../raster/r.path/main.c:822 ../raster/r.path/main.c:954 -#: ../raster/r.path/main.c:1073 ../raster/r.path/main.c:1103 -#: ../raster/r.path/main.c:1207 ../raster/r.thin/io.c:72 +#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:789 +#: ../raster/r.path/main.c:825 ../raster/r.path/main.c:957 +#: ../raster/r.path/main.c:1076 ../raster/r.path/main.c:1106 +#: ../raster/r.path/main.c:1210 ../raster/r.thin/io.c:72 #: ../raster/r.thin/io.c:82 ../raster3d/r3.in.v5d/v5d.c:1192 #: ../raster3d/r3.in.v5d/v5d.c:1443 ../raster3d/r3.in.v5d/v5d.c:1523 #: ../raster3d/r3.in.v5d/v5d.c:1848 ../raster3d/r3.in.v5d/v5d.c:1859 @@ -11442,9 +11449,9 @@ msgstr "" #: ../raster/r.clump/minsize.c:268 ../raster/r.clump/minsize.c:308 #: ../raster/r.clump/minsize.c:319 ../raster/r.clump/minsize.c:454 #: ../raster/r.clump/minsize.c:481 ../raster/r.clump/minsize.c:557 -#: ../raster/r.path/main.c:791 ../raster/r.path/main.c:827 -#: ../raster/r.path/main.c:962 ../raster/r.path/main.c:1078 -#: ../raster/r.path/main.c:1108 ../raster/r.path/main.c:1213 +#: ../raster/r.path/main.c:794 ../raster/r.path/main.c:830 +#: ../raster/r.path/main.c:965 ../raster/r.path/main.c:1081 +#: ../raster/r.path/main.c:1111 ../raster/r.path/main.c:1216 msgid "Unable to read from temp file" msgstr "" @@ -19731,7 +19738,7 @@ msgstr "" msgid "Starting point %d is outside the current region" msgstr "" -#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:375 +#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:378 #, c-format msgid "Starting vector map <%s> contains no points in the current region" msgstr "" @@ -19745,8 +19752,8 @@ msgid "Calculating flow directions..." msgstr "" #: ../raster/r.drain/main.c:485 ../raster/r.in.lidar/main.c:783 -#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:598 -#: ../raster/r.path/main.c:628 ../raster/r.viewshed/grass.cpp:621 +#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:601 +#: ../raster/r.path/main.c:631 ../raster/r.viewshed/grass.cpp:621 msgid "Writing output raster map..." msgstr "" @@ -19994,83 +20001,88 @@ msgstr "" msgid "Imagery group <%s> created" msgstr "" -#: ../raster/r.external/proj.c:51 ../raster/r.external/proj.c:93 -#: ../raster/r.in.gdal/proj.c:51 ../raster/r.in.gdal/proj.c:93 -#, c-format -msgid "" -"Input contains an invalid CRS. WKT definition:\n" -"%s" +#: ../raster/r.external/proj.c:36 ../raster/r.external/proj.c:63 +#: ../raster/r.external/proj.c:122 ../raster/r.in.gdal/proj.c:36 +#: ../raster/r.in.gdal/proj.c:63 ../raster/r.in.gdal/proj.c:122 +#: ../vector/v.external/proj.c:92 ../vector/v.external/proj.c:151 +#: ../vector/v.in.ogr/proj.c:162 ../vector/v.in.ogr/proj.c:221 +msgid "Can't get WKT parameter string" +msgstr "" + +#: ../raster/r.external/proj.c:56 ../raster/r.in.gdal/proj.c:56 +#: ../vector/v.external/proj.c:85 ../vector/v.in.ogr/proj.c:155 +msgid "Input contains an invalid CRS." +msgstr "" + +#: ../raster/r.external/proj.c:66 ../raster/r.in.gdal/proj.c:66 +#: ../vector/v.external/proj.c:95 ../vector/v.in.ogr/proj.c:165 +msgid "WKT definition:" msgstr "" -#: ../raster/r.external/proj.c:120 ../raster/r.in.gdal/proj.c:120 +#: ../raster/r.external/proj.c:99 ../raster/r.in.gdal/proj.c:99 +#: ../vector/v.external/proj.c:128 ../vector/v.in.ogr/proj.c:198 msgid "No projection information available" msgstr "" -#: ../raster/r.external/proj.c:133 -msgid "Unable to convert input map coordinate reference system to GRASS format; cannot create new project." +#: ../raster/r.external/proj.c:114 ../raster/r.in.gdal/proj.c:114 +#: ../vector/v.external/proj.c:143 ../vector/v.in.ogr/proj.c:213 +msgid "Unable to convert input map projection to GRASS format; cannot create new project." msgstr "" -#: ../raster/r.external/proj.c:139 ../raster/r.in.gdal/main.c:1039 -#: ../raster/r.in.gdal/proj.c:138 ../vector/v.external/proj.c:171 -#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:305 +#: ../raster/r.external/proj.c:127 ../raster/r.in.gdal/main.c:1039 +#: ../raster/r.in.gdal/proj.c:127 ../vector/v.external/proj.c:156 +#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:226 #, c-format msgid "Unable to create new project <%s>" msgstr "" -#: ../raster/r.external/proj.c:165 ../raster/r.in.gdal/proj.c:164 -#: ../vector/v.external/proj.c:197 ../vector/v.in.ogr/proj.c:331 +#: ../raster/r.external/proj.c:157 ../raster/r.in.gdal/proj.c:157 +#: ../vector/v.external/proj.c:186 ../vector/v.in.ogr/proj.c:256 msgid "Unable to convert input map projection information to GRASS format." msgstr "" -#: ../raster/r.external/proj.c:192 ../raster/r.in.gdal/proj.c:192 +#: ../raster/r.external/proj.c:238 ../raster/r.in.gdal/proj.c:238 #: ../raster/r.in.lidar/projection.c:126 -#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:228 -#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:360 +#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:267 +#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:337 msgid "Over-riding projection check" msgstr "" -#: ../raster/r.external/proj.c:200 ../raster/r.in.gdal/proj.c:200 -#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 -#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.external/proj.c:236 -#: ../vector/v.in.lidar/projection.c:30 ../vector/v.in.ogr/proj.c:368 -msgid "" -"Coordinate reference system of dataset does not appear to match current project.\n" -"\n" +#: ../raster/r.external/proj.c:244 ../raster/r.in.gdal/proj.c:244 +#: ../vector/v.external/proj.c:273 ../vector/v.in.ogr/proj.c:343 +msgid "Coordinate reference system of dataset does not appear to match current project.\n" msgstr "" -#: ../raster/r.external/proj.c:207 ../raster/r.external/proj.c:216 -#: ../raster/r.in.gdal/proj.c:207 ../raster/r.in.gdal/proj.c:216 -#: ../vector/v.external/proj.c:243 ../vector/v.external/proj.c:252 -#: ../vector/v.in.ogr/proj.c:375 ../vector/v.in.ogr/proj.c:384 -msgid "Project PROJ_INFO is:\n" +#: ../raster/r.external/proj.c:258 ../raster/r.in.gdal/proj.c:258 +#: ../vector/v.external/proj.c:287 ../vector/v.in.ogr/proj.c:357 +msgid "Dataset CRS is:\n" msgstr "" -#: ../raster/r.external/proj.c:236 ../raster/r.external/proj.c:243 -#: ../raster/r.in.gdal/proj.c:236 ../raster/r.in.gdal/proj.c:243 -#: ../vector/v.external/proj.c:272 ../vector/v.external/proj.c:279 -#: ../vector/v.in.ogr/proj.c:404 ../vector/v.in.ogr/proj.c:411 -msgid "Dataset PROJ_INFO is:\n" +#: ../raster/r.external/proj.c:272 ../raster/r.in.gdal/proj.c:272 +#: ../vector/v.external/proj.c:301 ../vector/v.in.ogr/proj.c:371 +msgid "Project CRS is:\n" msgstr "" -#: ../raster/r.external/proj.c:324 ../raster/r.in.lidar/projection.c:89 -#: ../raster/r.in.pdal/projection.c:87 ../raster3d/r3.in.lidar/projection.c:90 -#: ../vector/v.external/proj.c:360 ../vector/v.in.lidar/projection.c:87 -#: ../vector/v.in.ogr/proj.c:492 ../vector/v.in.pdal/projection.c:87 +#: ../raster/r.external/proj.c:286 ../raster/r.in.gdal/proj.c:286 +#: ../raster/r.in.lidar/projection.c:89 ../raster/r.in.pdal/projection.c:87 +#: ../raster3d/r3.in.lidar/projection.c:90 ../vector/v.external/proj.c:315 +#: ../vector/v.in.lidar/projection.c:87 ../vector/v.in.ogr/proj.c:385 +#: ../vector/v.in.pdal/projection.c:87 #, c-format msgid "" "\n" "In case of no significant differences in the coordinate reference system definitions, use the -o flag to ignore them and use current project definition.\n" msgstr "" -#: ../raster/r.external/proj.c:328 ../raster/r.in.gdal/proj.c:327 -#: ../vector/v.external/proj.c:364 ../vector/v.in.ogr/proj.c:496 +#: ../raster/r.external/proj.c:290 ../raster/r.in.gdal/proj.c:290 +#: ../vector/v.external/proj.c:319 ../vector/v.in.ogr/proj.c:389 msgid "Consider generating a new project from the input dataset using the 'project' parameter.\n" msgstr "" -#: ../raster/r.external/proj.c:348 ../raster/r.in.gdal/proj.c:347 +#: ../raster/r.external/proj.c:310 ../raster/r.in.gdal/proj.c:310 #: ../raster/r.in.lidar/projection.c:136 ../raster/r.in.pdal/projection.c:134 -#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:384 -#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:516 +#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:339 +#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:409 msgid "Coordinate reference system of input dataset and current project appear to match" msgstr "" @@ -20678,7 +20690,7 @@ msgstr "" msgid "Region resolution shouldn't be lesser than map %s resolution. Run g.region raster=%s to set proper resolution" msgstr "" -#: ../raster/r.geomorphon/pattern.c:228 +#: ../raster/r.geomorphon/pattern.c:229 #, c-format msgid "Internal error in %s()" msgstr "" @@ -21641,8 +21653,7 @@ msgstr "" msgid "Error in %s (can't re-project GCP %i)" msgstr "" -#: ../raster/r.in.gdal/main.c:983 ../vector/v.external/proj.c:165 -#: ../vector/v.in.lidar/main.c:516 +#: ../raster/r.in.gdal/main.c:983 ../vector/v.in.lidar/main.c:516 msgid "Unable to convert input map CRS to GRASS format; cannot create new project." msgstr "" @@ -21693,16 +21704,6 @@ msgstr "" msgid "Unable to open file <%s>: %s." msgstr "" -#: ../raster/r.in.gdal/proj.c:132 ../vector/v.in.ogr/proj.c:299 -msgid "Unable to convert input map projection to GRASS format; cannot create new project." -msgstr "" - -#: ../raster/r.in.gdal/proj.c:323 -msgid "" -"\n" -"In case of no significant differences in the CRS definitions, use the -o flag to ignore them and use current project definition.\n" -msgstr "" - #: ../raster/r.in.gridatb/file_io.c:16 #, c-format msgid "Unable to open file: %s" @@ -22063,6 +22064,13 @@ msgstr "" msgid "Unable to calculate trimmed mean without the trim option specified!" msgstr "" +#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 +#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.in.lidar/projection.c:30 +msgid "" +"Coordinate reference system of dataset does not appear to match current project.\n" +"\n" +msgstr "" + #: ../raster/r.in.lidar/projection.c:38 ../raster/r.in.pdal/projection.c:36 #: ../vector/v.in.lidar/projection.c:36 ../vector/v.in.pdal/projection.c:36 msgid "GRASS project PROJ_INFO is:\n" @@ -24883,113 +24891,113 @@ msgstr "" msgid "Do not break lines (faster for single-direction bitmask encoding)" msgstr "" -#: ../raster/r.path/main.c:384 +#: ../raster/r.path/main.c:387 msgid "No start point(s) specified" msgstr "" -#: ../raster/r.path/main.c:394 +#: ../raster/r.path/main.c:397 #, c-format msgid "Reading raster values map <%s> ..." msgstr "" -#: ../raster/r.path/main.c:399 +#: ../raster/r.path/main.c:402 #, c-format msgid "Unable to open temporary file <%s>: %s" msgstr "" -#: ../raster/r.path/main.c:411 ../raster/r.path/main.c:489 -#: ../raster/r.path/main.c:506 +#: ../raster/r.path/main.c:414 ../raster/r.path/main.c:492 +#: ../raster/r.path/main.c:509 msgid "Unable to write to tempfile" msgstr "" -#: ../raster/r.path/main.c:419 +#: ../raster/r.path/main.c:422 msgid "Unable to read range file" msgstr "" -#: ../raster/r.path/main.c:422 +#: ../raster/r.path/main.c:425 #, c-format msgid "Invalid directions map <%s>" msgstr "" -#: ../raster/r.path/main.c:427 +#: ../raster/r.path/main.c:430 msgid "Directional degrees can not be > 360" msgstr "" -#: ../raster/r.path/main.c:433 +#: ../raster/r.path/main.c:436 msgid "Directional degrees divided by 45 can not be > 8" msgstr "" -#: ../raster/r.path/main.c:438 +#: ../raster/r.path/main.c:441 #, c-format msgid "Bitmask encoded directions can not be > %d" msgstr "" -#: ../raster/r.path/main.c:445 +#: ../raster/r.path/main.c:448 msgid "Input direction format assumed to be degrees CCW from East divided by 45" msgstr "" -#: ../raster/r.path/main.c:450 +#: ../raster/r.path/main.c:453 msgid "Input direction format assumed to be bitmask encoded without Knight's move" msgstr "" -#: ../raster/r.path/main.c:456 +#: ../raster/r.path/main.c:459 msgid "Input direction format assumed to be degrees CCW from East" msgstr "" -#: ../raster/r.path/main.c:460 +#: ../raster/r.path/main.c:463 msgid "Input direction format assumed to be bitmask encoded with Knight's move" msgstr "" -#: ../raster/r.path/main.c:465 +#: ../raster/r.path/main.c:468 #, c-format msgid "Unable to detect format of input direction map <%s>" msgstr "" -#: ../raster/r.path/main.c:469 +#: ../raster/r.path/main.c:472 #, c-format msgid "Invalid directions format '%s'" msgstr "" -#: ../raster/r.path/main.c:471 +#: ../raster/r.path/main.c:474 #, c-format msgid "Reading direction map <%s> ..." msgstr "" -#: ../raster/r.path/main.c:525 +#: ../raster/r.path/main.c:528 msgid "Processing start points..." msgstr "" -#: ../raster/r.path/main.c:535 ../vector/v.buffer/main.c:410 +#: ../raster/r.path/main.c:538 ../vector/v.buffer/main.c:410 #: ../vector/v.in.ogr/main.c:881 ../vector/v.overlay/main.c:237 #: ../vector/v.voronoi/main.c:215 msgid "Unable to create temporary vector map" msgstr "" -#: ../raster/r.path/main.c:541 ../raster/r.path/main.c:557 +#: ../raster/r.path/main.c:544 ../raster/r.path/main.c:560 #, c-format msgid "No path at row %d, col %d" msgstr "" -#: ../raster/r.path/main.c:546 ../vector/v.overlay/area_area.c:134 +#: ../raster/r.path/main.c:549 ../vector/v.overlay/area_area.c:134 #: ../vector/v.overlay/line_area.c:255 msgid "Breaking lines..." msgstr "" -#: ../raster/r.path/main.c:684 +#: ../raster/r.path/main.c:687 msgid "Unable to increase point list" msgstr "" -#: ../raster/r.path/main.c:887 +#: ../raster/r.path/main.c:890 #, c-format msgid "No path from row %d, col %d" msgstr "" -#: ../raster/r.path/main.c:901 +#: ../raster/r.path/main.c:904 #, c-format msgid "Invalid direction %d" msgstr "" -#: ../raster/r.path/main.c:999 +#: ../raster/r.path/main.c:1002 msgid "Path is leaving the current region" msgstr "" @@ -38477,39 +38485,17 @@ msgstr "" msgid "Link to vector map <%s> created." msgstr "" -#: ../vector/v.external/proj.c:35 ../vector/v.in.ogr/main.c:741 -#: ../vector/v.in.ogr/proj.c:36 +#: ../vector/v.external/proj.c:34 ../vector/v.in.ogr/main.c:741 +#: ../vector/v.in.ogr/proj.c:34 #, c-format msgid "Geometry column <%s> not found in input layer <%s>" msgstr "" -#: ../vector/v.external/proj.c:49 ../vector/v.in.ogr/proj.c:50 -msgid "Unable to convert input layer projection information to GRASS format for checking" -msgstr "" - -#: ../vector/v.external/proj.c:55 ../vector/v.external/proj.c:85 -#: ../vector/v.in.ogr/proj.c:56 ../vector/v.in.ogr/proj.c:86 -msgid "Can't get WKT parameter string" -msgstr "" - -#: ../vector/v.external/proj.c:58 ../vector/v.external/proj.c:88 -#: ../vector/v.in.ogr/proj.c:59 ../vector/v.in.ogr/proj.c:89 -#, c-format -msgid "" -"WKT definition:\n" -"%s" -msgstr "" - -#: ../vector/v.external/proj.c:69 ../vector/v.in.ogr/proj.c:70 +#: ../vector/v.external/proj.c:46 ../vector/v.in.ogr/proj.c:46 #, c-format msgid "No projection information available for layer <%s>" msgstr "" -#: ../vector/v.external/proj.c:78 ../vector/v.in.ogr/proj.c:79 -#, c-format -msgid "Projection for layer <%s> does not contain a valid CRS" -msgstr "" - #: ../vector/v.extract/extract.c:202 #, c-format msgid "No category found for area %d. Skipping." @@ -40269,16 +40255,16 @@ msgstr "" msgid "The spatial filter does not overlap with OGR layer <%s>. Nothing to import." msgstr "" -#: ../vector/v.in.ogr/proj.c:168 +#: ../vector/v.in.ogr/proj.c:85 msgid "Layer projections are unreadable" msgstr "" -#: ../vector/v.in.ogr/proj.c:184 +#: ../vector/v.in.ogr/proj.c:93 #, c-format msgid "Projection for layer <%s> is unreadable" msgstr "" -#: ../vector/v.in.ogr/proj.c:236 +#: ../vector/v.in.ogr/proj.c:113 #, c-format msgid "Projection of layer <%s> is different from projection of layer <%s>" msgstr "" diff --git a/locale/po/grassmods_cs.po b/locale/po/grassmods_cs.po index af9d91f3aab..82e3185d67b 100644 --- a/locale/po/grassmods_cs.po +++ b/locale/po/grassmods_cs.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: grassmods_cs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-07-26 01:36+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Czech \n" @@ -183,7 +183,7 @@ msgstr "vypíše všechny sloupce pro zadanou tabulku." #: ../general/g.proj/main.c:90 ../general/g.proj/main.c:99 #: ../general/g.proj/main.c:105 ../general/g.proj/main.c:114 #: ../general/g.proj/main.c:126 ../general/g.proj/main.c:135 -#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:244 +#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:245 #: ../general/g.region/main.c:91 ../general/g.region/main.c:97 #: ../general/g.region/main.c:102 ../general/g.region/main.c:108 #: ../general/g.region/main.c:113 ../general/g.region/main.c:118 @@ -311,13 +311,12 @@ msgstr "" #: ../db/db.connect/main.c:144 ../general/g.findfile/main.c:187 #: ../general/g.list/list.c:122 ../general/g.mapset/main.c:119 -#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:54 -#: ../general/g.proj/output.c:360 ../general/g.region/main.c:471 -#: ../general/g.version/main.c:140 ../misc/m.measure/main.c:87 -#: ../raster/r.describe/dumplist.c:38 ../raster/r.distance/report.c:211 -#: ../raster/r.distance/report.c:218 ../raster/r.distance/report.c:225 -#: ../raster/r.info/main.c:147 ../raster/r.proj/main.c:487 -#: ../raster/r.regression.line/main.c:101 +#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:351 +#: ../general/g.region/main.c:471 ../general/g.version/main.c:140 +#: ../misc/m.measure/main.c:87 ../raster/r.describe/dumplist.c:38 +#: ../raster/r.distance/report.c:211 ../raster/r.distance/report.c:218 +#: ../raster/r.distance/report.c:225 ../raster/r.info/main.c:147 +#: ../raster/r.proj/main.c:487 ../raster/r.regression.line/main.c:101 #: ../raster/r.regression.multi/main.c:197 #: ../raster/r.regression.multi/main.c:566 #: ../raster/r.stats.quantile/main.c:430 ../raster/r.stats.quantile/main.c:447 @@ -336,7 +335,7 @@ msgstr "" msgid "Failed to initialize JSON object. Out of memory?" msgstr "" -#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:277 +#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:278 #: ../general/g.region/main.c:427 ../general/g.version/main.c:153 #: ../imagery/i.group/main.c:137 ../misc/m.measure/main.c:100 #: ../raster/r.proj/main.c:270 ../raster/r.regression.line/main.c:114 @@ -493,7 +492,7 @@ msgstr "" msgid "Lists all databases for a given driver and location." msgstr "" -#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:383 +#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:374 #: ../general/g.region/main.c:990 ../general/g.version/main.c:409 #: ../imagery/i.group/main.c:301 ../raster/r.category/main.c:412 #: ../raster/r.describe/dumplist.c:71 ../raster/r.info/main.c:1000 @@ -6492,10 +6491,10 @@ msgstr "" msgid "Converts between PPM/PGM and PNG image formats." msgstr "" -#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:141 -#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:140 -#: ../vector/v.external/proj.c:173 ../vector/v.in.lidar/main.c:525 -#: ../vector/v.in.ogr/proj.c:307 +#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:129 +#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:129 +#: ../vector/v.external/proj.c:158 ../vector/v.in.lidar/main.c:525 +#: ../vector/v.in.ogr/proj.c:228 #, fuzzy, c-format msgid "Project <%s> created" msgstr "Lokace <%s> vytvořena" @@ -6808,55 +6807,67 @@ msgstr "" msgid "Name of new project (location) to create" msgstr "Název nové lokace, která má být vytvořena" -#: ../general/g.proj/main.c:239 -msgid "plain;Human readable text output;shell;shell script style text output;json;JSON (JavaScript Object Notation);wkt;Well-known text output;proj4;PROJ.4 style text output;" +#: ../general/g.proj/main.c:240 +msgid "plain;Human readable text output;shell;shell script style text output;wkt;Well-known text output;projjson;JSON (JavaScript Object Notation) version of WKT;proj4;PROJ.4 style text output;" msgstr "" -#: ../general/g.proj/main.c:271 ../vector/v.what.rast/main.c:159 +#: ../general/g.proj/main.c:272 ../vector/v.what.rast/main.c:159 #, c-format msgid "The format option can only be used with -%c flag" msgstr "" -#: ../general/g.proj/main.c:283 +#: ../general/g.proj/main.c:284 msgid "Flag 'j' is deprecated and will be removed in a future release. Please use format=proj4 instead." msgstr "" -#: ../general/g.proj/main.c:292 +#: ../general/g.proj/main.c:293 msgid "Flag 'w' is deprecated and will be removed in a future release. Please use format=wkt instead." msgstr "" -#: ../general/g.proj/main.c:312 +#: ../general/g.proj/main.c:313 #, c-format msgid "Only one of '%s', '%s', '%s', '%s' or '%s' options may be specified" msgstr "" -#: ../general/g.proj/main.c:364 +#: ../general/g.proj/main.c:365 msgid "Projection files missing" msgstr "Projekční soubory chybí" -#: ../general/g.proj/main.c:392 +#: ../general/g.proj/main.c:393 #, c-format msgid "No output format specified. Define one of the options: plain, shell, json, wkt, or proj4 using the -%c flag." msgstr "" -#: ../general/g.proj/main.c:397 +#: ../general/g.proj/main.c:398 #, c-format msgid "No output format specified. Define one of the options: plain, shell, json, or proj4 using the -%c flag." msgstr "" -#: ../general/g.proj/output.c:221 +#: ../general/g.proj/output.c:54 +#, fuzzy +#| msgid "OGR driver <%s> not available" +msgid "JSON output is not available." +msgstr "Ovladač OGR <%s> není dostupný" + +#: ../general/g.proj/output.c:212 msgid "Unable to convert projection information to PROJ format" msgstr "" -#: ../general/g.proj/output.c:295 +#: ../general/g.proj/output.c:286 #, c-format msgid "Unable to create PROJ definition from srid <%s>" msgstr "" -#: ../general/g.proj/output.c:337 +#: ../general/g.proj/output.c:328 msgid "Unable to convert to WKT" msgstr "" +#: ../general/g.proj/output.c:433 +#, fuzzy +#| msgid "Unable to insert row: %s" +msgid "Unable to convert to PROJJSON" +msgstr "Nelze vložit nový řádek: %s" + #: ../general/g.region/main.c:67 msgid "computational region" msgstr "" @@ -11516,10 +11527,10 @@ msgstr "" #: ../raster/r.grow.distance/main.c:392 ../raster/r.li/r.li.daemon/daemon.c:743 #: ../raster/r.mfilter/execute.c:82 ../raster/r.mfilter/execute.c:114 #: ../raster/r.mfilter/execute.c:165 ../raster/r.mfilter/getrow.c:24 -#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:786 -#: ../raster/r.path/main.c:822 ../raster/r.path/main.c:954 -#: ../raster/r.path/main.c:1073 ../raster/r.path/main.c:1103 -#: ../raster/r.path/main.c:1207 ../raster/r.thin/io.c:72 +#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:789 +#: ../raster/r.path/main.c:825 ../raster/r.path/main.c:957 +#: ../raster/r.path/main.c:1076 ../raster/r.path/main.c:1106 +#: ../raster/r.path/main.c:1210 ../raster/r.thin/io.c:72 #: ../raster/r.thin/io.c:82 ../raster3d/r3.in.v5d/v5d.c:1192 #: ../raster3d/r3.in.v5d/v5d.c:1443 ../raster3d/r3.in.v5d/v5d.c:1523 #: ../raster3d/r3.in.v5d/v5d.c:1848 ../raster3d/r3.in.v5d/v5d.c:1859 @@ -11544,9 +11555,9 @@ msgstr "" #: ../raster/r.clump/minsize.c:268 ../raster/r.clump/minsize.c:308 #: ../raster/r.clump/minsize.c:319 ../raster/r.clump/minsize.c:454 #: ../raster/r.clump/minsize.c:481 ../raster/r.clump/minsize.c:557 -#: ../raster/r.path/main.c:791 ../raster/r.path/main.c:827 -#: ../raster/r.path/main.c:962 ../raster/r.path/main.c:1078 -#: ../raster/r.path/main.c:1108 ../raster/r.path/main.c:1213 +#: ../raster/r.path/main.c:794 ../raster/r.path/main.c:830 +#: ../raster/r.path/main.c:965 ../raster/r.path/main.c:1081 +#: ../raster/r.path/main.c:1111 ../raster/r.path/main.c:1216 msgid "Unable to read from temp file" msgstr "" @@ -19909,7 +19920,7 @@ msgstr "Pouze jedna z voleb -c, -a a -n" msgid "Starting point %d is outside the current region" msgstr "Počáteční bod %d je mimo současný region" -#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:375 +#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:378 #, c-format msgid "Starting vector map <%s> contains no points in the current region" msgstr "Počáteční vektorová mapa <%s> neobsahuje v současném regionu žádné body" @@ -19923,8 +19934,8 @@ msgid "Calculating flow directions..." msgstr "Počítám směry odtoku...." #: ../raster/r.drain/main.c:485 ../raster/r.in.lidar/main.c:783 -#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:598 -#: ../raster/r.path/main.c:628 ../raster/r.viewshed/grass.cpp:621 +#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:601 +#: ../raster/r.path/main.c:631 ../raster/r.viewshed/grass.cpp:621 msgid "Writing output raster map..." msgstr "" @@ -20172,89 +20183,98 @@ msgstr "Vybraný kanál (%d) neexistuje" msgid "Imagery group <%s> created" msgstr "" -#: ../raster/r.external/proj.c:51 ../raster/r.external/proj.c:93 -#: ../raster/r.in.gdal/proj.c:51 ../raster/r.in.gdal/proj.c:93 -#, c-format -msgid "" -"Input contains an invalid CRS. WKT definition:\n" -"%s" +#: ../raster/r.external/proj.c:36 ../raster/r.external/proj.c:63 +#: ../raster/r.external/proj.c:122 ../raster/r.in.gdal/proj.c:36 +#: ../raster/r.in.gdal/proj.c:63 ../raster/r.in.gdal/proj.c:122 +#: ../vector/v.external/proj.c:92 ../vector/v.external/proj.c:151 +#: ../vector/v.in.ogr/proj.c:162 ../vector/v.in.ogr/proj.c:221 +msgid "Can't get WKT parameter string" +msgstr "" + +#: ../raster/r.external/proj.c:56 ../raster/r.in.gdal/proj.c:56 +#: ../vector/v.external/proj.c:85 ../vector/v.in.ogr/proj.c:155 +msgid "Input contains an invalid CRS." msgstr "" -#: ../raster/r.external/proj.c:120 ../raster/r.in.gdal/proj.c:120 +#: ../raster/r.external/proj.c:66 ../raster/r.in.gdal/proj.c:66 +#: ../vector/v.external/proj.c:95 ../vector/v.in.ogr/proj.c:165 +#, fuzzy +#| msgid "Definition" +msgid "WKT definition:" +msgstr "Definice" + +#: ../raster/r.external/proj.c:99 ../raster/r.in.gdal/proj.c:99 +#: ../vector/v.external/proj.c:128 ../vector/v.in.ogr/proj.c:198 msgid "No projection information available" msgstr "" -#: ../raster/r.external/proj.c:133 +#: ../raster/r.external/proj.c:114 ../raster/r.in.gdal/proj.c:114 +#: ../vector/v.external/proj.c:143 ../vector/v.in.ogr/proj.c:213 #, fuzzy -msgid "Unable to convert input map coordinate reference system to GRASS format; cannot create new project." +msgid "Unable to convert input map projection to GRASS format; cannot create new project." msgstr "Nelze převést vstupní mapovou projekci do formátu GRASSu; nelze vytvořit novou location." -#: ../raster/r.external/proj.c:139 ../raster/r.in.gdal/main.c:1039 -#: ../raster/r.in.gdal/proj.c:138 ../vector/v.external/proj.c:171 -#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:305 +#: ../raster/r.external/proj.c:127 ../raster/r.in.gdal/main.c:1039 +#: ../raster/r.in.gdal/proj.c:127 ../vector/v.external/proj.c:156 +#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:226 #, fuzzy, c-format msgid "Unable to create new project <%s>" msgstr "Nelze vyvořit soubor pro závěrečnou zprávu <%s>" -#: ../raster/r.external/proj.c:165 ../raster/r.in.gdal/proj.c:164 -#: ../vector/v.external/proj.c:197 ../vector/v.in.ogr/proj.c:331 +#: ../raster/r.external/proj.c:157 ../raster/r.in.gdal/proj.c:157 +#: ../vector/v.external/proj.c:186 ../vector/v.in.ogr/proj.c:256 msgid "Unable to convert input map projection information to GRASS format." msgstr "" -#: ../raster/r.external/proj.c:192 ../raster/r.in.gdal/proj.c:192 +#: ../raster/r.external/proj.c:238 ../raster/r.in.gdal/proj.c:238 #: ../raster/r.in.lidar/projection.c:126 -#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:228 -#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:360 +#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:267 +#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:337 msgid "Over-riding projection check" msgstr "Přeskakuje se kontrola kartografického zobrazení." -#: ../raster/r.external/proj.c:200 ../raster/r.in.gdal/proj.c:200 -#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 -#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.external/proj.c:236 -#: ../vector/v.in.lidar/projection.c:30 ../vector/v.in.ogr/proj.c:368 +#: ../raster/r.external/proj.c:244 ../raster/r.in.gdal/proj.c:244 +#: ../vector/v.external/proj.c:273 ../vector/v.in.ogr/proj.c:343 #, fuzzy -msgid "" -"Coordinate reference system of dataset does not appear to match current project.\n" -"\n" +msgid "Coordinate reference system of dataset does not appear to match current project.\n" msgstr "" "Vypadá to, že kartografické zobrazení datasetu neodpovídá zobrazení aktuální lokace \n" "\n" -#: ../raster/r.external/proj.c:207 ../raster/r.external/proj.c:216 -#: ../raster/r.in.gdal/proj.c:207 ../raster/r.in.gdal/proj.c:216 -#: ../vector/v.external/proj.c:243 ../vector/v.external/proj.c:252 -#: ../vector/v.in.ogr/proj.c:375 ../vector/v.in.ogr/proj.c:384 +#: ../raster/r.external/proj.c:258 ../raster/r.in.gdal/proj.c:258 +#: ../vector/v.external/proj.c:287 ../vector/v.in.ogr/proj.c:357 #, fuzzy -msgid "Project PROJ_INFO is:\n" -msgstr "PROJ_INFO lokace je:\n" - -#: ../raster/r.external/proj.c:236 ../raster/r.external/proj.c:243 -#: ../raster/r.in.gdal/proj.c:236 ../raster/r.in.gdal/proj.c:243 -#: ../vector/v.external/proj.c:272 ../vector/v.external/proj.c:279 -#: ../vector/v.in.ogr/proj.c:404 ../vector/v.in.ogr/proj.c:411 -msgid "Dataset PROJ_INFO is:\n" +#| msgid "Dataset PROJ_INFO is:\n" +msgid "Dataset CRS is:\n" msgstr "PROJ_INFO datasetu je:\n" -#: ../raster/r.external/proj.c:324 ../raster/r.in.lidar/projection.c:89 -#: ../raster/r.in.pdal/projection.c:87 ../raster3d/r3.in.lidar/projection.c:90 -#: ../vector/v.external/proj.c:360 ../vector/v.in.lidar/projection.c:87 -#: ../vector/v.in.ogr/proj.c:492 ../vector/v.in.pdal/projection.c:87 +#: ../raster/r.external/proj.c:272 ../raster/r.in.gdal/proj.c:272 +#: ../vector/v.external/proj.c:301 ../vector/v.in.ogr/proj.c:371 +#, fuzzy +msgid "Project CRS is:\n" +msgstr "PROJ_INFO lokace je:\n" + +#: ../raster/r.external/proj.c:286 ../raster/r.in.gdal/proj.c:286 +#: ../raster/r.in.lidar/projection.c:89 ../raster/r.in.pdal/projection.c:87 +#: ../raster3d/r3.in.lidar/projection.c:90 ../vector/v.external/proj.c:315 +#: ../vector/v.in.lidar/projection.c:87 ../vector/v.in.ogr/proj.c:385 +#: ../vector/v.in.pdal/projection.c:87 #, c-format msgid "" "\n" "In case of no significant differences in the coordinate reference system definitions, use the -o flag to ignore them and use current project definition.\n" msgstr "" -#: ../raster/r.external/proj.c:328 ../raster/r.in.gdal/proj.c:327 -#: ../vector/v.external/proj.c:364 ../vector/v.in.ogr/proj.c:496 +#: ../raster/r.external/proj.c:290 ../raster/r.in.gdal/proj.c:290 +#: ../vector/v.external/proj.c:319 ../vector/v.in.ogr/proj.c:389 #, fuzzy msgid "Consider generating a new project from the input dataset using the 'project' parameter.\n" msgstr "Zvažte vytvoření nové lokace ze vstupního datasetu pomocí parametru 'location'.\n" -#: ../raster/r.external/proj.c:348 ../raster/r.in.gdal/proj.c:347 +#: ../raster/r.external/proj.c:310 ../raster/r.in.gdal/proj.c:310 #: ../raster/r.in.lidar/projection.c:136 ../raster/r.in.pdal/projection.c:134 -#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:384 -#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:516 +#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:339 +#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:409 #, fuzzy msgid "Coordinate reference system of input dataset and current project appear to match" msgstr "Kartografické zobrazení vstupního datasetu a aktuální lokace souhlasí." @@ -20873,7 +20893,7 @@ msgstr "" msgid "Region resolution shouldn't be lesser than map %s resolution. Run g.region raster=%s to set proper resolution" msgstr "" -#: ../raster/r.geomorphon/pattern.c:228 +#: ../raster/r.geomorphon/pattern.c:229 #, c-format msgid "Internal error in %s()" msgstr "" @@ -21846,8 +21866,7 @@ msgstr "á Výstupní projekce pro GCP tabulk: %s" msgid "Error in %s (can't re-project GCP %i)" msgstr "" -#: ../raster/r.in.gdal/main.c:983 ../vector/v.external/proj.c:165 -#: ../vector/v.in.lidar/main.c:516 +#: ../raster/r.in.gdal/main.c:983 ../vector/v.in.lidar/main.c:516 #, fuzzy msgid "Unable to convert input map CRS to GRASS format; cannot create new project." msgstr "Nelze převést vstupní mapovou projekci do formátu GRASSu; nelze vytvořit novou location." @@ -21902,17 +21921,6 @@ msgstr "" msgid "Unable to open file <%s>: %s." msgstr "" -#: ../raster/r.in.gdal/proj.c:132 ../vector/v.in.ogr/proj.c:299 -#, fuzzy -msgid "Unable to convert input map projection to GRASS format; cannot create new project." -msgstr "Nelze převést vstupní mapovou projekci do formátu GRASSu; nelze vytvořit novou location." - -#: ../raster/r.in.gdal/proj.c:323 -msgid "" -"\n" -"In case of no significant differences in the CRS definitions, use the -o flag to ignore them and use current project definition.\n" -msgstr "" - #: ../raster/r.in.gridatb/file_io.c:16 #, fuzzy, c-format #| msgid "Unable to open file <%s>" @@ -22274,6 +22282,16 @@ msgstr "Nelze vypočítat percentil bez určené volby pth!" msgid "Unable to calculate trimmed mean without the trim option specified!" msgstr "Nelze spočítat trim průměr bez zadané volby trim!" +#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 +#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.in.lidar/projection.c:30 +#, fuzzy +msgid "" +"Coordinate reference system of dataset does not appear to match current project.\n" +"\n" +msgstr "" +"Vypadá to, že kartografické zobrazení datasetu neodpovídá zobrazení aktuální lokace \n" +"\n" + #: ../raster/r.in.lidar/projection.c:38 ../raster/r.in.pdal/projection.c:36 #: ../vector/v.in.lidar/projection.c:36 ../vector/v.in.pdal/projection.c:36 #, fuzzy @@ -25150,114 +25168,114 @@ msgstr "Typ hrany grafu" msgid "Do not break lines (faster for single-direction bitmask encoding)" msgstr "" -#: ../raster/r.path/main.c:384 +#: ../raster/r.path/main.c:387 msgid "No start point(s) specified" msgstr "" -#: ../raster/r.path/main.c:394 +#: ../raster/r.path/main.c:397 #, c-format msgid "Reading raster values map <%s> ..." msgstr "" -#: ../raster/r.path/main.c:399 +#: ../raster/r.path/main.c:402 #, fuzzy, c-format #| msgid "Unable to open temporary file <%s>" msgid "Unable to open temporary file <%s>: %s" msgstr "Nelze otevřít dočasný soubor <%s>" -#: ../raster/r.path/main.c:411 ../raster/r.path/main.c:489 -#: ../raster/r.path/main.c:506 +#: ../raster/r.path/main.c:414 ../raster/r.path/main.c:492 +#: ../raster/r.path/main.c:509 msgid "Unable to write to tempfile" msgstr "" -#: ../raster/r.path/main.c:419 +#: ../raster/r.path/main.c:422 msgid "Unable to read range file" msgstr "Nelze číst soubor s rozsahem" -#: ../raster/r.path/main.c:422 +#: ../raster/r.path/main.c:425 #, c-format msgid "Invalid directions map <%s>" msgstr "" -#: ../raster/r.path/main.c:427 +#: ../raster/r.path/main.c:430 msgid "Directional degrees can not be > 360" msgstr "" -#: ../raster/r.path/main.c:433 +#: ../raster/r.path/main.c:436 msgid "Directional degrees divided by 45 can not be > 8" msgstr "" -#: ../raster/r.path/main.c:438 +#: ../raster/r.path/main.c:441 #, c-format msgid "Bitmask encoded directions can not be > %d" msgstr "" -#: ../raster/r.path/main.c:445 +#: ../raster/r.path/main.c:448 msgid "Input direction format assumed to be degrees CCW from East divided by 45" msgstr "" -#: ../raster/r.path/main.c:450 +#: ../raster/r.path/main.c:453 msgid "Input direction format assumed to be bitmask encoded without Knight's move" msgstr "" -#: ../raster/r.path/main.c:456 +#: ../raster/r.path/main.c:459 msgid "Input direction format assumed to be degrees CCW from East" msgstr "" -#: ../raster/r.path/main.c:460 +#: ../raster/r.path/main.c:463 msgid "Input direction format assumed to be bitmask encoded with Knight's move" msgstr "" -#: ../raster/r.path/main.c:465 +#: ../raster/r.path/main.c:468 #, c-format msgid "Unable to detect format of input direction map <%s>" msgstr "" -#: ../raster/r.path/main.c:469 +#: ../raster/r.path/main.c:472 #, c-format msgid "Invalid directions format '%s'" msgstr "" -#: ../raster/r.path/main.c:471 +#: ../raster/r.path/main.c:474 #, c-format msgid "Reading direction map <%s> ..." msgstr "" -#: ../raster/r.path/main.c:525 +#: ../raster/r.path/main.c:528 msgid "Processing start points..." msgstr "" -#: ../raster/r.path/main.c:535 ../vector/v.buffer/main.c:410 +#: ../raster/r.path/main.c:538 ../vector/v.buffer/main.c:410 #: ../vector/v.in.ogr/main.c:881 ../vector/v.overlay/main.c:237 #: ../vector/v.voronoi/main.c:215 msgid "Unable to create temporary vector map" msgstr "" -#: ../raster/r.path/main.c:541 ../raster/r.path/main.c:557 +#: ../raster/r.path/main.c:544 ../raster/r.path/main.c:560 #, c-format msgid "No path at row %d, col %d" msgstr "" -#: ../raster/r.path/main.c:546 ../vector/v.overlay/area_area.c:134 +#: ../raster/r.path/main.c:549 ../vector/v.overlay/area_area.c:134 #: ../vector/v.overlay/line_area.c:255 msgid "Breaking lines..." msgstr "Rozbíjím linie ... " -#: ../raster/r.path/main.c:684 +#: ../raster/r.path/main.c:687 msgid "Unable to increase point list" msgstr "" -#: ../raster/r.path/main.c:887 +#: ../raster/r.path/main.c:890 #, c-format msgid "No path from row %d, col %d" msgstr "" -#: ../raster/r.path/main.c:901 +#: ../raster/r.path/main.c:904 #, c-format msgid "Invalid direction %d" msgstr "" -#: ../raster/r.path/main.c:999 +#: ../raster/r.path/main.c:1002 msgid "Path is leaving the current region" msgstr "" @@ -38986,39 +39004,17 @@ msgstr "" msgid "Link to vector map <%s> created." msgstr "" -#: ../vector/v.external/proj.c:35 ../vector/v.in.ogr/main.c:741 -#: ../vector/v.in.ogr/proj.c:36 +#: ../vector/v.external/proj.c:34 ../vector/v.in.ogr/main.c:741 +#: ../vector/v.in.ogr/proj.c:34 #, c-format msgid "Geometry column <%s> not found in input layer <%s>" msgstr "" -#: ../vector/v.external/proj.c:49 ../vector/v.in.ogr/proj.c:50 -msgid "Unable to convert input layer projection information to GRASS format for checking" -msgstr "" - -#: ../vector/v.external/proj.c:55 ../vector/v.external/proj.c:85 -#: ../vector/v.in.ogr/proj.c:56 ../vector/v.in.ogr/proj.c:86 -msgid "Can't get WKT parameter string" -msgstr "" - -#: ../vector/v.external/proj.c:58 ../vector/v.external/proj.c:88 -#: ../vector/v.in.ogr/proj.c:59 ../vector/v.in.ogr/proj.c:89 -#, c-format -msgid "" -"WKT definition:\n" -"%s" -msgstr "" - -#: ../vector/v.external/proj.c:69 ../vector/v.in.ogr/proj.c:70 +#: ../vector/v.external/proj.c:46 ../vector/v.in.ogr/proj.c:46 #, c-format msgid "No projection information available for layer <%s>" msgstr "" -#: ../vector/v.external/proj.c:78 ../vector/v.in.ogr/proj.c:79 -#, c-format -msgid "Projection for layer <%s> does not contain a valid CRS" -msgstr "" - #: ../vector/v.extract/extract.c:202 #, c-format msgid "No category found for area %d. Skipping." @@ -40800,16 +40796,16 @@ msgstr "" msgid "The spatial filter does not overlap with OGR layer <%s>. Nothing to import." msgstr "" -#: ../vector/v.in.ogr/proj.c:168 +#: ../vector/v.in.ogr/proj.c:85 msgid "Layer projections are unreadable" msgstr "" -#: ../vector/v.in.ogr/proj.c:184 +#: ../vector/v.in.ogr/proj.c:93 #, c-format msgid "Projection for layer <%s> is unreadable" msgstr "" -#: ../vector/v.in.ogr/proj.c:236 +#: ../vector/v.in.ogr/proj.c:113 #, c-format msgid "Projection of layer <%s> is different from projection of layer <%s>" msgstr "" @@ -48456,33 +48452,6 @@ msgstr "Náhled BMP obrázku pomocí ovladače PNG." msgid "Image file" msgstr "Soubory obrazové skupiny" -#, fuzzy, c-format -#~| msgid "Unable to open %s" -#~ msgid "Unable to seek: %s" -#~ msgstr "Nelze otevřít %s" - -#~ msgid "Both -s and -h doesn't make sense" -#~ msgstr "Obě volby -s a -h dohromady nedávají smysl" - -#~ msgid "Use -M or -s, not both" -#~ msgstr "Vyberte pouze jeden z přepínačů -M nebo -s, ne oba" - -#~ msgid "Print the stats in shell script style" -#~ msgstr "Vypiš statistiku ve stylu pro shell skript" - -#~ msgid "Format: layer[/layer name] table key database driver" -#~ msgstr "Formát: vrstva[/jméno vrstvy] tabulka klíč databáze ovladač" - -#~ msgid "Output RRR:GGG:BBB color values for each profile point" -#~ msgstr "Výstupní barevné hodnoty RRR:GGG:BBB pro každý bod profilu" - -#, c-format -#~ msgid "Test %s." -#~ msgstr "Test %s." - -#~ msgid "changed" -#~ msgstr "změněno" - #~ msgid "" #~ "\n" #~ "%d classes, %.2f%% points stable\n" @@ -48816,6 +48785,9 @@ msgstr "Soubory obrazové skupiny" #~ msgid "Bins vector points into a raster map." #~ msgstr "<%s> je rastrová mapa s desetinnou čásrkou" +#~ msgid "Both -s and -h doesn't make sense" +#~ msgstr "Obě volby -s a -h dohromady nedávají smysl" + #, fuzzy #~ msgid "Boxplot color" #~ msgstr "Barva textu" @@ -49783,6 +49755,9 @@ msgstr "Soubory obrazové skupiny" #~ msgid "Format: All values must be >0" #~ msgstr "Mezní hodnota musí být >= 0" +#~ msgid "Format: layer[/layer name] table key database driver" +#~ msgstr "Formát: vrstva[/jméno vrstvy] tabulka klíč databáze ovladač" + #, fuzzy #~ msgid "Full path to file with list of HDF files" #~ msgstr "Cesta k souboru s pravidly reklasifikace" @@ -52503,6 +52478,9 @@ msgstr "Soubory obrazové skupiny" #~ msgid "Output Potential file" #~ msgstr "Titulek výstupního rastru" +#~ msgid "Output RRR:GGG:BBB color values for each profile point" +#~ msgstr "Výstupní barevné hodnoty RRR:GGG:BBB pro každý bod profilu" + #, fuzzy #~ msgid "Output absolute file name for the use table" #~ msgstr "Název databáze s tabulkou referenčního systému" @@ -52967,6 +52945,9 @@ msgstr "Soubory obrazové skupiny" #~ msgid "Print the request URL and exit" #~ msgstr "vypiš tabulky a ukonči se." +#~ msgid "Print the stats in shell script style" +#~ msgstr "Vypiš statistiku ve stylu pro shell skript" + #, fuzzy #~ msgid "Print the threshold value in shell script style" #~ msgstr "Vypiš statistiku ve stylu pro shell skript" @@ -53710,6 +53691,10 @@ msgstr "Soubory obrazové skupiny" #~ msgid "Terrain options" #~ msgstr "Možnosti vytvoření" +#, c-format +#~ msgid "Test %s." +#~ msgstr "Test %s." + #, fuzzy #~ msgid "Test presence locations" #~ msgstr "Referenční poloha" @@ -53968,6 +53953,10 @@ msgstr "Soubory obrazové skupiny" #~ msgid "Unable to assign/dissociate band reference. {}" #~ msgstr "Nelze otevřít databázipro referenční tabulku" +#, fuzzy +#~ msgid "Unable to convert input map coordinate reference system to GRASS format; cannot create new project." +#~ msgstr "Nelze převést vstupní mapovou projekci do formátu GRASSu; nelze vytvořit novou location." + #~ msgid "Unable to convert input raster map projection information to GRASS format for checking" #~ msgstr "Nelze převést informace o vstupní mapové projekci do formátu GRASSu (pro kontrolu)" @@ -54001,6 +53990,11 @@ msgstr "Soubory obrazové skupiny" #~ msgid "Unable to read REF file for group <%s>" #~ msgstr "Nelze číst soubor REF podskupiny <%s> ve skupině <%s>." +#, fuzzy, c-format +#~| msgid "Unable to open %s" +#~ msgid "Unable to seek: %s" +#~ msgstr "Nelze otevřít %s" + #, fuzzy #~ msgid "Unacceptable conditions for Designated Fill" #~ msgstr "Nelze otevřít soubor se signaturami" @@ -54058,6 +54052,9 @@ msgstr "Soubory obrazové skupiny" #~ msgid "Upstream northing (or y or lat) column name" #~ msgstr "Potlačit tisk názvů sloupců" +#~ msgid "Use -M or -s, not both" +#~ msgstr "Vyberte pouze jeden z přepínačů -M nebo -s, ne oba" + #, fuzzy #~ msgid "Use a random seed" #~ msgstr "Titulek pro novou rastrovou mapu" @@ -54466,6 +54463,9 @@ msgstr "Soubory obrazové skupiny" #~ msgid "centerpoint" #~ msgstr "centroid" +#~ msgid "changed" +#~ msgstr "změněno" + #, fuzzy #~ msgid "channels" #~ msgstr "změněno" diff --git a/locale/po/grassmods_de.po b/locale/po/grassmods_de.po index 56c38645a37..eeabb1771db 100644 --- a/locale/po/grassmods_de.po +++ b/locale/po/grassmods_de.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: grassmods_de\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-07-26 01:36+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: German \n" @@ -178,7 +178,7 @@ msgstr "Listet alle Spalten einer Tabelle." #: ../general/g.proj/main.c:90 ../general/g.proj/main.c:99 #: ../general/g.proj/main.c:105 ../general/g.proj/main.c:114 #: ../general/g.proj/main.c:126 ../general/g.proj/main.c:135 -#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:244 +#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:245 #: ../general/g.region/main.c:91 ../general/g.region/main.c:97 #: ../general/g.region/main.c:102 ../general/g.region/main.c:108 #: ../general/g.region/main.c:113 ../general/g.region/main.c:118 @@ -306,13 +306,12 @@ msgstr "" #: ../db/db.connect/main.c:144 ../general/g.findfile/main.c:187 #: ../general/g.list/list.c:122 ../general/g.mapset/main.c:119 -#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:54 -#: ../general/g.proj/output.c:360 ../general/g.region/main.c:471 -#: ../general/g.version/main.c:140 ../misc/m.measure/main.c:87 -#: ../raster/r.describe/dumplist.c:38 ../raster/r.distance/report.c:211 -#: ../raster/r.distance/report.c:218 ../raster/r.distance/report.c:225 -#: ../raster/r.info/main.c:147 ../raster/r.proj/main.c:487 -#: ../raster/r.regression.line/main.c:101 +#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:351 +#: ../general/g.region/main.c:471 ../general/g.version/main.c:140 +#: ../misc/m.measure/main.c:87 ../raster/r.describe/dumplist.c:38 +#: ../raster/r.distance/report.c:211 ../raster/r.distance/report.c:218 +#: ../raster/r.distance/report.c:225 ../raster/r.info/main.c:147 +#: ../raster/r.proj/main.c:487 ../raster/r.regression.line/main.c:101 #: ../raster/r.regression.multi/main.c:197 #: ../raster/r.regression.multi/main.c:566 #: ../raster/r.stats.quantile/main.c:430 ../raster/r.stats.quantile/main.c:447 @@ -331,7 +330,7 @@ msgstr "" msgid "Failed to initialize JSON object. Out of memory?" msgstr "" -#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:277 +#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:278 #: ../general/g.region/main.c:427 ../general/g.version/main.c:153 #: ../imagery/i.group/main.c:137 ../misc/m.measure/main.c:100 #: ../raster/r.proj/main.c:270 ../raster/r.regression.line/main.c:114 @@ -488,7 +487,7 @@ msgstr "" msgid "Lists all databases for a given driver and location." msgstr "" -#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:383 +#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:374 #: ../general/g.region/main.c:990 ../general/g.version/main.c:409 #: ../imagery/i.group/main.c:301 ../raster/r.category/main.c:412 #: ../raster/r.describe/dumplist.c:71 ../raster/r.info/main.c:1000 @@ -6489,10 +6488,10 @@ msgstr "" msgid "Converts between PPM/PGM and PNG image formats." msgstr "" -#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:141 -#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:140 -#: ../vector/v.external/proj.c:173 ../vector/v.in.lidar/main.c:525 -#: ../vector/v.in.ogr/proj.c:307 +#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:129 +#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:129 +#: ../vector/v.external/proj.c:158 ../vector/v.in.lidar/main.c:525 +#: ../vector/v.in.ogr/proj.c:228 #, fuzzy, c-format msgid "Project <%s> created" msgstr "Location <%s> erstellt." @@ -6813,57 +6812,69 @@ msgstr "Verändere die Projektion der aktuelle Location" msgid "Name of new project (location) to create" msgstr "Name einer neu zu erstellenden Location" -#: ../general/g.proj/main.c:239 -msgid "plain;Human readable text output;shell;shell script style text output;json;JSON (JavaScript Object Notation);wkt;Well-known text output;proj4;PROJ.4 style text output;" +#: ../general/g.proj/main.c:240 +msgid "plain;Human readable text output;shell;shell script style text output;wkt;Well-known text output;projjson;JSON (JavaScript Object Notation) version of WKT;proj4;PROJ.4 style text output;" msgstr "" -#: ../general/g.proj/main.c:271 ../vector/v.what.rast/main.c:159 +#: ../general/g.proj/main.c:272 ../vector/v.what.rast/main.c:159 #, c-format msgid "The format option can only be used with -%c flag" msgstr "" -#: ../general/g.proj/main.c:283 +#: ../general/g.proj/main.c:284 msgid "Flag 'j' is deprecated and will be removed in a future release. Please use format=proj4 instead." msgstr "" -#: ../general/g.proj/main.c:292 +#: ../general/g.proj/main.c:293 msgid "Flag 'w' is deprecated and will be removed in a future release. Please use format=wkt instead." msgstr "" -#: ../general/g.proj/main.c:312 +#: ../general/g.proj/main.c:313 #, c-format msgid "Only one of '%s', '%s', '%s', '%s' or '%s' options may be specified" msgstr "" -#: ../general/g.proj/main.c:364 +#: ../general/g.proj/main.c:365 msgid "Projection files missing" msgstr "Projektionsinformationen fehlen." -#: ../general/g.proj/main.c:392 +#: ../general/g.proj/main.c:393 #, fuzzy, c-format #| msgid "No output format specified, define one of flags -%c, -%c, or -%c" msgid "No output format specified. Define one of the options: plain, shell, json, wkt, or proj4 using the -%c flag." msgstr "Kein Ausgabeformat angegeben, verwende einen der Schalter -%c, -%c oder -%c" -#: ../general/g.proj/main.c:397 +#: ../general/g.proj/main.c:398 #, fuzzy, c-format #| msgid "No output format specified, define one of flags -%c, -%c, or -%c" msgid "No output format specified. Define one of the options: plain, shell, json, or proj4 using the -%c flag." msgstr "Kein Ausgabeformat angegeben, verwende einen der Schalter -%c, -%c oder -%c" -#: ../general/g.proj/output.c:221 +#: ../general/g.proj/output.c:54 +#, fuzzy +#| msgid "Volume set number %d is not available" +msgid "JSON output is not available." +msgstr "Die Volume Set Number %d nicht vorhanden." + +#: ../general/g.proj/output.c:212 msgid "Unable to convert projection information to PROJ format" msgstr "" -#: ../general/g.proj/output.c:295 +#: ../general/g.proj/output.c:286 #, c-format msgid "Unable to create PROJ definition from srid <%s>" msgstr "" -#: ../general/g.proj/output.c:337 +#: ../general/g.proj/output.c:328 msgid "Unable to convert to WKT" msgstr "" +#: ../general/g.proj/output.c:433 +#, fuzzy +#| msgid "Unable to insert row: %s" +msgid "Unable to convert to PROJJSON" +msgstr "Kann Zeile nicht einfügen: %s" + #: ../general/g.region/main.c:67 msgid "computational region" msgstr "" @@ -11531,10 +11542,10 @@ msgstr "" #: ../raster/r.grow.distance/main.c:392 ../raster/r.li/r.li.daemon/daemon.c:743 #: ../raster/r.mfilter/execute.c:82 ../raster/r.mfilter/execute.c:114 #: ../raster/r.mfilter/execute.c:165 ../raster/r.mfilter/getrow.c:24 -#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:786 -#: ../raster/r.path/main.c:822 ../raster/r.path/main.c:954 -#: ../raster/r.path/main.c:1073 ../raster/r.path/main.c:1103 -#: ../raster/r.path/main.c:1207 ../raster/r.thin/io.c:72 +#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:789 +#: ../raster/r.path/main.c:825 ../raster/r.path/main.c:957 +#: ../raster/r.path/main.c:1076 ../raster/r.path/main.c:1106 +#: ../raster/r.path/main.c:1210 ../raster/r.thin/io.c:72 #: ../raster/r.thin/io.c:82 ../raster3d/r3.in.v5d/v5d.c:1192 #: ../raster3d/r3.in.v5d/v5d.c:1443 ../raster3d/r3.in.v5d/v5d.c:1523 #: ../raster3d/r3.in.v5d/v5d.c:1848 ../raster3d/r3.in.v5d/v5d.c:1859 @@ -11560,9 +11571,9 @@ msgstr "" #: ../raster/r.clump/minsize.c:268 ../raster/r.clump/minsize.c:308 #: ../raster/r.clump/minsize.c:319 ../raster/r.clump/minsize.c:454 #: ../raster/r.clump/minsize.c:481 ../raster/r.clump/minsize.c:557 -#: ../raster/r.path/main.c:791 ../raster/r.path/main.c:827 -#: ../raster/r.path/main.c:962 ../raster/r.path/main.c:1078 -#: ../raster/r.path/main.c:1108 ../raster/r.path/main.c:1213 +#: ../raster/r.path/main.c:794 ../raster/r.path/main.c:830 +#: ../raster/r.path/main.c:965 ../raster/r.path/main.c:1081 +#: ../raster/r.path/main.c:1111 ../raster/r.path/main.c:1216 msgid "Unable to read from temp file" msgstr "" @@ -19923,7 +19934,7 @@ msgstr "Bitte geben Sie nur einen der Schalter -c, -a und -n an." msgid "Starting point %d is outside the current region" msgstr "Startpunkt %d ist außerhalb der aktuellen Region." -#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:375 +#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:378 #, c-format msgid "Starting vector map <%s> contains no points in the current region" msgstr "Start-Vektorkarte <%s> beinhaltet keine Punkte in der aktuellen Region" @@ -19937,8 +19948,8 @@ msgid "Calculating flow directions..." msgstr "Berechne Flußrichtungen..." #: ../raster/r.drain/main.c:485 ../raster/r.in.lidar/main.c:783 -#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:598 -#: ../raster/r.path/main.c:628 ../raster/r.viewshed/grass.cpp:621 +#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:601 +#: ../raster/r.path/main.c:631 ../raster/r.viewshed/grass.cpp:621 msgid "Writing output raster map..." msgstr "" @@ -20186,73 +20197,84 @@ msgstr "Der ausgewählte Kanal (%d) existiert nicht." msgid "Imagery group <%s> created" msgstr "Bildgruppe <%s> erzeugt." -#: ../raster/r.external/proj.c:51 ../raster/r.external/proj.c:93 -#: ../raster/r.in.gdal/proj.c:51 ../raster/r.in.gdal/proj.c:93 -#, c-format -msgid "" -"Input contains an invalid CRS. WKT definition:\n" -"%s" +#: ../raster/r.external/proj.c:36 ../raster/r.external/proj.c:63 +#: ../raster/r.external/proj.c:122 ../raster/r.in.gdal/proj.c:36 +#: ../raster/r.in.gdal/proj.c:63 ../raster/r.in.gdal/proj.c:122 +#: ../vector/v.external/proj.c:92 ../vector/v.external/proj.c:151 +#: ../vector/v.in.ogr/proj.c:162 ../vector/v.in.ogr/proj.c:221 +msgid "Can't get WKT parameter string" msgstr "" -#: ../raster/r.external/proj.c:120 ../raster/r.in.gdal/proj.c:120 +#: ../raster/r.external/proj.c:56 ../raster/r.in.gdal/proj.c:56 +#: ../vector/v.external/proj.c:85 ../vector/v.in.ogr/proj.c:155 +#, fuzzy +#| msgid "Input map contains no data" +msgid "Input contains an invalid CRS." +msgstr "Eingabekarte enthält keine Daten." + +#: ../raster/r.external/proj.c:66 ../raster/r.in.gdal/proj.c:66 +#: ../vector/v.external/proj.c:95 ../vector/v.in.ogr/proj.c:165 +#, fuzzy +#| msgid "Definition" +msgid "WKT definition:" +msgstr "Definition" + +#: ../raster/r.external/proj.c:99 ../raster/r.in.gdal/proj.c:99 +#: ../vector/v.external/proj.c:128 ../vector/v.in.ogr/proj.c:198 msgid "No projection information available" msgstr "" -#: ../raster/r.external/proj.c:133 +#: ../raster/r.external/proj.c:114 ../raster/r.in.gdal/proj.c:114 +#: ../vector/v.external/proj.c:143 ../vector/v.in.ogr/proj.c:213 #, fuzzy -msgid "Unable to convert input map coordinate reference system to GRASS format; cannot create new project." +msgid "Unable to convert input map projection to GRASS format; cannot create new project." msgstr "Kann die Projektion der Eingabekarte nicht in das GRASS-Format konvertieren; erstelle daher keine neue Location." -#: ../raster/r.external/proj.c:139 ../raster/r.in.gdal/main.c:1039 -#: ../raster/r.in.gdal/proj.c:138 ../vector/v.external/proj.c:171 -#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:305 +#: ../raster/r.external/proj.c:127 ../raster/r.in.gdal/main.c:1039 +#: ../raster/r.in.gdal/proj.c:127 ../vector/v.external/proj.c:156 +#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:226 #, fuzzy, c-format msgid "Unable to create new project <%s>" msgstr "Kann die Location <%s> nicht anlegen" -#: ../raster/r.external/proj.c:165 ../raster/r.in.gdal/proj.c:164 -#: ../vector/v.external/proj.c:197 ../vector/v.in.ogr/proj.c:331 +#: ../raster/r.external/proj.c:157 ../raster/r.in.gdal/proj.c:157 +#: ../vector/v.external/proj.c:186 ../vector/v.in.ogr/proj.c:256 msgid "Unable to convert input map projection information to GRASS format." msgstr "" -#: ../raster/r.external/proj.c:192 ../raster/r.in.gdal/proj.c:192 +#: ../raster/r.external/proj.c:238 ../raster/r.in.gdal/proj.c:238 #: ../raster/r.in.lidar/projection.c:126 -#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:228 -#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:360 +#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:267 +#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:337 msgid "Over-riding projection check" msgstr "Übersteuere Projektionsprüfung" -#: ../raster/r.external/proj.c:200 ../raster/r.in.gdal/proj.c:200 -#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 -#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.external/proj.c:236 -#: ../vector/v.in.lidar/projection.c:30 ../vector/v.in.ogr/proj.c:368 +#: ../raster/r.external/proj.c:244 ../raster/r.in.gdal/proj.c:244 +#: ../vector/v.external/proj.c:273 ../vector/v.in.ogr/proj.c:343 #, fuzzy -msgid "" -"Coordinate reference system of dataset does not appear to match current project.\n" -"\n" +msgid "Coordinate reference system of dataset does not appear to match current project.\n" msgstr "" "Die Projektion des Datensatzes scheint nicht mit der aktuellen Location übereinzustimmen.\n" "\n" -#: ../raster/r.external/proj.c:207 ../raster/r.external/proj.c:216 -#: ../raster/r.in.gdal/proj.c:207 ../raster/r.in.gdal/proj.c:216 -#: ../vector/v.external/proj.c:243 ../vector/v.external/proj.c:252 -#: ../vector/v.in.ogr/proj.c:375 ../vector/v.in.ogr/proj.c:384 +#: ../raster/r.external/proj.c:258 ../raster/r.in.gdal/proj.c:258 +#: ../vector/v.external/proj.c:287 ../vector/v.in.ogr/proj.c:357 #, fuzzy -msgid "Project PROJ_INFO is:\n" -msgstr "Location PROJ_INFO:\n" - -#: ../raster/r.external/proj.c:236 ../raster/r.external/proj.c:243 -#: ../raster/r.in.gdal/proj.c:236 ../raster/r.in.gdal/proj.c:243 -#: ../vector/v.external/proj.c:272 ../vector/v.external/proj.c:279 -#: ../vector/v.in.ogr/proj.c:404 ../vector/v.in.ogr/proj.c:411 -msgid "Dataset PROJ_INFO is:\n" +#| msgid "Dataset PROJ_INFO is:\n" +msgid "Dataset CRS is:\n" msgstr "Datensatz PROJ_INFO:\n" -#: ../raster/r.external/proj.c:324 ../raster/r.in.lidar/projection.c:89 -#: ../raster/r.in.pdal/projection.c:87 ../raster3d/r3.in.lidar/projection.c:90 -#: ../vector/v.external/proj.c:360 ../vector/v.in.lidar/projection.c:87 -#: ../vector/v.in.ogr/proj.c:492 ../vector/v.in.pdal/projection.c:87 +#: ../raster/r.external/proj.c:272 ../raster/r.in.gdal/proj.c:272 +#: ../vector/v.external/proj.c:301 ../vector/v.in.ogr/proj.c:371 +#, fuzzy +msgid "Project CRS is:\n" +msgstr "Location PROJ_INFO:\n" + +#: ../raster/r.external/proj.c:286 ../raster/r.in.gdal/proj.c:286 +#: ../raster/r.in.lidar/projection.c:89 ../raster/r.in.pdal/projection.c:87 +#: ../raster3d/r3.in.lidar/projection.c:90 ../vector/v.external/proj.c:315 +#: ../vector/v.in.lidar/projection.c:87 ../vector/v.in.ogr/proj.c:385 +#: ../vector/v.in.pdal/projection.c:87 #, fuzzy, c-format msgid "" "\n" @@ -20261,16 +20283,16 @@ msgstr "" "\n" "Falls es keine signifikanten Unterschiede in den Projektionsdefinitionen gibt, Flag -o verwenden, um sie zu ignorieren und die aktuelle Standortdefinition zu verwenden.\n" -#: ../raster/r.external/proj.c:328 ../raster/r.in.gdal/proj.c:327 -#: ../vector/v.external/proj.c:364 ../vector/v.in.ogr/proj.c:496 +#: ../raster/r.external/proj.c:290 ../raster/r.in.gdal/proj.c:290 +#: ../vector/v.external/proj.c:319 ../vector/v.in.ogr/proj.c:389 #, fuzzy msgid "Consider generating a new project from the input dataset using the 'project' parameter.\n" msgstr "Bedenken Sie, dass es besser sein könnte eine neue Location mit den Werten des zu importierenden Datensatzes mit Hilfe des 'location'-Parameters zu erzeugen.\n" -#: ../raster/r.external/proj.c:348 ../raster/r.in.gdal/proj.c:347 +#: ../raster/r.external/proj.c:310 ../raster/r.in.gdal/proj.c:310 #: ../raster/r.in.lidar/projection.c:136 ../raster/r.in.pdal/projection.c:134 -#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:384 -#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:516 +#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:339 +#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:409 #, fuzzy msgid "Coordinate reference system of input dataset and current project appear to match" msgstr "Die Projektionsinformationen des Eingabedatensatzes und der aktuellen Location scheinen übereinzustimmen." @@ -20887,7 +20909,7 @@ msgstr "" msgid "Region resolution shouldn't be lesser than map %s resolution. Run g.region raster=%s to set proper resolution" msgstr "" -#: ../raster/r.geomorphon/pattern.c:228 +#: ../raster/r.geomorphon/pattern.c:229 #, c-format msgid "Internal error in %s()" msgstr "" @@ -21863,8 +21885,7 @@ msgstr "* Ausgabe-Projektion der GCP-Tabelle: %s" msgid "Error in %s (can't re-project GCP %i)" msgstr "" -#: ../raster/r.in.gdal/main.c:983 ../vector/v.external/proj.c:165 -#: ../vector/v.in.lidar/main.c:516 +#: ../raster/r.in.gdal/main.c:983 ../vector/v.in.lidar/main.c:516 #, fuzzy msgid "Unable to convert input map CRS to GRASS format; cannot create new project." msgstr "Kann die Projektion der Eingabekarte nicht in das GRASS-Format konvertieren; erstelle daher keine neue Location." @@ -21919,20 +21940,6 @@ msgstr "" msgid "Unable to open file <%s>: %s." msgstr "" -#: ../raster/r.in.gdal/proj.c:132 ../vector/v.in.ogr/proj.c:299 -#, fuzzy -msgid "Unable to convert input map projection to GRASS format; cannot create new project." -msgstr "Kann die Projektion der Eingabekarte nicht in das GRASS-Format konvertieren; erstelle daher keine neue Location." - -#: ../raster/r.in.gdal/proj.c:323 -#, fuzzy -msgid "" -"\n" -"In case of no significant differences in the CRS definitions, use the -o flag to ignore them and use current project definition.\n" -msgstr "" -"\n" -"Falls es keine signifikanten Unterschiede in den Projektionsdefinitionen gibt, Flag -o verwenden, um sie zu ignorieren und die aktuelle Standortdefinition zu verwenden.\n" - #: ../raster/r.in.gridatb/file_io.c:16 #, fuzzy, c-format #| msgid "Unable to open file '%s'" @@ -22294,6 +22301,16 @@ msgstr "Kann das Perzentil nicht berechnen ohne die Angabe von pth!" msgid "Unable to calculate trimmed mean without the trim option specified!" msgstr "Kann keinen getrimmten Mittelwert (trimmean) ohne Angabe von trim!" +#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 +#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.in.lidar/projection.c:30 +#, fuzzy +msgid "" +"Coordinate reference system of dataset does not appear to match current project.\n" +"\n" +msgstr "" +"Die Projektion des Datensatzes scheint nicht mit der aktuellen Location übereinzustimmen.\n" +"\n" + #: ../raster/r.in.lidar/projection.c:38 ../raster/r.in.pdal/projection.c:36 #: ../vector/v.in.lidar/projection.c:36 ../vector/v.in.pdal/projection.c:36 #, fuzzy @@ -25169,114 +25186,114 @@ msgstr "Art der Kante" msgid "Do not break lines (faster for single-direction bitmask encoding)" msgstr "" -#: ../raster/r.path/main.c:384 +#: ../raster/r.path/main.c:387 msgid "No start point(s) specified" msgstr "" -#: ../raster/r.path/main.c:394 +#: ../raster/r.path/main.c:397 #, c-format msgid "Reading raster values map <%s> ..." msgstr "" -#: ../raster/r.path/main.c:399 +#: ../raster/r.path/main.c:402 #, fuzzy, c-format #| msgid "Unable to open temporary file <%s>" msgid "Unable to open temporary file <%s>: %s" msgstr "Kann temporäre Datei <%s> nicht öffnen." -#: ../raster/r.path/main.c:411 ../raster/r.path/main.c:489 -#: ../raster/r.path/main.c:506 +#: ../raster/r.path/main.c:414 ../raster/r.path/main.c:492 +#: ../raster/r.path/main.c:509 msgid "Unable to write to tempfile" msgstr "" -#: ../raster/r.path/main.c:419 +#: ../raster/r.path/main.c:422 msgid "Unable to read range file" msgstr "Kann die Ausdehnungs-Datei nicht lesen." -#: ../raster/r.path/main.c:422 +#: ../raster/r.path/main.c:425 #, c-format msgid "Invalid directions map <%s>" msgstr "" -#: ../raster/r.path/main.c:427 +#: ../raster/r.path/main.c:430 msgid "Directional degrees can not be > 360" msgstr "" -#: ../raster/r.path/main.c:433 +#: ../raster/r.path/main.c:436 msgid "Directional degrees divided by 45 can not be > 8" msgstr "" -#: ../raster/r.path/main.c:438 +#: ../raster/r.path/main.c:441 #, c-format msgid "Bitmask encoded directions can not be > %d" msgstr "" -#: ../raster/r.path/main.c:445 +#: ../raster/r.path/main.c:448 msgid "Input direction format assumed to be degrees CCW from East divided by 45" msgstr "" -#: ../raster/r.path/main.c:450 +#: ../raster/r.path/main.c:453 msgid "Input direction format assumed to be bitmask encoded without Knight's move" msgstr "" -#: ../raster/r.path/main.c:456 +#: ../raster/r.path/main.c:459 msgid "Input direction format assumed to be degrees CCW from East" msgstr "" -#: ../raster/r.path/main.c:460 +#: ../raster/r.path/main.c:463 msgid "Input direction format assumed to be bitmask encoded with Knight's move" msgstr "" -#: ../raster/r.path/main.c:465 +#: ../raster/r.path/main.c:468 #, c-format msgid "Unable to detect format of input direction map <%s>" msgstr "" -#: ../raster/r.path/main.c:469 +#: ../raster/r.path/main.c:472 #, c-format msgid "Invalid directions format '%s'" msgstr "" -#: ../raster/r.path/main.c:471 +#: ../raster/r.path/main.c:474 #, c-format msgid "Reading direction map <%s> ..." msgstr "" -#: ../raster/r.path/main.c:525 +#: ../raster/r.path/main.c:528 msgid "Processing start points..." msgstr "" -#: ../raster/r.path/main.c:535 ../vector/v.buffer/main.c:410 +#: ../raster/r.path/main.c:538 ../vector/v.buffer/main.c:410 #: ../vector/v.in.ogr/main.c:881 ../vector/v.overlay/main.c:237 #: ../vector/v.voronoi/main.c:215 msgid "Unable to create temporary vector map" msgstr "" -#: ../raster/r.path/main.c:541 ../raster/r.path/main.c:557 +#: ../raster/r.path/main.c:544 ../raster/r.path/main.c:560 #, c-format msgid "No path at row %d, col %d" msgstr "" -#: ../raster/r.path/main.c:546 ../vector/v.overlay/area_area.c:134 +#: ../raster/r.path/main.c:549 ../vector/v.overlay/area_area.c:134 #: ../vector/v.overlay/line_area.c:255 msgid "Breaking lines..." msgstr "Teile Linien..." -#: ../raster/r.path/main.c:684 +#: ../raster/r.path/main.c:687 msgid "Unable to increase point list" msgstr "" -#: ../raster/r.path/main.c:887 +#: ../raster/r.path/main.c:890 #, c-format msgid "No path from row %d, col %d" msgstr "" -#: ../raster/r.path/main.c:901 +#: ../raster/r.path/main.c:904 #, c-format msgid "Invalid direction %d" msgstr "" -#: ../raster/r.path/main.c:999 +#: ../raster/r.path/main.c:1002 msgid "Path is leaving the current region" msgstr "" @@ -38952,39 +38969,17 @@ msgstr "" msgid "Link to vector map <%s> created." msgstr "" -#: ../vector/v.external/proj.c:35 ../vector/v.in.ogr/main.c:741 -#: ../vector/v.in.ogr/proj.c:36 +#: ../vector/v.external/proj.c:34 ../vector/v.in.ogr/main.c:741 +#: ../vector/v.in.ogr/proj.c:34 #, c-format msgid "Geometry column <%s> not found in input layer <%s>" msgstr "" -#: ../vector/v.external/proj.c:49 ../vector/v.in.ogr/proj.c:50 -msgid "Unable to convert input layer projection information to GRASS format for checking" -msgstr "" - -#: ../vector/v.external/proj.c:55 ../vector/v.external/proj.c:85 -#: ../vector/v.in.ogr/proj.c:56 ../vector/v.in.ogr/proj.c:86 -msgid "Can't get WKT parameter string" -msgstr "" - -#: ../vector/v.external/proj.c:58 ../vector/v.external/proj.c:88 -#: ../vector/v.in.ogr/proj.c:59 ../vector/v.in.ogr/proj.c:89 -#, c-format -msgid "" -"WKT definition:\n" -"%s" -msgstr "" - -#: ../vector/v.external/proj.c:69 ../vector/v.in.ogr/proj.c:70 +#: ../vector/v.external/proj.c:46 ../vector/v.in.ogr/proj.c:46 #, c-format msgid "No projection information available for layer <%s>" msgstr "" -#: ../vector/v.external/proj.c:78 ../vector/v.in.ogr/proj.c:79 -#, c-format -msgid "Projection for layer <%s> does not contain a valid CRS" -msgstr "" - #: ../vector/v.extract/extract.c:202 #, c-format msgid "No category found for area %d. Skipping." @@ -40755,16 +40750,16 @@ msgstr "" msgid "The spatial filter does not overlap with OGR layer <%s>. Nothing to import." msgstr "" -#: ../vector/v.in.ogr/proj.c:168 +#: ../vector/v.in.ogr/proj.c:85 msgid "Layer projections are unreadable" msgstr "" -#: ../vector/v.in.ogr/proj.c:184 +#: ../vector/v.in.ogr/proj.c:93 #, c-format msgid "Projection for layer <%s> is unreadable" msgstr "" -#: ../vector/v.in.ogr/proj.c:236 +#: ../vector/v.in.ogr/proj.c:113 #, c-format msgid "Projection of layer <%s> is different from projection of layer <%s>" msgstr "" @@ -48314,71 +48309,6 @@ msgstr "Zeige BMP Bilder von dem PNG-Treiber." msgid "Image file" msgstr "Bild-Datei" -#, fuzzy, c-format -#~| msgid "Unable to delete '%s'" -#~ msgid "Unable to seek: %s" -#~ msgstr "Kann '%s' nicht löschen" - -#~ msgid "Both -s and -h doesn't make sense" -#~ msgstr "Beide -s und -h zusammen machen keinen Sinn." - -#~ msgid "Use -M or -s, not both" -#~ msgstr "Wähle entweder -M oder -s, nicht Beide zugleich." - -#~ msgid "Print the stats in shell script style" -#~ msgstr "Gebe die Statistik im Shell-Skript-Stil aus." - -#~ msgid "Field separator for shell script style output" -#~ msgstr "Feldtrennzeichen Shell-Skript-Stil Ausgabe" - -#~ msgid "Format: layer[/layer name] table key database driver" -#~ msgstr "Format: Layer[/Name des Layers] Tabelle Schlüsselspalte Datenbanktreiber" - -#~ msgid "Output RRR:GGG:BBB color values for each profile point" -#~ msgstr "Ausgabe für RRR:GGG:BBB Farbwerte für jeden Profilpunkt." - -#, c-format -#~ msgid "Test %s." -#~ msgstr "Test: %s" - -#~ msgid "have" -#~ msgstr "haben" - -#~ msgid "read " -#~ msgstr "lesen" - -#~ msgid "Everyone" -#~ msgstr "Jeder" - -#~ msgid "has" -#~ msgstr "hat" - -#~ msgid "Only you" -#~ msgstr "Nur Sie" - -#~ msgid "now" -#~ msgstr "jetzt" - -#~ msgid "will" -#~ msgstr "wird" - -#, c-format -#~ msgid "Only one of -%c, -%c, -%c, -%c, -%c or -%c flags may be specified" -#~ msgstr "Nur ein Schalter von -%c, -%c, -%c, -%c, -%c oder -%c kann angegeben werden" - -#, fuzzy, c-format -#~ msgid "Only one of -%c, -%c, -%c, -%c or -%c flags may be specified" -#~ msgstr "Nur ein Schalter von -%c, -%c, -%c, -%c, -%c oder -%c kann angegeben werden" - -#~ msgid "temperature" -#~ msgstr "Temperatur" - -#~ msgid "changed" -#~ msgstr "geändert" - -#~ msgid "reduced" -#~ msgstr "reduziert" - #~ msgid "" #~ "\n" #~ "%d classes, %.2f%% points stable\n" @@ -48394,6 +48324,14 @@ msgstr "Bild-Datei" #~ "\n" #~ "%sKOMPRIMIERE [%s]" +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "In case of no significant differences in the CRS definitions, use the -o flag to ignore them and use current project definition.\n" +#~ msgstr "" +#~ "\n" +#~ "Falls es keine signifikanten Unterschiede in den Projektionsdefinitionen gibt, Flag -o verwenden, um sie zu ignorieren und die aktuelle Standortdefinition zu verwenden.\n" + #~ msgid "" #~ "\n" #~ "You can use the -o flag to %s to override this projection check.\n" @@ -48737,6 +48675,9 @@ msgstr "Bild-Datei" #~ msgid "Borehole length [m]" #~ msgstr "Linienlänge" +#~ msgid "Both -s and -h doesn't make sense" +#~ msgstr "Beide -s und -h zusammen machen keinen Sinn." + #, fuzzy #~ msgid "Boxplot color" #~ msgstr "Text-Farbe" @@ -49676,6 +49617,9 @@ msgstr "Bild-Datei" #~ msgid "Evaluation" #~ msgstr "Location: %s\n" +#~ msgid "Everyone" +#~ msgstr "Jeder" + #, fuzzy #~ msgid "Example: 1,3,7-9,13" #~ msgstr "Beispiel: 1.4,3.8,13" @@ -49777,6 +49721,9 @@ msgstr "Bild-Datei" #~ msgid "Field separator" #~ msgstr "Ausgabe Feld-Trennzeichen" +#~ msgid "Field separator for shell script style output" +#~ msgstr "Feldtrennzeichen Shell-Skript-Stil Ausgabe" + #, fuzzy #~ msgid "Field separator in input text files" #~ msgstr "Trennzeichen (Punkt-Modus)" @@ -49926,6 +49873,9 @@ msgstr "Bild-Datei" #~ msgid "Format: All values must be >0" #~ msgstr "Der Schwellwert muss >=0 sein." +#~ msgid "Format: layer[/layer name] table key database driver" +#~ msgstr "Format: Layer[/Name des Layers] Tabelle Schlüsselspalte Datenbanktreiber" + #, fuzzy #~ msgid "Full path to MRT directory" #~ msgstr "Vollständiger Pfad zu der Datei mit den Reklassifizierungsregeln." @@ -52811,6 +52761,14 @@ msgstr "Bild-Datei" #~ msgid "Only draw fills (no outlines) for areas and points" #~ msgstr "Zeichne nur die Füllung der Punkte und Flächen (keine Ränder)." +#, fuzzy, c-format +#~ msgid "Only one of -%c, -%c, -%c, -%c or -%c flags may be specified" +#~ msgstr "Nur ein Schalter von -%c, -%c, -%c, -%c, -%c oder -%c kann angegeben werden" + +#, c-format +#~ msgid "Only one of -%c, -%c, -%c, -%c, -%c or -%c flags may be specified" +#~ msgstr "Nur ein Schalter von -%c, -%c, -%c, -%c, -%c oder -%c kann angegeben werden" + #, fuzzy #~ msgid "Only print selected polygons" #~ msgstr "Gebe nur SQL-Statement aus." @@ -52819,6 +52777,9 @@ msgstr "Bild-Datei" #~ msgid "Only tune and train model, do not predict" #~ msgstr "Teste die Abfrage und führe sie nicht aus." +#~ msgid "Only you" +#~ msgstr "Nur Sie" + #, fuzzy #~ msgid "Operators" #~ msgstr "Temperatur" @@ -52895,6 +52856,9 @@ msgstr "Bild-Datei" #~ msgid "Output Potential file" #~ msgstr "Ausgabe-Worldfile" +#~ msgid "Output RRR:GGG:BBB color values for each profile point" +#~ msgstr "Ausgabe für RRR:GGG:BBB Farbwerte für jeden Profilpunkt." + #, fuzzy #~ msgid "Output absolute file name for the use table" #~ msgstr "Name der Datenbank des Referenzsystems." @@ -53401,6 +53365,9 @@ msgstr "Bild-Datei" #~ msgid "Print the request URL and exit" #~ msgstr "Gibt Tabellen aus und beendet sich." +#~ msgid "Print the stats in shell script style" +#~ msgstr "Gebe die Statistik im Shell-Skript-Stil aus." + #, fuzzy #~ msgid "Print the threshold value in shell script style" #~ msgstr "Gebe die Statistik im Shell-Skript-Stil aus." @@ -54232,6 +54199,10 @@ msgstr "Bild-Datei" #~ msgid "Terrain options" #~ msgstr "Filterkriterien" +#, c-format +#~ msgid "Test %s." +#~ msgstr "Test: %s" + #, fuzzy #~ msgid "Test presence locations" #~ msgstr "erzeuge Location" @@ -54527,6 +54498,10 @@ msgstr "Bild-Datei" #~ msgid "Unable to assign/dissociate band reference. {}" #~ msgstr "Kann Datenbank für Referenztabelle nicht öffnen." +#, fuzzy +#~ msgid "Unable to convert input map coordinate reference system to GRASS format; cannot create new project." +#~ msgstr "Kann die Projektion der Eingabekarte nicht in das GRASS-Format konvertieren; erstelle daher keine neue Location." + #~ msgid "Unable to convert input raster map projection information to GRASS format for checking" #~ msgstr "Kann die Projektion der Eingabe-Rasterkarte nicht ins GRASS-Format konvertieren, zwecks Überprüfung." @@ -54559,6 +54534,11 @@ msgstr "Bild-Datei" #~ msgid "Unable to read REF file for group <%s>" #~ msgstr "Konnte REF-Datei der Gruppe <%s> nicht lesen." +#, fuzzy, c-format +#~| msgid "Unable to delete '%s'" +#~ msgid "Unable to seek: %s" +#~ msgstr "Kann '%s' nicht löschen" + #, fuzzy #~ msgid "Unacceptable conditions for Designated Fill" #~ msgstr "Kann die Signaturdatei nicht öffnen." @@ -54625,6 +54605,9 @@ msgstr "Bild-Datei" #~ msgid "Uploads values of multiple rasters at positions of vector points to the table." #~ msgstr "Übernimmt die Rasterwerte an den Positinen der Vektor-Punkte in die Attributtabelle." +#~ msgid "Use -M or -s, not both" +#~ msgstr "Wähle entweder -M oder -s, nicht Beide zugleich." + #, fuzzy #~ msgid "Use a random seed" #~ msgstr "Titel für die neue Rasterkarte." @@ -55085,6 +55068,9 @@ msgstr "Bild-Datei" #~ msgid "centerpoint" #~ msgstr "Zentroid" +#~ msgid "changed" +#~ msgstr "geändert" + #, fuzzy #~ msgid "channels" #~ msgstr "geändert" @@ -55202,6 +55188,12 @@ msgstr "Bild-Datei" #~ msgid "grid lines" #~ msgstr "Isolinien" +#~ msgid "has" +#~ msgstr "hat" + +#~ msgid "have" +#~ msgstr "haben" + #, fuzzy #~ msgid "hide outliers" #~ msgstr "Grenzwert für Ausreißer" @@ -55351,6 +55343,9 @@ msgstr "Bild-Datei" #~ msgid "nodata value in output files" #~ msgstr "Spaltenummer der Daten in der Eingabedatei." +#~ msgid "now" +#~ msgstr "jetzt" + #~ msgid "npoints = %d, nterrain = %d" #~ msgstr "npoints = %d, nterrain = %d" @@ -55439,6 +55434,9 @@ msgstr "Bild-Datei" #~ msgid "radius= and x_radius=/y_radius= are mutually exclusive" #~ msgstr "weight= und -c schließen sich gegenseitig aus." +#~ msgid "read " +#~ msgstr "lesen" + #~ msgid "read vector region map" #~ msgstr "lese Vektor-Regions-Karte" @@ -55446,6 +55444,9 @@ msgstr "Bild-Datei" #~ msgid "reclassify" #~ msgstr "Reklassifizieren" +#~ msgid "reduced" +#~ msgstr "reduziert" + #, fuzzy #~ msgid "resolution of plot" #~ msgstr "Auflösung" @@ -55493,6 +55494,9 @@ msgstr "Bild-Datei" #~ msgid "symbology" #~ msgstr "Hydrologie" +#~ msgid "temperature" +#~ msgstr "Temperatur" + #, fuzzy #~ msgid "thredds" #~ msgstr "Schwellwert" @@ -55574,6 +55578,9 @@ msgstr "Bild-Datei" #~ msgid "width of the boxplot median line" #~ msgstr "Format des Ausgabedateien" +#~ msgid "will" +#~ msgstr "wird" + #, fuzzy #~ msgid "x-y extent of the Gaussian filter (i.zc)" #~ msgstr "X/Y-Ausdehnung des Gauss'schen Filters." diff --git a/locale/po/grassmods_el.po b/locale/po/grassmods_el.po index ea6e553ef0a..8d6484ab6a1 100644 --- a/locale/po/grassmods_el.po +++ b/locale/po/grassmods_el.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: grassmods_el\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-07-26 01:36+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Greek \n" @@ -179,7 +179,7 @@ msgstr "Δίνει λίστα όλων των στηλών για ένα δεδ #: ../general/g.proj/main.c:90 ../general/g.proj/main.c:99 #: ../general/g.proj/main.c:105 ../general/g.proj/main.c:114 #: ../general/g.proj/main.c:126 ../general/g.proj/main.c:135 -#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:244 +#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:245 #: ../general/g.region/main.c:91 ../general/g.region/main.c:97 #: ../general/g.region/main.c:102 ../general/g.region/main.c:108 #: ../general/g.region/main.c:113 ../general/g.region/main.c:118 @@ -307,13 +307,12 @@ msgstr "" #: ../db/db.connect/main.c:144 ../general/g.findfile/main.c:187 #: ../general/g.list/list.c:122 ../general/g.mapset/main.c:119 -#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:54 -#: ../general/g.proj/output.c:360 ../general/g.region/main.c:471 -#: ../general/g.version/main.c:140 ../misc/m.measure/main.c:87 -#: ../raster/r.describe/dumplist.c:38 ../raster/r.distance/report.c:211 -#: ../raster/r.distance/report.c:218 ../raster/r.distance/report.c:225 -#: ../raster/r.info/main.c:147 ../raster/r.proj/main.c:487 -#: ../raster/r.regression.line/main.c:101 +#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:351 +#: ../general/g.region/main.c:471 ../general/g.version/main.c:140 +#: ../misc/m.measure/main.c:87 ../raster/r.describe/dumplist.c:38 +#: ../raster/r.distance/report.c:211 ../raster/r.distance/report.c:218 +#: ../raster/r.distance/report.c:225 ../raster/r.info/main.c:147 +#: ../raster/r.proj/main.c:487 ../raster/r.regression.line/main.c:101 #: ../raster/r.regression.multi/main.c:197 #: ../raster/r.regression.multi/main.c:566 #: ../raster/r.stats.quantile/main.c:430 ../raster/r.stats.quantile/main.c:447 @@ -332,7 +331,7 @@ msgstr "" msgid "Failed to initialize JSON object. Out of memory?" msgstr "" -#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:277 +#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:278 #: ../general/g.region/main.c:427 ../general/g.version/main.c:153 #: ../imagery/i.group/main.c:137 ../misc/m.measure/main.c:100 #: ../raster/r.proj/main.c:270 ../raster/r.regression.line/main.c:114 @@ -489,7 +488,7 @@ msgstr "" msgid "Lists all databases for a given driver and location." msgstr "" -#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:383 +#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:374 #: ../general/g.region/main.c:990 ../general/g.version/main.c:409 #: ../imagery/i.group/main.c:301 ../raster/r.category/main.c:412 #: ../raster/r.describe/dumplist.c:71 ../raster/r.info/main.c:1000 @@ -6450,10 +6449,10 @@ msgstr "" msgid "Converts between PPM/PGM and PNG image formats." msgstr "" -#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:141 -#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:140 -#: ../vector/v.external/proj.c:173 ../vector/v.in.lidar/main.c:525 -#: ../vector/v.in.ogr/proj.c:307 +#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:129 +#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:129 +#: ../vector/v.external/proj.c:158 ../vector/v.in.lidar/main.c:525 +#: ../vector/v.in.ogr/proj.c:228 #, fuzzy, c-format msgid "Project <%s> created" msgstr "Ο χάρτης raster <%s> δεν βρέθηκε." @@ -6759,55 +6758,63 @@ msgstr "" msgid "Name of new project (location) to create" msgstr "Όνομα εισαγώμενου ράστερ χάρτη " -#: ../general/g.proj/main.c:239 -msgid "plain;Human readable text output;shell;shell script style text output;json;JSON (JavaScript Object Notation);wkt;Well-known text output;proj4;PROJ.4 style text output;" +#: ../general/g.proj/main.c:240 +msgid "plain;Human readable text output;shell;shell script style text output;wkt;Well-known text output;projjson;JSON (JavaScript Object Notation) version of WKT;proj4;PROJ.4 style text output;" msgstr "" -#: ../general/g.proj/main.c:271 ../vector/v.what.rast/main.c:159 +#: ../general/g.proj/main.c:272 ../vector/v.what.rast/main.c:159 #, c-format msgid "The format option can only be used with -%c flag" msgstr "" -#: ../general/g.proj/main.c:283 +#: ../general/g.proj/main.c:284 msgid "Flag 'j' is deprecated and will be removed in a future release. Please use format=proj4 instead." msgstr "" -#: ../general/g.proj/main.c:292 +#: ../general/g.proj/main.c:293 msgid "Flag 'w' is deprecated and will be removed in a future release. Please use format=wkt instead." msgstr "" -#: ../general/g.proj/main.c:312 +#: ../general/g.proj/main.c:313 #, c-format msgid "Only one of '%s', '%s', '%s', '%s' or '%s' options may be specified" msgstr "" -#: ../general/g.proj/main.c:364 +#: ../general/g.proj/main.c:365 msgid "Projection files missing" msgstr "" -#: ../general/g.proj/main.c:392 +#: ../general/g.proj/main.c:393 #, c-format msgid "No output format specified. Define one of the options: plain, shell, json, wkt, or proj4 using the -%c flag." msgstr "" -#: ../general/g.proj/main.c:397 +#: ../general/g.proj/main.c:398 #, c-format msgid "No output format specified. Define one of the options: plain, shell, json, or proj4 using the -%c flag." msgstr "" -#: ../general/g.proj/output.c:221 +#: ../general/g.proj/output.c:54 +msgid "JSON output is not available." +msgstr "" + +#: ../general/g.proj/output.c:212 msgid "Unable to convert projection information to PROJ format" msgstr "" -#: ../general/g.proj/output.c:295 +#: ../general/g.proj/output.c:286 #, c-format msgid "Unable to create PROJ definition from srid <%s>" msgstr "" -#: ../general/g.proj/output.c:337 +#: ../general/g.proj/output.c:328 msgid "Unable to convert to WKT" msgstr "" +#: ../general/g.proj/output.c:433 +msgid "Unable to convert to PROJJSON" +msgstr "" + #: ../general/g.region/main.c:67 msgid "computational region" msgstr "" @@ -11435,10 +11442,10 @@ msgstr "" #: ../raster/r.grow.distance/main.c:392 ../raster/r.li/r.li.daemon/daemon.c:743 #: ../raster/r.mfilter/execute.c:82 ../raster/r.mfilter/execute.c:114 #: ../raster/r.mfilter/execute.c:165 ../raster/r.mfilter/getrow.c:24 -#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:786 -#: ../raster/r.path/main.c:822 ../raster/r.path/main.c:954 -#: ../raster/r.path/main.c:1073 ../raster/r.path/main.c:1103 -#: ../raster/r.path/main.c:1207 ../raster/r.thin/io.c:72 +#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:789 +#: ../raster/r.path/main.c:825 ../raster/r.path/main.c:957 +#: ../raster/r.path/main.c:1076 ../raster/r.path/main.c:1106 +#: ../raster/r.path/main.c:1210 ../raster/r.thin/io.c:72 #: ../raster/r.thin/io.c:82 ../raster3d/r3.in.v5d/v5d.c:1192 #: ../raster3d/r3.in.v5d/v5d.c:1443 ../raster3d/r3.in.v5d/v5d.c:1523 #: ../raster3d/r3.in.v5d/v5d.c:1848 ../raster3d/r3.in.v5d/v5d.c:1859 @@ -11463,9 +11470,9 @@ msgstr "" #: ../raster/r.clump/minsize.c:268 ../raster/r.clump/minsize.c:308 #: ../raster/r.clump/minsize.c:319 ../raster/r.clump/minsize.c:454 #: ../raster/r.clump/minsize.c:481 ../raster/r.clump/minsize.c:557 -#: ../raster/r.path/main.c:791 ../raster/r.path/main.c:827 -#: ../raster/r.path/main.c:962 ../raster/r.path/main.c:1078 -#: ../raster/r.path/main.c:1108 ../raster/r.path/main.c:1213 +#: ../raster/r.path/main.c:794 ../raster/r.path/main.c:830 +#: ../raster/r.path/main.c:965 ../raster/r.path/main.c:1081 +#: ../raster/r.path/main.c:1111 ../raster/r.path/main.c:1216 msgid "Unable to read from temp file" msgstr "" @@ -19777,7 +19784,7 @@ msgstr "" msgid "Starting point %d is outside the current region" msgstr "" -#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:375 +#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:378 #, c-format msgid "Starting vector map <%s> contains no points in the current region" msgstr "" @@ -19791,8 +19798,8 @@ msgid "Calculating flow directions..." msgstr "" #: ../raster/r.drain/main.c:485 ../raster/r.in.lidar/main.c:783 -#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:598 -#: ../raster/r.path/main.c:628 ../raster/r.viewshed/grass.cpp:621 +#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:601 +#: ../raster/r.path/main.c:631 ../raster/r.viewshed/grass.cpp:621 msgid "Writing output raster map..." msgstr "" @@ -20040,83 +20047,90 @@ msgstr "" msgid "Imagery group <%s> created" msgstr "" -#: ../raster/r.external/proj.c:51 ../raster/r.external/proj.c:93 -#: ../raster/r.in.gdal/proj.c:51 ../raster/r.in.gdal/proj.c:93 -#, c-format -msgid "" -"Input contains an invalid CRS. WKT definition:\n" -"%s" +#: ../raster/r.external/proj.c:36 ../raster/r.external/proj.c:63 +#: ../raster/r.external/proj.c:122 ../raster/r.in.gdal/proj.c:36 +#: ../raster/r.in.gdal/proj.c:63 ../raster/r.in.gdal/proj.c:122 +#: ../vector/v.external/proj.c:92 ../vector/v.external/proj.c:151 +#: ../vector/v.in.ogr/proj.c:162 ../vector/v.in.ogr/proj.c:221 +msgid "Can't get WKT parameter string" msgstr "" -#: ../raster/r.external/proj.c:120 ../raster/r.in.gdal/proj.c:120 +#: ../raster/r.external/proj.c:56 ../raster/r.in.gdal/proj.c:56 +#: ../vector/v.external/proj.c:85 ../vector/v.in.ogr/proj.c:155 +msgid "Input contains an invalid CRS." +msgstr "" + +#: ../raster/r.external/proj.c:66 ../raster/r.in.gdal/proj.c:66 +#: ../vector/v.external/proj.c:95 ../vector/v.in.ogr/proj.c:165 +#, fuzzy +msgid "WKT definition:" +msgstr "Όνομα τοποθεσία" + +#: ../raster/r.external/proj.c:99 ../raster/r.in.gdal/proj.c:99 +#: ../vector/v.external/proj.c:128 ../vector/v.in.ogr/proj.c:198 msgid "No projection information available" msgstr "" -#: ../raster/r.external/proj.c:133 -msgid "Unable to convert input map coordinate reference system to GRASS format; cannot create new project." +#: ../raster/r.external/proj.c:114 ../raster/r.in.gdal/proj.c:114 +#: ../vector/v.external/proj.c:143 ../vector/v.in.ogr/proj.c:213 +msgid "Unable to convert input map projection to GRASS format; cannot create new project." msgstr "" -#: ../raster/r.external/proj.c:139 ../raster/r.in.gdal/main.c:1039 -#: ../raster/r.in.gdal/proj.c:138 ../vector/v.external/proj.c:171 -#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:305 +#: ../raster/r.external/proj.c:127 ../raster/r.in.gdal/main.c:1039 +#: ../raster/r.in.gdal/proj.c:127 ../vector/v.external/proj.c:156 +#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:226 #, fuzzy, c-format msgid "Unable to create new project <%s>" msgstr "Αδυναμία δημιουργίας raster χάρτη <%s>." -#: ../raster/r.external/proj.c:165 ../raster/r.in.gdal/proj.c:164 -#: ../vector/v.external/proj.c:197 ../vector/v.in.ogr/proj.c:331 +#: ../raster/r.external/proj.c:157 ../raster/r.in.gdal/proj.c:157 +#: ../vector/v.external/proj.c:186 ../vector/v.in.ogr/proj.c:256 msgid "Unable to convert input map projection information to GRASS format." msgstr "" -#: ../raster/r.external/proj.c:192 ../raster/r.in.gdal/proj.c:192 +#: ../raster/r.external/proj.c:238 ../raster/r.in.gdal/proj.c:238 #: ../raster/r.in.lidar/projection.c:126 -#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:228 -#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:360 +#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:267 +#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:337 msgid "Over-riding projection check" msgstr "" -#: ../raster/r.external/proj.c:200 ../raster/r.in.gdal/proj.c:200 -#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 -#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.external/proj.c:236 -#: ../vector/v.in.lidar/projection.c:30 ../vector/v.in.ogr/proj.c:368 -msgid "" -"Coordinate reference system of dataset does not appear to match current project.\n" -"\n" -msgstr "" +#: ../raster/r.external/proj.c:244 ../raster/r.in.gdal/proj.c:244 +#: ../vector/v.external/proj.c:273 ../vector/v.in.ogr/proj.c:343 +#, fuzzy +msgid "Coordinate reference system of dataset does not appear to match current project.\n" +msgstr "Χρησιμοποιήστε συντεταγμένες χάρτη αντί χψζ συντεταγμένες" -#: ../raster/r.external/proj.c:207 ../raster/r.external/proj.c:216 -#: ../raster/r.in.gdal/proj.c:207 ../raster/r.in.gdal/proj.c:216 -#: ../vector/v.external/proj.c:243 ../vector/v.external/proj.c:252 -#: ../vector/v.in.ogr/proj.c:375 ../vector/v.in.ogr/proj.c:384 -msgid "Project PROJ_INFO is:\n" +#: ../raster/r.external/proj.c:258 ../raster/r.in.gdal/proj.c:258 +#: ../vector/v.external/proj.c:287 ../vector/v.in.ogr/proj.c:357 +msgid "Dataset CRS is:\n" msgstr "" -#: ../raster/r.external/proj.c:236 ../raster/r.external/proj.c:243 -#: ../raster/r.in.gdal/proj.c:236 ../raster/r.in.gdal/proj.c:243 -#: ../vector/v.external/proj.c:272 ../vector/v.external/proj.c:279 -#: ../vector/v.in.ogr/proj.c:404 ../vector/v.in.ogr/proj.c:411 -msgid "Dataset PROJ_INFO is:\n" +#: ../raster/r.external/proj.c:272 ../raster/r.in.gdal/proj.c:272 +#: ../vector/v.external/proj.c:301 ../vector/v.in.ogr/proj.c:371 +msgid "Project CRS is:\n" msgstr "" -#: ../raster/r.external/proj.c:324 ../raster/r.in.lidar/projection.c:89 -#: ../raster/r.in.pdal/projection.c:87 ../raster3d/r3.in.lidar/projection.c:90 -#: ../vector/v.external/proj.c:360 ../vector/v.in.lidar/projection.c:87 -#: ../vector/v.in.ogr/proj.c:492 ../vector/v.in.pdal/projection.c:87 +#: ../raster/r.external/proj.c:286 ../raster/r.in.gdal/proj.c:286 +#: ../raster/r.in.lidar/projection.c:89 ../raster/r.in.pdal/projection.c:87 +#: ../raster3d/r3.in.lidar/projection.c:90 ../vector/v.external/proj.c:315 +#: ../vector/v.in.lidar/projection.c:87 ../vector/v.in.ogr/proj.c:385 +#: ../vector/v.in.pdal/projection.c:87 #, c-format msgid "" "\n" "In case of no significant differences in the coordinate reference system definitions, use the -o flag to ignore them and use current project definition.\n" msgstr "" -#: ../raster/r.external/proj.c:328 ../raster/r.in.gdal/proj.c:327 -#: ../vector/v.external/proj.c:364 ../vector/v.in.ogr/proj.c:496 +#: ../raster/r.external/proj.c:290 ../raster/r.in.gdal/proj.c:290 +#: ../vector/v.external/proj.c:319 ../vector/v.in.ogr/proj.c:389 msgid "Consider generating a new project from the input dataset using the 'project' parameter.\n" msgstr "" -#: ../raster/r.external/proj.c:348 ../raster/r.in.gdal/proj.c:347 +#: ../raster/r.external/proj.c:310 ../raster/r.in.gdal/proj.c:310 #: ../raster/r.in.lidar/projection.c:136 ../raster/r.in.pdal/projection.c:134 -#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:384 -#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:516 +#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:339 +#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:409 msgid "Coordinate reference system of input dataset and current project appear to match" msgstr "" @@ -20728,7 +20742,7 @@ msgstr "" msgid "Region resolution shouldn't be lesser than map %s resolution. Run g.region raster=%s to set proper resolution" msgstr "" -#: ../raster/r.geomorphon/pattern.c:228 +#: ../raster/r.geomorphon/pattern.c:229 #, c-format msgid "Internal error in %s()" msgstr "" @@ -21696,8 +21710,7 @@ msgstr "" msgid "Error in %s (can't re-project GCP %i)" msgstr "" -#: ../raster/r.in.gdal/main.c:983 ../vector/v.external/proj.c:165 -#: ../vector/v.in.lidar/main.c:516 +#: ../raster/r.in.gdal/main.c:983 ../vector/v.in.lidar/main.c:516 msgid "Unable to convert input map CRS to GRASS format; cannot create new project." msgstr "" @@ -21748,16 +21761,6 @@ msgstr "" msgid "Unable to open file <%s>: %s." msgstr "" -#: ../raster/r.in.gdal/proj.c:132 ../vector/v.in.ogr/proj.c:299 -msgid "Unable to convert input map projection to GRASS format; cannot create new project." -msgstr "" - -#: ../raster/r.in.gdal/proj.c:323 -msgid "" -"\n" -"In case of no significant differences in the CRS definitions, use the -o flag to ignore them and use current project definition.\n" -msgstr "" - #: ../raster/r.in.gridatb/file_io.c:16 #, fuzzy, c-format #| msgid "Unable to open database <%s>" @@ -22119,6 +22122,13 @@ msgstr "" msgid "Unable to calculate trimmed mean without the trim option specified!" msgstr "" +#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 +#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.in.lidar/projection.c:30 +msgid "" +"Coordinate reference system of dataset does not appear to match current project.\n" +"\n" +msgstr "" + #: ../raster/r.in.lidar/projection.c:38 ../raster/r.in.pdal/projection.c:36 #: ../vector/v.in.lidar/projection.c:36 ../vector/v.in.pdal/projection.c:36 msgid "GRASS project PROJ_INFO is:\n" @@ -24952,113 +24962,113 @@ msgstr "" msgid "Do not break lines (faster for single-direction bitmask encoding)" msgstr "" -#: ../raster/r.path/main.c:384 +#: ../raster/r.path/main.c:387 msgid "No start point(s) specified" msgstr "" -#: ../raster/r.path/main.c:394 +#: ../raster/r.path/main.c:397 #, c-format msgid "Reading raster values map <%s> ..." msgstr "" -#: ../raster/r.path/main.c:399 +#: ../raster/r.path/main.c:402 #, fuzzy, c-format msgid "Unable to open temporary file <%s>: %s" msgstr "Αδυναμία ανάγνωσης αρχείου υπογραφής <%s>" -#: ../raster/r.path/main.c:411 ../raster/r.path/main.c:489 -#: ../raster/r.path/main.c:506 +#: ../raster/r.path/main.c:414 ../raster/r.path/main.c:492 +#: ../raster/r.path/main.c:509 msgid "Unable to write to tempfile" msgstr "" -#: ../raster/r.path/main.c:419 +#: ../raster/r.path/main.c:422 msgid "Unable to read range file" msgstr "" -#: ../raster/r.path/main.c:422 +#: ../raster/r.path/main.c:425 #, c-format msgid "Invalid directions map <%s>" msgstr "" -#: ../raster/r.path/main.c:427 +#: ../raster/r.path/main.c:430 msgid "Directional degrees can not be > 360" msgstr "" -#: ../raster/r.path/main.c:433 +#: ../raster/r.path/main.c:436 msgid "Directional degrees divided by 45 can not be > 8" msgstr "" -#: ../raster/r.path/main.c:438 +#: ../raster/r.path/main.c:441 #, c-format msgid "Bitmask encoded directions can not be > %d" msgstr "" -#: ../raster/r.path/main.c:445 +#: ../raster/r.path/main.c:448 msgid "Input direction format assumed to be degrees CCW from East divided by 45" msgstr "" -#: ../raster/r.path/main.c:450 +#: ../raster/r.path/main.c:453 msgid "Input direction format assumed to be bitmask encoded without Knight's move" msgstr "" -#: ../raster/r.path/main.c:456 +#: ../raster/r.path/main.c:459 msgid "Input direction format assumed to be degrees CCW from East" msgstr "" -#: ../raster/r.path/main.c:460 +#: ../raster/r.path/main.c:463 msgid "Input direction format assumed to be bitmask encoded with Knight's move" msgstr "" -#: ../raster/r.path/main.c:465 +#: ../raster/r.path/main.c:468 #, c-format msgid "Unable to detect format of input direction map <%s>" msgstr "" -#: ../raster/r.path/main.c:469 +#: ../raster/r.path/main.c:472 #, c-format msgid "Invalid directions format '%s'" msgstr "" -#: ../raster/r.path/main.c:471 +#: ../raster/r.path/main.c:474 #, c-format msgid "Reading direction map <%s> ..." msgstr "" -#: ../raster/r.path/main.c:525 +#: ../raster/r.path/main.c:528 msgid "Processing start points..." msgstr "" -#: ../raster/r.path/main.c:535 ../vector/v.buffer/main.c:410 +#: ../raster/r.path/main.c:538 ../vector/v.buffer/main.c:410 #: ../vector/v.in.ogr/main.c:881 ../vector/v.overlay/main.c:237 #: ../vector/v.voronoi/main.c:215 msgid "Unable to create temporary vector map" msgstr "" -#: ../raster/r.path/main.c:541 ../raster/r.path/main.c:557 +#: ../raster/r.path/main.c:544 ../raster/r.path/main.c:560 #, c-format msgid "No path at row %d, col %d" msgstr "" -#: ../raster/r.path/main.c:546 ../vector/v.overlay/area_area.c:134 +#: ../raster/r.path/main.c:549 ../vector/v.overlay/area_area.c:134 #: ../vector/v.overlay/line_area.c:255 msgid "Breaking lines..." msgstr "" -#: ../raster/r.path/main.c:684 +#: ../raster/r.path/main.c:687 msgid "Unable to increase point list" msgstr "" -#: ../raster/r.path/main.c:887 +#: ../raster/r.path/main.c:890 #, c-format msgid "No path from row %d, col %d" msgstr "" -#: ../raster/r.path/main.c:901 +#: ../raster/r.path/main.c:904 #, c-format msgid "Invalid direction %d" msgstr "" -#: ../raster/r.path/main.c:999 +#: ../raster/r.path/main.c:1002 msgid "Path is leaving the current region" msgstr "" @@ -38578,39 +38588,17 @@ msgstr "" msgid "Link to vector map <%s> created." msgstr "" -#: ../vector/v.external/proj.c:35 ../vector/v.in.ogr/main.c:741 -#: ../vector/v.in.ogr/proj.c:36 +#: ../vector/v.external/proj.c:34 ../vector/v.in.ogr/main.c:741 +#: ../vector/v.in.ogr/proj.c:34 #, c-format msgid "Geometry column <%s> not found in input layer <%s>" msgstr "" -#: ../vector/v.external/proj.c:49 ../vector/v.in.ogr/proj.c:50 -msgid "Unable to convert input layer projection information to GRASS format for checking" -msgstr "" - -#: ../vector/v.external/proj.c:55 ../vector/v.external/proj.c:85 -#: ../vector/v.in.ogr/proj.c:56 ../vector/v.in.ogr/proj.c:86 -msgid "Can't get WKT parameter string" -msgstr "" - -#: ../vector/v.external/proj.c:58 ../vector/v.external/proj.c:88 -#: ../vector/v.in.ogr/proj.c:59 ../vector/v.in.ogr/proj.c:89 -#, c-format -msgid "" -"WKT definition:\n" -"%s" -msgstr "" - -#: ../vector/v.external/proj.c:69 ../vector/v.in.ogr/proj.c:70 +#: ../vector/v.external/proj.c:46 ../vector/v.in.ogr/proj.c:46 #, c-format msgid "No projection information available for layer <%s>" msgstr "" -#: ../vector/v.external/proj.c:78 ../vector/v.in.ogr/proj.c:79 -#, c-format -msgid "Projection for layer <%s> does not contain a valid CRS" -msgstr "" - #: ../vector/v.extract/extract.c:202 #, c-format msgid "No category found for area %d. Skipping." @@ -40372,16 +40360,16 @@ msgstr "" msgid "The spatial filter does not overlap with OGR layer <%s>. Nothing to import." msgstr "" -#: ../vector/v.in.ogr/proj.c:168 +#: ../vector/v.in.ogr/proj.c:85 msgid "Layer projections are unreadable" msgstr "" -#: ../vector/v.in.ogr/proj.c:184 +#: ../vector/v.in.ogr/proj.c:93 #, c-format msgid "Projection for layer <%s> is unreadable" msgstr "" -#: ../vector/v.in.ogr/proj.c:236 +#: ../vector/v.in.ogr/proj.c:113 #, c-format msgid "Projection of layer <%s> is different from projection of layer <%s>" msgstr "" @@ -47848,11 +47836,6 @@ msgstr "" msgid "Image file" msgstr "" -#, fuzzy, c-format -#~| msgid "Unable to describe table <%s>" -#~ msgid "Unable to seek: %s" -#~ msgstr "Αδυναμία περιγραφής πίνακα <%s>" - #, fuzzy #~ msgid "%s available in mapset <%s>:" #~ msgstr "Τυπώνει τον πίνακα και κλεινει (έξοδος)" @@ -49963,6 +49946,11 @@ msgstr "" #~ msgid "Type of thematic display" #~ msgstr "Τύπος" +#, fuzzy, c-format +#~| msgid "Unable to describe table <%s>" +#~ msgid "Unable to seek: %s" +#~ msgstr "Αδυναμία περιγραφής πίνακα <%s>" + #, fuzzy #~ msgid "Units for output areas" #~ msgstr "Όνομα εξαγόμενου ράστερ χάρτη" @@ -50085,10 +50073,6 @@ msgstr "" #~ msgid "prefix name output layer" #~ msgstr "Όνομα εξαγόμενου ράστερ χάρτη" -#, fuzzy -#~ msgid "uri destination" -#~ msgstr "Όνομα τοποθεσία" - #, fuzzy #~ msgid "validation" #~ msgstr "Όνομα τοποθεσία" diff --git a/locale/po/grassmods_es.po b/locale/po/grassmods_es.po index c049178a7ca..b8c795c1add 100644 --- a/locale/po/grassmods_es.po +++ b/locale/po/grassmods_es.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: grassmods_es\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-08-26 13:29+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Spanish \n" @@ -185,7 +185,7 @@ msgstr "Muestra todas las columnas de una tabla dada." #: ../general/g.proj/main.c:90 ../general/g.proj/main.c:99 #: ../general/g.proj/main.c:105 ../general/g.proj/main.c:114 #: ../general/g.proj/main.c:126 ../general/g.proj/main.c:135 -#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:244 +#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:245 #: ../general/g.region/main.c:91 ../general/g.region/main.c:97 #: ../general/g.region/main.c:102 ../general/g.region/main.c:108 #: ../general/g.region/main.c:113 ../general/g.region/main.c:118 @@ -313,13 +313,12 @@ msgstr "" #: ../db/db.connect/main.c:144 ../general/g.findfile/main.c:187 #: ../general/g.list/list.c:122 ../general/g.mapset/main.c:119 -#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:54 -#: ../general/g.proj/output.c:360 ../general/g.region/main.c:471 -#: ../general/g.version/main.c:140 ../misc/m.measure/main.c:87 -#: ../raster/r.describe/dumplist.c:38 ../raster/r.distance/report.c:211 -#: ../raster/r.distance/report.c:218 ../raster/r.distance/report.c:225 -#: ../raster/r.info/main.c:147 ../raster/r.proj/main.c:487 -#: ../raster/r.regression.line/main.c:101 +#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:351 +#: ../general/g.region/main.c:471 ../general/g.version/main.c:140 +#: ../misc/m.measure/main.c:87 ../raster/r.describe/dumplist.c:38 +#: ../raster/r.distance/report.c:211 ../raster/r.distance/report.c:218 +#: ../raster/r.distance/report.c:225 ../raster/r.info/main.c:147 +#: ../raster/r.proj/main.c:487 ../raster/r.regression.line/main.c:101 #: ../raster/r.regression.multi/main.c:197 #: ../raster/r.regression.multi/main.c:566 #: ../raster/r.stats.quantile/main.c:430 ../raster/r.stats.quantile/main.c:447 @@ -339,7 +338,7 @@ msgstr "" msgid "Failed to initialize JSON object. Out of memory?" msgstr "Falla al inicializar superficie de salida" -#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:277 +#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:278 #: ../general/g.region/main.c:427 ../general/g.version/main.c:153 #: ../imagery/i.group/main.c:137 ../misc/m.measure/main.c:100 #: ../raster/r.proj/main.c:270 ../raster/r.regression.line/main.c:114 @@ -496,7 +495,7 @@ msgstr "Ruta para controlador SQLite, o string de conexión para controlador Pos msgid "Lists all databases for a given driver and location." msgstr "Lista todas las bases de datos para un controlador y Localización dados." -#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:383 +#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:374 #: ../general/g.region/main.c:990 ../general/g.version/main.c:409 #: ../imagery/i.group/main.c:301 ../raster/r.category/main.c:412 #: ../raster/r.describe/dumplist.c:71 ../raster/r.info/main.c:1000 @@ -6511,10 +6510,10 @@ msgstr "No ha sido posible abrir archivo de salida %s" msgid "Converts between PPM/PGM and PNG image formats." msgstr "Convierte entre formatos de imagen PPM/PGM y PNG." -#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:141 -#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:140 -#: ../vector/v.external/proj.c:173 ../vector/v.in.lidar/main.c:525 -#: ../vector/v.in.ogr/proj.c:307 +#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:129 +#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:129 +#: ../vector/v.external/proj.c:158 ../vector/v.in.lidar/main.c:525 +#: ../vector/v.in.ogr/proj.c:228 #, fuzzy, c-format msgid "Project <%s> created" msgstr "Localización <%s> creada" @@ -6835,58 +6834,70 @@ msgstr "Modificar archivos de proyección de la localización actual" msgid "Name of new project (location) to create" msgstr "Nombre de la nueva localización a crear" -#: ../general/g.proj/main.c:239 -msgid "plain;Human readable text output;shell;shell script style text output;json;JSON (JavaScript Object Notation);wkt;Well-known text output;proj4;PROJ.4 style text output;" +#: ../general/g.proj/main.c:240 +msgid "plain;Human readable text output;shell;shell script style text output;wkt;Well-known text output;projjson;JSON (JavaScript Object Notation) version of WKT;proj4;PROJ.4 style text output;" msgstr "" -#: ../general/g.proj/main.c:271 ../vector/v.what.rast/main.c:159 +#: ../general/g.proj/main.c:272 ../vector/v.what.rast/main.c:159 #, fuzzy, c-format #| msgid "The configuration file can only be used with the <%s> raster map" msgid "The format option can only be used with -%c flag" msgstr "El archivo de configuración se puede usar solamente con el mapa ráster <%s>" -#: ../general/g.proj/main.c:283 +#: ../general/g.proj/main.c:284 msgid "Flag 'j' is deprecated and will be removed in a future release. Please use format=proj4 instead." msgstr "" -#: ../general/g.proj/main.c:292 +#: ../general/g.proj/main.c:293 msgid "Flag 'w' is deprecated and will be removed in a future release. Please use format=wkt instead." msgstr "" -#: ../general/g.proj/main.c:312 +#: ../general/g.proj/main.c:313 #, c-format msgid "Only one of '%s', '%s', '%s', '%s' or '%s' options may be specified" msgstr "" -#: ../general/g.proj/main.c:364 +#: ../general/g.proj/main.c:365 msgid "Projection files missing" msgstr "Faltan los archivos de proyección" -#: ../general/g.proj/main.c:392 +#: ../general/g.proj/main.c:393 #, fuzzy, c-format #| msgid "No output format specified, define one of flags -%c, -%c, or -%c" msgid "No output format specified. Define one of the options: plain, shell, json, wkt, or proj4 using the -%c flag." msgstr "No se especificó el formato de salida, defina una de las opciones -%c, -%c, o -%c" -#: ../general/g.proj/main.c:397 +#: ../general/g.proj/main.c:398 #, fuzzy, c-format #| msgid "No output format specified, define one of flags -%c, -%c, or -%c" msgid "No output format specified. Define one of the options: plain, shell, json, or proj4 using the -%c flag." msgstr "No se especificó el formato de salida, defina una de las opciones -%c, -%c, o -%c" -#: ../general/g.proj/output.c:221 +#: ../general/g.proj/output.c:54 +#, fuzzy +#| msgid "Volume set number %d is not available" +msgid "JSON output is not available." +msgstr "Número %d de conjunto de volumen no está disponible" + +#: ../general/g.proj/output.c:212 msgid "Unable to convert projection information to PROJ format" msgstr "" -#: ../general/g.proj/output.c:295 +#: ../general/g.proj/output.c:286 #, c-format msgid "Unable to create PROJ definition from srid <%s>" msgstr "" -#: ../general/g.proj/output.c:337 +#: ../general/g.proj/output.c:328 msgid "Unable to convert to WKT" msgstr "" +#: ../general/g.proj/output.c:433 +#, fuzzy +#| msgid "Unable to connect to Postgres:" +msgid "Unable to convert to PROJJSON" +msgstr "No se ha podido conectar a Postres:" + #: ../general/g.region/main.c:67 msgid "computational region" msgstr "región computacional" @@ -11558,10 +11569,10 @@ msgstr "Generando esquema de renumeración..." #: ../raster/r.grow.distance/main.c:392 ../raster/r.li/r.li.daemon/daemon.c:743 #: ../raster/r.mfilter/execute.c:82 ../raster/r.mfilter/execute.c:114 #: ../raster/r.mfilter/execute.c:165 ../raster/r.mfilter/getrow.c:24 -#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:786 -#: ../raster/r.path/main.c:822 ../raster/r.path/main.c:954 -#: ../raster/r.path/main.c:1073 ../raster/r.path/main.c:1103 -#: ../raster/r.path/main.c:1207 ../raster/r.thin/io.c:72 +#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:789 +#: ../raster/r.path/main.c:825 ../raster/r.path/main.c:957 +#: ../raster/r.path/main.c:1076 ../raster/r.path/main.c:1106 +#: ../raster/r.path/main.c:1210 ../raster/r.thin/io.c:72 #: ../raster/r.thin/io.c:82 ../raster3d/r3.in.v5d/v5d.c:1192 #: ../raster3d/r3.in.v5d/v5d.c:1443 ../raster3d/r3.in.v5d/v5d.c:1523 #: ../raster3d/r3.in.v5d/v5d.c:1848 ../raster3d/r3.in.v5d/v5d.c:1859 @@ -11587,9 +11598,9 @@ msgstr "" #: ../raster/r.clump/minsize.c:268 ../raster/r.clump/minsize.c:308 #: ../raster/r.clump/minsize.c:319 ../raster/r.clump/minsize.c:454 #: ../raster/r.clump/minsize.c:481 ../raster/r.clump/minsize.c:557 -#: ../raster/r.path/main.c:791 ../raster/r.path/main.c:827 -#: ../raster/r.path/main.c:962 ../raster/r.path/main.c:1078 -#: ../raster/r.path/main.c:1108 ../raster/r.path/main.c:1213 +#: ../raster/r.path/main.c:794 ../raster/r.path/main.c:830 +#: ../raster/r.path/main.c:965 ../raster/r.path/main.c:1081 +#: ../raster/r.path/main.c:1111 ../raster/r.path/main.c:1216 msgid "Unable to read from temp file" msgstr "" @@ -19994,7 +20005,7 @@ msgstr "Especificar sólo una de las opciones -c y -n" msgid "Starting point %d is outside the current region" msgstr "El punto de inicio %d está fuera de la región actual" -#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:375 +#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:378 #, c-format msgid "Starting vector map <%s> contains no points in the current region" msgstr "El comienzo del mapa vectorial <%s> no contiene puntos en la región actual" @@ -20008,8 +20019,8 @@ msgid "Calculating flow directions..." msgstr "Calculando direcciones de flujo..." #: ../raster/r.drain/main.c:485 ../raster/r.in.lidar/main.c:783 -#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:598 -#: ../raster/r.path/main.c:628 ../raster/r.viewshed/grass.cpp:621 +#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:601 +#: ../raster/r.path/main.c:631 ../raster/r.viewshed/grass.cpp:621 msgid "Writing output raster map..." msgstr "Escribiendo mapa ráster de salida..." @@ -20258,73 +20269,84 @@ msgstr "La banda seleccionada (%d) no existe" msgid "Imagery group <%s> created" msgstr "Grupo de imaginería <%s> creado" -#: ../raster/r.external/proj.c:51 ../raster/r.external/proj.c:93 -#: ../raster/r.in.gdal/proj.c:51 ../raster/r.in.gdal/proj.c:93 -#, c-format -msgid "" -"Input contains an invalid CRS. WKT definition:\n" -"%s" +#: ../raster/r.external/proj.c:36 ../raster/r.external/proj.c:63 +#: ../raster/r.external/proj.c:122 ../raster/r.in.gdal/proj.c:36 +#: ../raster/r.in.gdal/proj.c:63 ../raster/r.in.gdal/proj.c:122 +#: ../vector/v.external/proj.c:92 ../vector/v.external/proj.c:151 +#: ../vector/v.in.ogr/proj.c:162 ../vector/v.in.ogr/proj.c:221 +msgid "Can't get WKT parameter string" msgstr "" -#: ../raster/r.external/proj.c:120 ../raster/r.in.gdal/proj.c:120 +#: ../raster/r.external/proj.c:56 ../raster/r.in.gdal/proj.c:56 +#: ../vector/v.external/proj.c:85 ../vector/v.in.ogr/proj.c:155 +#, fuzzy +#| msgid "Input map contains no data" +msgid "Input contains an invalid CRS." +msgstr "El mapa de entrada no contiene datos" + +#: ../raster/r.external/proj.c:66 ../raster/r.in.gdal/proj.c:66 +#: ../vector/v.external/proj.c:95 ../vector/v.in.ogr/proj.c:165 +#, fuzzy +#| msgid "Definition" +msgid "WKT definition:" +msgstr "Definición" + +#: ../raster/r.external/proj.c:99 ../raster/r.in.gdal/proj.c:99 +#: ../vector/v.external/proj.c:128 ../vector/v.in.ogr/proj.c:198 msgid "No projection information available" msgstr "No se encuentra información disponible sobre la proyección" -#: ../raster/r.external/proj.c:133 +#: ../raster/r.external/proj.c:114 ../raster/r.in.gdal/proj.c:114 +#: ../vector/v.external/proj.c:143 ../vector/v.in.ogr/proj.c:213 #, fuzzy -msgid "Unable to convert input map coordinate reference system to GRASS format; cannot create new project." +msgid "Unable to convert input map projection to GRASS format; cannot create new project." msgstr "No se puede convertir la proyección del mapa de entrada a formato GRASS; no se puede crear la nueva localización." -#: ../raster/r.external/proj.c:139 ../raster/r.in.gdal/main.c:1039 -#: ../raster/r.in.gdal/proj.c:138 ../vector/v.external/proj.c:171 -#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:305 +#: ../raster/r.external/proj.c:127 ../raster/r.in.gdal/main.c:1039 +#: ../raster/r.in.gdal/proj.c:127 ../vector/v.external/proj.c:156 +#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:226 #, fuzzy, c-format msgid "Unable to create new project <%s>" msgstr "No ha sido posible crear nuevo Directorio de mapas <%s>" -#: ../raster/r.external/proj.c:165 ../raster/r.in.gdal/proj.c:164 -#: ../vector/v.external/proj.c:197 ../vector/v.in.ogr/proj.c:331 +#: ../raster/r.external/proj.c:157 ../raster/r.in.gdal/proj.c:157 +#: ../vector/v.external/proj.c:186 ../vector/v.in.ogr/proj.c:256 msgid "Unable to convert input map projection information to GRASS format." msgstr "No se puede convertir la información de la proyección del mapa de entrada a formato GRASS." -#: ../raster/r.external/proj.c:192 ../raster/r.in.gdal/proj.c:192 +#: ../raster/r.external/proj.c:238 ../raster/r.in.gdal/proj.c:238 #: ../raster/r.in.lidar/projection.c:126 -#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:228 -#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:360 +#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:267 +#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:337 msgid "Over-riding projection check" msgstr "Ignorando comprobación de proyección" -#: ../raster/r.external/proj.c:200 ../raster/r.in.gdal/proj.c:200 -#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 -#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.external/proj.c:236 -#: ../vector/v.in.lidar/projection.c:30 ../vector/v.in.ogr/proj.c:368 +#: ../raster/r.external/proj.c:244 ../raster/r.in.gdal/proj.c:244 +#: ../vector/v.external/proj.c:273 ../vector/v.in.ogr/proj.c:343 #, fuzzy -msgid "" -"Coordinate reference system of dataset does not appear to match current project.\n" -"\n" +msgid "Coordinate reference system of dataset does not appear to match current project.\n" msgstr "" "La proyección del conjunto de datos parece no corresponder con la localización actual.\n" "\n" -#: ../raster/r.external/proj.c:207 ../raster/r.external/proj.c:216 -#: ../raster/r.in.gdal/proj.c:207 ../raster/r.in.gdal/proj.c:216 -#: ../vector/v.external/proj.c:243 ../vector/v.external/proj.c:252 -#: ../vector/v.in.ogr/proj.c:375 ../vector/v.in.ogr/proj.c:384 +#: ../raster/r.external/proj.c:258 ../raster/r.in.gdal/proj.c:258 +#: ../vector/v.external/proj.c:287 ../vector/v.in.ogr/proj.c:357 #, fuzzy -msgid "Project PROJ_INFO is:\n" -msgstr "La PROJ_INFO de la localización es:\n" - -#: ../raster/r.external/proj.c:236 ../raster/r.external/proj.c:243 -#: ../raster/r.in.gdal/proj.c:236 ../raster/r.in.gdal/proj.c:243 -#: ../vector/v.external/proj.c:272 ../vector/v.external/proj.c:279 -#: ../vector/v.in.ogr/proj.c:404 ../vector/v.in.ogr/proj.c:411 -msgid "Dataset PROJ_INFO is:\n" +#| msgid "Dataset PROJ_INFO is:\n" +msgid "Dataset CRS is:\n" msgstr "La PROJ_INFO del conjunto de datos es:\n" -#: ../raster/r.external/proj.c:324 ../raster/r.in.lidar/projection.c:89 -#: ../raster/r.in.pdal/projection.c:87 ../raster3d/r3.in.lidar/projection.c:90 -#: ../vector/v.external/proj.c:360 ../vector/v.in.lidar/projection.c:87 -#: ../vector/v.in.ogr/proj.c:492 ../vector/v.in.pdal/projection.c:87 +#: ../raster/r.external/proj.c:272 ../raster/r.in.gdal/proj.c:272 +#: ../vector/v.external/proj.c:301 ../vector/v.in.ogr/proj.c:371 +#, fuzzy +msgid "Project CRS is:\n" +msgstr "La PROJ_INFO de la localización es:\n" + +#: ../raster/r.external/proj.c:286 ../raster/r.in.gdal/proj.c:286 +#: ../raster/r.in.lidar/projection.c:89 ../raster/r.in.pdal/projection.c:87 +#: ../raster3d/r3.in.lidar/projection.c:90 ../vector/v.external/proj.c:315 +#: ../vector/v.in.lidar/projection.c:87 ../vector/v.in.ogr/proj.c:385 +#: ../vector/v.in.pdal/projection.c:87 #, fuzzy, c-format msgid "" "\n" @@ -20333,16 +20355,16 @@ msgstr "" "\n" "En caso de que no haya diferencias significativas en las definiciones de proyección, use la bandera -o para ignorarlas y use la definición de la Localización actual.\n" -#: ../raster/r.external/proj.c:328 ../raster/r.in.gdal/proj.c:327 -#: ../vector/v.external/proj.c:364 ../vector/v.in.ogr/proj.c:496 +#: ../raster/r.external/proj.c:290 ../raster/r.in.gdal/proj.c:290 +#: ../vector/v.external/proj.c:319 ../vector/v.in.ogr/proj.c:389 #, fuzzy msgid "Consider generating a new project from the input dataset using the 'project' parameter.\n" msgstr "Considere generar una nueva localización a partir del conjunto de datos de entrada usando el parámetro 'localización'.\n" -#: ../raster/r.external/proj.c:348 ../raster/r.in.gdal/proj.c:347 +#: ../raster/r.external/proj.c:310 ../raster/r.in.gdal/proj.c:310 #: ../raster/r.in.lidar/projection.c:136 ../raster/r.in.pdal/projection.c:134 -#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:384 -#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:516 +#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:339 +#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:409 #, fuzzy msgid "Coordinate reference system of input dataset and current project appear to match" msgstr "Las proyecciones del conjunto de datos de entrada y de la localización actual parecen coincidir" @@ -20959,7 +20981,7 @@ msgstr "" msgid "Region resolution shouldn't be lesser than map %s resolution. Run g.region raster=%s to set proper resolution" msgstr "" -#: ../raster/r.geomorphon/pattern.c:228 +#: ../raster/r.geomorphon/pattern.c:229 #, c-format msgid "Internal error in %s()" msgstr "" @@ -21942,8 +21964,7 @@ msgstr "* Proyección de salida para la tabla de GCP: %s" msgid "Error in %s (can't re-project GCP %i)" msgstr "" -#: ../raster/r.in.gdal/main.c:983 ../vector/v.external/proj.c:165 -#: ../vector/v.in.lidar/main.c:516 +#: ../raster/r.in.gdal/main.c:983 ../vector/v.in.lidar/main.c:516 #, fuzzy msgid "Unable to convert input map CRS to GRASS format; cannot create new project." msgstr "No se puede convertir la proyección del mapa de entrada a formato GRASS; no se puede crear la nueva localización." @@ -21998,20 +22019,6 @@ msgstr "" msgid "Unable to open file <%s>: %s." msgstr "No ha sido posible abrir archivo <%s>: %s." -#: ../raster/r.in.gdal/proj.c:132 ../vector/v.in.ogr/proj.c:299 -#, fuzzy -msgid "Unable to convert input map projection to GRASS format; cannot create new project." -msgstr "No se puede convertir la proyección del mapa de entrada a formato GRASS; no se puede crear la nueva localización." - -#: ../raster/r.in.gdal/proj.c:323 -#, fuzzy -msgid "" -"\n" -"In case of no significant differences in the CRS definitions, use the -o flag to ignore them and use current project definition.\n" -msgstr "" -"\n" -"En caso de que no haya diferencias significativas en las definiciones de proyección, use la bandera -o para ignorarlas y use la definición de la Localización actual.\n" - #: ../raster/r.in.gridatb/file_io.c:16 #, fuzzy, c-format #| msgid "Unable to open file <%s>" @@ -22373,6 +22380,16 @@ msgstr "No es posible calcular el percentil sin especificar la opción pth!" msgid "Unable to calculate trimmed mean without the trim option specified!" msgstr "No es posible calcular la media recortada sin especificar la opción de recorte!" +#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 +#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.in.lidar/projection.c:30 +#, fuzzy +msgid "" +"Coordinate reference system of dataset does not appear to match current project.\n" +"\n" +msgstr "" +"La proyección del conjunto de datos parece no corresponder con la localización actual.\n" +"\n" + #: ../raster/r.in.lidar/projection.c:38 ../raster/r.in.pdal/projection.c:36 #: ../vector/v.in.lidar/projection.c:36 ../vector/v.in.pdal/projection.c:36 #, fuzzy @@ -25257,114 +25274,114 @@ msgstr "configuraciones de conexión" msgid "Do not break lines (faster for single-direction bitmask encoding)" msgstr "" -#: ../raster/r.path/main.c:384 +#: ../raster/r.path/main.c:387 msgid "No start point(s) specified" msgstr "" -#: ../raster/r.path/main.c:394 +#: ../raster/r.path/main.c:397 #, c-format msgid "Reading raster values map <%s> ..." msgstr "" -#: ../raster/r.path/main.c:399 +#: ../raster/r.path/main.c:402 #, fuzzy, c-format #| msgid "Unable to open temporary file <%s>" msgid "Unable to open temporary file <%s>: %s" msgstr "No se puede abrir el archivo temporal <%s>" -#: ../raster/r.path/main.c:411 ../raster/r.path/main.c:489 -#: ../raster/r.path/main.c:506 +#: ../raster/r.path/main.c:414 ../raster/r.path/main.c:492 +#: ../raster/r.path/main.c:509 msgid "Unable to write to tempfile" msgstr "" -#: ../raster/r.path/main.c:419 +#: ../raster/r.path/main.c:422 msgid "Unable to read range file" msgstr "No se puede leer el archivo de intervalo" -#: ../raster/r.path/main.c:422 +#: ../raster/r.path/main.c:425 #, c-format msgid "Invalid directions map <%s>" msgstr "" -#: ../raster/r.path/main.c:427 +#: ../raster/r.path/main.c:430 msgid "Directional degrees can not be > 360" msgstr "" -#: ../raster/r.path/main.c:433 +#: ../raster/r.path/main.c:436 msgid "Directional degrees divided by 45 can not be > 8" msgstr "" -#: ../raster/r.path/main.c:438 +#: ../raster/r.path/main.c:441 #, c-format msgid "Bitmask encoded directions can not be > %d" msgstr "" -#: ../raster/r.path/main.c:445 +#: ../raster/r.path/main.c:448 msgid "Input direction format assumed to be degrees CCW from East divided by 45" msgstr "" -#: ../raster/r.path/main.c:450 +#: ../raster/r.path/main.c:453 msgid "Input direction format assumed to be bitmask encoded without Knight's move" msgstr "" -#: ../raster/r.path/main.c:456 +#: ../raster/r.path/main.c:459 msgid "Input direction format assumed to be degrees CCW from East" msgstr "" -#: ../raster/r.path/main.c:460 +#: ../raster/r.path/main.c:463 msgid "Input direction format assumed to be bitmask encoded with Knight's move" msgstr "" -#: ../raster/r.path/main.c:465 +#: ../raster/r.path/main.c:468 #, c-format msgid "Unable to detect format of input direction map <%s>" msgstr "" -#: ../raster/r.path/main.c:469 +#: ../raster/r.path/main.c:472 #, c-format msgid "Invalid directions format '%s'" msgstr "" -#: ../raster/r.path/main.c:471 +#: ../raster/r.path/main.c:474 #, c-format msgid "Reading direction map <%s> ..." msgstr "" -#: ../raster/r.path/main.c:525 +#: ../raster/r.path/main.c:528 msgid "Processing start points..." msgstr "" -#: ../raster/r.path/main.c:535 ../vector/v.buffer/main.c:410 +#: ../raster/r.path/main.c:538 ../vector/v.buffer/main.c:410 #: ../vector/v.in.ogr/main.c:881 ../vector/v.overlay/main.c:237 #: ../vector/v.voronoi/main.c:215 msgid "Unable to create temporary vector map" msgstr "No ha sido posible crear mapa vectorial temporal" -#: ../raster/r.path/main.c:541 ../raster/r.path/main.c:557 +#: ../raster/r.path/main.c:544 ../raster/r.path/main.c:560 #, c-format msgid "No path at row %d, col %d" msgstr "" -#: ../raster/r.path/main.c:546 ../vector/v.overlay/area_area.c:134 +#: ../raster/r.path/main.c:549 ../vector/v.overlay/area_area.c:134 #: ../vector/v.overlay/line_area.c:255 msgid "Breaking lines..." msgstr "Rompiendo líneas..." -#: ../raster/r.path/main.c:684 +#: ../raster/r.path/main.c:687 msgid "Unable to increase point list" msgstr "" -#: ../raster/r.path/main.c:887 +#: ../raster/r.path/main.c:890 #, c-format msgid "No path from row %d, col %d" msgstr "" -#: ../raster/r.path/main.c:901 +#: ../raster/r.path/main.c:904 #, c-format msgid "Invalid direction %d" msgstr "" -#: ../raster/r.path/main.c:999 +#: ../raster/r.path/main.c:1002 msgid "Path is leaving the current region" msgstr "" @@ -39083,39 +39100,17 @@ msgstr "No se puede crear el archivo '%s/%s'" msgid "Link to vector map <%s> created." msgstr "Liga al mapa vectorial <%s> creada." -#: ../vector/v.external/proj.c:35 ../vector/v.in.ogr/main.c:741 -#: ../vector/v.in.ogr/proj.c:36 +#: ../vector/v.external/proj.c:34 ../vector/v.in.ogr/main.c:741 +#: ../vector/v.in.ogr/proj.c:34 #, c-format msgid "Geometry column <%s> not found in input layer <%s>" msgstr "" -#: ../vector/v.external/proj.c:49 ../vector/v.in.ogr/proj.c:50 -msgid "Unable to convert input layer projection information to GRASS format for checking" -msgstr "" - -#: ../vector/v.external/proj.c:55 ../vector/v.external/proj.c:85 -#: ../vector/v.in.ogr/proj.c:56 ../vector/v.in.ogr/proj.c:86 -msgid "Can't get WKT parameter string" -msgstr "" - -#: ../vector/v.external/proj.c:58 ../vector/v.external/proj.c:88 -#: ../vector/v.in.ogr/proj.c:59 ../vector/v.in.ogr/proj.c:89 -#, c-format -msgid "" -"WKT definition:\n" -"%s" -msgstr "" - -#: ../vector/v.external/proj.c:69 ../vector/v.in.ogr/proj.c:70 +#: ../vector/v.external/proj.c:46 ../vector/v.in.ogr/proj.c:46 #, c-format msgid "No projection information available for layer <%s>" msgstr "" -#: ../vector/v.external/proj.c:78 ../vector/v.in.ogr/proj.c:79 -#, c-format -msgid "Projection for layer <%s> does not contain a valid CRS" -msgstr "" - #: ../vector/v.extract/extract.c:202 #, c-format msgid "No category found for area %d. Skipping." @@ -40894,16 +40889,16 @@ msgstr "" msgid "The spatial filter does not overlap with OGR layer <%s>. Nothing to import." msgstr "" -#: ../vector/v.in.ogr/proj.c:168 +#: ../vector/v.in.ogr/proj.c:85 msgid "Layer projections are unreadable" msgstr "" -#: ../vector/v.in.ogr/proj.c:184 +#: ../vector/v.in.ogr/proj.c:93 #, c-format msgid "Projection for layer <%s> is unreadable" msgstr "" -#: ../vector/v.in.ogr/proj.c:236 +#: ../vector/v.in.ogr/proj.c:113 #, c-format msgid "Projection of layer <%s> is different from projection of layer <%s>" msgstr "" @@ -48472,92 +48467,6 @@ msgstr "Ver imágenes BMP desde el controlador PNG." msgid "Image file" msgstr "Archivo de imagen" -#, fuzzy, c-format -#~| msgid "Unable to select: \n" -#~ msgid "Unable to seek: %s" -#~ msgstr "No se ha podido seleccionar: \n" - -#~ msgid "Both -s and -h doesn't make sense" -#~ msgstr "-s y -h a la vez no tiene sentido" - -#~ msgid "Use -M or -s, not both" -#~ msgstr "Utilice -M o -s, no ambas" - -#~ msgid "Print the stats in shell script style" -#~ msgstr "Imprimir las estadísticas en estilo de script de consola" - -#~ msgid "Field separator for shell script style output" -#~ msgstr "Separador de campos para salida estilo consola de comandos" - -#~ msgid "Print all map connection parameters in shell script style and exit" -#~ msgstr "Mostrar todos los parámetros de conexión del mapa en estilo de script de consola y salir" - -#~ msgid "Format: layer[/layer name] table key database driver" -#~ msgstr "Formato: capa[/nombre de capa] tabla clave base de datos controlador" - -#~ msgid "Substitute variables in database settings" -#~ msgstr "Sustituir variables en la configuración de la base de datos" - -#~ msgid "Print stats in shell script style" -#~ msgstr "Mostrar las estadísticas en estilo de script de consola de comandos" - -#~ msgid "Print raster3d information in shell style" -#~ msgstr "Mostrar información de ráster3d en estilo de consola de comandos" - -#~ msgid "Print range in shell style only" -#~ msgstr "Mostrar solamente rango en estilo de consola de comandos" - -#~ msgid "Shell script style" -#~ msgstr "Script estilo consola de comandos" - -#~ msgid "Output RRR:GGG:BBB color values for each profile point" -#~ msgstr "Dar los valores de color RRR GGG BBB para cada punto del perfil" - -#, c-format -#~ msgid "Test %s." -#~ msgstr "Test %s." - -#~ msgid "have" -#~ msgstr "tener" - -#~ msgid "read " -#~ msgstr "leer" - -#~ msgid "Everyone" -#~ msgstr "Todos/as" - -#~ msgid "has" -#~ msgstr "tiene" - -#~ msgid "Only you" -#~ msgstr "Sólo tú" - -#~ msgid "now" -#~ msgstr "ahora" - -#, c-format -#~ msgid "Only one of -%c, -%c, -%c, -%c, -%c or -%c flags may be specified" -#~ msgstr "Sólo se puede especificar una de las opciones -%c, -%c, -%c, -%c, -%c o -%c" - -#, fuzzy, c-format -#~ msgid "Only one of -%c, -%c, -%c, -%c or -%c flags may be specified" -#~ msgstr "Sólo se puede especificar una de las opciones -%c, -%c, -%c, -%c, -%c o -%c" - -#~ msgid "temperature" -#~ msgstr "temperatura" - -#~ msgid "set" -#~ msgstr "definir" - -#~ msgid "unset" -#~ msgstr "no establecer" - -#~ msgid "changed" -#~ msgstr "cambiado" - -#~ msgid "reduced" -#~ msgstr "reducido" - #~ msgid "" #~ "\n" #~ "%d classes, %.2f%% points stable\n" @@ -48572,6 +48481,14 @@ msgstr "Archivo de imagen" #~ "\n" #~ "%sCOMPRIME <%s>" +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "In case of no significant differences in the CRS definitions, use the -o flag to ignore them and use current project definition.\n" +#~ msgstr "" +#~ "\n" +#~ "En caso de que no haya diferencias significativas en las definiciones de proyección, use la bandera -o para ignorarlas y use la definición de la Localización actual.\n" + #~ msgid "" #~ "\n" #~ "You can use the -o flag to %s to override this projection check.\n" @@ -49034,6 +48951,9 @@ msgstr "Archivo de imagen" #~ msgid "Borehole length [m]" #~ msgstr "Umbral de profundidad del agua [m]" +#~ msgid "Both -s and -h doesn't make sense" +#~ msgstr "-s y -h a la vez no tiene sentido" + #, fuzzy #~ msgid "Boxplot color" #~ msgstr "Color de texto" @@ -50259,6 +50179,9 @@ msgstr "Archivo de imagen" #~ msgid "Evaluation" #~ msgstr "Elevación" +#~ msgid "Everyone" +#~ msgstr "Todos/as" + #, fuzzy #~ msgid "Example: 1,3,7-9,13" #~ msgstr "Ejemplo: 1.4,3.8,13" @@ -50384,6 +50307,9 @@ msgstr "Archivo de imagen" #~ msgid "Field separator" #~ msgstr "Separador de campos de salida" +#~ msgid "Field separator for shell script style output" +#~ msgstr "Separador de campos para salida estilo consola de comandos" + #, fuzzy #~ msgid "Field separator in input text files" #~ msgstr "Separador de campos para archivo de entrada" @@ -50582,6 +50508,9 @@ msgstr "Archivo de imagen" #~ msgid "Format: layer type count min max" #~ msgstr "Formato: capa tipo cuenta mínimo máximo" +#~ msgid "Format: layer[/layer name] table key database driver" +#~ msgstr "Formato: capa[/nombre de capa] tabla clave base de datos controlador" + #, fuzzy #~ msgid "Full path to MRT directory" #~ msgstr "Ruta al directorio de exportación" @@ -53905,6 +53834,14 @@ msgstr "Archivo de imagen" #~ msgid "Only draw fills (no outlines) for areas and points" #~ msgstr "Dibujar sólo rellenos (no líneas exteriores) para áreas y puntos" +#, fuzzy, c-format +#~ msgid "Only one of -%c, -%c, -%c, -%c or -%c flags may be specified" +#~ msgstr "Sólo se puede especificar una de las opciones -%c, -%c, -%c, -%c, -%c o -%c" + +#, c-format +#~ msgid "Only one of -%c, -%c, -%c, -%c, -%c or -%c flags may be specified" +#~ msgstr "Sólo se puede especificar una de las opciones -%c, -%c, -%c, -%c, -%c o -%c" + #, fuzzy #~ msgid "Only print selected polygons" #~ msgstr "Mostrar solamente conteo de celdas" @@ -53917,6 +53854,9 @@ msgstr "Archivo de imagen" #~ msgid "Only tune and train model, do not predict" #~ msgstr "Sólo probar la consulta, no ejecutarla" +#~ msgid "Only you" +#~ msgstr "Sólo tú" + #, fuzzy #~ msgid "Open an existing output OGR datasource for update" #~ msgstr "Abrir una fuente de datos OGR existente para actualizar" @@ -54040,6 +53980,9 @@ msgstr "Archivo de imagen" #~ msgid "Output Potential file" #~ msgstr "salida a archivo de texto" +#~ msgid "Output RRR:GGG:BBB color values for each profile point" +#~ msgstr "Dar los valores de color RRR GGG BBB para cada punto del perfil" + #, fuzzy #~ msgid "Output absolute file name for the supply table" #~ msgstr "Nombre de archivo de tabla de salida o cadena de conexión DB" @@ -54589,6 +54532,9 @@ msgstr "Archivo de imagen" #~ msgid "Print Maxent command" #~ msgstr "Imprimir X e Y (columna y fila)" +#~ msgid "Print all map connection parameters in shell script style and exit" +#~ msgstr "Mostrar todos los parámetros de conexión del mapa en estilo de script de consola y salir" + #, fuzzy #~ msgid "Print attribut table" #~ msgstr "tabla de atributos" @@ -54660,6 +54606,9 @@ msgstr "Archivo de imagen" #~ msgid "Print range in shell script style" #~ msgstr "Mostrar rango en estilo de script de consola de comandos" +#~ msgid "Print range in shell style only" +#~ msgstr "Mostrar solamente rango en estilo de consola de comandos" + #~ msgid "Print raster array information in shell script style" #~ msgstr "Mostrar información de matriz ráster en estilo de script de consola de comandos" @@ -54667,6 +54616,9 @@ msgstr "Archivo de imagen" #~ msgid "Print raster data to be imported and exit" #~ msgstr "Archivo ráster binario a importar" +#~ msgid "Print raster3d information in shell style" +#~ msgstr "Mostrar información de ráster3d en estilo de consola de comandos" + #, fuzzy #~ msgid "Print result from matching taxa names and exit" #~ msgstr "Imprimir los parámetros de la conexión actual y salir" @@ -54675,6 +54627,9 @@ msgstr "Archivo de imagen" #~ msgid "Print result from matching taxon names in shell script style and exit" #~ msgstr "Mostrar todos los parámetros de conexión del mapa en estilo de script de consola y salir" +#~ msgid "Print stats in shell script style" +#~ msgstr "Mostrar las estadísticas en estilo de script de consola de comandos" + #~ msgid "Print table structure" #~ msgstr "Imprimir estructura de tablas" @@ -54682,6 +54637,9 @@ msgstr "Archivo de imagen" #~ msgid "Print the request URL and exit" #~ msgstr "Imprimir tablas y salir" +#~ msgid "Print the stats in shell script style" +#~ msgstr "Imprimir las estadísticas en estilo de script de consola" + #, fuzzy #~ msgid "Print the threshold value in shell script style" #~ msgstr "Imprimir las estadísticas en estilo de script de consola" @@ -55446,6 +55404,9 @@ msgstr "Archivo de imagen" #~ msgid "Shear stress coefficient" #~ msgstr "Mapa para el coeficiente X" +#~ msgid "Shell script style" +#~ msgstr "Script estilo consola de comandos" + #, fuzzy #~ msgid "Show category numbers" #~ msgstr "No mostrar números de categoría" @@ -55675,6 +55636,9 @@ msgstr "Archivo de imagen" #~ msgid "Subroup used to print signature file" #~ msgstr "No se puede abrir el archivo de firmas" +#~ msgid "Substitute variables in database settings" +#~ msgstr "Sustituir variables en la configuración de la base de datos" + #, fuzzy #~ msgid "Subtitle font size in layout units" #~ msgstr "Tamaño de fuente para el subtítulo" @@ -55781,6 +55745,10 @@ msgstr "Archivo de imagen" #~ msgid "Terrain options" #~ msgstr "Opciones de creación" +#, c-format +#~ msgid "Test %s." +#~ msgstr "Test %s." + #, fuzzy #~ msgid "Test different classification methods" #~ msgstr "clasificación supervisada" @@ -56166,6 +56134,10 @@ msgstr "Archivo de imagen" #~ msgid "Unable to assign/dissociate band reference. {}" #~ msgstr "No se puede abrir la base de datos para la tabla de referencia" +#, fuzzy +#~ msgid "Unable to convert input map coordinate reference system to GRASS format; cannot create new project." +#~ msgstr "No se puede convertir la proyección del mapa de entrada a formato GRASS; no se puede crear la nueva localización." + #~ msgid "Unable to convert input raster map projection information to GRASS format for checking" #~ msgstr "No se puede convertir la información de la proyección del mapa de entrada al formato de GRASS para comprobar" @@ -56229,6 +56201,11 @@ msgstr "Archivo de imagen" #~ msgid "Unable to read command file" #~ msgstr "No se puede leer el archivo de comandos" +#, fuzzy, c-format +#~| msgid "Unable to select: \n" +#~ msgid "Unable to seek: %s" +#~ msgstr "No se ha podido seleccionar: \n" + #, fuzzy #~ msgid "Unacceptable conditions for Designated Fill" #~ msgstr "No se puede abrir el archivo de firmas" @@ -56314,6 +56291,9 @@ msgstr "Archivo de imagen" #~ msgid "Upstream northing (or y or lat) column name" #~ msgstr "Suprime el mostrado de los nombres de columnas" +#~ msgid "Use -M or -s, not both" +#~ msgstr "Utilice -M o -s, no ambas" + #, fuzzy #~ msgid "Use a custom threshold" #~ msgstr "Usar SFD por encima de este umbral" @@ -56863,6 +56843,9 @@ msgstr "Archivo de imagen" #~ msgid "change vector analysis" #~ msgstr "ańalisis de estructura del paisaje" +#~ msgid "changed" +#~ msgstr "cambiado" + #, fuzzy #~ msgid "channels" #~ msgstr "cambiado" @@ -57026,6 +57009,12 @@ msgstr "Archivo de imagen" #~ msgid "grid lines" #~ msgstr "isolíneas" +#~ msgid "has" +#~ msgstr "tiene" + +#~ msgid "have" +#~ msgstr "tener" + #, fuzzy #~ msgid "hide outliers" #~ msgstr "%d discrepantes (outliers) encontrados" @@ -57253,6 +57242,9 @@ msgstr "Archivo de imagen" #~ msgid "nodata value in output files" #~ msgstr "Número de columna de los valores de datos en el archivo de entrada" +#~ msgid "now" +#~ msgstr "ahora" + #~ msgid "npoints = %d, nterrain = %d" #~ msgstr "npoints = %d, nterrain = %d" @@ -57364,6 +57356,9 @@ msgstr "Archivo de imagen" #~ msgid "radius= and x_radius=/y_radius= are mutually exclusive" #~ msgstr "weight= y -c son excluyentes mutuamente" +#~ msgid "read " +#~ msgstr "leer" + #~ msgid "read vector region map" #~ msgstr "leer mapa de región vectorial" @@ -57375,6 +57370,9 @@ msgstr "Archivo de imagen" #~ msgid "recreation potential" #~ msgstr "Marca de tiempo de creación" +#~ msgid "reduced" +#~ msgstr "reducido" + #, fuzzy #~ msgid "region extension" #~ msgstr "extensiones" @@ -57419,6 +57417,9 @@ msgstr "Archivo de imagen" #~ msgid "server port" #~ msgstr "Informe amplio" +#~ msgid "set" +#~ msgstr "definir" + #, fuzzy #~ msgid "set non-selected values to 0 (default to NULL)" #~ msgstr "Lista de valores de celda para establecer a NULO" @@ -57470,6 +57471,9 @@ msgstr "Archivo de imagen" #~ msgid "symbology" #~ msgstr "hidrología" +#~ msgid "temperature" +#~ msgstr "temperatura" + #~ msgid "thematic" #~ msgstr "temático" @@ -57505,6 +57509,9 @@ msgstr "Archivo de imagen" #~ msgid "trendline width" #~ msgstr "Grosor de la cuadrícula" +#~ msgid "unset" +#~ msgstr "no establecer" + #~ msgid "unspecified" #~ msgstr "no especificado" diff --git a/locale/po/grassmods_fi.po b/locale/po/grassmods_fi.po index 3b720b5dc75..0e7127d1182 100644 --- a/locale/po/grassmods_fi.po +++ b/locale/po/grassmods_fi.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: grassmods_fi\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-07-26 01:36+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Finnish \n" @@ -176,7 +176,7 @@ msgstr "" #: ../general/g.proj/main.c:90 ../general/g.proj/main.c:99 #: ../general/g.proj/main.c:105 ../general/g.proj/main.c:114 #: ../general/g.proj/main.c:126 ../general/g.proj/main.c:135 -#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:244 +#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:245 #: ../general/g.region/main.c:91 ../general/g.region/main.c:97 #: ../general/g.region/main.c:102 ../general/g.region/main.c:108 #: ../general/g.region/main.c:113 ../general/g.region/main.c:118 @@ -302,13 +302,12 @@ msgstr "" #: ../db/db.connect/main.c:144 ../general/g.findfile/main.c:187 #: ../general/g.list/list.c:122 ../general/g.mapset/main.c:119 -#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:54 -#: ../general/g.proj/output.c:360 ../general/g.region/main.c:471 -#: ../general/g.version/main.c:140 ../misc/m.measure/main.c:87 -#: ../raster/r.describe/dumplist.c:38 ../raster/r.distance/report.c:211 -#: ../raster/r.distance/report.c:218 ../raster/r.distance/report.c:225 -#: ../raster/r.info/main.c:147 ../raster/r.proj/main.c:487 -#: ../raster/r.regression.line/main.c:101 +#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:351 +#: ../general/g.region/main.c:471 ../general/g.version/main.c:140 +#: ../misc/m.measure/main.c:87 ../raster/r.describe/dumplist.c:38 +#: ../raster/r.distance/report.c:211 ../raster/r.distance/report.c:218 +#: ../raster/r.distance/report.c:225 ../raster/r.info/main.c:147 +#: ../raster/r.proj/main.c:487 ../raster/r.regression.line/main.c:101 #: ../raster/r.regression.multi/main.c:197 #: ../raster/r.regression.multi/main.c:566 #: ../raster/r.stats.quantile/main.c:430 ../raster/r.stats.quantile/main.c:447 @@ -327,7 +326,7 @@ msgstr "" msgid "Failed to initialize JSON object. Out of memory?" msgstr "" -#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:277 +#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:278 #: ../general/g.region/main.c:427 ../general/g.version/main.c:153 #: ../imagery/i.group/main.c:137 ../misc/m.measure/main.c:100 #: ../raster/r.proj/main.c:270 ../raster/r.regression.line/main.c:114 @@ -481,7 +480,7 @@ msgstr "" msgid "Lists all databases for a given driver and location." msgstr "" -#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:383 +#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:374 #: ../general/g.region/main.c:990 ../general/g.version/main.c:409 #: ../imagery/i.group/main.c:301 ../raster/r.category/main.c:412 #: ../raster/r.describe/dumplist.c:71 ../raster/r.info/main.c:1000 @@ -6445,10 +6444,10 @@ msgstr "" msgid "Converts between PPM/PGM and PNG image formats." msgstr "" -#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:141 -#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:140 -#: ../vector/v.external/proj.c:173 ../vector/v.in.lidar/main.c:525 -#: ../vector/v.in.ogr/proj.c:307 +#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:129 +#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:129 +#: ../vector/v.external/proj.c:158 ../vector/v.in.lidar/main.c:525 +#: ../vector/v.in.ogr/proj.c:228 #, c-format msgid "Project <%s> created" msgstr "" @@ -6753,55 +6752,63 @@ msgstr "" msgid "Name of new project (location) to create" msgstr "" -#: ../general/g.proj/main.c:239 -msgid "plain;Human readable text output;shell;shell script style text output;json;JSON (JavaScript Object Notation);wkt;Well-known text output;proj4;PROJ.4 style text output;" +#: ../general/g.proj/main.c:240 +msgid "plain;Human readable text output;shell;shell script style text output;wkt;Well-known text output;projjson;JSON (JavaScript Object Notation) version of WKT;proj4;PROJ.4 style text output;" msgstr "" -#: ../general/g.proj/main.c:271 ../vector/v.what.rast/main.c:159 +#: ../general/g.proj/main.c:272 ../vector/v.what.rast/main.c:159 #, c-format msgid "The format option can only be used with -%c flag" msgstr "" -#: ../general/g.proj/main.c:283 +#: ../general/g.proj/main.c:284 msgid "Flag 'j' is deprecated and will be removed in a future release. Please use format=proj4 instead." msgstr "" -#: ../general/g.proj/main.c:292 +#: ../general/g.proj/main.c:293 msgid "Flag 'w' is deprecated and will be removed in a future release. Please use format=wkt instead." msgstr "" -#: ../general/g.proj/main.c:312 +#: ../general/g.proj/main.c:313 #, c-format msgid "Only one of '%s', '%s', '%s', '%s' or '%s' options may be specified" msgstr "" -#: ../general/g.proj/main.c:364 +#: ../general/g.proj/main.c:365 msgid "Projection files missing" msgstr "" -#: ../general/g.proj/main.c:392 +#: ../general/g.proj/main.c:393 #, c-format msgid "No output format specified. Define one of the options: plain, shell, json, wkt, or proj4 using the -%c flag." msgstr "" -#: ../general/g.proj/main.c:397 +#: ../general/g.proj/main.c:398 #, c-format msgid "No output format specified. Define one of the options: plain, shell, json, or proj4 using the -%c flag." msgstr "" -#: ../general/g.proj/output.c:221 +#: ../general/g.proj/output.c:54 +msgid "JSON output is not available." +msgstr "" + +#: ../general/g.proj/output.c:212 msgid "Unable to convert projection information to PROJ format" msgstr "" -#: ../general/g.proj/output.c:295 +#: ../general/g.proj/output.c:286 #, c-format msgid "Unable to create PROJ definition from srid <%s>" msgstr "" -#: ../general/g.proj/output.c:337 +#: ../general/g.proj/output.c:328 msgid "Unable to convert to WKT" msgstr "" +#: ../general/g.proj/output.c:433 +msgid "Unable to convert to PROJJSON" +msgstr "" + #: ../general/g.region/main.c:67 msgid "computational region" msgstr "" @@ -11420,10 +11427,10 @@ msgstr "" #: ../raster/r.grow.distance/main.c:392 ../raster/r.li/r.li.daemon/daemon.c:743 #: ../raster/r.mfilter/execute.c:82 ../raster/r.mfilter/execute.c:114 #: ../raster/r.mfilter/execute.c:165 ../raster/r.mfilter/getrow.c:24 -#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:786 -#: ../raster/r.path/main.c:822 ../raster/r.path/main.c:954 -#: ../raster/r.path/main.c:1073 ../raster/r.path/main.c:1103 -#: ../raster/r.path/main.c:1207 ../raster/r.thin/io.c:72 +#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:789 +#: ../raster/r.path/main.c:825 ../raster/r.path/main.c:957 +#: ../raster/r.path/main.c:1076 ../raster/r.path/main.c:1106 +#: ../raster/r.path/main.c:1210 ../raster/r.thin/io.c:72 #: ../raster/r.thin/io.c:82 ../raster3d/r3.in.v5d/v5d.c:1192 #: ../raster3d/r3.in.v5d/v5d.c:1443 ../raster3d/r3.in.v5d/v5d.c:1523 #: ../raster3d/r3.in.v5d/v5d.c:1848 ../raster3d/r3.in.v5d/v5d.c:1859 @@ -11448,9 +11455,9 @@ msgstr "" #: ../raster/r.clump/minsize.c:268 ../raster/r.clump/minsize.c:308 #: ../raster/r.clump/minsize.c:319 ../raster/r.clump/minsize.c:454 #: ../raster/r.clump/minsize.c:481 ../raster/r.clump/minsize.c:557 -#: ../raster/r.path/main.c:791 ../raster/r.path/main.c:827 -#: ../raster/r.path/main.c:962 ../raster/r.path/main.c:1078 -#: ../raster/r.path/main.c:1108 ../raster/r.path/main.c:1213 +#: ../raster/r.path/main.c:794 ../raster/r.path/main.c:830 +#: ../raster/r.path/main.c:965 ../raster/r.path/main.c:1081 +#: ../raster/r.path/main.c:1111 ../raster/r.path/main.c:1216 msgid "Unable to read from temp file" msgstr "" @@ -19746,7 +19753,7 @@ msgstr "" msgid "Starting point %d is outside the current region" msgstr "" -#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:375 +#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:378 #, c-format msgid "Starting vector map <%s> contains no points in the current region" msgstr "" @@ -19760,8 +19767,8 @@ msgid "Calculating flow directions..." msgstr "" #: ../raster/r.drain/main.c:485 ../raster/r.in.lidar/main.c:783 -#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:598 -#: ../raster/r.path/main.c:628 ../raster/r.viewshed/grass.cpp:621 +#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:601 +#: ../raster/r.path/main.c:631 ../raster/r.viewshed/grass.cpp:621 msgid "Writing output raster map..." msgstr "" @@ -20009,83 +20016,89 @@ msgstr "" msgid "Imagery group <%s> created" msgstr "" -#: ../raster/r.external/proj.c:51 ../raster/r.external/proj.c:93 -#: ../raster/r.in.gdal/proj.c:51 ../raster/r.in.gdal/proj.c:93 -#, c-format -msgid "" -"Input contains an invalid CRS. WKT definition:\n" -"%s" +#: ../raster/r.external/proj.c:36 ../raster/r.external/proj.c:63 +#: ../raster/r.external/proj.c:122 ../raster/r.in.gdal/proj.c:36 +#: ../raster/r.in.gdal/proj.c:63 ../raster/r.in.gdal/proj.c:122 +#: ../vector/v.external/proj.c:92 ../vector/v.external/proj.c:151 +#: ../vector/v.in.ogr/proj.c:162 ../vector/v.in.ogr/proj.c:221 +msgid "Can't get WKT parameter string" msgstr "" -#: ../raster/r.external/proj.c:120 ../raster/r.in.gdal/proj.c:120 +#: ../raster/r.external/proj.c:56 ../raster/r.in.gdal/proj.c:56 +#: ../vector/v.external/proj.c:85 ../vector/v.in.ogr/proj.c:155 +msgid "Input contains an invalid CRS." +msgstr "" + +#: ../raster/r.external/proj.c:66 ../raster/r.in.gdal/proj.c:66 +#: ../vector/v.external/proj.c:95 ../vector/v.in.ogr/proj.c:165 +#, fuzzy +msgid "WKT definition:" +msgstr "Paikka" + +#: ../raster/r.external/proj.c:99 ../raster/r.in.gdal/proj.c:99 +#: ../vector/v.external/proj.c:128 ../vector/v.in.ogr/proj.c:198 msgid "No projection information available" msgstr "" -#: ../raster/r.external/proj.c:133 -msgid "Unable to convert input map coordinate reference system to GRASS format; cannot create new project." +#: ../raster/r.external/proj.c:114 ../raster/r.in.gdal/proj.c:114 +#: ../vector/v.external/proj.c:143 ../vector/v.in.ogr/proj.c:213 +msgid "Unable to convert input map projection to GRASS format; cannot create new project." msgstr "" -#: ../raster/r.external/proj.c:139 ../raster/r.in.gdal/main.c:1039 -#: ../raster/r.in.gdal/proj.c:138 ../vector/v.external/proj.c:171 -#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:305 +#: ../raster/r.external/proj.c:127 ../raster/r.in.gdal/main.c:1039 +#: ../raster/r.in.gdal/proj.c:127 ../vector/v.external/proj.c:156 +#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:226 #, fuzzy, c-format msgid "Unable to create new project <%s>" msgstr "Ei voida luoda taulua." -#: ../raster/r.external/proj.c:165 ../raster/r.in.gdal/proj.c:164 -#: ../vector/v.external/proj.c:197 ../vector/v.in.ogr/proj.c:331 +#: ../raster/r.external/proj.c:157 ../raster/r.in.gdal/proj.c:157 +#: ../vector/v.external/proj.c:186 ../vector/v.in.ogr/proj.c:256 msgid "Unable to convert input map projection information to GRASS format." msgstr "" -#: ../raster/r.external/proj.c:192 ../raster/r.in.gdal/proj.c:192 +#: ../raster/r.external/proj.c:238 ../raster/r.in.gdal/proj.c:238 #: ../raster/r.in.lidar/projection.c:126 -#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:228 -#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:360 +#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:267 +#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:337 msgid "Over-riding projection check" msgstr "" -#: ../raster/r.external/proj.c:200 ../raster/r.in.gdal/proj.c:200 -#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 -#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.external/proj.c:236 -#: ../vector/v.in.lidar/projection.c:30 ../vector/v.in.ogr/proj.c:368 -msgid "" -"Coordinate reference system of dataset does not appear to match current project.\n" -"\n" +#: ../raster/r.external/proj.c:244 ../raster/r.in.gdal/proj.c:244 +#: ../vector/v.external/proj.c:273 ../vector/v.in.ogr/proj.c:343 +msgid "Coordinate reference system of dataset does not appear to match current project.\n" msgstr "" -#: ../raster/r.external/proj.c:207 ../raster/r.external/proj.c:216 -#: ../raster/r.in.gdal/proj.c:207 ../raster/r.in.gdal/proj.c:216 -#: ../vector/v.external/proj.c:243 ../vector/v.external/proj.c:252 -#: ../vector/v.in.ogr/proj.c:375 ../vector/v.in.ogr/proj.c:384 -msgid "Project PROJ_INFO is:\n" +#: ../raster/r.external/proj.c:258 ../raster/r.in.gdal/proj.c:258 +#: ../vector/v.external/proj.c:287 ../vector/v.in.ogr/proj.c:357 +msgid "Dataset CRS is:\n" msgstr "" -#: ../raster/r.external/proj.c:236 ../raster/r.external/proj.c:243 -#: ../raster/r.in.gdal/proj.c:236 ../raster/r.in.gdal/proj.c:243 -#: ../vector/v.external/proj.c:272 ../vector/v.external/proj.c:279 -#: ../vector/v.in.ogr/proj.c:404 ../vector/v.in.ogr/proj.c:411 -msgid "Dataset PROJ_INFO is:\n" +#: ../raster/r.external/proj.c:272 ../raster/r.in.gdal/proj.c:272 +#: ../vector/v.external/proj.c:301 ../vector/v.in.ogr/proj.c:371 +msgid "Project CRS is:\n" msgstr "" -#: ../raster/r.external/proj.c:324 ../raster/r.in.lidar/projection.c:89 -#: ../raster/r.in.pdal/projection.c:87 ../raster3d/r3.in.lidar/projection.c:90 -#: ../vector/v.external/proj.c:360 ../vector/v.in.lidar/projection.c:87 -#: ../vector/v.in.ogr/proj.c:492 ../vector/v.in.pdal/projection.c:87 +#: ../raster/r.external/proj.c:286 ../raster/r.in.gdal/proj.c:286 +#: ../raster/r.in.lidar/projection.c:89 ../raster/r.in.pdal/projection.c:87 +#: ../raster3d/r3.in.lidar/projection.c:90 ../vector/v.external/proj.c:315 +#: ../vector/v.in.lidar/projection.c:87 ../vector/v.in.ogr/proj.c:385 +#: ../vector/v.in.pdal/projection.c:87 #, c-format msgid "" "\n" "In case of no significant differences in the coordinate reference system definitions, use the -o flag to ignore them and use current project definition.\n" msgstr "" -#: ../raster/r.external/proj.c:328 ../raster/r.in.gdal/proj.c:327 -#: ../vector/v.external/proj.c:364 ../vector/v.in.ogr/proj.c:496 +#: ../raster/r.external/proj.c:290 ../raster/r.in.gdal/proj.c:290 +#: ../vector/v.external/proj.c:319 ../vector/v.in.ogr/proj.c:389 msgid "Consider generating a new project from the input dataset using the 'project' parameter.\n" msgstr "" -#: ../raster/r.external/proj.c:348 ../raster/r.in.gdal/proj.c:347 +#: ../raster/r.external/proj.c:310 ../raster/r.in.gdal/proj.c:310 #: ../raster/r.in.lidar/projection.c:136 ../raster/r.in.pdal/projection.c:134 -#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:384 -#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:516 +#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:339 +#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:409 msgid "Coordinate reference system of input dataset and current project appear to match" msgstr "" @@ -20693,7 +20706,7 @@ msgstr "" msgid "Region resolution shouldn't be lesser than map %s resolution. Run g.region raster=%s to set proper resolution" msgstr "" -#: ../raster/r.geomorphon/pattern.c:228 +#: ../raster/r.geomorphon/pattern.c:229 #, c-format msgid "Internal error in %s()" msgstr "" @@ -21659,8 +21672,7 @@ msgstr "" msgid "Error in %s (can't re-project GCP %i)" msgstr "" -#: ../raster/r.in.gdal/main.c:983 ../vector/v.external/proj.c:165 -#: ../vector/v.in.lidar/main.c:516 +#: ../raster/r.in.gdal/main.c:983 ../vector/v.in.lidar/main.c:516 msgid "Unable to convert input map CRS to GRASS format; cannot create new project." msgstr "" @@ -21711,16 +21723,6 @@ msgstr "" msgid "Unable to open file <%s>: %s." msgstr "" -#: ../raster/r.in.gdal/proj.c:132 ../vector/v.in.ogr/proj.c:299 -msgid "Unable to convert input map projection to GRASS format; cannot create new project." -msgstr "" - -#: ../raster/r.in.gdal/proj.c:323 -msgid "" -"\n" -"In case of no significant differences in the CRS definitions, use the -o flag to ignore them and use current project definition.\n" -msgstr "" - #: ../raster/r.in.gridatb/file_io.c:16 #, fuzzy, c-format msgid "Unable to open file: %s" @@ -22081,6 +22083,13 @@ msgstr "" msgid "Unable to calculate trimmed mean without the trim option specified!" msgstr "" +#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 +#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.in.lidar/projection.c:30 +msgid "" +"Coordinate reference system of dataset does not appear to match current project.\n" +"\n" +msgstr "" + #: ../raster/r.in.lidar/projection.c:38 ../raster/r.in.pdal/projection.c:36 #: ../vector/v.in.lidar/projection.c:36 ../vector/v.in.pdal/projection.c:36 msgid "GRASS project PROJ_INFO is:\n" @@ -24903,113 +24912,113 @@ msgstr "" msgid "Do not break lines (faster for single-direction bitmask encoding)" msgstr "" -#: ../raster/r.path/main.c:384 +#: ../raster/r.path/main.c:387 msgid "No start point(s) specified" msgstr "" -#: ../raster/r.path/main.c:394 +#: ../raster/r.path/main.c:397 #, c-format msgid "Reading raster values map <%s> ..." msgstr "" -#: ../raster/r.path/main.c:399 +#: ../raster/r.path/main.c:402 #, fuzzy, c-format msgid "Unable to open temporary file <%s>: %s" msgstr "Indeksiä ei voida luoda:" -#: ../raster/r.path/main.c:411 ../raster/r.path/main.c:489 -#: ../raster/r.path/main.c:506 +#: ../raster/r.path/main.c:414 ../raster/r.path/main.c:492 +#: ../raster/r.path/main.c:509 msgid "Unable to write to tempfile" msgstr "" -#: ../raster/r.path/main.c:419 +#: ../raster/r.path/main.c:422 msgid "Unable to read range file" msgstr "" -#: ../raster/r.path/main.c:422 +#: ../raster/r.path/main.c:425 #, c-format msgid "Invalid directions map <%s>" msgstr "" -#: ../raster/r.path/main.c:427 +#: ../raster/r.path/main.c:430 msgid "Directional degrees can not be > 360" msgstr "" -#: ../raster/r.path/main.c:433 +#: ../raster/r.path/main.c:436 msgid "Directional degrees divided by 45 can not be > 8" msgstr "" -#: ../raster/r.path/main.c:438 +#: ../raster/r.path/main.c:441 #, c-format msgid "Bitmask encoded directions can not be > %d" msgstr "" -#: ../raster/r.path/main.c:445 +#: ../raster/r.path/main.c:448 msgid "Input direction format assumed to be degrees CCW from East divided by 45" msgstr "" -#: ../raster/r.path/main.c:450 +#: ../raster/r.path/main.c:453 msgid "Input direction format assumed to be bitmask encoded without Knight's move" msgstr "" -#: ../raster/r.path/main.c:456 +#: ../raster/r.path/main.c:459 msgid "Input direction format assumed to be degrees CCW from East" msgstr "" -#: ../raster/r.path/main.c:460 +#: ../raster/r.path/main.c:463 msgid "Input direction format assumed to be bitmask encoded with Knight's move" msgstr "" -#: ../raster/r.path/main.c:465 +#: ../raster/r.path/main.c:468 #, c-format msgid "Unable to detect format of input direction map <%s>" msgstr "" -#: ../raster/r.path/main.c:469 +#: ../raster/r.path/main.c:472 #, c-format msgid "Invalid directions format '%s'" msgstr "" -#: ../raster/r.path/main.c:471 +#: ../raster/r.path/main.c:474 #, c-format msgid "Reading direction map <%s> ..." msgstr "" -#: ../raster/r.path/main.c:525 +#: ../raster/r.path/main.c:528 msgid "Processing start points..." msgstr "" -#: ../raster/r.path/main.c:535 ../vector/v.buffer/main.c:410 +#: ../raster/r.path/main.c:538 ../vector/v.buffer/main.c:410 #: ../vector/v.in.ogr/main.c:881 ../vector/v.overlay/main.c:237 #: ../vector/v.voronoi/main.c:215 msgid "Unable to create temporary vector map" msgstr "" -#: ../raster/r.path/main.c:541 ../raster/r.path/main.c:557 +#: ../raster/r.path/main.c:544 ../raster/r.path/main.c:560 #, c-format msgid "No path at row %d, col %d" msgstr "" -#: ../raster/r.path/main.c:546 ../vector/v.overlay/area_area.c:134 +#: ../raster/r.path/main.c:549 ../vector/v.overlay/area_area.c:134 #: ../vector/v.overlay/line_area.c:255 msgid "Breaking lines..." msgstr "" -#: ../raster/r.path/main.c:684 +#: ../raster/r.path/main.c:687 msgid "Unable to increase point list" msgstr "" -#: ../raster/r.path/main.c:887 +#: ../raster/r.path/main.c:890 #, c-format msgid "No path from row %d, col %d" msgstr "" -#: ../raster/r.path/main.c:901 +#: ../raster/r.path/main.c:904 #, c-format msgid "Invalid direction %d" msgstr "" -#: ../raster/r.path/main.c:999 +#: ../raster/r.path/main.c:1002 msgid "Path is leaving the current region" msgstr "" @@ -38508,39 +38517,17 @@ msgstr "" msgid "Link to vector map <%s> created." msgstr "" -#: ../vector/v.external/proj.c:35 ../vector/v.in.ogr/main.c:741 -#: ../vector/v.in.ogr/proj.c:36 +#: ../vector/v.external/proj.c:34 ../vector/v.in.ogr/main.c:741 +#: ../vector/v.in.ogr/proj.c:34 #, c-format msgid "Geometry column <%s> not found in input layer <%s>" msgstr "" -#: ../vector/v.external/proj.c:49 ../vector/v.in.ogr/proj.c:50 -msgid "Unable to convert input layer projection information to GRASS format for checking" -msgstr "" - -#: ../vector/v.external/proj.c:55 ../vector/v.external/proj.c:85 -#: ../vector/v.in.ogr/proj.c:56 ../vector/v.in.ogr/proj.c:86 -msgid "Can't get WKT parameter string" -msgstr "" - -#: ../vector/v.external/proj.c:58 ../vector/v.external/proj.c:88 -#: ../vector/v.in.ogr/proj.c:59 ../vector/v.in.ogr/proj.c:89 -#, c-format -msgid "" -"WKT definition:\n" -"%s" -msgstr "" - -#: ../vector/v.external/proj.c:69 ../vector/v.in.ogr/proj.c:70 +#: ../vector/v.external/proj.c:46 ../vector/v.in.ogr/proj.c:46 #, c-format msgid "No projection information available for layer <%s>" msgstr "" -#: ../vector/v.external/proj.c:78 ../vector/v.in.ogr/proj.c:79 -#, c-format -msgid "Projection for layer <%s> does not contain a valid CRS" -msgstr "" - #: ../vector/v.extract/extract.c:202 #, c-format msgid "No category found for area %d. Skipping." @@ -40300,16 +40287,16 @@ msgstr "" msgid "The spatial filter does not overlap with OGR layer <%s>. Nothing to import." msgstr "" -#: ../vector/v.in.ogr/proj.c:168 +#: ../vector/v.in.ogr/proj.c:85 msgid "Layer projections are unreadable" msgstr "" -#: ../vector/v.in.ogr/proj.c:184 +#: ../vector/v.in.ogr/proj.c:93 #, c-format msgid "Projection for layer <%s> is unreadable" msgstr "" -#: ../vector/v.in.ogr/proj.c:236 +#: ../vector/v.in.ogr/proj.c:113 #, c-format msgid "Projection of layer <%s> is different from projection of layer <%s>" msgstr "" @@ -47768,11 +47755,6 @@ msgstr "" msgid "Image file" msgstr "" -#, fuzzy, c-format -#~| msgid "Unable to open cursor." -#~ msgid "Unable to seek: %s" -#~ msgstr "Kursoria ei voida avata" - #, fuzzy #~ msgid "6S Parameters" #~ msgstr "metrit" @@ -47865,6 +47847,11 @@ msgstr "" #~ msgid "Station ID" #~ msgstr "Paikka" +#, fuzzy, c-format +#~| msgid "Unable to open cursor." +#~ msgid "Unable to seek: %s" +#~ msgstr "Kursoria ei voida avata" + #, fuzzy #~ msgid "Update columns if they already exist" #~ msgstr "Taulu %s on jo olemassa" @@ -47905,10 +47892,6 @@ msgstr "" #~ msgid "selection" #~ msgstr "Valinta" -#, fuzzy -#~ msgid "uri destination" -#~ msgstr "Paikka" - #, fuzzy #~ msgid "validation" #~ msgstr "Paikka" diff --git a/locale/po/grassmods_fr.po b/locale/po/grassmods_fr.po index 411937061b1..924a7ce71d6 100644 --- a/locale/po/grassmods_fr.po +++ b/locale/po/grassmods_fr.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: grassmods_fr\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-11-07 03:28+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: French \n" @@ -181,7 +181,7 @@ msgstr "Lister toutes les colonnes d'une table." #: ../general/g.proj/main.c:90 ../general/g.proj/main.c:99 #: ../general/g.proj/main.c:105 ../general/g.proj/main.c:114 #: ../general/g.proj/main.c:126 ../general/g.proj/main.c:135 -#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:244 +#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:245 #: ../general/g.region/main.c:91 ../general/g.region/main.c:97 #: ../general/g.region/main.c:102 ../general/g.region/main.c:108 #: ../general/g.region/main.c:113 ../general/g.region/main.c:118 @@ -307,13 +307,12 @@ msgstr "" #: ../db/db.connect/main.c:144 ../general/g.findfile/main.c:187 #: ../general/g.list/list.c:122 ../general/g.mapset/main.c:119 -#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:54 -#: ../general/g.proj/output.c:360 ../general/g.region/main.c:471 -#: ../general/g.version/main.c:140 ../misc/m.measure/main.c:87 -#: ../raster/r.describe/dumplist.c:38 ../raster/r.distance/report.c:211 -#: ../raster/r.distance/report.c:218 ../raster/r.distance/report.c:225 -#: ../raster/r.info/main.c:147 ../raster/r.proj/main.c:487 -#: ../raster/r.regression.line/main.c:101 +#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:351 +#: ../general/g.region/main.c:471 ../general/g.version/main.c:140 +#: ../misc/m.measure/main.c:87 ../raster/r.describe/dumplist.c:38 +#: ../raster/r.distance/report.c:211 ../raster/r.distance/report.c:218 +#: ../raster/r.distance/report.c:225 ../raster/r.info/main.c:147 +#: ../raster/r.proj/main.c:487 ../raster/r.regression.line/main.c:101 #: ../raster/r.regression.multi/main.c:197 #: ../raster/r.regression.multi/main.c:566 #: ../raster/r.stats.quantile/main.c:430 ../raster/r.stats.quantile/main.c:447 @@ -332,7 +331,7 @@ msgstr "" msgid "Failed to initialize JSON object. Out of memory?" msgstr "Échec de l'initialisation de l'objet JSON. Mémoire insuffisante ?" -#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:277 +#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:278 #: ../general/g.region/main.c:427 ../general/g.version/main.c:153 #: ../imagery/i.group/main.c:137 ../misc/m.measure/main.c:100 #: ../raster/r.proj/main.c:270 ../raster/r.regression.line/main.c:114 @@ -489,7 +488,7 @@ msgstr "" msgid "Lists all databases for a given driver and location." msgstr "Lister toutes les bases de données pour un pilote et un secteur donnés." -#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:383 +#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:374 #: ../general/g.region/main.c:990 ../general/g.version/main.c:409 #: ../imagery/i.group/main.c:301 ../raster/r.category/main.c:412 #: ../raster/r.describe/dumplist.c:71 ../raster/r.info/main.c:1000 @@ -6458,10 +6457,10 @@ msgstr "" msgid "Converts between PPM/PGM and PNG image formats." msgstr "" -#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:141 -#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:140 -#: ../vector/v.external/proj.c:173 ../vector/v.in.lidar/main.c:525 -#: ../vector/v.in.ogr/proj.c:307 +#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:129 +#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:129 +#: ../vector/v.external/proj.c:158 ../vector/v.in.lidar/main.c:525 +#: ../vector/v.in.ogr/proj.c:228 #, c-format msgid "Project <%s> created" msgstr "Projet <%s> créé" @@ -6770,55 +6769,65 @@ msgstr "" msgid "Name of new project (location) to create" msgstr "Nom du nouveau projet (secteur) à créer" -#: ../general/g.proj/main.c:239 -msgid "plain;Human readable text output;shell;shell script style text output;json;JSON (JavaScript Object Notation);wkt;Well-known text output;proj4;PROJ.4 style text output;" +#: ../general/g.proj/main.c:240 +msgid "plain;Human readable text output;shell;shell script style text output;wkt;Well-known text output;projjson;JSON (JavaScript Object Notation) version of WKT;proj4;PROJ.4 style text output;" msgstr "" -#: ../general/g.proj/main.c:271 ../vector/v.what.rast/main.c:159 +#: ../general/g.proj/main.c:272 ../vector/v.what.rast/main.c:159 #, c-format msgid "The format option can only be used with -%c flag" msgstr "" -#: ../general/g.proj/main.c:283 +#: ../general/g.proj/main.c:284 msgid "Flag 'j' is deprecated and will be removed in a future release. Please use format=proj4 instead." msgstr "" -#: ../general/g.proj/main.c:292 +#: ../general/g.proj/main.c:293 msgid "Flag 'w' is deprecated and will be removed in a future release. Please use format=wkt instead." msgstr "" -#: ../general/g.proj/main.c:312 +#: ../general/g.proj/main.c:313 #, c-format msgid "Only one of '%s', '%s', '%s', '%s' or '%s' options may be specified" msgstr "" -#: ../general/g.proj/main.c:364 +#: ../general/g.proj/main.c:365 msgid "Projection files missing" msgstr "Fichiers de projection manquant" -#: ../general/g.proj/main.c:392 +#: ../general/g.proj/main.c:393 #, c-format msgid "No output format specified. Define one of the options: plain, shell, json, wkt, or proj4 using the -%c flag." msgstr "" -#: ../general/g.proj/main.c:397 +#: ../general/g.proj/main.c:398 #, c-format msgid "No output format specified. Define one of the options: plain, shell, json, or proj4 using the -%c flag." msgstr "" -#: ../general/g.proj/output.c:221 +#: ../general/g.proj/output.c:54 +msgid "JSON output is not available." +msgstr "" + +#: ../general/g.proj/output.c:212 msgid "Unable to convert projection information to PROJ format" msgstr "" -#: ../general/g.proj/output.c:295 +#: ../general/g.proj/output.c:286 #, c-format msgid "Unable to create PROJ definition from srid <%s>" msgstr "" -#: ../general/g.proj/output.c:337 +#: ../general/g.proj/output.c:328 msgid "Unable to convert to WKT" msgstr "" +# c-format +#: ../general/g.proj/output.c:433 +#, fuzzy +msgid "Unable to convert to PROJJSON" +msgstr "Impossible de créer la couche raster <%s>" + #: ../general/g.region/main.c:67 msgid "computational region" msgstr "région de calculs" @@ -11458,10 +11467,10 @@ msgstr "" #: ../raster/r.grow.distance/main.c:392 ../raster/r.li/r.li.daemon/daemon.c:743 #: ../raster/r.mfilter/execute.c:82 ../raster/r.mfilter/execute.c:114 #: ../raster/r.mfilter/execute.c:165 ../raster/r.mfilter/getrow.c:24 -#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:786 -#: ../raster/r.path/main.c:822 ../raster/r.path/main.c:954 -#: ../raster/r.path/main.c:1073 ../raster/r.path/main.c:1103 -#: ../raster/r.path/main.c:1207 ../raster/r.thin/io.c:72 +#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:789 +#: ../raster/r.path/main.c:825 ../raster/r.path/main.c:957 +#: ../raster/r.path/main.c:1076 ../raster/r.path/main.c:1106 +#: ../raster/r.path/main.c:1210 ../raster/r.thin/io.c:72 #: ../raster/r.thin/io.c:82 ../raster3d/r3.in.v5d/v5d.c:1192 #: ../raster3d/r3.in.v5d/v5d.c:1443 ../raster3d/r3.in.v5d/v5d.c:1523 #: ../raster3d/r3.in.v5d/v5d.c:1848 ../raster3d/r3.in.v5d/v5d.c:1859 @@ -11486,9 +11495,9 @@ msgstr "" #: ../raster/r.clump/minsize.c:268 ../raster/r.clump/minsize.c:308 #: ../raster/r.clump/minsize.c:319 ../raster/r.clump/minsize.c:454 #: ../raster/r.clump/minsize.c:481 ../raster/r.clump/minsize.c:557 -#: ../raster/r.path/main.c:791 ../raster/r.path/main.c:827 -#: ../raster/r.path/main.c:962 ../raster/r.path/main.c:1078 -#: ../raster/r.path/main.c:1108 ../raster/r.path/main.c:1213 +#: ../raster/r.path/main.c:794 ../raster/r.path/main.c:830 +#: ../raster/r.path/main.c:965 ../raster/r.path/main.c:1081 +#: ../raster/r.path/main.c:1111 ../raster/r.path/main.c:1216 msgid "Unable to read from temp file" msgstr "" @@ -19837,7 +19846,7 @@ msgstr "Spécifier uniquement l'un des drapeaux -c, -a, -n" msgid "Starting point %d is outside the current region" msgstr "Le point de départ %d est en dehors de la région courante" -#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:375 +#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:378 #, c-format msgid "Starting vector map <%s> contains no points in the current region" msgstr "" @@ -19851,8 +19860,8 @@ msgid "Calculating flow directions..." msgstr "" #: ../raster/r.drain/main.c:485 ../raster/r.in.lidar/main.c:783 -#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:598 -#: ../raster/r.path/main.c:628 ../raster/r.viewshed/grass.cpp:621 +#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:601 +#: ../raster/r.path/main.c:631 ../raster/r.viewshed/grass.cpp:621 msgid "Writing output raster map..." msgstr "" @@ -20100,70 +20109,87 @@ msgstr "" msgid "Imagery group <%s> created" msgstr "" -#: ../raster/r.external/proj.c:51 ../raster/r.external/proj.c:93 -#: ../raster/r.in.gdal/proj.c:51 ../raster/r.in.gdal/proj.c:93 -#, c-format -msgid "" -"Input contains an invalid CRS. WKT definition:\n" -"%s" +#: ../raster/r.external/proj.c:36 ../raster/r.external/proj.c:63 +#: ../raster/r.external/proj.c:122 ../raster/r.in.gdal/proj.c:36 +#: ../raster/r.in.gdal/proj.c:63 ../raster/r.in.gdal/proj.c:122 +#: ../vector/v.external/proj.c:92 ../vector/v.external/proj.c:151 +#: ../vector/v.in.ogr/proj.c:162 ../vector/v.in.ogr/proj.c:221 +msgid "Can't get WKT parameter string" +msgstr "" + +#: ../raster/r.external/proj.c:56 ../raster/r.in.gdal/proj.c:56 +#: ../vector/v.external/proj.c:85 ../vector/v.in.ogr/proj.c:155 +#, fuzzy +#| msgid "" +#| "Input contains an invalid CRS. WKT definition:\n" +#| "%s" +msgid "Input contains an invalid CRS." msgstr "" "L'entrée contient un SCR non valide. Définition WKT :\n" "%s" -#: ../raster/r.external/proj.c:120 ../raster/r.in.gdal/proj.c:120 +#: ../raster/r.external/proj.c:66 ../raster/r.in.gdal/proj.c:66 +#: ../vector/v.external/proj.c:95 ../vector/v.in.ogr/proj.c:165 +#, fuzzy +#| msgid "Definition" +msgid "WKT definition:" +msgstr "Définition" + +#: ../raster/r.external/proj.c:99 ../raster/r.in.gdal/proj.c:99 +#: ../vector/v.external/proj.c:128 ../vector/v.in.ogr/proj.c:198 msgid "No projection information available" msgstr "" -#: ../raster/r.external/proj.c:133 -msgid "Unable to convert input map coordinate reference system to GRASS format; cannot create new project." -msgstr "Impossible de convertir la projection de la couche en entrée au format GRASS ; impossible de créer le nouveau projet" +#: ../raster/r.external/proj.c:114 ../raster/r.in.gdal/proj.c:114 +#: ../vector/v.external/proj.c:143 ../vector/v.in.ogr/proj.c:213 +#, fuzzy +msgid "Unable to convert input map projection to GRASS format; cannot create new project." +msgstr "Impossible de convertir la projection de la couche en entrée au format GRASS ; impossible de créer le nouveau Secteur" -#: ../raster/r.external/proj.c:139 ../raster/r.in.gdal/main.c:1039 -#: ../raster/r.in.gdal/proj.c:138 ../vector/v.external/proj.c:171 -#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:305 +#: ../raster/r.external/proj.c:127 ../raster/r.in.gdal/main.c:1039 +#: ../raster/r.in.gdal/proj.c:127 ../vector/v.external/proj.c:156 +#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:226 #, c-format msgid "Unable to create new project <%s>" msgstr "Impossible de créer le nouveau projet <%s>" -#: ../raster/r.external/proj.c:165 ../raster/r.in.gdal/proj.c:164 -#: ../vector/v.external/proj.c:197 ../vector/v.in.ogr/proj.c:331 +#: ../raster/r.external/proj.c:157 ../raster/r.in.gdal/proj.c:157 +#: ../vector/v.external/proj.c:186 ../vector/v.in.ogr/proj.c:256 msgid "Unable to convert input map projection information to GRASS format." msgstr "" -#: ../raster/r.external/proj.c:192 ../raster/r.in.gdal/proj.c:192 +#: ../raster/r.external/proj.c:238 ../raster/r.in.gdal/proj.c:238 #: ../raster/r.in.lidar/projection.c:126 -#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:228 -#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:360 +#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:267 +#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:337 msgid "Over-riding projection check" msgstr "" -#: ../raster/r.external/proj.c:200 ../raster/r.in.gdal/proj.c:200 -#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 -#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.external/proj.c:236 -#: ../vector/v.in.lidar/projection.c:30 ../vector/v.in.ogr/proj.c:368 -msgid "" -"Coordinate reference system of dataset does not appear to match current project.\n" -"\n" -msgstr "" - -#: ../raster/r.external/proj.c:207 ../raster/r.external/proj.c:216 -#: ../raster/r.in.gdal/proj.c:207 ../raster/r.in.gdal/proj.c:216 -#: ../vector/v.external/proj.c:243 ../vector/v.external/proj.c:252 -#: ../vector/v.in.ogr/proj.c:375 ../vector/v.in.ogr/proj.c:384 -msgid "Project PROJ_INFO is:\n" -msgstr "Le PROJ_INFO du jeu de données est :\n" +#: ../raster/r.external/proj.c:244 ../raster/r.in.gdal/proj.c:244 +#: ../vector/v.external/proj.c:273 ../vector/v.in.ogr/proj.c:343 +#, fuzzy +msgid "Coordinate reference system of dataset does not appear to match current project.\n" +msgstr "Utiliser les coordonnées de la carte à la place des coordonnées xyz" -#: ../raster/r.external/proj.c:236 ../raster/r.external/proj.c:243 -#: ../raster/r.in.gdal/proj.c:236 ../raster/r.in.gdal/proj.c:243 -#: ../vector/v.external/proj.c:272 ../vector/v.external/proj.c:279 -#: ../vector/v.in.ogr/proj.c:404 ../vector/v.in.ogr/proj.c:411 -msgid "Dataset PROJ_INFO is:\n" +#: ../raster/r.external/proj.c:258 ../raster/r.in.gdal/proj.c:258 +#: ../vector/v.external/proj.c:287 ../vector/v.in.ogr/proj.c:357 +#, fuzzy +#| msgid "Dataset PROJ_INFO is:\n" +msgid "Dataset CRS is:\n" msgstr "Le PROJ_INFO du jeu de données est : \n" -#: ../raster/r.external/proj.c:324 ../raster/r.in.lidar/projection.c:89 -#: ../raster/r.in.pdal/projection.c:87 ../raster3d/r3.in.lidar/projection.c:90 -#: ../vector/v.external/proj.c:360 ../vector/v.in.lidar/projection.c:87 -#: ../vector/v.in.ogr/proj.c:492 ../vector/v.in.pdal/projection.c:87 +#: ../raster/r.external/proj.c:272 ../raster/r.in.gdal/proj.c:272 +#: ../vector/v.external/proj.c:301 ../vector/v.in.ogr/proj.c:371 +#, fuzzy +#| msgid "Project PROJ_INFO is:\n" +msgid "Project CRS is:\n" +msgstr "Le PROJ_INFO du jeu de données est :\n" + +#: ../raster/r.external/proj.c:286 ../raster/r.in.gdal/proj.c:286 +#: ../raster/r.in.lidar/projection.c:89 ../raster/r.in.pdal/projection.c:87 +#: ../raster3d/r3.in.lidar/projection.c:90 ../vector/v.external/proj.c:315 +#: ../vector/v.in.lidar/projection.c:87 ../vector/v.in.ogr/proj.c:385 +#: ../vector/v.in.pdal/projection.c:87 #, c-format msgid "" "\n" @@ -20172,15 +20198,15 @@ msgstr "" "\n" "Si les définitions des systèmes de référence des coordonnées ne présentent pas de différences significatives, utilisez l'option -o pour les ignorer et utiliser la définition du projet actuel.\n" -#: ../raster/r.external/proj.c:328 ../raster/r.in.gdal/proj.c:327 -#: ../vector/v.external/proj.c:364 ../vector/v.in.ogr/proj.c:496 +#: ../raster/r.external/proj.c:290 ../raster/r.in.gdal/proj.c:290 +#: ../vector/v.external/proj.c:319 ../vector/v.in.ogr/proj.c:389 msgid "Consider generating a new project from the input dataset using the 'project' parameter.\n" msgstr "" -#: ../raster/r.external/proj.c:348 ../raster/r.in.gdal/proj.c:347 +#: ../raster/r.external/proj.c:310 ../raster/r.in.gdal/proj.c:310 #: ../raster/r.in.lidar/projection.c:136 ../raster/r.in.pdal/projection.c:134 -#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:384 -#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:516 +#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:339 +#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:409 msgid "Coordinate reference system of input dataset and current project appear to match" msgstr "" @@ -20789,7 +20815,7 @@ msgstr "" msgid "Region resolution shouldn't be lesser than map %s resolution. Run g.region raster=%s to set proper resolution" msgstr "" -#: ../raster/r.geomorphon/pattern.c:228 +#: ../raster/r.geomorphon/pattern.c:229 #, c-format msgid "Internal error in %s()" msgstr "" @@ -21758,8 +21784,7 @@ msgstr "" msgid "Error in %s (can't re-project GCP %i)" msgstr "" -#: ../raster/r.in.gdal/main.c:983 ../vector/v.external/proj.c:165 -#: ../vector/v.in.lidar/main.c:516 +#: ../raster/r.in.gdal/main.c:983 ../vector/v.in.lidar/main.c:516 #, fuzzy msgid "Unable to convert input map CRS to GRASS format; cannot create new project." msgstr "Impossible de convertir la projection de la couche en entrée au format GRASS ; impossible de créer le nouveau Secteur" @@ -21814,19 +21839,6 @@ msgstr "" msgid "Unable to open file <%s>: %s." msgstr "" -#: ../raster/r.in.gdal/proj.c:132 ../vector/v.in.ogr/proj.c:299 -#, fuzzy -msgid "Unable to convert input map projection to GRASS format; cannot create new project." -msgstr "Impossible de convertir la projection de la couche en entrée au format GRASS ; impossible de créer le nouveau Secteur" - -#: ../raster/r.in.gdal/proj.c:323 -msgid "" -"\n" -"In case of no significant differences in the CRS definitions, use the -o flag to ignore them and use current project definition.\n" -msgstr "" -"\n" -"S'il n'y a pas de différences significatives entre les définitions des SCR, utilisez l'option -o pour les ignorer et utiliser la définition du projet actuel.\n" - #: ../raster/r.in.gridatb/file_io.c:16 #, c-format msgid "Unable to open file: %s" @@ -22187,6 +22199,13 @@ msgstr "Impossible de calculer un percentile sans avoir défini l'option pème ! msgid "Unable to calculate trimmed mean without the trim option specified!" msgstr "" +#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 +#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.in.lidar/projection.c:30 +msgid "" +"Coordinate reference system of dataset does not appear to match current project.\n" +"\n" +msgstr "" + #: ../raster/r.in.lidar/projection.c:38 ../raster/r.in.pdal/projection.c:36 #: ../vector/v.in.lidar/projection.c:36 ../vector/v.in.pdal/projection.c:36 #, fuzzy @@ -25042,113 +25061,113 @@ msgstr "Paramètres de police" msgid "Do not break lines (faster for single-direction bitmask encoding)" msgstr "" -#: ../raster/r.path/main.c:384 +#: ../raster/r.path/main.c:387 msgid "No start point(s) specified" msgstr "" -#: ../raster/r.path/main.c:394 +#: ../raster/r.path/main.c:397 #, c-format msgid "Reading raster values map <%s> ..." msgstr "" -#: ../raster/r.path/main.c:399 +#: ../raster/r.path/main.c:402 #, c-format msgid "Unable to open temporary file <%s>: %s" msgstr "Impossible d'ouvrir le fichier temporaire <%s> : %s" -#: ../raster/r.path/main.c:411 ../raster/r.path/main.c:489 -#: ../raster/r.path/main.c:506 +#: ../raster/r.path/main.c:414 ../raster/r.path/main.c:492 +#: ../raster/r.path/main.c:509 msgid "Unable to write to tempfile" msgstr "" -#: ../raster/r.path/main.c:419 +#: ../raster/r.path/main.c:422 msgid "Unable to read range file" msgstr "" -#: ../raster/r.path/main.c:422 +#: ../raster/r.path/main.c:425 #, c-format msgid "Invalid directions map <%s>" msgstr "" -#: ../raster/r.path/main.c:427 +#: ../raster/r.path/main.c:430 msgid "Directional degrees can not be > 360" msgstr "" -#: ../raster/r.path/main.c:433 +#: ../raster/r.path/main.c:436 msgid "Directional degrees divided by 45 can not be > 8" msgstr "" -#: ../raster/r.path/main.c:438 +#: ../raster/r.path/main.c:441 #, c-format msgid "Bitmask encoded directions can not be > %d" msgstr "" -#: ../raster/r.path/main.c:445 +#: ../raster/r.path/main.c:448 msgid "Input direction format assumed to be degrees CCW from East divided by 45" msgstr "" -#: ../raster/r.path/main.c:450 +#: ../raster/r.path/main.c:453 msgid "Input direction format assumed to be bitmask encoded without Knight's move" msgstr "" -#: ../raster/r.path/main.c:456 +#: ../raster/r.path/main.c:459 msgid "Input direction format assumed to be degrees CCW from East" msgstr "" -#: ../raster/r.path/main.c:460 +#: ../raster/r.path/main.c:463 msgid "Input direction format assumed to be bitmask encoded with Knight's move" msgstr "" -#: ../raster/r.path/main.c:465 +#: ../raster/r.path/main.c:468 #, c-format msgid "Unable to detect format of input direction map <%s>" msgstr "" -#: ../raster/r.path/main.c:469 +#: ../raster/r.path/main.c:472 #, fuzzy, c-format msgid "Invalid directions format '%s'" msgstr "Format des directions « %s » non valide" -#: ../raster/r.path/main.c:471 +#: ../raster/r.path/main.c:474 #, fuzzy, c-format msgid "Reading direction map <%s> ..." msgstr "Lecture de la carte de direction <%s>..." -#: ../raster/r.path/main.c:525 +#: ../raster/r.path/main.c:528 msgid "Processing start points..." msgstr "" -#: ../raster/r.path/main.c:535 ../vector/v.buffer/main.c:410 +#: ../raster/r.path/main.c:538 ../vector/v.buffer/main.c:410 #: ../vector/v.in.ogr/main.c:881 ../vector/v.overlay/main.c:237 #: ../vector/v.voronoi/main.c:215 msgid "Unable to create temporary vector map" msgstr "Impossible de créer une carte vectorielle temporaire" -#: ../raster/r.path/main.c:541 ../raster/r.path/main.c:557 +#: ../raster/r.path/main.c:544 ../raster/r.path/main.c:560 #, c-format msgid "No path at row %d, col %d" msgstr "" -#: ../raster/r.path/main.c:546 ../vector/v.overlay/area_area.c:134 +#: ../raster/r.path/main.c:549 ../vector/v.overlay/area_area.c:134 #: ../vector/v.overlay/line_area.c:255 msgid "Breaking lines..." msgstr "" -#: ../raster/r.path/main.c:684 +#: ../raster/r.path/main.c:687 msgid "Unable to increase point list" msgstr "" -#: ../raster/r.path/main.c:887 +#: ../raster/r.path/main.c:890 #, c-format msgid "No path from row %d, col %d" msgstr "" -#: ../raster/r.path/main.c:901 +#: ../raster/r.path/main.c:904 #, c-format msgid "Invalid direction %d" msgstr "Direction invalide %d" -#: ../raster/r.path/main.c:999 +#: ../raster/r.path/main.c:1002 msgid "Path is leaving the current region" msgstr "" @@ -38784,39 +38803,17 @@ msgstr "" msgid "Link to vector map <%s> created." msgstr "" -#: ../vector/v.external/proj.c:35 ../vector/v.in.ogr/main.c:741 -#: ../vector/v.in.ogr/proj.c:36 +#: ../vector/v.external/proj.c:34 ../vector/v.in.ogr/main.c:741 +#: ../vector/v.in.ogr/proj.c:34 #, c-format msgid "Geometry column <%s> not found in input layer <%s>" msgstr "" -#: ../vector/v.external/proj.c:49 ../vector/v.in.ogr/proj.c:50 -msgid "Unable to convert input layer projection information to GRASS format for checking" -msgstr "" - -#: ../vector/v.external/proj.c:55 ../vector/v.external/proj.c:85 -#: ../vector/v.in.ogr/proj.c:56 ../vector/v.in.ogr/proj.c:86 -msgid "Can't get WKT parameter string" -msgstr "" - -#: ../vector/v.external/proj.c:58 ../vector/v.external/proj.c:88 -#: ../vector/v.in.ogr/proj.c:59 ../vector/v.in.ogr/proj.c:89 -#, c-format -msgid "" -"WKT definition:\n" -"%s" -msgstr "" - -#: ../vector/v.external/proj.c:69 ../vector/v.in.ogr/proj.c:70 +#: ../vector/v.external/proj.c:46 ../vector/v.in.ogr/proj.c:46 #, c-format msgid "No projection information available for layer <%s>" msgstr "" -#: ../vector/v.external/proj.c:78 ../vector/v.in.ogr/proj.c:79 -#, c-format -msgid "Projection for layer <%s> does not contain a valid CRS" -msgstr "La projection pour la couche <%s> ne contient pas de SCR valide" - #: ../vector/v.extract/extract.c:202 #, c-format msgid "No category found for area %d. Skipping." @@ -40581,16 +40578,16 @@ msgstr "" msgid "The spatial filter does not overlap with OGR layer <%s>. Nothing to import." msgstr "" -#: ../vector/v.in.ogr/proj.c:168 +#: ../vector/v.in.ogr/proj.c:85 msgid "Layer projections are unreadable" msgstr "" -#: ../vector/v.in.ogr/proj.c:184 +#: ../vector/v.in.ogr/proj.c:93 #, c-format msgid "Projection for layer <%s> is unreadable" msgstr "" -#: ../vector/v.in.ogr/proj.c:236 +#: ../vector/v.in.ogr/proj.c:113 #, c-format msgid "Projection of layer <%s> is different from projection of layer <%s>" msgstr "" @@ -48069,54 +48066,6 @@ msgstr "Visionner des images BMP avec le pilote PNG." msgid "Image file" msgstr "" -#, fuzzy, c-format -#~| msgid "Unable to open <%s>" -#~ msgid "Unable to seek: %s" -#~ msgstr "Impossible d'ouvrir <%s>" - -#~ msgid "Print the stats in shell script style" -#~ msgstr "Produit les statistiques à la façon d'un script shell" - -#~ msgid "Unable to allocate cell buffers." -#~ msgstr "Impossible d'allouer la mémoire-tampon des cellules" - -#~ msgid "Print stats in shell script style" -#~ msgstr "Afficher les statistiques en style script shell" - -#~ msgid "Print raster3d information in shell style" -#~ msgstr "Afficher les informations du raster3d en format shell" - -#~ msgid "Print range in shell style only" -#~ msgstr "Affixher la plage uniquement au format shell" - -#~ msgid "Output RRR:GGG:BBB color values for each profile point" -#~ msgstr "Sortie des valeurs de couleur RRR:GGG:BBB pour chaque point du profil" - -#, fuzzy, c-format -#~ msgid "Test %s." -#~ msgstr "Test %s." - -#~ msgid "read " -#~ msgstr "lecture" - -#~ msgid "Everyone" -#~ msgstr "Tout le monde" - -#~ msgid "Only you" -#~ msgstr "Seulement vous" - -#~ msgid "now" -#~ msgstr "maintenant" - -#~ msgid "[DEPRECATED] Print projection information in PROJ.4 format. This flag is obsolete and will be removed in a future release. Use format=proj4 instead." -#~ msgstr "[OBSOLÈTE] Afficher l'information de projection au format PROJ.4. Cette option est obsolète et sera retirée dans une prochaine version. Utiliser plutôt format=proj4." - -#~ msgid "[DEPRECATED] Print projection information in WKT format. This flag is obsolete and will be removed in a future release. Use format=wkt instead." -#~ msgstr "[OBSOLÈTE] Afficher l'information de projection au format WKT. Cette option est obsolète et sera retirée dans une prochaine version. Utiliser plutôt format=wkt." - -#~ msgid "unset" -#~ msgstr "non défini" - #~ msgid "" #~ "\n" #~ "%d classes, %.2f%% points stable\n" @@ -48124,6 +48073,13 @@ msgstr "" #~ "\n" #~ "%d classes, %.2f%% points stables\n" +#~ msgid "" +#~ "\n" +#~ "In case of no significant differences in the CRS definitions, use the -o flag to ignore them and use current project definition.\n" +#~ msgstr "" +#~ "\n" +#~ "S'il n'y a pas de différences significatives entre les définitions des SCR, utilisez l'option -o pour les ignorer et utiliser la définition du projet actuel.\n" + #, fuzzy #~ msgid "" #~ "\n" @@ -48437,6 +48393,9 @@ msgstr "" #~ msgid "CO2 Emission" #~ msgstr "permission" +#~ msgid "CRS" +#~ msgstr "SCR" + #, fuzzy #~ msgid "CSV file with coefficients" #~ msgstr "Couche pour le coefficient x" @@ -49206,6 +49165,9 @@ msgstr "" #~ msgid "Evaluation" #~ msgstr "Altitude" +#~ msgid "Everyone" +#~ msgstr "Tout le monde" + #, fuzzy #~ msgid "Example: 1,3,7-9,13" #~ msgstr "Exemple : 1.4,3.8,13" @@ -49473,6 +49435,9 @@ msgstr "" #~ msgid "GPSBabel supported output format" #~ msgstr "Lister les formats gérés en sor" +#~ msgid "GRASS" +#~ msgstr "GRASS" + #, fuzzy #~ msgid "GRASS named color or R:G:B triplet. Set color scheme to single color" #~ msgstr "Couleur pour les lignes graduées ou les contours de points/entités surfaciques (nom de couleur GRASS ou triplet R:G:B). Fixer le schéma de couleur pour couleur simple." @@ -52136,6 +52101,9 @@ msgstr "" #~ msgid "Only tune and train model, do not predict" #~ msgstr "Tester uniquement les requêtes, ne pas les éxécuter" +#~ msgid "Only you" +#~ msgstr "Seulement vous" + #, fuzzy #~ msgid "Opt files" #~ msgstr "Fichier source" @@ -52208,6 +52176,9 @@ msgstr "" #~ msgid "Output Potential file" #~ msgstr "sortie vers un fichier texte" +#~ msgid "Output RRR:GGG:BBB color values for each profile point" +#~ msgstr "Sortie des valeurs de couleur RRR:GGG:BBB pour chaque point du profil" + #, fuzzy #~ msgid "Output absolute file name for the supply table" #~ msgstr "Nom de fichier de table ou chaîne de connexion DB en sortie" @@ -52682,10 +52653,16 @@ msgstr "" #~ msgid "Print projection info in WKT format" #~ msgstr "Afficher l'information de projection au format WKT" +#~ msgid "Print range in shell style only" +#~ msgstr "Affixher la plage uniquement au format shell" + #, fuzzy #~ msgid "Print raster data to be imported and exit" #~ msgstr "Fichier raster à importer" +#~ msgid "Print raster3d information in shell style" +#~ msgstr "Afficher les informations du raster3d en format shell" + #, fuzzy #~ msgid "Print result from matching taxa names and exit" #~ msgstr "Affiche les paramètres de connexion courants et quitte" @@ -52694,10 +52671,16 @@ msgstr "" #~ msgid "Print result from matching taxon names in shell script style and exit" #~ msgstr "Afficher les paramètres de connexion courants en mode shell et quitter" +#~ msgid "Print stats in shell script style" +#~ msgstr "Afficher les statistiques en style script shell" + #, fuzzy #~ msgid "Print the request URL and exit" #~ msgstr "Afficher le nom du cadre actuel et sortir" +#~ msgid "Print the stats in shell script style" +#~ msgstr "Produit les statistiques à la façon d'un script shell" + #, fuzzy #~ msgid "Print the threshold value in shell script style" #~ msgstr "Produit les statistiques à la façon d'un script shell" @@ -52706,6 +52689,10 @@ msgstr "" #~ msgid "Projected conditions" #~ msgstr "Projections" +#, c-format +#~ msgid "Projection for layer <%s> does not contain a valid CRS" +#~ msgstr "La projection pour la couche <%s> ne contient pas de SCR valide" + #, fuzzy #~ msgid "Projection region" #~ msgstr "Projection" @@ -52742,6 +52729,9 @@ msgstr "" #~ msgid "RGB column" #~ msgstr "colonne" +#~ msgid "RMS" +#~ msgstr "moyenne quadratique" + #, fuzzy #~ msgid "Random numbers" #~ msgstr "Code de couche" @@ -53539,6 +53529,10 @@ msgstr "" #~ msgid "Terrain options" #~ msgstr "Options de création" +#, fuzzy, c-format +#~ msgid "Test %s." +#~ msgstr "Test %s." + #, fuzzy #~ msgid "Test different classification methods" #~ msgstr "Méthode utilisée pour la reclassification" @@ -53797,14 +53791,15 @@ msgstr "" #~ msgid "Unable To create table: %s" #~ msgstr "Impossible de créer le fichier de cellules pour [%s]" -# c-format -#, fuzzy -#~ msgid "Unable to create 3D raster <%s>" -#~ msgstr "Impossible de créer la couche raster <%s>" +#~ msgid "Unable to allocate cell buffers." +#~ msgstr "Impossible d'allouer la mémoire-tampon des cellules" + +#~ msgid "Unable to convert input map coordinate reference system to GRASS format; cannot create new project." +#~ msgstr "Impossible de convertir la projection de la couche en entrée au format GRASS ; impossible de créer le nouveau projet" # c-format #, fuzzy -#~ msgid "Unable to create vector map" +#~ msgid "Unable to create 3D raster <%s>" #~ msgstr "Impossible de créer la couche raster <%s>" #, fuzzy @@ -53819,6 +53814,11 @@ msgstr "" #~ msgid "Unable to re-open segment file" #~ msgstr "Impossible de ré-ouvrir le fichier segment" +#, fuzzy, c-format +#~| msgid "Unable to open <%s>" +#~ msgid "Unable to seek: %s" +#~ msgstr "Impossible d'ouvrir <%s>" + #, fuzzy #~ msgid "Unit used for layout specification" #~ msgstr "Méthode utilisée pour la reclassification" @@ -54256,6 +54256,12 @@ msgstr "" #~ msgid "[%d] points read to memory" #~ msgstr "%-5d points lus en mémoire\n" +#~ msgid "[DEPRECATED] Print projection information in PROJ.4 format. This flag is obsolete and will be removed in a future release. Use format=proj4 instead." +#~ msgstr "[OBSOLÈTE] Afficher l'information de projection au format PROJ.4. Cette option est obsolète et sera retirée dans une prochaine version. Utiliser plutôt format=proj4." + +#~ msgid "[DEPRECATED] Print projection information in WKT format. This flag is obsolete and will be removed in a future release. Use format=wkt instead." +#~ msgstr "[OBSOLÈTE] Afficher l'information de projection au format WKT. Cette option est obsolète et sera retirée dans une prochaine version. Utiliser plutôt format=wkt." + #, fuzzy #~ msgid "add grid lines" #~ msgstr "Lignes %d étiquettées" @@ -54360,6 +54366,9 @@ msgstr "" #~ msgid "dseg_open(): unable to create segment file" #~ msgstr "dseg_open() : impossible de créer le fichier segment" +#~ msgid "dynamic labeling" +#~ msgstr "étiquetage dynamique" + #, fuzzy #~ msgid "ecology" #~ msgstr "topologie" @@ -54586,6 +54595,9 @@ msgstr "" #~ msgid "nodata value in output files" #~ msgstr "Numéro de colonne pour les valeurs dans le fichier en entrée" +#~ msgid "now" +#~ msgstr "maintenant" + #, fuzzy #~ msgid "npoints = %d, nterrain = %d" #~ msgstr "" @@ -54658,10 +54670,21 @@ msgstr "" #~ msgid "r.cost" #~ msgstr "r.cost" +#~ msgctxt "1" +#~ msgid "radiance" +#~ msgstr "radiance" + +#~ msgctxt "2" +#~ msgid "radiance" +#~ msgstr "luminance énergétique" + #, fuzzy #~ msgid "radius= and x_radius=/y_radius= are mutually exclusive" #~ msgstr "les drapeaux -B & - C sont mutuellement exclusifs. Veuillez n'en choisir qu'un seul." +#~ msgid "read " +#~ msgstr "lecture" + #, fuzzy #~ msgid "read vector region map" #~ msgstr "Nom de la couche vectorielle de polygones" @@ -54674,6 +54697,10 @@ msgstr "" #~ msgid "recreation potential" #~ msgstr "Options de création" +#~ msgctxt "1" +#~ msgid "reflectance" +#~ msgstr "réflectance" + #, fuzzy #~ msgid "region extension" #~ msgstr "extentions" @@ -54756,6 +54783,9 @@ msgstr "" #~ msgid "symbology" #~ msgstr "hydrologie" +#~ msgid "threads" +#~ msgstr "fils d’execution" + #, fuzzy #~ msgid "thredds" #~ msgstr "Unités de distance" @@ -54788,6 +54818,9 @@ msgstr "" #~ msgid "trendline width" #~ msgstr "Épaisseur de ligne" +#~ msgid "unset" +#~ msgstr "non défini" + #, fuzzy #~ msgid "uri destination" #~ msgstr "estimation de la superficie" @@ -54849,33 +54882,6 @@ msgstr "" #~ msgid "width of the boxplot median line" #~ msgstr "Format des fichiers en sortie" -#~ msgctxt "1" -#~ msgid "radiance" -#~ msgstr "radiance" - -#~ msgctxt "2" -#~ msgid "radiance" -#~ msgstr "luminance énergétique" - -#~ msgctxt "1" -#~ msgid "reflectance" -#~ msgstr "réflectance" - -#~ msgid "dynamic labeling" -#~ msgstr "étiquetage dynamique" - #~ msgctxt "1" #~ msgid "yield" #~ msgstr "rendement" - -#~ msgid "RMS" -#~ msgstr "moyenne quadratique" - -#~ msgid "GRASS" -#~ msgstr "GRASS" - -#~ msgid "threads" -#~ msgstr "fils d’execution" - -#~ msgid "CRS" -#~ msgstr "SCR" diff --git a/locale/po/grassmods_hu.po b/locale/po/grassmods_hu.po index 1df12627aa5..11a96dc0dce 100644 --- a/locale/po/grassmods_hu.po +++ b/locale/po/grassmods_hu.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: grasslibs_hu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-07-26 01:36+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Hungarian \n" @@ -176,7 +176,7 @@ msgstr "Oszlopok listája az adott táblából." #: ../general/g.proj/main.c:90 ../general/g.proj/main.c:99 #: ../general/g.proj/main.c:105 ../general/g.proj/main.c:114 #: ../general/g.proj/main.c:126 ../general/g.proj/main.c:135 -#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:244 +#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:245 #: ../general/g.region/main.c:91 ../general/g.region/main.c:97 #: ../general/g.region/main.c:102 ../general/g.region/main.c:108 #: ../general/g.region/main.c:113 ../general/g.region/main.c:118 @@ -303,13 +303,12 @@ msgstr "" #: ../db/db.connect/main.c:144 ../general/g.findfile/main.c:187 #: ../general/g.list/list.c:122 ../general/g.mapset/main.c:119 -#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:54 -#: ../general/g.proj/output.c:360 ../general/g.region/main.c:471 -#: ../general/g.version/main.c:140 ../misc/m.measure/main.c:87 -#: ../raster/r.describe/dumplist.c:38 ../raster/r.distance/report.c:211 -#: ../raster/r.distance/report.c:218 ../raster/r.distance/report.c:225 -#: ../raster/r.info/main.c:147 ../raster/r.proj/main.c:487 -#: ../raster/r.regression.line/main.c:101 +#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:351 +#: ../general/g.region/main.c:471 ../general/g.version/main.c:140 +#: ../misc/m.measure/main.c:87 ../raster/r.describe/dumplist.c:38 +#: ../raster/r.distance/report.c:211 ../raster/r.distance/report.c:218 +#: ../raster/r.distance/report.c:225 ../raster/r.info/main.c:147 +#: ../raster/r.proj/main.c:487 ../raster/r.regression.line/main.c:101 #: ../raster/r.regression.multi/main.c:197 #: ../raster/r.regression.multi/main.c:566 #: ../raster/r.stats.quantile/main.c:430 ../raster/r.stats.quantile/main.c:447 @@ -328,7 +327,7 @@ msgstr "" msgid "Failed to initialize JSON object. Out of memory?" msgstr "" -#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:277 +#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:278 #: ../general/g.region/main.c:427 ../general/g.version/main.c:153 #: ../imagery/i.group/main.c:137 ../misc/m.measure/main.c:100 #: ../raster/r.proj/main.c:270 ../raster/r.regression.line/main.c:114 @@ -482,7 +481,7 @@ msgstr "" msgid "Lists all databases for a given driver and location." msgstr "" -#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:383 +#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:374 #: ../general/g.region/main.c:990 ../general/g.version/main.c:409 #: ../imagery/i.group/main.c:301 ../raster/r.category/main.c:412 #: ../raster/r.describe/dumplist.c:71 ../raster/r.info/main.c:1000 @@ -6443,10 +6442,10 @@ msgstr "" msgid "Converts between PPM/PGM and PNG image formats." msgstr "" -#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:141 -#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:140 -#: ../vector/v.external/proj.c:173 ../vector/v.in.lidar/main.c:525 -#: ../vector/v.in.ogr/proj.c:307 +#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:129 +#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:129 +#: ../vector/v.external/proj.c:158 ../vector/v.in.lidar/main.c:525 +#: ../vector/v.in.ogr/proj.c:228 #, fuzzy, c-format msgid "Project <%s> created" msgstr "Raszter térkép olvasás <%s>..." @@ -6756,55 +6755,63 @@ msgstr "" msgid "Name of new project (location) to create" msgstr "Input szín trékép neve" -#: ../general/g.proj/main.c:239 -msgid "plain;Human readable text output;shell;shell script style text output;json;JSON (JavaScript Object Notation);wkt;Well-known text output;proj4;PROJ.4 style text output;" +#: ../general/g.proj/main.c:240 +msgid "plain;Human readable text output;shell;shell script style text output;wkt;Well-known text output;projjson;JSON (JavaScript Object Notation) version of WKT;proj4;PROJ.4 style text output;" msgstr "" -#: ../general/g.proj/main.c:271 ../vector/v.what.rast/main.c:159 +#: ../general/g.proj/main.c:272 ../vector/v.what.rast/main.c:159 #, c-format msgid "The format option can only be used with -%c flag" msgstr "" -#: ../general/g.proj/main.c:283 +#: ../general/g.proj/main.c:284 msgid "Flag 'j' is deprecated and will be removed in a future release. Please use format=proj4 instead." msgstr "" -#: ../general/g.proj/main.c:292 +#: ../general/g.proj/main.c:293 msgid "Flag 'w' is deprecated and will be removed in a future release. Please use format=wkt instead." msgstr "" -#: ../general/g.proj/main.c:312 +#: ../general/g.proj/main.c:313 #, c-format msgid "Only one of '%s', '%s', '%s', '%s' or '%s' options may be specified" msgstr "" -#: ../general/g.proj/main.c:364 +#: ../general/g.proj/main.c:365 msgid "Projection files missing" msgstr "" -#: ../general/g.proj/main.c:392 +#: ../general/g.proj/main.c:393 #, c-format msgid "No output format specified. Define one of the options: plain, shell, json, wkt, or proj4 using the -%c flag." msgstr "" -#: ../general/g.proj/main.c:397 +#: ../general/g.proj/main.c:398 #, c-format msgid "No output format specified. Define one of the options: plain, shell, json, or proj4 using the -%c flag." msgstr "" -#: ../general/g.proj/output.c:221 +#: ../general/g.proj/output.c:54 +msgid "JSON output is not available." +msgstr "" + +#: ../general/g.proj/output.c:212 msgid "Unable to convert projection information to PROJ format" msgstr "" -#: ../general/g.proj/output.c:295 +#: ../general/g.proj/output.c:286 #, c-format msgid "Unable to create PROJ definition from srid <%s>" msgstr "" -#: ../general/g.proj/output.c:337 +#: ../general/g.proj/output.c:328 msgid "Unable to convert to WKT" msgstr "" +#: ../general/g.proj/output.c:433 +msgid "Unable to convert to PROJJSON" +msgstr "" + #: ../general/g.region/main.c:67 msgid "computational region" msgstr "" @@ -11429,10 +11436,10 @@ msgstr "" #: ../raster/r.grow.distance/main.c:392 ../raster/r.li/r.li.daemon/daemon.c:743 #: ../raster/r.mfilter/execute.c:82 ../raster/r.mfilter/execute.c:114 #: ../raster/r.mfilter/execute.c:165 ../raster/r.mfilter/getrow.c:24 -#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:786 -#: ../raster/r.path/main.c:822 ../raster/r.path/main.c:954 -#: ../raster/r.path/main.c:1073 ../raster/r.path/main.c:1103 -#: ../raster/r.path/main.c:1207 ../raster/r.thin/io.c:72 +#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:789 +#: ../raster/r.path/main.c:825 ../raster/r.path/main.c:957 +#: ../raster/r.path/main.c:1076 ../raster/r.path/main.c:1106 +#: ../raster/r.path/main.c:1210 ../raster/r.thin/io.c:72 #: ../raster/r.thin/io.c:82 ../raster3d/r3.in.v5d/v5d.c:1192 #: ../raster3d/r3.in.v5d/v5d.c:1443 ../raster3d/r3.in.v5d/v5d.c:1523 #: ../raster3d/r3.in.v5d/v5d.c:1848 ../raster3d/r3.in.v5d/v5d.c:1859 @@ -11457,9 +11464,9 @@ msgstr "" #: ../raster/r.clump/minsize.c:268 ../raster/r.clump/minsize.c:308 #: ../raster/r.clump/minsize.c:319 ../raster/r.clump/minsize.c:454 #: ../raster/r.clump/minsize.c:481 ../raster/r.clump/minsize.c:557 -#: ../raster/r.path/main.c:791 ../raster/r.path/main.c:827 -#: ../raster/r.path/main.c:962 ../raster/r.path/main.c:1078 -#: ../raster/r.path/main.c:1108 ../raster/r.path/main.c:1213 +#: ../raster/r.path/main.c:794 ../raster/r.path/main.c:830 +#: ../raster/r.path/main.c:965 ../raster/r.path/main.c:1081 +#: ../raster/r.path/main.c:1111 ../raster/r.path/main.c:1216 msgid "Unable to read from temp file" msgstr "" @@ -19764,7 +19771,7 @@ msgstr "" msgid "Starting point %d is outside the current region" msgstr "" -#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:375 +#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:378 #, c-format msgid "Starting vector map <%s> contains no points in the current region" msgstr "" @@ -19778,8 +19785,8 @@ msgid "Calculating flow directions..." msgstr "" #: ../raster/r.drain/main.c:485 ../raster/r.in.lidar/main.c:783 -#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:598 -#: ../raster/r.path/main.c:628 ../raster/r.viewshed/grass.cpp:621 +#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:601 +#: ../raster/r.path/main.c:631 ../raster/r.viewshed/grass.cpp:621 msgid "Writing output raster map..." msgstr "" @@ -20027,83 +20034,90 @@ msgstr "" msgid "Imagery group <%s> created" msgstr "" -#: ../raster/r.external/proj.c:51 ../raster/r.external/proj.c:93 -#: ../raster/r.in.gdal/proj.c:51 ../raster/r.in.gdal/proj.c:93 -#, c-format -msgid "" -"Input contains an invalid CRS. WKT definition:\n" -"%s" +#: ../raster/r.external/proj.c:36 ../raster/r.external/proj.c:63 +#: ../raster/r.external/proj.c:122 ../raster/r.in.gdal/proj.c:36 +#: ../raster/r.in.gdal/proj.c:63 ../raster/r.in.gdal/proj.c:122 +#: ../vector/v.external/proj.c:92 ../vector/v.external/proj.c:151 +#: ../vector/v.in.ogr/proj.c:162 ../vector/v.in.ogr/proj.c:221 +msgid "Can't get WKT parameter string" msgstr "" -#: ../raster/r.external/proj.c:120 ../raster/r.in.gdal/proj.c:120 +#: ../raster/r.external/proj.c:56 ../raster/r.in.gdal/proj.c:56 +#: ../vector/v.external/proj.c:85 ../vector/v.in.ogr/proj.c:155 +msgid "Input contains an invalid CRS." +msgstr "" + +#: ../raster/r.external/proj.c:66 ../raster/r.in.gdal/proj.c:66 +#: ../vector/v.external/proj.c:95 ../vector/v.in.ogr/proj.c:165 +#, fuzzy +msgid "WKT definition:" +msgstr "interpoláció" + +#: ../raster/r.external/proj.c:99 ../raster/r.in.gdal/proj.c:99 +#: ../vector/v.external/proj.c:128 ../vector/v.in.ogr/proj.c:198 msgid "No projection information available" msgstr "" -#: ../raster/r.external/proj.c:133 -msgid "Unable to convert input map coordinate reference system to GRASS format; cannot create new project." +#: ../raster/r.external/proj.c:114 ../raster/r.in.gdal/proj.c:114 +#: ../vector/v.external/proj.c:143 ../vector/v.in.ogr/proj.c:213 +msgid "Unable to convert input map projection to GRASS format; cannot create new project." msgstr "" -#: ../raster/r.external/proj.c:139 ../raster/r.in.gdal/main.c:1039 -#: ../raster/r.in.gdal/proj.c:138 ../vector/v.external/proj.c:171 -#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:305 +#: ../raster/r.external/proj.c:127 ../raster/r.in.gdal/main.c:1039 +#: ../raster/r.in.gdal/proj.c:127 ../vector/v.external/proj.c:156 +#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:226 #, fuzzy, c-format msgid "Unable to create new project <%s>" msgstr "Nem tudok memóriát foglalni" -#: ../raster/r.external/proj.c:165 ../raster/r.in.gdal/proj.c:164 -#: ../vector/v.external/proj.c:197 ../vector/v.in.ogr/proj.c:331 +#: ../raster/r.external/proj.c:157 ../raster/r.in.gdal/proj.c:157 +#: ../vector/v.external/proj.c:186 ../vector/v.in.ogr/proj.c:256 msgid "Unable to convert input map projection information to GRASS format." msgstr "" -#: ../raster/r.external/proj.c:192 ../raster/r.in.gdal/proj.c:192 +#: ../raster/r.external/proj.c:238 ../raster/r.in.gdal/proj.c:238 #: ../raster/r.in.lidar/projection.c:126 -#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:228 -#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:360 +#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:267 +#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:337 msgid "Over-riding projection check" msgstr "" -#: ../raster/r.external/proj.c:200 ../raster/r.in.gdal/proj.c:200 -#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 -#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.external/proj.c:236 -#: ../vector/v.in.lidar/projection.c:30 ../vector/v.in.ogr/proj.c:368 -msgid "" -"Coordinate reference system of dataset does not appear to match current project.\n" -"\n" +#: ../raster/r.external/proj.c:244 ../raster/r.in.gdal/proj.c:244 +#: ../vector/v.external/proj.c:273 ../vector/v.in.ogr/proj.c:343 +msgid "Coordinate reference system of dataset does not appear to match current project.\n" msgstr "" -#: ../raster/r.external/proj.c:207 ../raster/r.external/proj.c:216 -#: ../raster/r.in.gdal/proj.c:207 ../raster/r.in.gdal/proj.c:216 -#: ../vector/v.external/proj.c:243 ../vector/v.external/proj.c:252 -#: ../vector/v.in.ogr/proj.c:375 ../vector/v.in.ogr/proj.c:384 -msgid "Project PROJ_INFO is:\n" -msgstr "" +#: ../raster/r.external/proj.c:258 ../raster/r.in.gdal/proj.c:258 +#: ../vector/v.external/proj.c:287 ../vector/v.in.ogr/proj.c:357 +#, fuzzy +msgid "Dataset CRS is:\n" +msgstr "adatbázis" -#: ../raster/r.external/proj.c:236 ../raster/r.external/proj.c:243 -#: ../raster/r.in.gdal/proj.c:236 ../raster/r.in.gdal/proj.c:243 -#: ../vector/v.external/proj.c:272 ../vector/v.external/proj.c:279 -#: ../vector/v.in.ogr/proj.c:404 ../vector/v.in.ogr/proj.c:411 -msgid "Dataset PROJ_INFO is:\n" +#: ../raster/r.external/proj.c:272 ../raster/r.in.gdal/proj.c:272 +#: ../vector/v.external/proj.c:301 ../vector/v.in.ogr/proj.c:371 +msgid "Project CRS is:\n" msgstr "" -#: ../raster/r.external/proj.c:324 ../raster/r.in.lidar/projection.c:89 -#: ../raster/r.in.pdal/projection.c:87 ../raster3d/r3.in.lidar/projection.c:90 -#: ../vector/v.external/proj.c:360 ../vector/v.in.lidar/projection.c:87 -#: ../vector/v.in.ogr/proj.c:492 ../vector/v.in.pdal/projection.c:87 +#: ../raster/r.external/proj.c:286 ../raster/r.in.gdal/proj.c:286 +#: ../raster/r.in.lidar/projection.c:89 ../raster/r.in.pdal/projection.c:87 +#: ../raster3d/r3.in.lidar/projection.c:90 ../vector/v.external/proj.c:315 +#: ../vector/v.in.lidar/projection.c:87 ../vector/v.in.ogr/proj.c:385 +#: ../vector/v.in.pdal/projection.c:87 #, c-format msgid "" "\n" "In case of no significant differences in the coordinate reference system definitions, use the -o flag to ignore them and use current project definition.\n" msgstr "" -#: ../raster/r.external/proj.c:328 ../raster/r.in.gdal/proj.c:327 -#: ../vector/v.external/proj.c:364 ../vector/v.in.ogr/proj.c:496 +#: ../raster/r.external/proj.c:290 ../raster/r.in.gdal/proj.c:290 +#: ../vector/v.external/proj.c:319 ../vector/v.in.ogr/proj.c:389 msgid "Consider generating a new project from the input dataset using the 'project' parameter.\n" msgstr "" -#: ../raster/r.external/proj.c:348 ../raster/r.in.gdal/proj.c:347 +#: ../raster/r.external/proj.c:310 ../raster/r.in.gdal/proj.c:310 #: ../raster/r.in.lidar/projection.c:136 ../raster/r.in.pdal/projection.c:134 -#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:384 -#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:516 +#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:339 +#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:409 msgid "Coordinate reference system of input dataset and current project appear to match" msgstr "" @@ -20711,7 +20725,7 @@ msgstr "" msgid "Region resolution shouldn't be lesser than map %s resolution. Run g.region raster=%s to set proper resolution" msgstr "" -#: ../raster/r.geomorphon/pattern.c:228 +#: ../raster/r.geomorphon/pattern.c:229 #, c-format msgid "Internal error in %s()" msgstr "" @@ -21678,8 +21692,7 @@ msgstr "" msgid "Error in %s (can't re-project GCP %i)" msgstr "" -#: ../raster/r.in.gdal/main.c:983 ../vector/v.external/proj.c:165 -#: ../vector/v.in.lidar/main.c:516 +#: ../raster/r.in.gdal/main.c:983 ../vector/v.in.lidar/main.c:516 msgid "Unable to convert input map CRS to GRASS format; cannot create new project." msgstr "" @@ -21730,16 +21743,6 @@ msgstr "" msgid "Unable to open file <%s>: %s." msgstr "" -#: ../raster/r.in.gdal/proj.c:132 ../vector/v.in.ogr/proj.c:299 -msgid "Unable to convert input map projection to GRASS format; cannot create new project." -msgstr "" - -#: ../raster/r.in.gdal/proj.c:323 -msgid "" -"\n" -"In case of no significant differences in the CRS definitions, use the -o flag to ignore them and use current project definition.\n" -msgstr "" - #: ../raster/r.in.gridatb/file_io.c:16 #, fuzzy, c-format #| msgid "Unable to open database <%s>" @@ -22101,6 +22104,13 @@ msgstr "" msgid "Unable to calculate trimmed mean without the trim option specified!" msgstr "" +#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 +#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.in.lidar/projection.c:30 +msgid "" +"Coordinate reference system of dataset does not appear to match current project.\n" +"\n" +msgstr "" + #: ../raster/r.in.lidar/projection.c:38 ../raster/r.in.pdal/projection.c:36 #: ../vector/v.in.lidar/projection.c:36 ../vector/v.in.pdal/projection.c:36 msgid "GRASS project PROJ_INFO is:\n" @@ -24929,113 +24939,113 @@ msgstr "csatlakozás beállítások" msgid "Do not break lines (faster for single-direction bitmask encoding)" msgstr "" -#: ../raster/r.path/main.c:384 +#: ../raster/r.path/main.c:387 msgid "No start point(s) specified" msgstr "" -#: ../raster/r.path/main.c:394 +#: ../raster/r.path/main.c:397 #, c-format msgid "Reading raster values map <%s> ..." msgstr "" -#: ../raster/r.path/main.c:399 +#: ../raster/r.path/main.c:402 #, fuzzy, c-format msgid "Unable to open temporary file <%s>: %s" msgstr "Nem tudom elindítani a <%s> meghajtót" -#: ../raster/r.path/main.c:411 ../raster/r.path/main.c:489 -#: ../raster/r.path/main.c:506 +#: ../raster/r.path/main.c:414 ../raster/r.path/main.c:492 +#: ../raster/r.path/main.c:509 msgid "Unable to write to tempfile" msgstr "" -#: ../raster/r.path/main.c:419 +#: ../raster/r.path/main.c:422 msgid "Unable to read range file" msgstr "" -#: ../raster/r.path/main.c:422 +#: ../raster/r.path/main.c:425 #, c-format msgid "Invalid directions map <%s>" msgstr "" -#: ../raster/r.path/main.c:427 +#: ../raster/r.path/main.c:430 msgid "Directional degrees can not be > 360" msgstr "" -#: ../raster/r.path/main.c:433 +#: ../raster/r.path/main.c:436 msgid "Directional degrees divided by 45 can not be > 8" msgstr "" -#: ../raster/r.path/main.c:438 +#: ../raster/r.path/main.c:441 #, c-format msgid "Bitmask encoded directions can not be > %d" msgstr "" -#: ../raster/r.path/main.c:445 +#: ../raster/r.path/main.c:448 msgid "Input direction format assumed to be degrees CCW from East divided by 45" msgstr "" -#: ../raster/r.path/main.c:450 +#: ../raster/r.path/main.c:453 msgid "Input direction format assumed to be bitmask encoded without Knight's move" msgstr "" -#: ../raster/r.path/main.c:456 +#: ../raster/r.path/main.c:459 msgid "Input direction format assumed to be degrees CCW from East" msgstr "" -#: ../raster/r.path/main.c:460 +#: ../raster/r.path/main.c:463 msgid "Input direction format assumed to be bitmask encoded with Knight's move" msgstr "" -#: ../raster/r.path/main.c:465 +#: ../raster/r.path/main.c:468 #, c-format msgid "Unable to detect format of input direction map <%s>" msgstr "" -#: ../raster/r.path/main.c:469 +#: ../raster/r.path/main.c:472 #, c-format msgid "Invalid directions format '%s'" msgstr "" -#: ../raster/r.path/main.c:471 +#: ../raster/r.path/main.c:474 #, c-format msgid "Reading direction map <%s> ..." msgstr "" -#: ../raster/r.path/main.c:525 +#: ../raster/r.path/main.c:528 msgid "Processing start points..." msgstr "" -#: ../raster/r.path/main.c:535 ../vector/v.buffer/main.c:410 +#: ../raster/r.path/main.c:538 ../vector/v.buffer/main.c:410 #: ../vector/v.in.ogr/main.c:881 ../vector/v.overlay/main.c:237 #: ../vector/v.voronoi/main.c:215 msgid "Unable to create temporary vector map" msgstr "" -#: ../raster/r.path/main.c:541 ../raster/r.path/main.c:557 +#: ../raster/r.path/main.c:544 ../raster/r.path/main.c:560 #, c-format msgid "No path at row %d, col %d" msgstr "" -#: ../raster/r.path/main.c:546 ../vector/v.overlay/area_area.c:134 +#: ../raster/r.path/main.c:549 ../vector/v.overlay/area_area.c:134 #: ../vector/v.overlay/line_area.c:255 msgid "Breaking lines..." msgstr "" -#: ../raster/r.path/main.c:684 +#: ../raster/r.path/main.c:687 msgid "Unable to increase point list" msgstr "" -#: ../raster/r.path/main.c:887 +#: ../raster/r.path/main.c:890 #, c-format msgid "No path from row %d, col %d" msgstr "" -#: ../raster/r.path/main.c:901 +#: ../raster/r.path/main.c:904 #, c-format msgid "Invalid direction %d" msgstr "" -#: ../raster/r.path/main.c:999 +#: ../raster/r.path/main.c:1002 msgid "Path is leaving the current region" msgstr "" @@ -38550,39 +38560,17 @@ msgstr "" msgid "Link to vector map <%s> created." msgstr "" -#: ../vector/v.external/proj.c:35 ../vector/v.in.ogr/main.c:741 -#: ../vector/v.in.ogr/proj.c:36 +#: ../vector/v.external/proj.c:34 ../vector/v.in.ogr/main.c:741 +#: ../vector/v.in.ogr/proj.c:34 #, c-format msgid "Geometry column <%s> not found in input layer <%s>" msgstr "" -#: ../vector/v.external/proj.c:49 ../vector/v.in.ogr/proj.c:50 -msgid "Unable to convert input layer projection information to GRASS format for checking" -msgstr "" - -#: ../vector/v.external/proj.c:55 ../vector/v.external/proj.c:85 -#: ../vector/v.in.ogr/proj.c:56 ../vector/v.in.ogr/proj.c:86 -msgid "Can't get WKT parameter string" -msgstr "" - -#: ../vector/v.external/proj.c:58 ../vector/v.external/proj.c:88 -#: ../vector/v.in.ogr/proj.c:59 ../vector/v.in.ogr/proj.c:89 -#, c-format -msgid "" -"WKT definition:\n" -"%s" -msgstr "" - -#: ../vector/v.external/proj.c:69 ../vector/v.in.ogr/proj.c:70 +#: ../vector/v.external/proj.c:46 ../vector/v.in.ogr/proj.c:46 #, c-format msgid "No projection information available for layer <%s>" msgstr "" -#: ../vector/v.external/proj.c:78 ../vector/v.in.ogr/proj.c:79 -#, c-format -msgid "Projection for layer <%s> does not contain a valid CRS" -msgstr "" - #: ../vector/v.extract/extract.c:202 #, c-format msgid "No category found for area %d. Skipping." @@ -40342,16 +40330,16 @@ msgstr "" msgid "The spatial filter does not overlap with OGR layer <%s>. Nothing to import." msgstr "" -#: ../vector/v.in.ogr/proj.c:168 +#: ../vector/v.in.ogr/proj.c:85 msgid "Layer projections are unreadable" msgstr "" -#: ../vector/v.in.ogr/proj.c:184 +#: ../vector/v.in.ogr/proj.c:93 #, c-format msgid "Projection for layer <%s> is unreadable" msgstr "" -#: ../vector/v.in.ogr/proj.c:236 +#: ../vector/v.in.ogr/proj.c:113 #, c-format msgid "Projection of layer <%s> is different from projection of layer <%s>" msgstr "" @@ -47816,11 +47804,6 @@ msgstr "" msgid "Image file" msgstr "" -#, fuzzy, c-format -#~| msgid "Unable to start driver <%s>" -#~ msgid "Unable to seek: %s" -#~ msgstr "Nem tudom elindítani a <%s> meghajtót" - #, fuzzy #~ msgid "Aesthetics" #~ msgstr "statisztika" @@ -47885,10 +47868,6 @@ msgstr "" #~ msgid "Database indexes" #~ msgstr "adatbázis" -#, fuzzy -#~ msgid "Dataset ID" -#~ msgstr "adatbázis" - #, fuzzy #~ msgid "Default font size" #~ msgstr "Alapértelmezett meghajtó nincs beállítva" @@ -48625,6 +48604,11 @@ msgstr "" #~ msgid "Type of interpolation" #~ msgstr "interpoláció" +#, fuzzy, c-format +#~| msgid "Unable to start driver <%s>" +#~ msgid "Unable to seek: %s" +#~ msgstr "Nem tudom elindítani a <%s> meghajtót" + #, fuzzy #~ msgid "Use a random seed" #~ msgstr "Raszter térkép olvasás <%s>..." @@ -48721,10 +48705,6 @@ msgstr "" #~ msgid "symbology" #~ msgstr "hidrológia" -#, fuzzy -#~ msgid "uri destination" -#~ msgstr "interpoláció" - #, fuzzy #~ msgid "validation" #~ msgstr "interpoláció" diff --git a/locale/po/grassmods_id_ID.po b/locale/po/grassmods_id_ID.po index 0fd7e90a3c8..5136bc1da6c 100644 --- a/locale/po/grassmods_id_ID.po +++ b/locale/po/grassmods_id_ID.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: grasslibs_id_ID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-07-26 01:36+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Indonesian \n" @@ -176,7 +176,7 @@ msgstr "" #: ../general/g.proj/main.c:90 ../general/g.proj/main.c:99 #: ../general/g.proj/main.c:105 ../general/g.proj/main.c:114 #: ../general/g.proj/main.c:126 ../general/g.proj/main.c:135 -#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:244 +#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:245 #: ../general/g.region/main.c:91 ../general/g.region/main.c:97 #: ../general/g.region/main.c:102 ../general/g.region/main.c:108 #: ../general/g.region/main.c:113 ../general/g.region/main.c:118 @@ -302,13 +302,12 @@ msgstr "" #: ../db/db.connect/main.c:144 ../general/g.findfile/main.c:187 #: ../general/g.list/list.c:122 ../general/g.mapset/main.c:119 -#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:54 -#: ../general/g.proj/output.c:360 ../general/g.region/main.c:471 -#: ../general/g.version/main.c:140 ../misc/m.measure/main.c:87 -#: ../raster/r.describe/dumplist.c:38 ../raster/r.distance/report.c:211 -#: ../raster/r.distance/report.c:218 ../raster/r.distance/report.c:225 -#: ../raster/r.info/main.c:147 ../raster/r.proj/main.c:487 -#: ../raster/r.regression.line/main.c:101 +#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:351 +#: ../general/g.region/main.c:471 ../general/g.version/main.c:140 +#: ../misc/m.measure/main.c:87 ../raster/r.describe/dumplist.c:38 +#: ../raster/r.distance/report.c:211 ../raster/r.distance/report.c:218 +#: ../raster/r.distance/report.c:225 ../raster/r.info/main.c:147 +#: ../raster/r.proj/main.c:487 ../raster/r.regression.line/main.c:101 #: ../raster/r.regression.multi/main.c:197 #: ../raster/r.regression.multi/main.c:566 #: ../raster/r.stats.quantile/main.c:430 ../raster/r.stats.quantile/main.c:447 @@ -327,7 +326,7 @@ msgstr "" msgid "Failed to initialize JSON object. Out of memory?" msgstr "" -#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:277 +#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:278 #: ../general/g.region/main.c:427 ../general/g.version/main.c:153 #: ../imagery/i.group/main.c:137 ../misc/m.measure/main.c:100 #: ../raster/r.proj/main.c:270 ../raster/r.regression.line/main.c:114 @@ -481,7 +480,7 @@ msgstr "" msgid "Lists all databases for a given driver and location." msgstr "" -#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:383 +#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:374 #: ../general/g.region/main.c:990 ../general/g.version/main.c:409 #: ../imagery/i.group/main.c:301 ../raster/r.category/main.c:412 #: ../raster/r.describe/dumplist.c:71 ../raster/r.info/main.c:1000 @@ -6430,10 +6429,10 @@ msgstr "" msgid "Converts between PPM/PGM and PNG image formats." msgstr "" -#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:141 -#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:140 -#: ../vector/v.external/proj.c:173 ../vector/v.in.lidar/main.c:525 -#: ../vector/v.in.ogr/proj.c:307 +#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:129 +#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:129 +#: ../vector/v.external/proj.c:158 ../vector/v.in.lidar/main.c:525 +#: ../vector/v.in.ogr/proj.c:228 #, c-format msgid "Project <%s> created" msgstr "" @@ -6738,55 +6737,63 @@ msgstr "" msgid "Name of new project (location) to create" msgstr "" -#: ../general/g.proj/main.c:239 -msgid "plain;Human readable text output;shell;shell script style text output;json;JSON (JavaScript Object Notation);wkt;Well-known text output;proj4;PROJ.4 style text output;" +#: ../general/g.proj/main.c:240 +msgid "plain;Human readable text output;shell;shell script style text output;wkt;Well-known text output;projjson;JSON (JavaScript Object Notation) version of WKT;proj4;PROJ.4 style text output;" msgstr "" -#: ../general/g.proj/main.c:271 ../vector/v.what.rast/main.c:159 +#: ../general/g.proj/main.c:272 ../vector/v.what.rast/main.c:159 #, c-format msgid "The format option can only be used with -%c flag" msgstr "" -#: ../general/g.proj/main.c:283 +#: ../general/g.proj/main.c:284 msgid "Flag 'j' is deprecated and will be removed in a future release. Please use format=proj4 instead." msgstr "" -#: ../general/g.proj/main.c:292 +#: ../general/g.proj/main.c:293 msgid "Flag 'w' is deprecated and will be removed in a future release. Please use format=wkt instead." msgstr "" -#: ../general/g.proj/main.c:312 +#: ../general/g.proj/main.c:313 #, c-format msgid "Only one of '%s', '%s', '%s', '%s' or '%s' options may be specified" msgstr "" -#: ../general/g.proj/main.c:364 +#: ../general/g.proj/main.c:365 msgid "Projection files missing" msgstr "" -#: ../general/g.proj/main.c:392 +#: ../general/g.proj/main.c:393 #, c-format msgid "No output format specified. Define one of the options: plain, shell, json, wkt, or proj4 using the -%c flag." msgstr "" -#: ../general/g.proj/main.c:397 +#: ../general/g.proj/main.c:398 #, c-format msgid "No output format specified. Define one of the options: plain, shell, json, or proj4 using the -%c flag." msgstr "" -#: ../general/g.proj/output.c:221 +#: ../general/g.proj/output.c:54 +msgid "JSON output is not available." +msgstr "" + +#: ../general/g.proj/output.c:212 msgid "Unable to convert projection information to PROJ format" msgstr "" -#: ../general/g.proj/output.c:295 +#: ../general/g.proj/output.c:286 #, c-format msgid "Unable to create PROJ definition from srid <%s>" msgstr "" -#: ../general/g.proj/output.c:337 +#: ../general/g.proj/output.c:328 msgid "Unable to convert to WKT" msgstr "" +#: ../general/g.proj/output.c:433 +msgid "Unable to convert to PROJJSON" +msgstr "" + #: ../general/g.region/main.c:67 msgid "computational region" msgstr "" @@ -11402,10 +11409,10 @@ msgstr "" #: ../raster/r.grow.distance/main.c:392 ../raster/r.li/r.li.daemon/daemon.c:743 #: ../raster/r.mfilter/execute.c:82 ../raster/r.mfilter/execute.c:114 #: ../raster/r.mfilter/execute.c:165 ../raster/r.mfilter/getrow.c:24 -#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:786 -#: ../raster/r.path/main.c:822 ../raster/r.path/main.c:954 -#: ../raster/r.path/main.c:1073 ../raster/r.path/main.c:1103 -#: ../raster/r.path/main.c:1207 ../raster/r.thin/io.c:72 +#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:789 +#: ../raster/r.path/main.c:825 ../raster/r.path/main.c:957 +#: ../raster/r.path/main.c:1076 ../raster/r.path/main.c:1106 +#: ../raster/r.path/main.c:1210 ../raster/r.thin/io.c:72 #: ../raster/r.thin/io.c:82 ../raster3d/r3.in.v5d/v5d.c:1192 #: ../raster3d/r3.in.v5d/v5d.c:1443 ../raster3d/r3.in.v5d/v5d.c:1523 #: ../raster3d/r3.in.v5d/v5d.c:1848 ../raster3d/r3.in.v5d/v5d.c:1859 @@ -11430,9 +11437,9 @@ msgstr "" #: ../raster/r.clump/minsize.c:268 ../raster/r.clump/minsize.c:308 #: ../raster/r.clump/minsize.c:319 ../raster/r.clump/minsize.c:454 #: ../raster/r.clump/minsize.c:481 ../raster/r.clump/minsize.c:557 -#: ../raster/r.path/main.c:791 ../raster/r.path/main.c:827 -#: ../raster/r.path/main.c:962 ../raster/r.path/main.c:1078 -#: ../raster/r.path/main.c:1108 ../raster/r.path/main.c:1213 +#: ../raster/r.path/main.c:794 ../raster/r.path/main.c:830 +#: ../raster/r.path/main.c:965 ../raster/r.path/main.c:1081 +#: ../raster/r.path/main.c:1111 ../raster/r.path/main.c:1216 msgid "Unable to read from temp file" msgstr "" @@ -19715,7 +19722,7 @@ msgstr "" msgid "Starting point %d is outside the current region" msgstr "" -#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:375 +#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:378 #, c-format msgid "Starting vector map <%s> contains no points in the current region" msgstr "" @@ -19729,8 +19736,8 @@ msgid "Calculating flow directions..." msgstr "" #: ../raster/r.drain/main.c:485 ../raster/r.in.lidar/main.c:783 -#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:598 -#: ../raster/r.path/main.c:628 ../raster/r.viewshed/grass.cpp:621 +#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:601 +#: ../raster/r.path/main.c:631 ../raster/r.viewshed/grass.cpp:621 msgid "Writing output raster map..." msgstr "" @@ -19978,83 +19985,88 @@ msgstr "" msgid "Imagery group <%s> created" msgstr "" -#: ../raster/r.external/proj.c:51 ../raster/r.external/proj.c:93 -#: ../raster/r.in.gdal/proj.c:51 ../raster/r.in.gdal/proj.c:93 -#, c-format -msgid "" -"Input contains an invalid CRS. WKT definition:\n" -"%s" +#: ../raster/r.external/proj.c:36 ../raster/r.external/proj.c:63 +#: ../raster/r.external/proj.c:122 ../raster/r.in.gdal/proj.c:36 +#: ../raster/r.in.gdal/proj.c:63 ../raster/r.in.gdal/proj.c:122 +#: ../vector/v.external/proj.c:92 ../vector/v.external/proj.c:151 +#: ../vector/v.in.ogr/proj.c:162 ../vector/v.in.ogr/proj.c:221 +msgid "Can't get WKT parameter string" +msgstr "" + +#: ../raster/r.external/proj.c:56 ../raster/r.in.gdal/proj.c:56 +#: ../vector/v.external/proj.c:85 ../vector/v.in.ogr/proj.c:155 +msgid "Input contains an invalid CRS." +msgstr "" + +#: ../raster/r.external/proj.c:66 ../raster/r.in.gdal/proj.c:66 +#: ../vector/v.external/proj.c:95 ../vector/v.in.ogr/proj.c:165 +msgid "WKT definition:" msgstr "" -#: ../raster/r.external/proj.c:120 ../raster/r.in.gdal/proj.c:120 +#: ../raster/r.external/proj.c:99 ../raster/r.in.gdal/proj.c:99 +#: ../vector/v.external/proj.c:128 ../vector/v.in.ogr/proj.c:198 msgid "No projection information available" msgstr "" -#: ../raster/r.external/proj.c:133 -msgid "Unable to convert input map coordinate reference system to GRASS format; cannot create new project." +#: ../raster/r.external/proj.c:114 ../raster/r.in.gdal/proj.c:114 +#: ../vector/v.external/proj.c:143 ../vector/v.in.ogr/proj.c:213 +msgid "Unable to convert input map projection to GRASS format; cannot create new project." msgstr "" -#: ../raster/r.external/proj.c:139 ../raster/r.in.gdal/main.c:1039 -#: ../raster/r.in.gdal/proj.c:138 ../vector/v.external/proj.c:171 -#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:305 +#: ../raster/r.external/proj.c:127 ../raster/r.in.gdal/main.c:1039 +#: ../raster/r.in.gdal/proj.c:127 ../vector/v.external/proj.c:156 +#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:226 #, c-format msgid "Unable to create new project <%s>" msgstr "" -#: ../raster/r.external/proj.c:165 ../raster/r.in.gdal/proj.c:164 -#: ../vector/v.external/proj.c:197 ../vector/v.in.ogr/proj.c:331 +#: ../raster/r.external/proj.c:157 ../raster/r.in.gdal/proj.c:157 +#: ../vector/v.external/proj.c:186 ../vector/v.in.ogr/proj.c:256 msgid "Unable to convert input map projection information to GRASS format." msgstr "" -#: ../raster/r.external/proj.c:192 ../raster/r.in.gdal/proj.c:192 +#: ../raster/r.external/proj.c:238 ../raster/r.in.gdal/proj.c:238 #: ../raster/r.in.lidar/projection.c:126 -#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:228 -#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:360 +#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:267 +#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:337 msgid "Over-riding projection check" msgstr "" -#: ../raster/r.external/proj.c:200 ../raster/r.in.gdal/proj.c:200 -#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 -#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.external/proj.c:236 -#: ../vector/v.in.lidar/projection.c:30 ../vector/v.in.ogr/proj.c:368 -msgid "" -"Coordinate reference system of dataset does not appear to match current project.\n" -"\n" +#: ../raster/r.external/proj.c:244 ../raster/r.in.gdal/proj.c:244 +#: ../vector/v.external/proj.c:273 ../vector/v.in.ogr/proj.c:343 +msgid "Coordinate reference system of dataset does not appear to match current project.\n" msgstr "" -#: ../raster/r.external/proj.c:207 ../raster/r.external/proj.c:216 -#: ../raster/r.in.gdal/proj.c:207 ../raster/r.in.gdal/proj.c:216 -#: ../vector/v.external/proj.c:243 ../vector/v.external/proj.c:252 -#: ../vector/v.in.ogr/proj.c:375 ../vector/v.in.ogr/proj.c:384 -msgid "Project PROJ_INFO is:\n" +#: ../raster/r.external/proj.c:258 ../raster/r.in.gdal/proj.c:258 +#: ../vector/v.external/proj.c:287 ../vector/v.in.ogr/proj.c:357 +msgid "Dataset CRS is:\n" msgstr "" -#: ../raster/r.external/proj.c:236 ../raster/r.external/proj.c:243 -#: ../raster/r.in.gdal/proj.c:236 ../raster/r.in.gdal/proj.c:243 -#: ../vector/v.external/proj.c:272 ../vector/v.external/proj.c:279 -#: ../vector/v.in.ogr/proj.c:404 ../vector/v.in.ogr/proj.c:411 -msgid "Dataset PROJ_INFO is:\n" +#: ../raster/r.external/proj.c:272 ../raster/r.in.gdal/proj.c:272 +#: ../vector/v.external/proj.c:301 ../vector/v.in.ogr/proj.c:371 +msgid "Project CRS is:\n" msgstr "" -#: ../raster/r.external/proj.c:324 ../raster/r.in.lidar/projection.c:89 -#: ../raster/r.in.pdal/projection.c:87 ../raster3d/r3.in.lidar/projection.c:90 -#: ../vector/v.external/proj.c:360 ../vector/v.in.lidar/projection.c:87 -#: ../vector/v.in.ogr/proj.c:492 ../vector/v.in.pdal/projection.c:87 +#: ../raster/r.external/proj.c:286 ../raster/r.in.gdal/proj.c:286 +#: ../raster/r.in.lidar/projection.c:89 ../raster/r.in.pdal/projection.c:87 +#: ../raster3d/r3.in.lidar/projection.c:90 ../vector/v.external/proj.c:315 +#: ../vector/v.in.lidar/projection.c:87 ../vector/v.in.ogr/proj.c:385 +#: ../vector/v.in.pdal/projection.c:87 #, c-format msgid "" "\n" "In case of no significant differences in the coordinate reference system definitions, use the -o flag to ignore them and use current project definition.\n" msgstr "" -#: ../raster/r.external/proj.c:328 ../raster/r.in.gdal/proj.c:327 -#: ../vector/v.external/proj.c:364 ../vector/v.in.ogr/proj.c:496 +#: ../raster/r.external/proj.c:290 ../raster/r.in.gdal/proj.c:290 +#: ../vector/v.external/proj.c:319 ../vector/v.in.ogr/proj.c:389 msgid "Consider generating a new project from the input dataset using the 'project' parameter.\n" msgstr "" -#: ../raster/r.external/proj.c:348 ../raster/r.in.gdal/proj.c:347 +#: ../raster/r.external/proj.c:310 ../raster/r.in.gdal/proj.c:310 #: ../raster/r.in.lidar/projection.c:136 ../raster/r.in.pdal/projection.c:134 -#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:384 -#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:516 +#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:339 +#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:409 msgid "Coordinate reference system of input dataset and current project appear to match" msgstr "" @@ -20661,7 +20673,7 @@ msgstr "" msgid "Region resolution shouldn't be lesser than map %s resolution. Run g.region raster=%s to set proper resolution" msgstr "" -#: ../raster/r.geomorphon/pattern.c:228 +#: ../raster/r.geomorphon/pattern.c:229 #, c-format msgid "Internal error in %s()" msgstr "" @@ -21624,8 +21636,7 @@ msgstr "" msgid "Error in %s (can't re-project GCP %i)" msgstr "" -#: ../raster/r.in.gdal/main.c:983 ../vector/v.external/proj.c:165 -#: ../vector/v.in.lidar/main.c:516 +#: ../raster/r.in.gdal/main.c:983 ../vector/v.in.lidar/main.c:516 msgid "Unable to convert input map CRS to GRASS format; cannot create new project." msgstr "" @@ -21676,16 +21687,6 @@ msgstr "" msgid "Unable to open file <%s>: %s." msgstr "" -#: ../raster/r.in.gdal/proj.c:132 ../vector/v.in.ogr/proj.c:299 -msgid "Unable to convert input map projection to GRASS format; cannot create new project." -msgstr "" - -#: ../raster/r.in.gdal/proj.c:323 -msgid "" -"\n" -"In case of no significant differences in the CRS definitions, use the -o flag to ignore them and use current project definition.\n" -msgstr "" - #: ../raster/r.in.gridatb/file_io.c:16 #, c-format msgid "Unable to open file: %s" @@ -22046,6 +22047,13 @@ msgstr "" msgid "Unable to calculate trimmed mean without the trim option specified!" msgstr "" +#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 +#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.in.lidar/projection.c:30 +msgid "" +"Coordinate reference system of dataset does not appear to match current project.\n" +"\n" +msgstr "" + #: ../raster/r.in.lidar/projection.c:38 ../raster/r.in.pdal/projection.c:36 #: ../vector/v.in.lidar/projection.c:36 ../vector/v.in.pdal/projection.c:36 msgid "GRASS project PROJ_INFO is:\n" @@ -24864,113 +24872,113 @@ msgstr "" msgid "Do not break lines (faster for single-direction bitmask encoding)" msgstr "" -#: ../raster/r.path/main.c:384 +#: ../raster/r.path/main.c:387 msgid "No start point(s) specified" msgstr "" -#: ../raster/r.path/main.c:394 +#: ../raster/r.path/main.c:397 #, c-format msgid "Reading raster values map <%s> ..." msgstr "" -#: ../raster/r.path/main.c:399 +#: ../raster/r.path/main.c:402 #, c-format msgid "Unable to open temporary file <%s>: %s" msgstr "" -#: ../raster/r.path/main.c:411 ../raster/r.path/main.c:489 -#: ../raster/r.path/main.c:506 +#: ../raster/r.path/main.c:414 ../raster/r.path/main.c:492 +#: ../raster/r.path/main.c:509 msgid "Unable to write to tempfile" msgstr "" -#: ../raster/r.path/main.c:419 +#: ../raster/r.path/main.c:422 msgid "Unable to read range file" msgstr "" -#: ../raster/r.path/main.c:422 +#: ../raster/r.path/main.c:425 #, c-format msgid "Invalid directions map <%s>" msgstr "" -#: ../raster/r.path/main.c:427 +#: ../raster/r.path/main.c:430 msgid "Directional degrees can not be > 360" msgstr "" -#: ../raster/r.path/main.c:433 +#: ../raster/r.path/main.c:436 msgid "Directional degrees divided by 45 can not be > 8" msgstr "" -#: ../raster/r.path/main.c:438 +#: ../raster/r.path/main.c:441 #, c-format msgid "Bitmask encoded directions can not be > %d" msgstr "" -#: ../raster/r.path/main.c:445 +#: ../raster/r.path/main.c:448 msgid "Input direction format assumed to be degrees CCW from East divided by 45" msgstr "" -#: ../raster/r.path/main.c:450 +#: ../raster/r.path/main.c:453 msgid "Input direction format assumed to be bitmask encoded without Knight's move" msgstr "" -#: ../raster/r.path/main.c:456 +#: ../raster/r.path/main.c:459 msgid "Input direction format assumed to be degrees CCW from East" msgstr "" -#: ../raster/r.path/main.c:460 +#: ../raster/r.path/main.c:463 msgid "Input direction format assumed to be bitmask encoded with Knight's move" msgstr "" -#: ../raster/r.path/main.c:465 +#: ../raster/r.path/main.c:468 #, c-format msgid "Unable to detect format of input direction map <%s>" msgstr "" -#: ../raster/r.path/main.c:469 +#: ../raster/r.path/main.c:472 #, c-format msgid "Invalid directions format '%s'" msgstr "" -#: ../raster/r.path/main.c:471 +#: ../raster/r.path/main.c:474 #, c-format msgid "Reading direction map <%s> ..." msgstr "" -#: ../raster/r.path/main.c:525 +#: ../raster/r.path/main.c:528 msgid "Processing start points..." msgstr "" -#: ../raster/r.path/main.c:535 ../vector/v.buffer/main.c:410 +#: ../raster/r.path/main.c:538 ../vector/v.buffer/main.c:410 #: ../vector/v.in.ogr/main.c:881 ../vector/v.overlay/main.c:237 #: ../vector/v.voronoi/main.c:215 msgid "Unable to create temporary vector map" msgstr "" -#: ../raster/r.path/main.c:541 ../raster/r.path/main.c:557 +#: ../raster/r.path/main.c:544 ../raster/r.path/main.c:560 #, c-format msgid "No path at row %d, col %d" msgstr "" -#: ../raster/r.path/main.c:546 ../vector/v.overlay/area_area.c:134 +#: ../raster/r.path/main.c:549 ../vector/v.overlay/area_area.c:134 #: ../vector/v.overlay/line_area.c:255 msgid "Breaking lines..." msgstr "" -#: ../raster/r.path/main.c:684 +#: ../raster/r.path/main.c:687 msgid "Unable to increase point list" msgstr "" -#: ../raster/r.path/main.c:887 +#: ../raster/r.path/main.c:890 #, c-format msgid "No path from row %d, col %d" msgstr "" -#: ../raster/r.path/main.c:901 +#: ../raster/r.path/main.c:904 #, c-format msgid "Invalid direction %d" msgstr "" -#: ../raster/r.path/main.c:999 +#: ../raster/r.path/main.c:1002 msgid "Path is leaving the current region" msgstr "" @@ -38422,39 +38430,17 @@ msgstr "" msgid "Link to vector map <%s> created." msgstr "" -#: ../vector/v.external/proj.c:35 ../vector/v.in.ogr/main.c:741 -#: ../vector/v.in.ogr/proj.c:36 +#: ../vector/v.external/proj.c:34 ../vector/v.in.ogr/main.c:741 +#: ../vector/v.in.ogr/proj.c:34 #, c-format msgid "Geometry column <%s> not found in input layer <%s>" msgstr "" -#: ../vector/v.external/proj.c:49 ../vector/v.in.ogr/proj.c:50 -msgid "Unable to convert input layer projection information to GRASS format for checking" -msgstr "" - -#: ../vector/v.external/proj.c:55 ../vector/v.external/proj.c:85 -#: ../vector/v.in.ogr/proj.c:56 ../vector/v.in.ogr/proj.c:86 -msgid "Can't get WKT parameter string" -msgstr "" - -#: ../vector/v.external/proj.c:58 ../vector/v.external/proj.c:88 -#: ../vector/v.in.ogr/proj.c:59 ../vector/v.in.ogr/proj.c:89 -#, c-format -msgid "" -"WKT definition:\n" -"%s" -msgstr "" - -#: ../vector/v.external/proj.c:69 ../vector/v.in.ogr/proj.c:70 +#: ../vector/v.external/proj.c:46 ../vector/v.in.ogr/proj.c:46 #, c-format msgid "No projection information available for layer <%s>" msgstr "" -#: ../vector/v.external/proj.c:78 ../vector/v.in.ogr/proj.c:79 -#, c-format -msgid "Projection for layer <%s> does not contain a valid CRS" -msgstr "" - #: ../vector/v.extract/extract.c:202 #, c-format msgid "No category found for area %d. Skipping." @@ -40210,16 +40196,16 @@ msgstr "" msgid "The spatial filter does not overlap with OGR layer <%s>. Nothing to import." msgstr "" -#: ../vector/v.in.ogr/proj.c:168 +#: ../vector/v.in.ogr/proj.c:85 msgid "Layer projections are unreadable" msgstr "" -#: ../vector/v.in.ogr/proj.c:184 +#: ../vector/v.in.ogr/proj.c:93 #, c-format msgid "Projection for layer <%s> is unreadable" msgstr "" -#: ../vector/v.in.ogr/proj.c:236 +#: ../vector/v.in.ogr/proj.c:113 #, c-format msgid "Projection of layer <%s> is different from projection of layer <%s>" msgstr "" diff --git a/locale/po/grassmods_it.po b/locale/po/grassmods_it.po index 9fc36994944..887bc5811b2 100644 --- a/locale/po/grassmods_it.po +++ b/locale/po/grassmods_it.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: grassmods_it\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-07-26 01:36+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Italian \n" @@ -185,7 +185,7 @@ msgstr "Visualizza tutte le colonne per una tabella" #: ../general/g.proj/main.c:90 ../general/g.proj/main.c:99 #: ../general/g.proj/main.c:105 ../general/g.proj/main.c:114 #: ../general/g.proj/main.c:126 ../general/g.proj/main.c:135 -#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:244 +#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:245 #: ../general/g.region/main.c:91 ../general/g.region/main.c:97 #: ../general/g.region/main.c:102 ../general/g.region/main.c:108 #: ../general/g.region/main.c:113 ../general/g.region/main.c:118 @@ -313,13 +313,12 @@ msgstr "" #: ../db/db.connect/main.c:144 ../general/g.findfile/main.c:187 #: ../general/g.list/list.c:122 ../general/g.mapset/main.c:119 -#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:54 -#: ../general/g.proj/output.c:360 ../general/g.region/main.c:471 -#: ../general/g.version/main.c:140 ../misc/m.measure/main.c:87 -#: ../raster/r.describe/dumplist.c:38 ../raster/r.distance/report.c:211 -#: ../raster/r.distance/report.c:218 ../raster/r.distance/report.c:225 -#: ../raster/r.info/main.c:147 ../raster/r.proj/main.c:487 -#: ../raster/r.regression.line/main.c:101 +#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:351 +#: ../general/g.region/main.c:471 ../general/g.version/main.c:140 +#: ../misc/m.measure/main.c:87 ../raster/r.describe/dumplist.c:38 +#: ../raster/r.distance/report.c:211 ../raster/r.distance/report.c:218 +#: ../raster/r.distance/report.c:225 ../raster/r.info/main.c:147 +#: ../raster/r.proj/main.c:487 ../raster/r.regression.line/main.c:101 #: ../raster/r.regression.multi/main.c:197 #: ../raster/r.regression.multi/main.c:566 #: ../raster/r.stats.quantile/main.c:430 ../raster/r.stats.quantile/main.c:447 @@ -338,7 +337,7 @@ msgstr "" msgid "Failed to initialize JSON object. Out of memory?" msgstr "" -#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:277 +#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:278 #: ../general/g.region/main.c:427 ../general/g.version/main.c:153 #: ../imagery/i.group/main.c:137 ../misc/m.measure/main.c:100 #: ../raster/r.proj/main.c:270 ../raster/r.regression.line/main.c:114 @@ -495,7 +494,7 @@ msgstr "" msgid "Lists all databases for a given driver and location." msgstr "" -#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:383 +#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:374 #: ../general/g.region/main.c:990 ../general/g.version/main.c:409 #: ../imagery/i.group/main.c:301 ../raster/r.category/main.c:412 #: ../raster/r.describe/dumplist.c:71 ../raster/r.info/main.c:1000 @@ -6489,10 +6488,10 @@ msgstr "" msgid "Converts between PPM/PGM and PNG image formats." msgstr "" -#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:141 -#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:140 -#: ../vector/v.external/proj.c:173 ../vector/v.in.lidar/main.c:525 -#: ../vector/v.in.ogr/proj.c:307 +#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:129 +#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:129 +#: ../vector/v.external/proj.c:158 ../vector/v.in.lidar/main.c:525 +#: ../vector/v.in.ogr/proj.c:228 #, fuzzy, c-format msgid "Project <%s> created" msgstr "Location <%s> creata" @@ -6811,55 +6810,67 @@ msgstr "Non è possibile creare i file della proiezione: %s" msgid "Name of new project (location) to create" msgstr "Nome della nuova location da creare" -#: ../general/g.proj/main.c:239 -msgid "plain;Human readable text output;shell;shell script style text output;json;JSON (JavaScript Object Notation);wkt;Well-known text output;proj4;PROJ.4 style text output;" +#: ../general/g.proj/main.c:240 +msgid "plain;Human readable text output;shell;shell script style text output;wkt;Well-known text output;projjson;JSON (JavaScript Object Notation) version of WKT;proj4;PROJ.4 style text output;" msgstr "" -#: ../general/g.proj/main.c:271 ../vector/v.what.rast/main.c:159 +#: ../general/g.proj/main.c:272 ../vector/v.what.rast/main.c:159 #, c-format msgid "The format option can only be used with -%c flag" msgstr "" -#: ../general/g.proj/main.c:283 +#: ../general/g.proj/main.c:284 msgid "Flag 'j' is deprecated and will be removed in a future release. Please use format=proj4 instead." msgstr "" -#: ../general/g.proj/main.c:292 +#: ../general/g.proj/main.c:293 msgid "Flag 'w' is deprecated and will be removed in a future release. Please use format=wkt instead." msgstr "" -#: ../general/g.proj/main.c:312 +#: ../general/g.proj/main.c:313 #, c-format msgid "Only one of '%s', '%s', '%s', '%s' or '%s' options may be specified" msgstr "" -#: ../general/g.proj/main.c:364 +#: ../general/g.proj/main.c:365 msgid "Projection files missing" msgstr "Mancano le informazioni sulla proiezione" -#: ../general/g.proj/main.c:392 +#: ../general/g.proj/main.c:393 #, c-format msgid "No output format specified. Define one of the options: plain, shell, json, wkt, or proj4 using the -%c flag." msgstr "" -#: ../general/g.proj/main.c:397 +#: ../general/g.proj/main.c:398 #, c-format msgid "No output format specified. Define one of the options: plain, shell, json, or proj4 using the -%c flag." msgstr "" -#: ../general/g.proj/output.c:221 +#: ../general/g.proj/output.c:54 +#, fuzzy +#| msgid "Layer <%s> not available" +msgid "JSON output is not available." +msgstr "Layer <%s> non disponibile" + +#: ../general/g.proj/output.c:212 msgid "Unable to convert projection information to PROJ format" msgstr "" -#: ../general/g.proj/output.c:295 +#: ../general/g.proj/output.c:286 #, c-format msgid "Unable to create PROJ definition from srid <%s>" msgstr "" -#: ../general/g.proj/output.c:337 +#: ../general/g.proj/output.c:328 msgid "Unable to convert to WKT" msgstr "" +#: ../general/g.proj/output.c:433 +#, fuzzy +#| msgid "Unable to insert row: %s" +msgid "Unable to convert to PROJJSON" +msgstr "Non è possibile inserire la riga: %s" + #: ../general/g.region/main.c:67 msgid "computational region" msgstr "" @@ -11520,10 +11531,10 @@ msgstr "" #: ../raster/r.grow.distance/main.c:392 ../raster/r.li/r.li.daemon/daemon.c:743 #: ../raster/r.mfilter/execute.c:82 ../raster/r.mfilter/execute.c:114 #: ../raster/r.mfilter/execute.c:165 ../raster/r.mfilter/getrow.c:24 -#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:786 -#: ../raster/r.path/main.c:822 ../raster/r.path/main.c:954 -#: ../raster/r.path/main.c:1073 ../raster/r.path/main.c:1103 -#: ../raster/r.path/main.c:1207 ../raster/r.thin/io.c:72 +#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:789 +#: ../raster/r.path/main.c:825 ../raster/r.path/main.c:957 +#: ../raster/r.path/main.c:1076 ../raster/r.path/main.c:1106 +#: ../raster/r.path/main.c:1210 ../raster/r.thin/io.c:72 #: ../raster/r.thin/io.c:82 ../raster3d/r3.in.v5d/v5d.c:1192 #: ../raster3d/r3.in.v5d/v5d.c:1443 ../raster3d/r3.in.v5d/v5d.c:1523 #: ../raster3d/r3.in.v5d/v5d.c:1848 ../raster3d/r3.in.v5d/v5d.c:1859 @@ -11549,9 +11560,9 @@ msgstr "" #: ../raster/r.clump/minsize.c:268 ../raster/r.clump/minsize.c:308 #: ../raster/r.clump/minsize.c:319 ../raster/r.clump/minsize.c:454 #: ../raster/r.clump/minsize.c:481 ../raster/r.clump/minsize.c:557 -#: ../raster/r.path/main.c:791 ../raster/r.path/main.c:827 -#: ../raster/r.path/main.c:962 ../raster/r.path/main.c:1078 -#: ../raster/r.path/main.c:1108 ../raster/r.path/main.c:1213 +#: ../raster/r.path/main.c:794 ../raster/r.path/main.c:830 +#: ../raster/r.path/main.c:965 ../raster/r.path/main.c:1081 +#: ../raster/r.path/main.c:1111 ../raster/r.path/main.c:1216 msgid "Unable to read from temp file" msgstr "Impossibile leggere dal file temporaneo" @@ -19912,7 +19923,7 @@ msgstr "Specificare solo uno dei flag -c, -a e -n" msgid "Starting point %d is outside the current region" msgstr "Il punto di partenza %d è al di fuori della regione corrente" -#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:375 +#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:378 #, c-format msgid "Starting vector map <%s> contains no points in the current region" msgstr "La mappa vettoriale di partenza <%s> non contiene punti nella regione corrente" @@ -19926,8 +19937,8 @@ msgid "Calculating flow directions..." msgstr "Calcolo delle direzioni di flusso in corso..." #: ../raster/r.drain/main.c:485 ../raster/r.in.lidar/main.c:783 -#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:598 -#: ../raster/r.path/main.c:628 ../raster/r.viewshed/grass.cpp:621 +#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:601 +#: ../raster/r.path/main.c:631 ../raster/r.viewshed/grass.cpp:621 msgid "Writing output raster map..." msgstr "" @@ -20175,89 +20186,100 @@ msgstr "La banda (%d) selezionata non esiste" msgid "Imagery group <%s> created" msgstr "Gruppo di immagini <%s> creato" -#: ../raster/r.external/proj.c:51 ../raster/r.external/proj.c:93 -#: ../raster/r.in.gdal/proj.c:51 ../raster/r.in.gdal/proj.c:93 -#, c-format -msgid "" -"Input contains an invalid CRS. WKT definition:\n" -"%s" +#: ../raster/r.external/proj.c:36 ../raster/r.external/proj.c:63 +#: ../raster/r.external/proj.c:122 ../raster/r.in.gdal/proj.c:36 +#: ../raster/r.in.gdal/proj.c:63 ../raster/r.in.gdal/proj.c:122 +#: ../vector/v.external/proj.c:92 ../vector/v.external/proj.c:151 +#: ../vector/v.in.ogr/proj.c:162 ../vector/v.in.ogr/proj.c:221 +msgid "Can't get WKT parameter string" msgstr "" -#: ../raster/r.external/proj.c:120 ../raster/r.in.gdal/proj.c:120 +#: ../raster/r.external/proj.c:56 ../raster/r.in.gdal/proj.c:56 +#: ../vector/v.external/proj.c:85 ../vector/v.in.ogr/proj.c:155 +#, fuzzy +#| msgid "Input map contains no data" +msgid "Input contains an invalid CRS." +msgstr "La mappa di input non contiene dati" + +#: ../raster/r.external/proj.c:66 ../raster/r.in.gdal/proj.c:66 +#: ../vector/v.external/proj.c:95 ../vector/v.in.ogr/proj.c:165 +#, fuzzy +#| msgid "Definition" +msgid "WKT definition:" +msgstr "Definizione" + +#: ../raster/r.external/proj.c:99 ../raster/r.in.gdal/proj.c:99 +#: ../vector/v.external/proj.c:128 ../vector/v.in.ogr/proj.c:198 msgid "No projection information available" msgstr "" -#: ../raster/r.external/proj.c:133 +#: ../raster/r.external/proj.c:114 ../raster/r.in.gdal/proj.c:114 +#: ../vector/v.external/proj.c:143 ../vector/v.in.ogr/proj.c:213 #, fuzzy -msgid "Unable to convert input map coordinate reference system to GRASS format; cannot create new project." +msgid "Unable to convert input map projection to GRASS format; cannot create new project." msgstr "Non si è in grado di convertire la proiezione della mappa di input nel formato di GRASS; impossibile creare una nuova location." -#: ../raster/r.external/proj.c:139 ../raster/r.in.gdal/main.c:1039 -#: ../raster/r.in.gdal/proj.c:138 ../vector/v.external/proj.c:171 -#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:305 +#: ../raster/r.external/proj.c:127 ../raster/r.in.gdal/main.c:1039 +#: ../raster/r.in.gdal/proj.c:127 ../vector/v.external/proj.c:156 +#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:226 #, fuzzy, c-format msgid "Unable to create new project <%s>" msgstr "Non è possibile creare l'indece sulla tabella <%s>" -#: ../raster/r.external/proj.c:165 ../raster/r.in.gdal/proj.c:164 -#: ../vector/v.external/proj.c:197 ../vector/v.in.ogr/proj.c:331 +#: ../raster/r.external/proj.c:157 ../raster/r.in.gdal/proj.c:157 +#: ../vector/v.external/proj.c:186 ../vector/v.in.ogr/proj.c:256 msgid "Unable to convert input map projection information to GRASS format." msgstr "" -#: ../raster/r.external/proj.c:192 ../raster/r.in.gdal/proj.c:192 +#: ../raster/r.external/proj.c:238 ../raster/r.in.gdal/proj.c:238 #: ../raster/r.in.lidar/projection.c:126 -#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:228 -#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:360 +#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:267 +#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:337 msgid "Over-riding projection check" msgstr "La verifica della proiezione verrà ignorata" -#: ../raster/r.external/proj.c:200 ../raster/r.in.gdal/proj.c:200 -#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 -#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.external/proj.c:236 -#: ../vector/v.in.lidar/projection.c:30 ../vector/v.in.ogr/proj.c:368 +#: ../raster/r.external/proj.c:244 ../raster/r.in.gdal/proj.c:244 +#: ../vector/v.external/proj.c:273 ../vector/v.in.ogr/proj.c:343 #, fuzzy -msgid "" -"Coordinate reference system of dataset does not appear to match current project.\n" -"\n" +msgid "Coordinate reference system of dataset does not appear to match current project.\n" msgstr "" "La proiezione del dataset sembra non corrispondere a quella della location corrente.\n" "\n" -#: ../raster/r.external/proj.c:207 ../raster/r.external/proj.c:216 -#: ../raster/r.in.gdal/proj.c:207 ../raster/r.in.gdal/proj.c:216 -#: ../vector/v.external/proj.c:243 ../vector/v.external/proj.c:252 -#: ../vector/v.in.ogr/proj.c:375 ../vector/v.in.ogr/proj.c:384 +#: ../raster/r.external/proj.c:258 ../raster/r.in.gdal/proj.c:258 +#: ../vector/v.external/proj.c:287 ../vector/v.in.ogr/proj.c:357 #, fuzzy -msgid "Project PROJ_INFO is:\n" -msgstr "PROJ_INFO della location è:\n" - -#: ../raster/r.external/proj.c:236 ../raster/r.external/proj.c:243 -#: ../raster/r.in.gdal/proj.c:236 ../raster/r.in.gdal/proj.c:243 -#: ../vector/v.external/proj.c:272 ../vector/v.external/proj.c:279 -#: ../vector/v.in.ogr/proj.c:404 ../vector/v.in.ogr/proj.c:411 -msgid "Dataset PROJ_INFO is:\n" +#| msgid "Dataset PROJ_INFO is:\n" +msgid "Dataset CRS is:\n" msgstr "PROJ_INFO del dataset è:\n" -#: ../raster/r.external/proj.c:324 ../raster/r.in.lidar/projection.c:89 -#: ../raster/r.in.pdal/projection.c:87 ../raster3d/r3.in.lidar/projection.c:90 -#: ../vector/v.external/proj.c:360 ../vector/v.in.lidar/projection.c:87 -#: ../vector/v.in.ogr/proj.c:492 ../vector/v.in.pdal/projection.c:87 +#: ../raster/r.external/proj.c:272 ../raster/r.in.gdal/proj.c:272 +#: ../vector/v.external/proj.c:301 ../vector/v.in.ogr/proj.c:371 +#, fuzzy +msgid "Project CRS is:\n" +msgstr "PROJ_INFO della location è:\n" + +#: ../raster/r.external/proj.c:286 ../raster/r.in.gdal/proj.c:286 +#: ../raster/r.in.lidar/projection.c:89 ../raster/r.in.pdal/projection.c:87 +#: ../raster3d/r3.in.lidar/projection.c:90 ../vector/v.external/proj.c:315 +#: ../vector/v.in.lidar/projection.c:87 ../vector/v.in.ogr/proj.c:385 +#: ../vector/v.in.pdal/projection.c:87 #, c-format msgid "" "\n" "In case of no significant differences in the coordinate reference system definitions, use the -o flag to ignore them and use current project definition.\n" msgstr "" -#: ../raster/r.external/proj.c:328 ../raster/r.in.gdal/proj.c:327 -#: ../vector/v.external/proj.c:364 ../vector/v.in.ogr/proj.c:496 +#: ../raster/r.external/proj.c:290 ../raster/r.in.gdal/proj.c:290 +#: ../vector/v.external/proj.c:319 ../vector/v.in.ogr/proj.c:389 #, fuzzy msgid "Consider generating a new project from the input dataset using the 'project' parameter.\n" msgstr "Si prenda in considerazione di generare una nuova location dal dataset di input usando il parametro location\n" -#: ../raster/r.external/proj.c:348 ../raster/r.in.gdal/proj.c:347 +#: ../raster/r.external/proj.c:310 ../raster/r.in.gdal/proj.c:310 #: ../raster/r.in.lidar/projection.c:136 ../raster/r.in.pdal/projection.c:134 -#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:384 -#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:516 +#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:339 +#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:409 #, fuzzy msgid "Coordinate reference system of input dataset and current project appear to match" msgstr "La proiezione del dataset di input e della location corrente sembrano corrispondere" @@ -20871,7 +20893,7 @@ msgstr "" msgid "Region resolution shouldn't be lesser than map %s resolution. Run g.region raster=%s to set proper resolution" msgstr "" -#: ../raster/r.geomorphon/pattern.c:228 +#: ../raster/r.geomorphon/pattern.c:229 #, c-format msgid "Internal error in %s()" msgstr "" @@ -21845,8 +21867,7 @@ msgstr "* Proiezione dell'output per la tabella GCP: %s " msgid "Error in %s (can't re-project GCP %i)" msgstr "" -#: ../raster/r.in.gdal/main.c:983 ../vector/v.external/proj.c:165 -#: ../vector/v.in.lidar/main.c:516 +#: ../raster/r.in.gdal/main.c:983 ../vector/v.in.lidar/main.c:516 #, fuzzy msgid "Unable to convert input map CRS to GRASS format; cannot create new project." msgstr "Non si è in grado di convertire la proiezione della mappa di input nel formato di GRASS; impossibile creare una nuova location." @@ -21901,17 +21922,6 @@ msgstr "" msgid "Unable to open file <%s>: %s." msgstr "" -#: ../raster/r.in.gdal/proj.c:132 ../vector/v.in.ogr/proj.c:299 -#, fuzzy -msgid "Unable to convert input map projection to GRASS format; cannot create new project." -msgstr "Non si è in grado di convertire la proiezione della mappa di input nel formato di GRASS; impossibile creare una nuova location." - -#: ../raster/r.in.gdal/proj.c:323 -msgid "" -"\n" -"In case of no significant differences in the CRS definitions, use the -o flag to ignore them and use current project definition.\n" -msgstr "" - #: ../raster/r.in.gridatb/file_io.c:16 #, fuzzy, c-format #| msgid "Unable to open file <%s>" @@ -22273,6 +22283,16 @@ msgstr "Impossibile calcolare il percentile senza l'opzione pth specificato!" msgid "Unable to calculate trimmed mean without the trim option specified!" msgstr "Impossibile calcolare il trimmed senza l'opzione trim specificato!" +#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 +#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.in.lidar/projection.c:30 +#, fuzzy +msgid "" +"Coordinate reference system of dataset does not appear to match current project.\n" +"\n" +msgstr "" +"La proiezione del dataset sembra non corrispondere a quella della location corrente.\n" +"\n" + #: ../raster/r.in.lidar/projection.c:38 ../raster/r.in.pdal/projection.c:36 #: ../vector/v.in.lidar/projection.c:36 ../vector/v.in.pdal/projection.c:36 #, fuzzy @@ -25150,114 +25170,114 @@ msgstr "Tipo di arco" msgid "Do not break lines (faster for single-direction bitmask encoding)" msgstr "" -#: ../raster/r.path/main.c:384 +#: ../raster/r.path/main.c:387 msgid "No start point(s) specified" msgstr "" -#: ../raster/r.path/main.c:394 +#: ../raster/r.path/main.c:397 #, c-format msgid "Reading raster values map <%s> ..." msgstr "" -#: ../raster/r.path/main.c:399 +#: ../raster/r.path/main.c:402 #, fuzzy, c-format #| msgid "Unable to open temporary file <%s>" msgid "Unable to open temporary file <%s>: %s" msgstr "Impossibile aprire il file temporaneo <%s>" -#: ../raster/r.path/main.c:411 ../raster/r.path/main.c:489 -#: ../raster/r.path/main.c:506 +#: ../raster/r.path/main.c:414 ../raster/r.path/main.c:492 +#: ../raster/r.path/main.c:509 msgid "Unable to write to tempfile" msgstr "" -#: ../raster/r.path/main.c:419 +#: ../raster/r.path/main.c:422 msgid "Unable to read range file" msgstr "Impossibile leggere il file range" -#: ../raster/r.path/main.c:422 +#: ../raster/r.path/main.c:425 #, c-format msgid "Invalid directions map <%s>" msgstr "" -#: ../raster/r.path/main.c:427 +#: ../raster/r.path/main.c:430 msgid "Directional degrees can not be > 360" msgstr "" -#: ../raster/r.path/main.c:433 +#: ../raster/r.path/main.c:436 msgid "Directional degrees divided by 45 can not be > 8" msgstr "" -#: ../raster/r.path/main.c:438 +#: ../raster/r.path/main.c:441 #, c-format msgid "Bitmask encoded directions can not be > %d" msgstr "" -#: ../raster/r.path/main.c:445 +#: ../raster/r.path/main.c:448 msgid "Input direction format assumed to be degrees CCW from East divided by 45" msgstr "" -#: ../raster/r.path/main.c:450 +#: ../raster/r.path/main.c:453 msgid "Input direction format assumed to be bitmask encoded without Knight's move" msgstr "" -#: ../raster/r.path/main.c:456 +#: ../raster/r.path/main.c:459 msgid "Input direction format assumed to be degrees CCW from East" msgstr "" -#: ../raster/r.path/main.c:460 +#: ../raster/r.path/main.c:463 msgid "Input direction format assumed to be bitmask encoded with Knight's move" msgstr "" -#: ../raster/r.path/main.c:465 +#: ../raster/r.path/main.c:468 #, c-format msgid "Unable to detect format of input direction map <%s>" msgstr "" -#: ../raster/r.path/main.c:469 +#: ../raster/r.path/main.c:472 #, c-format msgid "Invalid directions format '%s'" msgstr "" -#: ../raster/r.path/main.c:471 +#: ../raster/r.path/main.c:474 #, c-format msgid "Reading direction map <%s> ..." msgstr "" -#: ../raster/r.path/main.c:525 +#: ../raster/r.path/main.c:528 msgid "Processing start points..." msgstr "" -#: ../raster/r.path/main.c:535 ../vector/v.buffer/main.c:410 +#: ../raster/r.path/main.c:538 ../vector/v.buffer/main.c:410 #: ../vector/v.in.ogr/main.c:881 ../vector/v.overlay/main.c:237 #: ../vector/v.voronoi/main.c:215 msgid "Unable to create temporary vector map" msgstr "" -#: ../raster/r.path/main.c:541 ../raster/r.path/main.c:557 +#: ../raster/r.path/main.c:544 ../raster/r.path/main.c:560 #, c-format msgid "No path at row %d, col %d" msgstr "" -#: ../raster/r.path/main.c:546 ../vector/v.overlay/area_area.c:134 +#: ../raster/r.path/main.c:549 ../vector/v.overlay/area_area.c:134 #: ../vector/v.overlay/line_area.c:255 msgid "Breaking lines..." msgstr "Sto rompendo le linee" -#: ../raster/r.path/main.c:684 +#: ../raster/r.path/main.c:687 msgid "Unable to increase point list" msgstr "" -#: ../raster/r.path/main.c:887 +#: ../raster/r.path/main.c:890 #, c-format msgid "No path from row %d, col %d" msgstr "" -#: ../raster/r.path/main.c:901 +#: ../raster/r.path/main.c:904 #, c-format msgid "Invalid direction %d" msgstr "" -#: ../raster/r.path/main.c:999 +#: ../raster/r.path/main.c:1002 msgid "Path is leaving the current region" msgstr "" @@ -38896,39 +38916,17 @@ msgstr "" msgid "Link to vector map <%s> created." msgstr "" -#: ../vector/v.external/proj.c:35 ../vector/v.in.ogr/main.c:741 -#: ../vector/v.in.ogr/proj.c:36 +#: ../vector/v.external/proj.c:34 ../vector/v.in.ogr/main.c:741 +#: ../vector/v.in.ogr/proj.c:34 #, c-format msgid "Geometry column <%s> not found in input layer <%s>" msgstr "" -#: ../vector/v.external/proj.c:49 ../vector/v.in.ogr/proj.c:50 -msgid "Unable to convert input layer projection information to GRASS format for checking" -msgstr "" - -#: ../vector/v.external/proj.c:55 ../vector/v.external/proj.c:85 -#: ../vector/v.in.ogr/proj.c:56 ../vector/v.in.ogr/proj.c:86 -msgid "Can't get WKT parameter string" -msgstr "" - -#: ../vector/v.external/proj.c:58 ../vector/v.external/proj.c:88 -#: ../vector/v.in.ogr/proj.c:59 ../vector/v.in.ogr/proj.c:89 -#, c-format -msgid "" -"WKT definition:\n" -"%s" -msgstr "" - -#: ../vector/v.external/proj.c:69 ../vector/v.in.ogr/proj.c:70 +#: ../vector/v.external/proj.c:46 ../vector/v.in.ogr/proj.c:46 #, c-format msgid "No projection information available for layer <%s>" msgstr "" -#: ../vector/v.external/proj.c:78 ../vector/v.in.ogr/proj.c:79 -#, c-format -msgid "Projection for layer <%s> does not contain a valid CRS" -msgstr "" - #: ../vector/v.extract/extract.c:202 #, c-format msgid "No category found for area %d. Skipping." @@ -40700,16 +40698,16 @@ msgstr "" msgid "The spatial filter does not overlap with OGR layer <%s>. Nothing to import." msgstr "" -#: ../vector/v.in.ogr/proj.c:168 +#: ../vector/v.in.ogr/proj.c:85 msgid "Layer projections are unreadable" msgstr "" -#: ../vector/v.in.ogr/proj.c:184 +#: ../vector/v.in.ogr/proj.c:93 #, c-format msgid "Projection for layer <%s> is unreadable" msgstr "" -#: ../vector/v.in.ogr/proj.c:236 +#: ../vector/v.in.ogr/proj.c:113 #, c-format msgid "Projection of layer <%s> is different from projection of layer <%s>" msgstr "" @@ -48232,47 +48230,6 @@ msgstr "Visualizza immagini BMP dal driver PNG." msgid "Image file" msgstr "File immagine" -#, fuzzy, c-format -#~| msgid "Unable to create %s" -#~ msgid "Unable to seek: %s" -#~ msgstr "Impossibile creare %s" - -#~ msgid "Both -s and -h doesn't make sense" -#~ msgstr "Sia -s che -h non hanno senso" - -#~ msgid "Use -M or -s, not both" -#~ msgstr "Usare -M o -s, non entrambi" - -#~ msgid "Print the stats in shell script style" -#~ msgstr "Stampa a video le statistiche con lo stile shell script" - -#~ msgid "Field separator for shell script style output" -#~ msgstr "Separatore di campo per l'output in stile script per la shell" - -#~ msgid "Output RRR:GGG:BBB color values for each profile point" -#~ msgstr "Valori RRR:GGG:BBB di colore di output per ogni punto del profilo" - -#, c-format -#~ msgid "Test %s." -#~ msgstr "Test %s." - -#~ msgid "Everyone" -#~ msgstr "Chiunque" - -#~ msgid "Only you" -#~ msgstr "Solo tu" - -#, c-format -#~ msgid "Only one of -%c, -%c, -%c, -%c, -%c or -%c flags may be specified" -#~ msgstr "Solo una delle seguenti opzioni -%c, -%c, -%c, -%c, -%c o -%c può essere specificata" - -#, fuzzy, c-format -#~ msgid "Only one of -%c, -%c, -%c, -%c or -%c flags may be specified" -#~ msgstr "Solo una delle seguenti opzioni -%c, -%c, -%c, -%c, -%c o -%c può essere specificata" - -#~ msgid "temperature" -#~ msgstr "temperatura" - #, fuzzy #~ msgid "" #~ "\n" @@ -48551,6 +48508,9 @@ msgstr "File immagine" #~ msgid "Bins vector points into a raster map." #~ msgstr "Converte una mappa vettoriale in una mappa raster (la rasterizza)." +#~ msgid "Both -s and -h doesn't make sense" +#~ msgstr "Sia -s che -h non hanno senso" + #, fuzzy #~ msgid "Boxplot color" #~ msgstr "Colore del testo" @@ -49287,6 +49247,9 @@ msgstr "File immagine" #~ msgid "Evaluation" #~ msgstr "Location: %s\n" +#~ msgid "Everyone" +#~ msgstr "Chiunque" + #, fuzzy #~ msgid "Example: 1,3,7-9,13" #~ msgstr "Esempio: 1.4,3.8,13" @@ -49372,6 +49335,9 @@ msgstr "File immagine" #~ msgid "Field separator" #~ msgstr "Separatore di campo in output" +#~ msgid "Field separator for shell script style output" +#~ msgstr "Separatore di campo per l'output in stile script per la shell" + #, fuzzy #~ msgid "Field separator in input text files" #~ msgstr "Separatore di campo (modalità punti)" @@ -52060,6 +52026,14 @@ msgstr "File immagine" #~ msgid "One of options <%s> or <%s> must be specified" #~ msgstr "Dev'essere specificato \"-i\" o \"-r\", o le opzioni \"color\", \"rast\" o \"rules\"!" +#, fuzzy, c-format +#~ msgid "Only one of -%c, -%c, -%c, -%c or -%c flags may be specified" +#~ msgstr "Solo una delle seguenti opzioni -%c, -%c, -%c, -%c, -%c o -%c può essere specificata" + +#, c-format +#~ msgid "Only one of -%c, -%c, -%c, -%c, -%c or -%c flags may be specified" +#~ msgstr "Solo una delle seguenti opzioni -%c, -%c, -%c, -%c, -%c o -%c può essere specificata" + #, fuzzy #~ msgid "Only print selected polygons" #~ msgstr "Stampa solo il conteggio delle celle" @@ -52068,6 +52042,9 @@ msgstr "File immagine" #~ msgid "Only tune and train model, do not predict" #~ msgstr "Testa solo la query, non la esegue" +#~ msgid "Only you" +#~ msgstr "Solo tu" + #, fuzzy #~ msgid "Operators" #~ msgstr "temperatura" @@ -52136,6 +52113,9 @@ msgstr "File immagine" #~ msgid "Output Potential file" #~ msgstr "File world di output" +#~ msgid "Output RRR:GGG:BBB color values for each profile point" +#~ msgstr "Valori RRR:GGG:BBB di colore di output per ogni punto del profilo" + #, fuzzy #~ msgid "Output beam irradiation raster map aggregated for the whole period of time [Wh.m-2.day-1]" #~ msgstr "Mappa raster di output della radiazione diffusa, istantanea [W.m-2] (modalità 1) o cumulata [Wh.m-2.giorno-1] (modalità 2)" @@ -52626,6 +52606,9 @@ msgstr "File immagine" #~ msgid "Print the request URL and exit" #~ msgstr "Mostra le tabelle ed esce" +#~ msgid "Print the stats in shell script style" +#~ msgstr "Stampa a video le statistiche con lo stile shell script" + #, fuzzy #~ msgid "Print the threshold value in shell script style" #~ msgstr "Stampa a video le statistiche con lo stile shell script" @@ -53312,6 +53295,10 @@ msgstr "File immagine" #~ msgid "Terrain options" #~ msgstr "Creazione delle opzioni" +#, c-format +#~ msgid "Test %s." +#~ msgstr "Test %s." + #, fuzzy #~ msgid "Test different classification methods" #~ msgstr "riclassificazione" @@ -53564,6 +53551,10 @@ msgstr "File immagine" #~ msgid "Unable To create table: %s" #~ msgstr "Non è possibile creare la tabella: %s" +#, fuzzy +#~ msgid "Unable to convert input map coordinate reference system to GRASS format; cannot create new project." +#~ msgstr "Non si è in grado di convertire la proiezione della mappa di input nel formato di GRASS; impossibile creare una nuova location." + #, fuzzy #~ msgid "Unable to create 2D raster <%s>" #~ msgstr "Impossibile creare la mappa raster 3D <%s>" @@ -53588,6 +53579,11 @@ msgstr "File immagine" #~ msgid "Unable to read REF file for group <%s>" #~ msgstr "Impossibile leggere il file REF per il gruppo <%s>" +#, fuzzy, c-format +#~| msgid "Unable to create %s" +#~ msgid "Unable to seek: %s" +#~ msgstr "Impossibile creare %s" + #, fuzzy #~ msgid "Unacceptable conditions for Designated Fill" #~ msgstr "Impossibile aprire il file di firma" @@ -53645,6 +53641,9 @@ msgstr "File immagine" #~ msgid "Uploads values of multiple rasters at positions of vector points to the table." #~ msgstr "Carica valori di un raster nella tabella degli attributi di un vettoriale puntuale" +#~ msgid "Use -M or -s, not both" +#~ msgstr "Usare -M o -s, non entrambi" + #, fuzzy #~ msgid "Use a random seed" #~ msgstr "Titolo per la nuova mappa raster" @@ -54384,6 +54383,9 @@ msgstr "File immagine" #~ msgid "symbology" #~ msgstr "idrologia" +#~ msgid "temperature" +#~ msgstr "temperatura" + #, fuzzy #~ msgid "time series" #~ msgstr "Mappa(e) raster da leggere" diff --git a/locale/po/grassmods_ja.po b/locale/po/grassmods_ja.po index e56ce60f4df..7e9c692fc3e 100644 --- a/locale/po/grassmods_ja.po +++ b/locale/po/grassmods_ja.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: grassmods_ja\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-07-26 01:36+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Japanese \n" @@ -181,7 +181,7 @@ msgstr "与えられたテーブルの全列リスト" #: ../general/g.proj/main.c:90 ../general/g.proj/main.c:99 #: ../general/g.proj/main.c:105 ../general/g.proj/main.c:114 #: ../general/g.proj/main.c:126 ../general/g.proj/main.c:135 -#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:244 +#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:245 #: ../general/g.region/main.c:91 ../general/g.region/main.c:97 #: ../general/g.region/main.c:102 ../general/g.region/main.c:108 #: ../general/g.region/main.c:113 ../general/g.region/main.c:118 @@ -309,13 +309,12 @@ msgstr "" #: ../db/db.connect/main.c:144 ../general/g.findfile/main.c:187 #: ../general/g.list/list.c:122 ../general/g.mapset/main.c:119 -#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:54 -#: ../general/g.proj/output.c:360 ../general/g.region/main.c:471 -#: ../general/g.version/main.c:140 ../misc/m.measure/main.c:87 -#: ../raster/r.describe/dumplist.c:38 ../raster/r.distance/report.c:211 -#: ../raster/r.distance/report.c:218 ../raster/r.distance/report.c:225 -#: ../raster/r.info/main.c:147 ../raster/r.proj/main.c:487 -#: ../raster/r.regression.line/main.c:101 +#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:351 +#: ../general/g.region/main.c:471 ../general/g.version/main.c:140 +#: ../misc/m.measure/main.c:87 ../raster/r.describe/dumplist.c:38 +#: ../raster/r.distance/report.c:211 ../raster/r.distance/report.c:218 +#: ../raster/r.distance/report.c:225 ../raster/r.info/main.c:147 +#: ../raster/r.proj/main.c:487 ../raster/r.regression.line/main.c:101 #: ../raster/r.regression.multi/main.c:197 #: ../raster/r.regression.multi/main.c:566 #: ../raster/r.stats.quantile/main.c:430 ../raster/r.stats.quantile/main.c:447 @@ -334,7 +333,7 @@ msgstr "" msgid "Failed to initialize JSON object. Out of memory?" msgstr "" -#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:277 +#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:278 #: ../general/g.region/main.c:427 ../general/g.version/main.c:153 #: ../imagery/i.group/main.c:137 ../misc/m.measure/main.c:100 #: ../raster/r.proj/main.c:270 ../raster/r.regression.line/main.c:114 @@ -491,7 +490,7 @@ msgstr "" msgid "Lists all databases for a given driver and location." msgstr "" -#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:383 +#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:374 #: ../general/g.region/main.c:990 ../general/g.version/main.c:409 #: ../imagery/i.group/main.c:301 ../raster/r.category/main.c:412 #: ../raster/r.describe/dumplist.c:71 ../raster/r.info/main.c:1000 @@ -6480,10 +6479,10 @@ msgstr "" msgid "Converts between PPM/PGM and PNG image formats." msgstr "" -#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:141 -#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:140 -#: ../vector/v.external/proj.c:173 ../vector/v.in.lidar/main.c:525 -#: ../vector/v.in.ogr/proj.c:307 +#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:129 +#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:129 +#: ../vector/v.external/proj.c:158 ../vector/v.in.lidar/main.c:525 +#: ../vector/v.in.ogr/proj.c:228 #, fuzzy, c-format msgid "Project <%s> created" msgstr "ロケーション <%s> が作成されました" @@ -6800,55 +6799,67 @@ msgstr "プロジェクションファイルを作成できません: %s" msgid "Name of new project (location) to create" msgstr "作成する新しいロケーション名" -#: ../general/g.proj/main.c:239 -msgid "plain;Human readable text output;shell;shell script style text output;json;JSON (JavaScript Object Notation);wkt;Well-known text output;proj4;PROJ.4 style text output;" +#: ../general/g.proj/main.c:240 +msgid "plain;Human readable text output;shell;shell script style text output;wkt;Well-known text output;projjson;JSON (JavaScript Object Notation) version of WKT;proj4;PROJ.4 style text output;" msgstr "" -#: ../general/g.proj/main.c:271 ../vector/v.what.rast/main.c:159 +#: ../general/g.proj/main.c:272 ../vector/v.what.rast/main.c:159 #, c-format msgid "The format option can only be used with -%c flag" msgstr "" -#: ../general/g.proj/main.c:283 +#: ../general/g.proj/main.c:284 msgid "Flag 'j' is deprecated and will be removed in a future release. Please use format=proj4 instead." msgstr "" -#: ../general/g.proj/main.c:292 +#: ../general/g.proj/main.c:293 msgid "Flag 'w' is deprecated and will be removed in a future release. Please use format=wkt instead." msgstr "" -#: ../general/g.proj/main.c:312 +#: ../general/g.proj/main.c:313 #, c-format msgid "Only one of '%s', '%s', '%s', '%s' or '%s' options may be specified" msgstr "" -#: ../general/g.proj/main.c:364 +#: ../general/g.proj/main.c:365 msgid "Projection files missing" msgstr "投影ファイルが見つかりません " -#: ../general/g.proj/main.c:392 +#: ../general/g.proj/main.c:393 #, c-format msgid "No output format specified. Define one of the options: plain, shell, json, wkt, or proj4 using the -%c flag." msgstr "" -#: ../general/g.proj/main.c:397 +#: ../general/g.proj/main.c:398 #, c-format msgid "No output format specified. Define one of the options: plain, shell, json, or proj4 using the -%c flag." msgstr "" -#: ../general/g.proj/output.c:221 +#: ../general/g.proj/output.c:54 +#, fuzzy +#| msgid "Volume set number %d is not available" +msgid "JSON output is not available." +msgstr "ボリュームセット番号 %d を利用できません" + +#: ../general/g.proj/output.c:212 msgid "Unable to convert projection information to PROJ format" msgstr "" -#: ../general/g.proj/output.c:295 +#: ../general/g.proj/output.c:286 #, c-format msgid "Unable to create PROJ definition from srid <%s>" msgstr "" -#: ../general/g.proj/output.c:337 +#: ../general/g.proj/output.c:328 msgid "Unable to convert to WKT" msgstr "" +#: ../general/g.proj/output.c:433 +#, fuzzy +#| msgid "Unable to insert row: %s" +msgid "Unable to convert to PROJJSON" +msgstr "行: %s を挿入できません" + #: ../general/g.region/main.c:67 msgid "computational region" msgstr "" @@ -11513,10 +11524,10 @@ msgstr "" #: ../raster/r.grow.distance/main.c:392 ../raster/r.li/r.li.daemon/daemon.c:743 #: ../raster/r.mfilter/execute.c:82 ../raster/r.mfilter/execute.c:114 #: ../raster/r.mfilter/execute.c:165 ../raster/r.mfilter/getrow.c:24 -#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:786 -#: ../raster/r.path/main.c:822 ../raster/r.path/main.c:954 -#: ../raster/r.path/main.c:1073 ../raster/r.path/main.c:1103 -#: ../raster/r.path/main.c:1207 ../raster/r.thin/io.c:72 +#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:789 +#: ../raster/r.path/main.c:825 ../raster/r.path/main.c:957 +#: ../raster/r.path/main.c:1076 ../raster/r.path/main.c:1106 +#: ../raster/r.path/main.c:1210 ../raster/r.thin/io.c:72 #: ../raster/r.thin/io.c:82 ../raster3d/r3.in.v5d/v5d.c:1192 #: ../raster3d/r3.in.v5d/v5d.c:1443 ../raster3d/r3.in.v5d/v5d.c:1523 #: ../raster3d/r3.in.v5d/v5d.c:1848 ../raster3d/r3.in.v5d/v5d.c:1859 @@ -11542,9 +11553,9 @@ msgstr "" #: ../raster/r.clump/minsize.c:268 ../raster/r.clump/minsize.c:308 #: ../raster/r.clump/minsize.c:319 ../raster/r.clump/minsize.c:454 #: ../raster/r.clump/minsize.c:481 ../raster/r.clump/minsize.c:557 -#: ../raster/r.path/main.c:791 ../raster/r.path/main.c:827 -#: ../raster/r.path/main.c:962 ../raster/r.path/main.c:1078 -#: ../raster/r.path/main.c:1108 ../raster/r.path/main.c:1213 +#: ../raster/r.path/main.c:794 ../raster/r.path/main.c:830 +#: ../raster/r.path/main.c:965 ../raster/r.path/main.c:1081 +#: ../raster/r.path/main.c:1111 ../raster/r.path/main.c:1216 msgid "Unable to read from temp file" msgstr "" @@ -19886,7 +19897,7 @@ msgstr "" msgid "Starting point %d is outside the current region" msgstr "" -#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:375 +#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:378 #, c-format msgid "Starting vector map <%s> contains no points in the current region" msgstr "" @@ -19900,8 +19911,8 @@ msgid "Calculating flow directions..." msgstr "" #: ../raster/r.drain/main.c:485 ../raster/r.in.lidar/main.c:783 -#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:598 -#: ../raster/r.path/main.c:628 ../raster/r.viewshed/grass.cpp:621 +#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:601 +#: ../raster/r.path/main.c:631 ../raster/r.viewshed/grass.cpp:621 msgid "Writing output raster map..." msgstr "" @@ -20149,84 +20160,96 @@ msgstr "選択されたバンド (%d) は存在しません" msgid "Imagery group <%s> created" msgstr "" -#: ../raster/r.external/proj.c:51 ../raster/r.external/proj.c:93 -#: ../raster/r.in.gdal/proj.c:51 ../raster/r.in.gdal/proj.c:93 -#, c-format -msgid "" -"Input contains an invalid CRS. WKT definition:\n" -"%s" +#: ../raster/r.external/proj.c:36 ../raster/r.external/proj.c:63 +#: ../raster/r.external/proj.c:122 ../raster/r.in.gdal/proj.c:36 +#: ../raster/r.in.gdal/proj.c:63 ../raster/r.in.gdal/proj.c:122 +#: ../vector/v.external/proj.c:92 ../vector/v.external/proj.c:151 +#: ../vector/v.in.ogr/proj.c:162 ../vector/v.in.ogr/proj.c:221 +msgid "Can't get WKT parameter string" msgstr "" -#: ../raster/r.external/proj.c:120 ../raster/r.in.gdal/proj.c:120 +#: ../raster/r.external/proj.c:56 ../raster/r.in.gdal/proj.c:56 +#: ../vector/v.external/proj.c:85 ../vector/v.in.ogr/proj.c:155 +#, fuzzy +#| msgid "Input map contains no data" +msgid "Input contains an invalid CRS." +msgstr "入力マップはデータを含んでいません" + +#: ../raster/r.external/proj.c:66 ../raster/r.in.gdal/proj.c:66 +#: ../vector/v.external/proj.c:95 ../vector/v.in.ogr/proj.c:165 +#, fuzzy +#| msgid "Transect definition" +msgid "WKT definition:" +msgstr "横切定義" + +#: ../raster/r.external/proj.c:99 ../raster/r.in.gdal/proj.c:99 +#: ../vector/v.external/proj.c:128 ../vector/v.in.ogr/proj.c:198 msgid "No projection information available" msgstr "" -#: ../raster/r.external/proj.c:133 -msgid "Unable to convert input map coordinate reference system to GRASS format; cannot create new project." +#: ../raster/r.external/proj.c:114 ../raster/r.in.gdal/proj.c:114 +#: ../vector/v.external/proj.c:143 ../vector/v.in.ogr/proj.c:213 +msgid "Unable to convert input map projection to GRASS format; cannot create new project." msgstr "" -#: ../raster/r.external/proj.c:139 ../raster/r.in.gdal/main.c:1039 -#: ../raster/r.in.gdal/proj.c:138 ../vector/v.external/proj.c:171 -#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:305 +#: ../raster/r.external/proj.c:127 ../raster/r.in.gdal/main.c:1039 +#: ../raster/r.in.gdal/proj.c:127 ../vector/v.external/proj.c:156 +#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:226 #, fuzzy, c-format msgid "Unable to create new project <%s>" msgstr "レポートファイルを作成できません <%s>" -#: ../raster/r.external/proj.c:165 ../raster/r.in.gdal/proj.c:164 -#: ../vector/v.external/proj.c:197 ../vector/v.in.ogr/proj.c:331 +#: ../raster/r.external/proj.c:157 ../raster/r.in.gdal/proj.c:157 +#: ../vector/v.external/proj.c:186 ../vector/v.in.ogr/proj.c:256 msgid "Unable to convert input map projection information to GRASS format." msgstr "" -#: ../raster/r.external/proj.c:192 ../raster/r.in.gdal/proj.c:192 +#: ../raster/r.external/proj.c:238 ../raster/r.in.gdal/proj.c:238 #: ../raster/r.in.lidar/projection.c:126 -#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:228 -#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:360 +#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:267 +#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:337 msgid "Over-riding projection check" msgstr "" -#: ../raster/r.external/proj.c:200 ../raster/r.in.gdal/proj.c:200 -#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 -#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.external/proj.c:236 -#: ../vector/v.in.lidar/projection.c:30 ../vector/v.in.ogr/proj.c:368 -msgid "" -"Coordinate reference system of dataset does not appear to match current project.\n" -"\n" -msgstr "" - -#: ../raster/r.external/proj.c:207 ../raster/r.external/proj.c:216 -#: ../raster/r.in.gdal/proj.c:207 ../raster/r.in.gdal/proj.c:216 -#: ../vector/v.external/proj.c:243 ../vector/v.external/proj.c:252 -#: ../vector/v.in.ogr/proj.c:375 ../vector/v.in.ogr/proj.c:384 +#: ../raster/r.external/proj.c:244 ../raster/r.in.gdal/proj.c:244 +#: ../vector/v.external/proj.c:273 ../vector/v.in.ogr/proj.c:343 #, fuzzy -msgid "Project PROJ_INFO is:\n" -msgstr "ロケーションの PROJ_INFO 情報は:\n" +msgid "Coordinate reference system of dataset does not appear to match current project.\n" +msgstr "xyz座標系の代わりにマップ座標系を" -#: ../raster/r.external/proj.c:236 ../raster/r.external/proj.c:243 -#: ../raster/r.in.gdal/proj.c:236 ../raster/r.in.gdal/proj.c:243 -#: ../vector/v.external/proj.c:272 ../vector/v.external/proj.c:279 -#: ../vector/v.in.ogr/proj.c:404 ../vector/v.in.ogr/proj.c:411 -msgid "Dataset PROJ_INFO is:\n" +#: ../raster/r.external/proj.c:258 ../raster/r.in.gdal/proj.c:258 +#: ../vector/v.external/proj.c:287 ../vector/v.in.ogr/proj.c:357 +#, fuzzy +#| msgid "Dataset PROJ_INFO is:\n" +msgid "Dataset CRS is:\n" msgstr "データセットの PROJ_INFO 情報は:\n" -#: ../raster/r.external/proj.c:324 ../raster/r.in.lidar/projection.c:89 -#: ../raster/r.in.pdal/projection.c:87 ../raster3d/r3.in.lidar/projection.c:90 -#: ../vector/v.external/proj.c:360 ../vector/v.in.lidar/projection.c:87 -#: ../vector/v.in.ogr/proj.c:492 ../vector/v.in.pdal/projection.c:87 +#: ../raster/r.external/proj.c:272 ../raster/r.in.gdal/proj.c:272 +#: ../vector/v.external/proj.c:301 ../vector/v.in.ogr/proj.c:371 +#, fuzzy +msgid "Project CRS is:\n" +msgstr "ロケーションの PROJ_INFO 情報は:\n" + +#: ../raster/r.external/proj.c:286 ../raster/r.in.gdal/proj.c:286 +#: ../raster/r.in.lidar/projection.c:89 ../raster/r.in.pdal/projection.c:87 +#: ../raster3d/r3.in.lidar/projection.c:90 ../vector/v.external/proj.c:315 +#: ../vector/v.in.lidar/projection.c:87 ../vector/v.in.ogr/proj.c:385 +#: ../vector/v.in.pdal/projection.c:87 #, c-format msgid "" "\n" "In case of no significant differences in the coordinate reference system definitions, use the -o flag to ignore them and use current project definition.\n" msgstr "" -#: ../raster/r.external/proj.c:328 ../raster/r.in.gdal/proj.c:327 -#: ../vector/v.external/proj.c:364 ../vector/v.in.ogr/proj.c:496 +#: ../raster/r.external/proj.c:290 ../raster/r.in.gdal/proj.c:290 +#: ../vector/v.external/proj.c:319 ../vector/v.in.ogr/proj.c:389 msgid "Consider generating a new project from the input dataset using the 'project' parameter.\n" msgstr "" -#: ../raster/r.external/proj.c:348 ../raster/r.in.gdal/proj.c:347 +#: ../raster/r.external/proj.c:310 ../raster/r.in.gdal/proj.c:310 #: ../raster/r.in.lidar/projection.c:136 ../raster/r.in.pdal/projection.c:134 -#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:384 -#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:516 +#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:339 +#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:409 msgid "Coordinate reference system of input dataset and current project appear to match" msgstr "" @@ -20840,7 +20863,7 @@ msgstr "" msgid "Region resolution shouldn't be lesser than map %s resolution. Run g.region raster=%s to set proper resolution" msgstr "" -#: ../raster/r.geomorphon/pattern.c:228 +#: ../raster/r.geomorphon/pattern.c:229 #, c-format msgid "Internal error in %s()" msgstr "" @@ -21814,8 +21837,7 @@ msgstr "* GCPテーブルの出力投影: %s" msgid "Error in %s (can't re-project GCP %i)" msgstr "" -#: ../raster/r.in.gdal/main.c:983 ../vector/v.external/proj.c:165 -#: ../vector/v.in.lidar/main.c:516 +#: ../raster/r.in.gdal/main.c:983 ../vector/v.in.lidar/main.c:516 msgid "Unable to convert input map CRS to GRASS format; cannot create new project." msgstr "" @@ -21869,16 +21891,6 @@ msgstr "" msgid "Unable to open file <%s>: %s." msgstr "" -#: ../raster/r.in.gdal/proj.c:132 ../vector/v.in.ogr/proj.c:299 -msgid "Unable to convert input map projection to GRASS format; cannot create new project." -msgstr "" - -#: ../raster/r.in.gdal/proj.c:323 -msgid "" -"\n" -"In case of no significant differences in the CRS definitions, use the -o flag to ignore them and use current project definition.\n" -msgstr "" - #: ../raster/r.in.gridatb/file_io.c:16 #, fuzzy, c-format #| msgid "Unable to open file <%s>" @@ -22240,6 +22252,13 @@ msgstr "pth オプションの指定無しでは,百分率を計算できま msgid "Unable to calculate trimmed mean without the trim option specified!" msgstr "trim オプション無しでは,刈り込み平均を計算できません" +#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 +#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.in.lidar/projection.c:30 +msgid "" +"Coordinate reference system of dataset does not appear to match current project.\n" +"\n" +msgstr "" + #: ../raster/r.in.lidar/projection.c:38 ../raster/r.in.pdal/projection.c:36 #: ../vector/v.in.lidar/projection.c:36 ../vector/v.in.pdal/projection.c:36 #, fuzzy @@ -25104,114 +25123,114 @@ msgstr "フォント設定 " msgid "Do not break lines (faster for single-direction bitmask encoding)" msgstr "" -#: ../raster/r.path/main.c:384 +#: ../raster/r.path/main.c:387 msgid "No start point(s) specified" msgstr "" -#: ../raster/r.path/main.c:394 +#: ../raster/r.path/main.c:397 #, c-format msgid "Reading raster values map <%s> ..." msgstr "" -#: ../raster/r.path/main.c:399 +#: ../raster/r.path/main.c:402 #, fuzzy, c-format #| msgid "Unable to open temporary file <%s>" msgid "Unable to open temporary file <%s>: %s" msgstr "一時ファイル <%s> を開けません" -#: ../raster/r.path/main.c:411 ../raster/r.path/main.c:489 -#: ../raster/r.path/main.c:506 +#: ../raster/r.path/main.c:414 ../raster/r.path/main.c:492 +#: ../raster/r.path/main.c:509 msgid "Unable to write to tempfile" msgstr "" -#: ../raster/r.path/main.c:419 +#: ../raster/r.path/main.c:422 msgid "Unable to read range file" msgstr "" -#: ../raster/r.path/main.c:422 +#: ../raster/r.path/main.c:425 #, c-format msgid "Invalid directions map <%s>" msgstr "" -#: ../raster/r.path/main.c:427 +#: ../raster/r.path/main.c:430 msgid "Directional degrees can not be > 360" msgstr "" -#: ../raster/r.path/main.c:433 +#: ../raster/r.path/main.c:436 msgid "Directional degrees divided by 45 can not be > 8" msgstr "" -#: ../raster/r.path/main.c:438 +#: ../raster/r.path/main.c:441 #, c-format msgid "Bitmask encoded directions can not be > %d" msgstr "" -#: ../raster/r.path/main.c:445 +#: ../raster/r.path/main.c:448 msgid "Input direction format assumed to be degrees CCW from East divided by 45" msgstr "" -#: ../raster/r.path/main.c:450 +#: ../raster/r.path/main.c:453 msgid "Input direction format assumed to be bitmask encoded without Knight's move" msgstr "" -#: ../raster/r.path/main.c:456 +#: ../raster/r.path/main.c:459 msgid "Input direction format assumed to be degrees CCW from East" msgstr "" -#: ../raster/r.path/main.c:460 +#: ../raster/r.path/main.c:463 msgid "Input direction format assumed to be bitmask encoded with Knight's move" msgstr "" -#: ../raster/r.path/main.c:465 +#: ../raster/r.path/main.c:468 #, c-format msgid "Unable to detect format of input direction map <%s>" msgstr "" -#: ../raster/r.path/main.c:469 +#: ../raster/r.path/main.c:472 #, c-format msgid "Invalid directions format '%s'" msgstr "" -#: ../raster/r.path/main.c:471 +#: ../raster/r.path/main.c:474 #, c-format msgid "Reading direction map <%s> ..." msgstr "" -#: ../raster/r.path/main.c:525 +#: ../raster/r.path/main.c:528 msgid "Processing start points..." msgstr "" -#: ../raster/r.path/main.c:535 ../vector/v.buffer/main.c:410 +#: ../raster/r.path/main.c:538 ../vector/v.buffer/main.c:410 #: ../vector/v.in.ogr/main.c:881 ../vector/v.overlay/main.c:237 #: ../vector/v.voronoi/main.c:215 msgid "Unable to create temporary vector map" msgstr "" -#: ../raster/r.path/main.c:541 ../raster/r.path/main.c:557 +#: ../raster/r.path/main.c:544 ../raster/r.path/main.c:560 #, c-format msgid "No path at row %d, col %d" msgstr "" -#: ../raster/r.path/main.c:546 ../vector/v.overlay/area_area.c:134 +#: ../raster/r.path/main.c:549 ../vector/v.overlay/area_area.c:134 #: ../vector/v.overlay/line_area.c:255 msgid "Breaking lines..." msgstr "ラインを分断中、、、" -#: ../raster/r.path/main.c:684 +#: ../raster/r.path/main.c:687 msgid "Unable to increase point list" msgstr "" -#: ../raster/r.path/main.c:887 +#: ../raster/r.path/main.c:890 #, c-format msgid "No path from row %d, col %d" msgstr "" -#: ../raster/r.path/main.c:901 +#: ../raster/r.path/main.c:904 #, c-format msgid "Invalid direction %d" msgstr "" -#: ../raster/r.path/main.c:999 +#: ../raster/r.path/main.c:1002 msgid "Path is leaving the current region" msgstr "" @@ -38813,39 +38832,17 @@ msgstr "" msgid "Link to vector map <%s> created." msgstr "" -#: ../vector/v.external/proj.c:35 ../vector/v.in.ogr/main.c:741 -#: ../vector/v.in.ogr/proj.c:36 +#: ../vector/v.external/proj.c:34 ../vector/v.in.ogr/main.c:741 +#: ../vector/v.in.ogr/proj.c:34 #, c-format msgid "Geometry column <%s> not found in input layer <%s>" msgstr "" -#: ../vector/v.external/proj.c:49 ../vector/v.in.ogr/proj.c:50 -msgid "Unable to convert input layer projection information to GRASS format for checking" -msgstr "" - -#: ../vector/v.external/proj.c:55 ../vector/v.external/proj.c:85 -#: ../vector/v.in.ogr/proj.c:56 ../vector/v.in.ogr/proj.c:86 -msgid "Can't get WKT parameter string" -msgstr "" - -#: ../vector/v.external/proj.c:58 ../vector/v.external/proj.c:88 -#: ../vector/v.in.ogr/proj.c:59 ../vector/v.in.ogr/proj.c:89 -#, c-format -msgid "" -"WKT definition:\n" -"%s" -msgstr "" - -#: ../vector/v.external/proj.c:69 ../vector/v.in.ogr/proj.c:70 +#: ../vector/v.external/proj.c:46 ../vector/v.in.ogr/proj.c:46 #, c-format msgid "No projection information available for layer <%s>" msgstr "" -#: ../vector/v.external/proj.c:78 ../vector/v.in.ogr/proj.c:79 -#, c-format -msgid "Projection for layer <%s> does not contain a valid CRS" -msgstr "" - #: ../vector/v.extract/extract.c:202 #, c-format msgid "No category found for area %d. Skipping." @@ -40606,16 +40603,16 @@ msgstr "" msgid "The spatial filter does not overlap with OGR layer <%s>. Nothing to import." msgstr "" -#: ../vector/v.in.ogr/proj.c:168 +#: ../vector/v.in.ogr/proj.c:85 msgid "Layer projections are unreadable" msgstr "" -#: ../vector/v.in.ogr/proj.c:184 +#: ../vector/v.in.ogr/proj.c:93 #, c-format msgid "Projection for layer <%s> is unreadable" msgstr "" -#: ../vector/v.in.ogr/proj.c:236 +#: ../vector/v.in.ogr/proj.c:113 #, c-format msgid "Projection of layer <%s> is different from projection of layer <%s>" msgstr "" @@ -48085,67 +48082,6 @@ msgstr "PNG ドライバーから BMP 画像を見る" msgid "Image file" msgstr "画像ファイル" -#, fuzzy, c-format -#~| msgid "Unable to create %s" -#~ msgid "Unable to seek: %s" -#~ msgstr "%s が作成できません" - -#~ msgid "Both -s and -h doesn't make sense" -#~ msgstr "エラー 2029" - -#~ msgid "Use -M or -s, not both" -#~ msgstr "エラー 2029" - -#~ msgid "Print the stats in shell script style" -#~ msgstr "シェルスクリプトスタイルの統計を出力します" - -#~ msgid "Field separator for shell script style output" -#~ msgstr "シェルスクリプトスタイルのフィールドセパレーターを出力します" - -#~ msgid "Format: layer[/layer name] table key database driver" -#~ msgstr "フォーマット: レイヤー[/レイヤー名] テーブル キー データベース ドライバー" - -#~ msgid "Output RRR:GGG:BBB color values for each profile point" -#~ msgstr "各プロファイルポイントの RRR:GGG:BBB 形式の色値を出力" - -#, c-format -#~ msgid "Test %s." -#~ msgstr "テスト %s. " - -#~ msgid "have" -#~ msgstr "所有" - -#~ msgid "read " -#~ msgstr "読込" - -#~ msgid "Everyone" -#~ msgstr "各位" - -#~ msgid "has" -#~ msgstr "所有" - -#~ msgid "Only you" -#~ msgstr "本人のみ" - -#~ msgid "now" -#~ msgstr "現在" - -#~ msgid "will" -#~ msgstr "今後" - -#, fuzzy, c-format -#~ msgid "Only one of -%c, -%c, -%c, -%c or -%c flags may be specified" -#~ msgstr "入力するファイル" - -#~ msgid "unset" -#~ msgstr "解除" - -#~ msgid "changed" -#~ msgstr "変更" - -#~ msgid "reduced" -#~ msgstr "減少" - #~ msgid "" #~ "\n" #~ "%d classes, %.2f%% points stable\n" @@ -48403,6 +48339,9 @@ msgstr "画像ファイル" #~ msgid "Borehole length [m]" #~ msgstr "ライン長" +#~ msgid "Both -s and -h doesn't make sense" +#~ msgstr "エラー 2029" + #, fuzzy #~ msgid "Boxplot color" #~ msgstr "テキストカラー" @@ -49156,6 +49095,9 @@ msgstr "画像ファイル" #~ msgid "Evaluation" #~ msgstr "フォント" +#~ msgid "Everyone" +#~ msgstr "各位" + #, fuzzy #~ msgid "Example: 1,3,7-9,13" #~ msgstr "例: 1.4,3.8,13 " @@ -49239,6 +49181,9 @@ msgstr "画像ファイル" #~ msgid "Field separator" #~ msgstr "フィールドセパレーターの出力" +#~ msgid "Field separator for shell script style output" +#~ msgstr "シェルスクリプトスタイルのフィールドセパレーターを出力します" + #, fuzzy #~ msgid "Field separator in input text files" #~ msgstr "指定された dig_att ファイルを開けません" @@ -49356,6 +49301,9 @@ msgstr "画像ファイル" #~ msgid "Format: All values must be >0" #~ msgstr "閾値は >= 0 でなければなりません " +#~ msgid "Format: layer[/layer name] table key database driver" +#~ msgstr "フォーマット: レイヤー[/レイヤー名] テーブル キー データベース ドライバー" + #, fuzzy #~ msgid "Full path to file with list of HDF files" #~ msgstr "再分類ルールを示すファイルの場所" @@ -51975,6 +51923,10 @@ msgstr "画像ファイル" #~ msgid "Only draw fills (no outlines) for areas and points" #~ msgstr "描画のみ(アウトラインなし) エリアとポイントを埋めます" +#, fuzzy, c-format +#~ msgid "Only one of -%c, -%c, -%c, -%c or -%c flags may be specified" +#~ msgstr "入力するファイル" + #, fuzzy #~ msgid "Only print selected polygons" #~ msgstr "セルの個数のみ出力" @@ -51983,6 +51935,9 @@ msgstr "画像ファイル" #~ msgid "Only tune and train model, do not predict" #~ msgstr "検索クエリーのテストのみ、実行しないでください" +#~ msgid "Only you" +#~ msgstr "本人のみ" + #, fuzzy #~ msgid "Opt files" #~ msgstr "入力するファイル" @@ -52051,6 +52006,9 @@ msgstr "画像ファイル" #~ msgid "Output Potential file" #~ msgstr "TIFFワールドファイルを出力 " +#~ msgid "Output RRR:GGG:BBB color values for each profile point" +#~ msgstr "各プロファイルポイントの RRR:GGG:BBB 形式の色値を出力" + #, fuzzy #~ msgid "Output absolute file name for the use table" #~ msgstr "基準システム表のデータベース名" @@ -52486,6 +52444,9 @@ msgstr "画像ファイル" #~ msgid "Print the request URL and exit" #~ msgstr "テーブルを出力して終了" +#~ msgid "Print the stats in shell script style" +#~ msgstr "シェルスクリプトスタイルの統計を出力します" + #, fuzzy #~ msgid "Print the threshold value in shell script style" #~ msgstr "シェルスクリプトスタイルの統計を出力します" @@ -53207,6 +53168,10 @@ msgstr "画像ファイル" #~ msgid "Terrain options" #~ msgstr "入力オプション " +#, c-format +#~ msgid "Test %s." +#~ msgstr "テスト %s. " + #, fuzzy #~ msgid "Test presence locations" #~ msgstr "参照位置" @@ -53469,6 +53434,11 @@ msgstr "画像ファイル" #~ msgid "Unable to read REF file for group <%s>" #~ msgstr "グループ <%s> のサブグループ<%s> のREFファイルが読み取れません" +#, fuzzy, c-format +#~| msgid "Unable to create %s" +#~ msgid "Unable to seek: %s" +#~ msgstr "%s が作成できません" + #, fuzzy #~ msgid "Unacceptable conditions for Designated Fill" #~ msgstr "シグネチャファイルが開けません" @@ -53514,6 +53484,9 @@ msgstr "画像ファイル" #~ msgid "Uploads values of multiple rasters at positions of vector points to the table." #~ msgstr "ベクトルポイントの位置のベクトル値テーブルへアップロード" +#~ msgid "Use -M or -s, not both" +#~ msgstr "エラー 2029" + #, fuzzy #~ msgid "Use a random seed" #~ msgstr "上の曲面2Dラスターマップ" @@ -53894,6 +53867,9 @@ msgstr "画像ファイル" #~ msgid "centerpoint" #~ msgstr "重心" +#~ msgid "changed" +#~ msgstr "変更" + #, fuzzy #~ msgid "channels" #~ msgstr "変更" @@ -53989,6 +53965,12 @@ msgstr "画像ファイル" #~ msgid "grid lines" #~ msgstr "ベクトルライン" +#~ msgid "has" +#~ msgstr "所有" + +#~ msgid "have" +#~ msgstr "所有" + #, fuzzy #~ msgid "hide outliers" #~ msgstr "異常値の許容限界" @@ -54144,6 +54126,9 @@ msgstr "画像ファイル" #~ msgid "nodata value in output files" #~ msgstr "入力ファイルのデータ値の列番号" +#~ msgid "now" +#~ msgstr "現在" + #~ msgid "npoints = %d, nterrain = %d" #~ msgstr "nポイント = %d, n地形 = %d " @@ -54225,6 +54210,12 @@ msgstr "画像ファイル" #~ msgid "radius= and x_radius=/y_radius= are mutually exclusive" #~ msgstr "入力= そしてソース= は相互排他的です" +#~ msgid "read " +#~ msgstr "読込" + +#~ msgid "reduced" +#~ msgstr "減少" + #, fuzzy #~ msgid "resolution of plot" #~ msgstr "解像度" @@ -54296,6 +54287,9 @@ msgstr "画像ファイル" #~ msgid "trendline width" #~ msgstr "ベクトルライン幅" +#~ msgid "unset" +#~ msgstr "解除" + #, fuzzy #~ msgid "uri destination" #~ msgstr "位置" @@ -54339,6 +54333,9 @@ msgstr "画像ファイル" #~ msgid "width of the boxplot median line" #~ msgstr "フォントファイルへのパス" +#~ msgid "will" +#~ msgstr "今後" + #, fuzzy #~ msgid "x-y extent of the Gaussian filter (i.zc)" #~ msgstr "ガウシアンフィルタのx-y範囲" diff --git a/locale/po/grassmods_ko.po b/locale/po/grassmods_ko.po index d58c6299dd8..ca728f423d4 100644 --- a/locale/po/grassmods_ko.po +++ b/locale/po/grassmods_ko.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: grassmods_ko\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-08-26 14:19+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Korean \n" @@ -175,7 +175,7 @@ msgstr "" #: ../general/g.proj/main.c:90 ../general/g.proj/main.c:99 #: ../general/g.proj/main.c:105 ../general/g.proj/main.c:114 #: ../general/g.proj/main.c:126 ../general/g.proj/main.c:135 -#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:244 +#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:245 #: ../general/g.region/main.c:91 ../general/g.region/main.c:97 #: ../general/g.region/main.c:102 ../general/g.region/main.c:108 #: ../general/g.region/main.c:113 ../general/g.region/main.c:118 @@ -303,13 +303,12 @@ msgstr "" #: ../db/db.connect/main.c:144 ../general/g.findfile/main.c:187 #: ../general/g.list/list.c:122 ../general/g.mapset/main.c:119 -#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:54 -#: ../general/g.proj/output.c:360 ../general/g.region/main.c:471 -#: ../general/g.version/main.c:140 ../misc/m.measure/main.c:87 -#: ../raster/r.describe/dumplist.c:38 ../raster/r.distance/report.c:211 -#: ../raster/r.distance/report.c:218 ../raster/r.distance/report.c:225 -#: ../raster/r.info/main.c:147 ../raster/r.proj/main.c:487 -#: ../raster/r.regression.line/main.c:101 +#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:351 +#: ../general/g.region/main.c:471 ../general/g.version/main.c:140 +#: ../misc/m.measure/main.c:87 ../raster/r.describe/dumplist.c:38 +#: ../raster/r.distance/report.c:211 ../raster/r.distance/report.c:218 +#: ../raster/r.distance/report.c:225 ../raster/r.info/main.c:147 +#: ../raster/r.proj/main.c:487 ../raster/r.regression.line/main.c:101 #: ../raster/r.regression.multi/main.c:197 #: ../raster/r.regression.multi/main.c:566 #: ../raster/r.stats.quantile/main.c:430 ../raster/r.stats.quantile/main.c:447 @@ -328,7 +327,7 @@ msgstr "" msgid "Failed to initialize JSON object. Out of memory?" msgstr "" -#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:277 +#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:278 #: ../general/g.region/main.c:427 ../general/g.version/main.c:153 #: ../imagery/i.group/main.c:137 ../misc/m.measure/main.c:100 #: ../raster/r.proj/main.c:270 ../raster/r.regression.line/main.c:114 @@ -482,7 +481,7 @@ msgstr "" msgid "Lists all databases for a given driver and location." msgstr "주어진 드라이버와 로케이션을 위한 모든 데이터베이스를 나열합니다." -#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:383 +#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:374 #: ../general/g.region/main.c:990 ../general/g.version/main.c:409 #: ../imagery/i.group/main.c:301 ../raster/r.category/main.c:412 #: ../raster/r.describe/dumplist.c:71 ../raster/r.info/main.c:1000 @@ -6463,10 +6462,10 @@ msgstr "출력 파일 %s를 열 수 없습니다" msgid "Converts between PPM/PGM and PNG image formats." msgstr "" -#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:141 -#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:140 -#: ../vector/v.external/proj.c:173 ../vector/v.in.lidar/main.c:525 -#: ../vector/v.in.ogr/proj.c:307 +#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:129 +#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:129 +#: ../vector/v.external/proj.c:158 ../vector/v.in.lidar/main.c:525 +#: ../vector/v.in.ogr/proj.c:228 #, fuzzy, c-format msgid "Project <%s> created" msgstr "래스터 지도 <%s>를 생성했습니다." @@ -6779,55 +6778,65 @@ msgstr "" msgid "Name of new project (location) to create" msgstr "출력 표고 래스터 지도를 위한 이름" -#: ../general/g.proj/main.c:239 -msgid "plain;Human readable text output;shell;shell script style text output;json;JSON (JavaScript Object Notation);wkt;Well-known text output;proj4;PROJ.4 style text output;" +#: ../general/g.proj/main.c:240 +msgid "plain;Human readable text output;shell;shell script style text output;wkt;Well-known text output;projjson;JSON (JavaScript Object Notation) version of WKT;proj4;PROJ.4 style text output;" msgstr "" -#: ../general/g.proj/main.c:271 ../vector/v.what.rast/main.c:159 +#: ../general/g.proj/main.c:272 ../vector/v.what.rast/main.c:159 #, c-format msgid "The format option can only be used with -%c flag" msgstr "" -#: ../general/g.proj/main.c:283 +#: ../general/g.proj/main.c:284 msgid "Flag 'j' is deprecated and will be removed in a future release. Please use format=proj4 instead." msgstr "" -#: ../general/g.proj/main.c:292 +#: ../general/g.proj/main.c:293 msgid "Flag 'w' is deprecated and will be removed in a future release. Please use format=wkt instead." msgstr "" -#: ../general/g.proj/main.c:312 +#: ../general/g.proj/main.c:313 #, c-format msgid "Only one of '%s', '%s', '%s', '%s' or '%s' options may be specified" msgstr "" -#: ../general/g.proj/main.c:364 +#: ../general/g.proj/main.c:365 msgid "Projection files missing" msgstr "" -#: ../general/g.proj/main.c:392 +#: ../general/g.proj/main.c:393 #, c-format msgid "No output format specified. Define one of the options: plain, shell, json, wkt, or proj4 using the -%c flag." msgstr "" -#: ../general/g.proj/main.c:397 +#: ../general/g.proj/main.c:398 #, c-format msgid "No output format specified. Define one of the options: plain, shell, json, or proj4 using the -%c flag." msgstr "" -#: ../general/g.proj/output.c:221 +#: ../general/g.proj/output.c:54 +msgid "JSON output is not available." +msgstr "" + +#: ../general/g.proj/output.c:212 msgid "Unable to convert projection information to PROJ format" msgstr "" -#: ../general/g.proj/output.c:295 +#: ../general/g.proj/output.c:286 #, c-format msgid "Unable to create PROJ definition from srid <%s>" msgstr "" -#: ../general/g.proj/output.c:337 +#: ../general/g.proj/output.c:328 msgid "Unable to convert to WKT" msgstr "" +#: ../general/g.proj/output.c:433 +#, fuzzy +#| msgid "Unable to insert row: %s" +msgid "Unable to convert to PROJJSON" +msgstr "행을 삽입할 수 없습니다: %s" + #: ../general/g.region/main.c:67 msgid "computational region" msgstr "" @@ -11481,10 +11490,10 @@ msgstr "" #: ../raster/r.grow.distance/main.c:392 ../raster/r.li/r.li.daemon/daemon.c:743 #: ../raster/r.mfilter/execute.c:82 ../raster/r.mfilter/execute.c:114 #: ../raster/r.mfilter/execute.c:165 ../raster/r.mfilter/getrow.c:24 -#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:786 -#: ../raster/r.path/main.c:822 ../raster/r.path/main.c:954 -#: ../raster/r.path/main.c:1073 ../raster/r.path/main.c:1103 -#: ../raster/r.path/main.c:1207 ../raster/r.thin/io.c:72 +#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:789 +#: ../raster/r.path/main.c:825 ../raster/r.path/main.c:957 +#: ../raster/r.path/main.c:1076 ../raster/r.path/main.c:1106 +#: ../raster/r.path/main.c:1210 ../raster/r.thin/io.c:72 #: ../raster/r.thin/io.c:82 ../raster3d/r3.in.v5d/v5d.c:1192 #: ../raster3d/r3.in.v5d/v5d.c:1443 ../raster3d/r3.in.v5d/v5d.c:1523 #: ../raster3d/r3.in.v5d/v5d.c:1848 ../raster3d/r3.in.v5d/v5d.c:1859 @@ -11509,9 +11518,9 @@ msgstr "최종 영역 ID를 할당하는 중입니다..." #: ../raster/r.clump/minsize.c:268 ../raster/r.clump/minsize.c:308 #: ../raster/r.clump/minsize.c:319 ../raster/r.clump/minsize.c:454 #: ../raster/r.clump/minsize.c:481 ../raster/r.clump/minsize.c:557 -#: ../raster/r.path/main.c:791 ../raster/r.path/main.c:827 -#: ../raster/r.path/main.c:962 ../raster/r.path/main.c:1078 -#: ../raster/r.path/main.c:1108 ../raster/r.path/main.c:1213 +#: ../raster/r.path/main.c:794 ../raster/r.path/main.c:830 +#: ../raster/r.path/main.c:965 ../raster/r.path/main.c:1081 +#: ../raster/r.path/main.c:1111 ../raster/r.path/main.c:1216 msgid "Unable to read from temp file" msgstr "임시 파일로부터 읽을 수 없습니다" @@ -19844,7 +19853,7 @@ msgstr "" msgid "Starting point %d is outside the current region" msgstr "" -#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:375 +#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:378 #, c-format msgid "Starting vector map <%s> contains no points in the current region" msgstr "" @@ -19858,8 +19867,8 @@ msgid "Calculating flow directions..." msgstr "흐름 방향을 계산하는 중입니다..." #: ../raster/r.drain/main.c:485 ../raster/r.in.lidar/main.c:783 -#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:598 -#: ../raster/r.path/main.c:628 ../raster/r.viewshed/grass.cpp:621 +#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:601 +#: ../raster/r.path/main.c:631 ../raster/r.viewshed/grass.cpp:621 msgid "Writing output raster map..." msgstr "출력 래스터 지도를 쓰는 중입니다..." @@ -20107,84 +20116,94 @@ msgstr "" msgid "Imagery group <%s> created" msgstr "" -#: ../raster/r.external/proj.c:51 ../raster/r.external/proj.c:93 -#: ../raster/r.in.gdal/proj.c:51 ../raster/r.in.gdal/proj.c:93 -#, c-format -msgid "" -"Input contains an invalid CRS. WKT definition:\n" -"%s" +#: ../raster/r.external/proj.c:36 ../raster/r.external/proj.c:63 +#: ../raster/r.external/proj.c:122 ../raster/r.in.gdal/proj.c:36 +#: ../raster/r.in.gdal/proj.c:63 ../raster/r.in.gdal/proj.c:122 +#: ../vector/v.external/proj.c:92 ../vector/v.external/proj.c:151 +#: ../vector/v.in.ogr/proj.c:162 ../vector/v.in.ogr/proj.c:221 +msgid "Can't get WKT parameter string" +msgstr "WKT 매개변수 문자열을 얻을 수 없습니다" + +#: ../raster/r.external/proj.c:56 ../raster/r.in.gdal/proj.c:56 +#: ../vector/v.external/proj.c:85 ../vector/v.in.ogr/proj.c:155 +msgid "Input contains an invalid CRS." msgstr "" -#: ../raster/r.external/proj.c:120 ../raster/r.in.gdal/proj.c:120 +#: ../raster/r.external/proj.c:66 ../raster/r.in.gdal/proj.c:66 +#: ../vector/v.external/proj.c:95 ../vector/v.in.ogr/proj.c:165 +#, fuzzy +#| msgid "Definition" +msgid "WKT definition:" +msgstr "정의" + +#: ../raster/r.external/proj.c:99 ../raster/r.in.gdal/proj.c:99 +#: ../vector/v.external/proj.c:128 ../vector/v.in.ogr/proj.c:198 msgid "No projection information available" msgstr "" -#: ../raster/r.external/proj.c:133 +#: ../raster/r.external/proj.c:114 ../raster/r.in.gdal/proj.c:114 +#: ../vector/v.external/proj.c:143 ../vector/v.in.ogr/proj.c:213 #, fuzzy -msgid "Unable to convert input map coordinate reference system to GRASS format; cannot create new project." +msgid "Unable to convert input map projection to GRASS format; cannot create new project." msgstr "입력 지도의 투영을 GRASS 포맷으로 변환할 수 없습니다; 새 로케이션을 생성할 수 없습니다." -#: ../raster/r.external/proj.c:139 ../raster/r.in.gdal/main.c:1039 -#: ../raster/r.in.gdal/proj.c:138 ../vector/v.external/proj.c:171 -#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:305 +#: ../raster/r.external/proj.c:127 ../raster/r.in.gdal/main.c:1039 +#: ../raster/r.in.gdal/proj.c:127 ../vector/v.external/proj.c:156 +#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:226 #, fuzzy, c-format msgid "Unable to create new project <%s>" msgstr "로케이션 <%s>를 생성할 수 없습니다" -#: ../raster/r.external/proj.c:165 ../raster/r.in.gdal/proj.c:164 -#: ../vector/v.external/proj.c:197 ../vector/v.in.ogr/proj.c:331 +#: ../raster/r.external/proj.c:157 ../raster/r.in.gdal/proj.c:157 +#: ../vector/v.external/proj.c:186 ../vector/v.in.ogr/proj.c:256 msgid "Unable to convert input map projection information to GRASS format." msgstr "" -#: ../raster/r.external/proj.c:192 ../raster/r.in.gdal/proj.c:192 +#: ../raster/r.external/proj.c:238 ../raster/r.in.gdal/proj.c:238 #: ../raster/r.in.lidar/projection.c:126 -#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:228 -#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:360 +#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:267 +#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:337 msgid "Over-riding projection check" msgstr "" -#: ../raster/r.external/proj.c:200 ../raster/r.in.gdal/proj.c:200 -#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 -#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.external/proj.c:236 -#: ../vector/v.in.lidar/projection.c:30 ../vector/v.in.ogr/proj.c:368 -msgid "" -"Coordinate reference system of dataset does not appear to match current project.\n" -"\n" +#: ../raster/r.external/proj.c:244 ../raster/r.in.gdal/proj.c:244 +#: ../vector/v.external/proj.c:273 ../vector/v.in.ogr/proj.c:343 +msgid "Coordinate reference system of dataset does not appear to match current project.\n" msgstr "" -#: ../raster/r.external/proj.c:207 ../raster/r.external/proj.c:216 -#: ../raster/r.in.gdal/proj.c:207 ../raster/r.in.gdal/proj.c:216 -#: ../vector/v.external/proj.c:243 ../vector/v.external/proj.c:252 -#: ../vector/v.in.ogr/proj.c:375 ../vector/v.in.ogr/proj.c:384 -msgid "Project PROJ_INFO is:\n" -msgstr "" +#: ../raster/r.external/proj.c:258 ../raster/r.in.gdal/proj.c:258 +#: ../vector/v.external/proj.c:287 ../vector/v.in.ogr/proj.c:357 +#, fuzzy +msgid "Dataset CRS is:\n" +msgstr "값이 없는 자료" -#: ../raster/r.external/proj.c:236 ../raster/r.external/proj.c:243 -#: ../raster/r.in.gdal/proj.c:236 ../raster/r.in.gdal/proj.c:243 -#: ../vector/v.external/proj.c:272 ../vector/v.external/proj.c:279 -#: ../vector/v.in.ogr/proj.c:404 ../vector/v.in.ogr/proj.c:411 -msgid "Dataset PROJ_INFO is:\n" -msgstr "" +#: ../raster/r.external/proj.c:272 ../raster/r.in.gdal/proj.c:272 +#: ../vector/v.external/proj.c:301 ../vector/v.in.ogr/proj.c:371 +#, fuzzy +#| msgid "Projections" +msgid "Project CRS is:\n" +msgstr "투영" -#: ../raster/r.external/proj.c:324 ../raster/r.in.lidar/projection.c:89 -#: ../raster/r.in.pdal/projection.c:87 ../raster3d/r3.in.lidar/projection.c:90 -#: ../vector/v.external/proj.c:360 ../vector/v.in.lidar/projection.c:87 -#: ../vector/v.in.ogr/proj.c:492 ../vector/v.in.pdal/projection.c:87 +#: ../raster/r.external/proj.c:286 ../raster/r.in.gdal/proj.c:286 +#: ../raster/r.in.lidar/projection.c:89 ../raster/r.in.pdal/projection.c:87 +#: ../raster3d/r3.in.lidar/projection.c:90 ../vector/v.external/proj.c:315 +#: ../vector/v.in.lidar/projection.c:87 ../vector/v.in.ogr/proj.c:385 +#: ../vector/v.in.pdal/projection.c:87 #, c-format msgid "" "\n" "In case of no significant differences in the coordinate reference system definitions, use the -o flag to ignore them and use current project definition.\n" msgstr "" -#: ../raster/r.external/proj.c:328 ../raster/r.in.gdal/proj.c:327 -#: ../vector/v.external/proj.c:364 ../vector/v.in.ogr/proj.c:496 +#: ../raster/r.external/proj.c:290 ../raster/r.in.gdal/proj.c:290 +#: ../vector/v.external/proj.c:319 ../vector/v.in.ogr/proj.c:389 msgid "Consider generating a new project from the input dataset using the 'project' parameter.\n" msgstr "" -#: ../raster/r.external/proj.c:348 ../raster/r.in.gdal/proj.c:347 +#: ../raster/r.external/proj.c:310 ../raster/r.in.gdal/proj.c:310 #: ../raster/r.in.lidar/projection.c:136 ../raster/r.in.pdal/projection.c:134 -#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:384 -#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:516 +#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:339 +#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:409 msgid "Coordinate reference system of input dataset and current project appear to match" msgstr "" @@ -20795,7 +20814,7 @@ msgstr "" msgid "Region resolution shouldn't be lesser than map %s resolution. Run g.region raster=%s to set proper resolution" msgstr "" -#: ../raster/r.geomorphon/pattern.c:228 +#: ../raster/r.geomorphon/pattern.c:229 #, c-format msgid "Internal error in %s()" msgstr "" @@ -21771,8 +21790,7 @@ msgstr "" msgid "Error in %s (can't re-project GCP %i)" msgstr "" -#: ../raster/r.in.gdal/main.c:983 ../vector/v.external/proj.c:165 -#: ../vector/v.in.lidar/main.c:516 +#: ../raster/r.in.gdal/main.c:983 ../vector/v.in.lidar/main.c:516 #, fuzzy msgid "Unable to convert input map CRS to GRASS format; cannot create new project." msgstr "입력 지도의 투영을 GRASS 포맷으로 변환할 수 없습니다; 새 로케이션을 생성할 수 없습니다." @@ -21827,17 +21845,6 @@ msgstr "" msgid "Unable to open file <%s>: %s." msgstr "파일 <%s>를 열 수 없습니다: %s." -#: ../raster/r.in.gdal/proj.c:132 ../vector/v.in.ogr/proj.c:299 -#, fuzzy -msgid "Unable to convert input map projection to GRASS format; cannot create new project." -msgstr "입력 지도의 투영을 GRASS 포맷으로 변환할 수 없습니다; 새 로케이션을 생성할 수 없습니다." - -#: ../raster/r.in.gdal/proj.c:323 -msgid "" -"\n" -"In case of no significant differences in the CRS definitions, use the -o flag to ignore them and use current project definition.\n" -msgstr "" - #: ../raster/r.in.gridatb/file_io.c:16 #, fuzzy, c-format #| msgid "Unable to open file '%s'" @@ -22199,6 +22206,13 @@ msgstr "" msgid "Unable to calculate trimmed mean without the trim option specified!" msgstr "" +#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 +#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.in.lidar/projection.c:30 +msgid "" +"Coordinate reference system of dataset does not appear to match current project.\n" +"\n" +msgstr "" + #: ../raster/r.in.lidar/projection.c:38 ../raster/r.in.pdal/projection.c:36 #: ../vector/v.in.lidar/projection.c:36 ../vector/v.in.pdal/projection.c:36 msgid "GRASS project PROJ_INFO is:\n" @@ -25052,114 +25066,114 @@ msgstr "글꼴설정" msgid "Do not break lines (faster for single-direction bitmask encoding)" msgstr "" -#: ../raster/r.path/main.c:384 +#: ../raster/r.path/main.c:387 msgid "No start point(s) specified" msgstr "" -#: ../raster/r.path/main.c:394 +#: ../raster/r.path/main.c:397 #, c-format msgid "Reading raster values map <%s> ..." msgstr "" -#: ../raster/r.path/main.c:399 +#: ../raster/r.path/main.c:402 #, fuzzy, c-format #| msgid "Unable to open temporary file <%s>" msgid "Unable to open temporary file <%s>: %s" msgstr "임시 파일 <%s>를 열 수 없습니다" -#: ../raster/r.path/main.c:411 ../raster/r.path/main.c:489 -#: ../raster/r.path/main.c:506 +#: ../raster/r.path/main.c:414 ../raster/r.path/main.c:492 +#: ../raster/r.path/main.c:509 msgid "Unable to write to tempfile" msgstr "" -#: ../raster/r.path/main.c:419 +#: ../raster/r.path/main.c:422 msgid "Unable to read range file" msgstr "" -#: ../raster/r.path/main.c:422 +#: ../raster/r.path/main.c:425 #, c-format msgid "Invalid directions map <%s>" msgstr "" -#: ../raster/r.path/main.c:427 +#: ../raster/r.path/main.c:430 msgid "Directional degrees can not be > 360" msgstr "" -#: ../raster/r.path/main.c:433 +#: ../raster/r.path/main.c:436 msgid "Directional degrees divided by 45 can not be > 8" msgstr "" -#: ../raster/r.path/main.c:438 +#: ../raster/r.path/main.c:441 #, c-format msgid "Bitmask encoded directions can not be > %d" msgstr "" -#: ../raster/r.path/main.c:445 +#: ../raster/r.path/main.c:448 msgid "Input direction format assumed to be degrees CCW from East divided by 45" msgstr "" -#: ../raster/r.path/main.c:450 +#: ../raster/r.path/main.c:453 msgid "Input direction format assumed to be bitmask encoded without Knight's move" msgstr "" -#: ../raster/r.path/main.c:456 +#: ../raster/r.path/main.c:459 msgid "Input direction format assumed to be degrees CCW from East" msgstr "" -#: ../raster/r.path/main.c:460 +#: ../raster/r.path/main.c:463 msgid "Input direction format assumed to be bitmask encoded with Knight's move" msgstr "" -#: ../raster/r.path/main.c:465 +#: ../raster/r.path/main.c:468 #, c-format msgid "Unable to detect format of input direction map <%s>" msgstr "" -#: ../raster/r.path/main.c:469 +#: ../raster/r.path/main.c:472 #, c-format msgid "Invalid directions format '%s'" msgstr "" -#: ../raster/r.path/main.c:471 +#: ../raster/r.path/main.c:474 #, c-format msgid "Reading direction map <%s> ..." msgstr "" -#: ../raster/r.path/main.c:525 +#: ../raster/r.path/main.c:528 msgid "Processing start points..." msgstr "" -#: ../raster/r.path/main.c:535 ../vector/v.buffer/main.c:410 +#: ../raster/r.path/main.c:538 ../vector/v.buffer/main.c:410 #: ../vector/v.in.ogr/main.c:881 ../vector/v.overlay/main.c:237 #: ../vector/v.voronoi/main.c:215 msgid "Unable to create temporary vector map" msgstr "" -#: ../raster/r.path/main.c:541 ../raster/r.path/main.c:557 +#: ../raster/r.path/main.c:544 ../raster/r.path/main.c:560 #, c-format msgid "No path at row %d, col %d" msgstr "" -#: ../raster/r.path/main.c:546 ../vector/v.overlay/area_area.c:134 +#: ../raster/r.path/main.c:549 ../vector/v.overlay/area_area.c:134 #: ../vector/v.overlay/line_area.c:255 msgid "Breaking lines..." msgstr "선을 분해하는 중입니다..." -#: ../raster/r.path/main.c:684 +#: ../raster/r.path/main.c:687 msgid "Unable to increase point list" msgstr "" -#: ../raster/r.path/main.c:887 +#: ../raster/r.path/main.c:890 #, c-format msgid "No path from row %d, col %d" msgstr "" -#: ../raster/r.path/main.c:901 +#: ../raster/r.path/main.c:904 #, c-format msgid "Invalid direction %d" msgstr "" -#: ../raster/r.path/main.c:999 +#: ../raster/r.path/main.c:1002 msgid "Path is leaving the current region" msgstr "" @@ -38708,40 +38722,17 @@ msgstr "" msgid "Link to vector map <%s> created." msgstr "" -#: ../vector/v.external/proj.c:35 ../vector/v.in.ogr/main.c:741 -#: ../vector/v.in.ogr/proj.c:36 +#: ../vector/v.external/proj.c:34 ../vector/v.in.ogr/main.c:741 +#: ../vector/v.in.ogr/proj.c:34 #, c-format msgid "Geometry column <%s> not found in input layer <%s>" msgstr "" -#: ../vector/v.external/proj.c:49 ../vector/v.in.ogr/proj.c:50 -msgid "Unable to convert input layer projection information to GRASS format for checking" -msgstr "" - -#: ../vector/v.external/proj.c:55 ../vector/v.external/proj.c:85 -#: ../vector/v.in.ogr/proj.c:56 ../vector/v.in.ogr/proj.c:86 -msgid "Can't get WKT parameter string" -msgstr "WKT 매개변수 문자열을 얻을 수 없습니다" - -#: ../vector/v.external/proj.c:58 ../vector/v.external/proj.c:88 -#: ../vector/v.in.ogr/proj.c:59 ../vector/v.in.ogr/proj.c:89 -#, c-format -msgid "" -"WKT definition:\n" -"%s" -msgstr "" - -#: ../vector/v.external/proj.c:69 ../vector/v.in.ogr/proj.c:70 +#: ../vector/v.external/proj.c:46 ../vector/v.in.ogr/proj.c:46 #, c-format msgid "No projection information available for layer <%s>" msgstr "" -#: ../vector/v.external/proj.c:78 ../vector/v.in.ogr/proj.c:79 -#, fuzzy, c-format -#| msgid "OGR projection for layer <%s> can not be converted to proj4" -msgid "Projection for layer <%s> does not contain a valid CRS" -msgstr "레이어 <%s>를 위한 OGR 투영을 proj4로 변환할 수 없습니다" - #: ../vector/v.extract/extract.c:202 #, c-format msgid "No category found for area %d. Skipping." @@ -40502,16 +40493,16 @@ msgstr "" msgid "The spatial filter does not overlap with OGR layer <%s>. Nothing to import." msgstr "" -#: ../vector/v.in.ogr/proj.c:168 +#: ../vector/v.in.ogr/proj.c:85 msgid "Layer projections are unreadable" msgstr "" -#: ../vector/v.in.ogr/proj.c:184 +#: ../vector/v.in.ogr/proj.c:93 #, c-format msgid "Projection for layer <%s> is unreadable" msgstr "" -#: ../vector/v.in.ogr/proj.c:236 +#: ../vector/v.in.ogr/proj.c:113 #, c-format msgid "Projection of layer <%s> is different from projection of layer <%s>" msgstr "" @@ -47954,45 +47945,6 @@ msgstr "" msgid "Image file" msgstr "" -#, fuzzy, c-format -#~| msgid "Unable to select: \n" -#~ msgid "Unable to seek: %s" -#~ msgstr "선택할 수 없습니다:\n" - -#~ msgid "Unable to allocate cell buffers." -#~ msgstr "셀 버퍼를 할당할 수 없습니다" - -#~ msgid "Print raster3d information in shell style" -#~ msgstr "3차원 래스터 정보를 셸 스크립트 형식으로 출력합니다" - -#~ msgid "Print range in shell style only" -#~ msgstr "범위를 셸 스크립트 형식으로만 출력합니다" - -#, c-format -#~ msgid "Test %s." -#~ msgstr "%s를 검정합니다." - -#~ msgid "have" -#~ msgstr "가질 것입니다" - -#~ msgid "read " -#~ msgstr "읽기" - -#~ msgid "Everyone" -#~ msgstr "모두가" - -#~ msgid "has" -#~ msgstr "가지고 있습니다" - -#~ msgid "Only you" -#~ msgstr "당신만이" - -#~ msgid "now" -#~ msgstr "현재" - -#~ msgid "will" -#~ msgstr "앞으로" - #, fuzzy #~ msgid "%d sites written." #~ msgstr "출력할 격자지도" @@ -48460,10 +48412,6 @@ msgstr "" #~ msgid "Database indexes" #~ msgstr "데이터베이스:" -#, fuzzy -#~ msgid "Dataset ID" -#~ msgstr "값이 없는 자료" - #, fuzzy #~ msgid "Date format" #~ msgstr "테이블 포맷" @@ -48625,6 +48573,9 @@ msgstr "" #~ msgid "Evaluation" #~ msgstr "출력할 격자지도" +#~ msgid "Everyone" +#~ msgstr "모두가" + #, fuzzy #~ msgid "Example: directory containing shapefiles" #~ msgstr "출력할 격자지도" @@ -50780,6 +50731,9 @@ msgstr "" #~ msgid "Only 'terrain' points output vector map" #~ msgstr "출력할 격자지도" +#~ msgid "Only you" +#~ msgstr "당신만이" + #, fuzzy #~ msgid "Opt files" #~ msgstr "입력 파일" @@ -51140,10 +51094,16 @@ msgstr "" #~ msgid "Print output message in shell script style" #~ msgstr "위상정보를 셸 스크립트 형식으로 출력합니다" +#~ msgid "Print range in shell style only" +#~ msgstr "범위를 셸 스크립트 형식으로만 출력합니다" + #, fuzzy #~ msgid "Print raster data to be imported and exit" #~ msgstr "정보 대신에 이력을 출력하고 멈춥니다" +#~ msgid "Print raster3d information in shell style" +#~ msgstr "3차원 래스터 정보를 셸 스크립트 형식으로 출력합니다" + #, fuzzy #~ msgid "Print result from matching taxon names in shell script style and exit" #~ msgstr "지역정보를 셸 스크립트 형식으로 출력합니다" @@ -51165,6 +51125,11 @@ msgstr "" #~ msgid "Projected conditions" #~ msgstr "투영" +#, fuzzy, c-format +#~| msgid "OGR projection for layer <%s> can not be converted to proj4" +#~ msgid "Projection for layer <%s> does not contain a valid CRS" +#~ msgstr "레이어 <%s>를 위한 OGR 투영을 proj4로 변환할 수 없습니다" + #, fuzzy #~ msgid "Projection region" #~ msgstr "투영" @@ -51652,6 +51617,10 @@ msgstr "" #~ msgid "Terrain options" #~ msgstr "출력할 격자지도" +#, c-format +#~ msgid "Test %s." +#~ msgstr "%s를 검정합니다." + #, fuzzy #~ msgid "Test different classification methods" #~ msgstr "감독 분류" @@ -51817,6 +51786,9 @@ msgstr "" #~ msgid "Unable create DBF database: %s" #~ msgstr "DBF 데이터베이스를 생성할 수 없습니다: %s" +#~ msgid "Unable to allocate cell buffers." +#~ msgstr "셀 버퍼를 할당할 수 없습니다" + #, fuzzy #~ msgid "Unable to assign/dissociate band reference. {}" #~ msgstr "OGR 공간 참조를 생성할 수 없습니다" @@ -51825,6 +51797,10 @@ msgstr "" #~ msgid "Unable to compute experimental variogram..." #~ msgstr "출력할 격자지도" +#, fuzzy +#~ msgid "Unable to convert input map coordinate reference system to GRASS format; cannot create new project." +#~ msgstr "입력 지도의 투영을 GRASS 포맷으로 변환할 수 없습니다; 새 로케이션을 생성할 수 없습니다." + #, fuzzy #~ msgid "Unable to create 3D raster <%s>" #~ msgstr "출력할 격자지도" @@ -51856,6 +51832,11 @@ msgstr "" #~ msgid "Unable to re-open segment file" #~ msgstr "분절 파일을 다시 열 수 없습니다" +#, fuzzy, c-format +#~| msgid "Unable to select: \n" +#~ msgid "Unable to seek: %s" +#~ msgstr "선택할 수 없습니다:\n" + #, fuzzy #~ msgid "Unacceptable conditions for Designated Fill" #~ msgstr "서명 파일을 열 수 없습니다" @@ -52142,6 +52123,12 @@ msgstr "" #~ msgid "gui" #~ msgstr "GUI" +#~ msgid "has" +#~ msgstr "가지고 있습니다" + +#~ msgid "have" +#~ msgstr "가질 것입니다" + #, fuzzy #~ msgid "high pass filter" #~ msgstr "출력할 격자지도" @@ -52269,6 +52256,9 @@ msgstr "" #~ msgid "nodata value in output files" #~ msgstr "출력 파일을 열 수 없습니다" +#~ msgid "now" +#~ msgstr "현재" + #, fuzzy #~ msgid "number of jobs to use during the domain exploration" #~ msgstr "새 영역 내 열의 개수" @@ -52325,6 +52315,9 @@ msgstr "" #~ msgid "print log file to file?" #~ msgstr "파일로 쓸 수 없습니다" +#~ msgid "read " +#~ msgstr "읽기" + #, fuzzy #~ msgid "reclassify" #~ msgstr "재분류" @@ -52404,3 +52397,6 @@ msgstr "" #, fuzzy #~ msgid "width of the boxplot median line" #~ msgstr "글꼴파일의 경로" + +#~ msgid "will" +#~ msgstr "앞으로" diff --git a/locale/po/grassmods_lv.po b/locale/po/grassmods_lv.po index 66aa1805602..8ba10cdd47d 100644 --- a/locale/po/grassmods_lv.po +++ b/locale/po/grassmods_lv.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: grassmods_lv\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-07-26 01:36+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Latvian \n" @@ -178,7 +178,7 @@ msgstr "" #: ../general/g.proj/main.c:90 ../general/g.proj/main.c:99 #: ../general/g.proj/main.c:105 ../general/g.proj/main.c:114 #: ../general/g.proj/main.c:126 ../general/g.proj/main.c:135 -#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:244 +#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:245 #: ../general/g.region/main.c:91 ../general/g.region/main.c:97 #: ../general/g.region/main.c:102 ../general/g.region/main.c:108 #: ../general/g.region/main.c:113 ../general/g.region/main.c:118 @@ -305,13 +305,12 @@ msgstr "" #: ../db/db.connect/main.c:144 ../general/g.findfile/main.c:187 #: ../general/g.list/list.c:122 ../general/g.mapset/main.c:119 -#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:54 -#: ../general/g.proj/output.c:360 ../general/g.region/main.c:471 -#: ../general/g.version/main.c:140 ../misc/m.measure/main.c:87 -#: ../raster/r.describe/dumplist.c:38 ../raster/r.distance/report.c:211 -#: ../raster/r.distance/report.c:218 ../raster/r.distance/report.c:225 -#: ../raster/r.info/main.c:147 ../raster/r.proj/main.c:487 -#: ../raster/r.regression.line/main.c:101 +#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:351 +#: ../general/g.region/main.c:471 ../general/g.version/main.c:140 +#: ../misc/m.measure/main.c:87 ../raster/r.describe/dumplist.c:38 +#: ../raster/r.distance/report.c:211 ../raster/r.distance/report.c:218 +#: ../raster/r.distance/report.c:225 ../raster/r.info/main.c:147 +#: ../raster/r.proj/main.c:487 ../raster/r.regression.line/main.c:101 #: ../raster/r.regression.multi/main.c:197 #: ../raster/r.regression.multi/main.c:566 #: ../raster/r.stats.quantile/main.c:430 ../raster/r.stats.quantile/main.c:447 @@ -330,7 +329,7 @@ msgstr "" msgid "Failed to initialize JSON object. Out of memory?" msgstr "" -#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:277 +#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:278 #: ../general/g.region/main.c:427 ../general/g.version/main.c:153 #: ../imagery/i.group/main.c:137 ../misc/m.measure/main.c:100 #: ../raster/r.proj/main.c:270 ../raster/r.regression.line/main.c:114 @@ -485,7 +484,7 @@ msgstr "" msgid "Lists all databases for a given driver and location." msgstr "" -#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:383 +#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:374 #: ../general/g.region/main.c:990 ../general/g.version/main.c:409 #: ../imagery/i.group/main.c:301 ../raster/r.category/main.c:412 #: ../raster/r.describe/dumplist.c:71 ../raster/r.info/main.c:1000 @@ -6471,10 +6470,10 @@ msgstr "" msgid "Converts between PPM/PGM and PNG image formats." msgstr "" -#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:141 -#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:140 -#: ../vector/v.external/proj.c:173 ../vector/v.in.lidar/main.c:525 -#: ../vector/v.in.ogr/proj.c:307 +#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:129 +#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:129 +#: ../vector/v.external/proj.c:158 ../vector/v.in.lidar/main.c:525 +#: ../vector/v.in.ogr/proj.c:228 #, fuzzy, c-format msgid "Project <%s> created" msgstr "Novietojums %s ir izveidots!" @@ -6787,57 +6786,66 @@ msgstr "" msgid "Name of new project (location) to create" msgstr "Jaunā novietojuma nosaukums" -#: ../general/g.proj/main.c:239 -msgid "plain;Human readable text output;shell;shell script style text output;json;JSON (JavaScript Object Notation);wkt;Well-known text output;proj4;PROJ.4 style text output;" +#: ../general/g.proj/main.c:240 +msgid "plain;Human readable text output;shell;shell script style text output;wkt;Well-known text output;projjson;JSON (JavaScript Object Notation) version of WKT;proj4;PROJ.4 style text output;" msgstr "" -#: ../general/g.proj/main.c:271 ../vector/v.what.rast/main.c:159 +#: ../general/g.proj/main.c:272 ../vector/v.what.rast/main.c:159 #, c-format msgid "The format option can only be used with -%c flag" msgstr "" -#: ../general/g.proj/main.c:283 +#: ../general/g.proj/main.c:284 msgid "Flag 'j' is deprecated and will be removed in a future release. Please use format=proj4 instead." msgstr "" -#: ../general/g.proj/main.c:292 +#: ../general/g.proj/main.c:293 msgid "Flag 'w' is deprecated and will be removed in a future release. Please use format=wkt instead." msgstr "" -#: ../general/g.proj/main.c:312 +#: ../general/g.proj/main.c:313 #, fuzzy, c-format msgid "Only one of '%s', '%s', '%s', '%s' or '%s' options may be specified" msgstr "2 līmeņiem jābūt norādītiem" -#: ../general/g.proj/main.c:364 +#: ../general/g.proj/main.c:365 msgid "Projection files missing" msgstr "Trūkst projekcijas failu" -#: ../general/g.proj/main.c:392 +#: ../general/g.proj/main.c:393 #, c-format msgid "No output format specified. Define one of the options: plain, shell, json, wkt, or proj4 using the -%c flag." msgstr "" -#: ../general/g.proj/main.c:397 +#: ../general/g.proj/main.c:398 #, c-format msgid "No output format specified. Define one of the options: plain, shell, json, or proj4 using the -%c flag." msgstr "" -#: ../general/g.proj/output.c:221 +#: ../general/g.proj/output.c:54 +msgid "JSON output is not available." +msgstr "" + +#: ../general/g.proj/output.c:212 #, fuzzy msgid "Unable to convert projection information to PROJ format" msgstr "Nevar izveidot projekcijas failus: %s" -#: ../general/g.proj/output.c:295 +#: ../general/g.proj/output.c:286 #, fuzzy, c-format msgid "Unable to create PROJ definition from srid <%s>" msgstr "Nevar izveidot novietojumu: %s" -#: ../general/g.proj/output.c:337 +#: ../general/g.proj/output.c:328 #, fuzzy msgid "Unable to convert to WKT" msgstr "Rastra kartes nosaukums" +#: ../general/g.proj/output.c:433 +#, fuzzy +msgid "Unable to convert to PROJJSON" +msgstr "Rastra kartes nosaukums" + #: ../general/g.region/main.c:67 msgid "computational region" msgstr "" @@ -11492,10 +11500,10 @@ msgstr "" #: ../raster/r.grow.distance/main.c:392 ../raster/r.li/r.li.daemon/daemon.c:743 #: ../raster/r.mfilter/execute.c:82 ../raster/r.mfilter/execute.c:114 #: ../raster/r.mfilter/execute.c:165 ../raster/r.mfilter/getrow.c:24 -#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:786 -#: ../raster/r.path/main.c:822 ../raster/r.path/main.c:954 -#: ../raster/r.path/main.c:1073 ../raster/r.path/main.c:1103 -#: ../raster/r.path/main.c:1207 ../raster/r.thin/io.c:72 +#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:789 +#: ../raster/r.path/main.c:825 ../raster/r.path/main.c:957 +#: ../raster/r.path/main.c:1076 ../raster/r.path/main.c:1106 +#: ../raster/r.path/main.c:1210 ../raster/r.thin/io.c:72 #: ../raster/r.thin/io.c:82 ../raster3d/r3.in.v5d/v5d.c:1192 #: ../raster3d/r3.in.v5d/v5d.c:1443 ../raster3d/r3.in.v5d/v5d.c:1523 #: ../raster3d/r3.in.v5d/v5d.c:1848 ../raster3d/r3.in.v5d/v5d.c:1859 @@ -11520,9 +11528,9 @@ msgstr "" #: ../raster/r.clump/minsize.c:268 ../raster/r.clump/minsize.c:308 #: ../raster/r.clump/minsize.c:319 ../raster/r.clump/minsize.c:454 #: ../raster/r.clump/minsize.c:481 ../raster/r.clump/minsize.c:557 -#: ../raster/r.path/main.c:791 ../raster/r.path/main.c:827 -#: ../raster/r.path/main.c:962 ../raster/r.path/main.c:1078 -#: ../raster/r.path/main.c:1108 ../raster/r.path/main.c:1213 +#: ../raster/r.path/main.c:794 ../raster/r.path/main.c:830 +#: ../raster/r.path/main.c:965 ../raster/r.path/main.c:1081 +#: ../raster/r.path/main.c:1111 ../raster/r.path/main.c:1216 msgid "Unable to read from temp file" msgstr "" @@ -19900,7 +19908,7 @@ msgstr "" msgid "Starting point %d is outside the current region" msgstr "" -#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:375 +#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:378 #, c-format msgid "Starting vector map <%s> contains no points in the current region" msgstr "" @@ -19914,8 +19922,8 @@ msgid "Calculating flow directions..." msgstr "" #: ../raster/r.drain/main.c:485 ../raster/r.in.lidar/main.c:783 -#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:598 -#: ../raster/r.path/main.c:628 ../raster/r.viewshed/grass.cpp:621 +#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:601 +#: ../raster/r.path/main.c:631 ../raster/r.viewshed/grass.cpp:621 msgid "Writing output raster map..." msgstr "" @@ -20164,83 +20172,91 @@ msgstr "" msgid "Imagery group <%s> created" msgstr "" -#: ../raster/r.external/proj.c:51 ../raster/r.external/proj.c:93 -#: ../raster/r.in.gdal/proj.c:51 ../raster/r.in.gdal/proj.c:93 -#, c-format -msgid "" -"Input contains an invalid CRS. WKT definition:\n" -"%s" +#: ../raster/r.external/proj.c:36 ../raster/r.external/proj.c:63 +#: ../raster/r.external/proj.c:122 ../raster/r.in.gdal/proj.c:36 +#: ../raster/r.in.gdal/proj.c:63 ../raster/r.in.gdal/proj.c:122 +#: ../vector/v.external/proj.c:92 ../vector/v.external/proj.c:151 +#: ../vector/v.in.ogr/proj.c:162 ../vector/v.in.ogr/proj.c:221 +msgid "Can't get WKT parameter string" msgstr "" -#: ../raster/r.external/proj.c:120 ../raster/r.in.gdal/proj.c:120 +#: ../raster/r.external/proj.c:56 ../raster/r.in.gdal/proj.c:56 +#: ../vector/v.external/proj.c:85 ../vector/v.in.ogr/proj.c:155 +#, fuzzy +msgid "Input contains an invalid CRS." +msgstr "Ieejošā karte satur līnijas" + +#: ../raster/r.external/proj.c:66 ../raster/r.in.gdal/proj.c:66 +#: ../vector/v.external/proj.c:95 ../vector/v.in.ogr/proj.c:165 +#, fuzzy +msgid "WKT definition:" +msgstr "Rakstu jaunu failu... \n" + +#: ../raster/r.external/proj.c:99 ../raster/r.in.gdal/proj.c:99 +#: ../vector/v.external/proj.c:128 ../vector/v.in.ogr/proj.c:198 msgid "No projection information available" msgstr "" -#: ../raster/r.external/proj.c:133 -msgid "Unable to convert input map coordinate reference system to GRASS format; cannot create new project." -msgstr "" +#: ../raster/r.external/proj.c:114 ../raster/r.in.gdal/proj.c:114 +#: ../vector/v.external/proj.c:143 ../vector/v.in.ogr/proj.c:213 +#, fuzzy +msgid "Unable to convert input map projection to GRASS format; cannot create new project." +msgstr "Nevar izveidot projekcijas failus: %s" -#: ../raster/r.external/proj.c:139 ../raster/r.in.gdal/main.c:1039 -#: ../raster/r.in.gdal/proj.c:138 ../vector/v.external/proj.c:171 -#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:305 +#: ../raster/r.external/proj.c:127 ../raster/r.in.gdal/main.c:1039 +#: ../raster/r.in.gdal/proj.c:127 ../vector/v.external/proj.c:156 +#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:226 #, fuzzy, c-format msgid "Unable to create new project <%s>" msgstr "Nav iespēju atvērt šūnu failu priekš[%s]" -#: ../raster/r.external/proj.c:165 ../raster/r.in.gdal/proj.c:164 -#: ../vector/v.external/proj.c:197 ../vector/v.in.ogr/proj.c:331 +#: ../raster/r.external/proj.c:157 ../raster/r.in.gdal/proj.c:157 +#: ../vector/v.external/proj.c:186 ../vector/v.in.ogr/proj.c:256 msgid "Unable to convert input map projection information to GRASS format." msgstr "" -#: ../raster/r.external/proj.c:192 ../raster/r.in.gdal/proj.c:192 +#: ../raster/r.external/proj.c:238 ../raster/r.in.gdal/proj.c:238 #: ../raster/r.in.lidar/projection.c:126 -#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:228 -#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:360 +#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:267 +#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:337 msgid "Over-riding projection check" msgstr "" -#: ../raster/r.external/proj.c:200 ../raster/r.in.gdal/proj.c:200 -#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 -#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.external/proj.c:236 -#: ../vector/v.in.lidar/projection.c:30 ../vector/v.in.ogr/proj.c:368 -msgid "" -"Coordinate reference system of dataset does not appear to match current project.\n" -"\n" +#: ../raster/r.external/proj.c:244 ../raster/r.in.gdal/proj.c:244 +#: ../vector/v.external/proj.c:273 ../vector/v.in.ogr/proj.c:343 +msgid "Coordinate reference system of dataset does not appear to match current project.\n" msgstr "" -#: ../raster/r.external/proj.c:207 ../raster/r.external/proj.c:216 -#: ../raster/r.in.gdal/proj.c:207 ../raster/r.in.gdal/proj.c:216 -#: ../vector/v.external/proj.c:243 ../vector/v.external/proj.c:252 -#: ../vector/v.in.ogr/proj.c:375 ../vector/v.in.ogr/proj.c:384 -msgid "Project PROJ_INFO is:\n" +#: ../raster/r.external/proj.c:258 ../raster/r.in.gdal/proj.c:258 +#: ../vector/v.external/proj.c:287 ../vector/v.in.ogr/proj.c:357 +msgid "Dataset CRS is:\n" msgstr "" -#: ../raster/r.external/proj.c:236 ../raster/r.external/proj.c:243 -#: ../raster/r.in.gdal/proj.c:236 ../raster/r.in.gdal/proj.c:243 -#: ../vector/v.external/proj.c:272 ../vector/v.external/proj.c:279 -#: ../vector/v.in.ogr/proj.c:404 ../vector/v.in.ogr/proj.c:411 -msgid "Dataset PROJ_INFO is:\n" +#: ../raster/r.external/proj.c:272 ../raster/r.in.gdal/proj.c:272 +#: ../vector/v.external/proj.c:301 ../vector/v.in.ogr/proj.c:371 +msgid "Project CRS is:\n" msgstr "" -#: ../raster/r.external/proj.c:324 ../raster/r.in.lidar/projection.c:89 -#: ../raster/r.in.pdal/projection.c:87 ../raster3d/r3.in.lidar/projection.c:90 -#: ../vector/v.external/proj.c:360 ../vector/v.in.lidar/projection.c:87 -#: ../vector/v.in.ogr/proj.c:492 ../vector/v.in.pdal/projection.c:87 +#: ../raster/r.external/proj.c:286 ../raster/r.in.gdal/proj.c:286 +#: ../raster/r.in.lidar/projection.c:89 ../raster/r.in.pdal/projection.c:87 +#: ../raster3d/r3.in.lidar/projection.c:90 ../vector/v.external/proj.c:315 +#: ../vector/v.in.lidar/projection.c:87 ../vector/v.in.ogr/proj.c:385 +#: ../vector/v.in.pdal/projection.c:87 #, c-format msgid "" "\n" "In case of no significant differences in the coordinate reference system definitions, use the -o flag to ignore them and use current project definition.\n" msgstr "" -#: ../raster/r.external/proj.c:328 ../raster/r.in.gdal/proj.c:327 -#: ../vector/v.external/proj.c:364 ../vector/v.in.ogr/proj.c:496 +#: ../raster/r.external/proj.c:290 ../raster/r.in.gdal/proj.c:290 +#: ../vector/v.external/proj.c:319 ../vector/v.in.ogr/proj.c:389 msgid "Consider generating a new project from the input dataset using the 'project' parameter.\n" msgstr "" -#: ../raster/r.external/proj.c:348 ../raster/r.in.gdal/proj.c:347 +#: ../raster/r.external/proj.c:310 ../raster/r.in.gdal/proj.c:310 #: ../raster/r.in.lidar/projection.c:136 ../raster/r.in.pdal/projection.c:134 -#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:384 -#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:516 +#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:339 +#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:409 msgid "Coordinate reference system of input dataset and current project appear to match" msgstr "" @@ -20869,7 +20885,7 @@ msgstr "" msgid "Region resolution shouldn't be lesser than map %s resolution. Run g.region raster=%s to set proper resolution" msgstr "" -#: ../raster/r.geomorphon/pattern.c:228 +#: ../raster/r.geomorphon/pattern.c:229 #, fuzzy, c-format msgid "Internal error in %s()" msgstr "Kļūda: %s" @@ -21843,8 +21859,7 @@ msgstr "" msgid "Error in %s (can't re-project GCP %i)" msgstr "" -#: ../raster/r.in.gdal/main.c:983 ../vector/v.external/proj.c:165 -#: ../vector/v.in.lidar/main.c:516 +#: ../raster/r.in.gdal/main.c:983 ../vector/v.in.lidar/main.c:516 msgid "Unable to convert input map CRS to GRASS format; cannot create new project." msgstr "" @@ -21897,17 +21912,6 @@ msgstr "Nav iespēju atvērt šūnu failu priekš[%s]" msgid "Unable to open file <%s>: %s." msgstr "" -#: ../raster/r.in.gdal/proj.c:132 ../vector/v.in.ogr/proj.c:299 -#, fuzzy -msgid "Unable to convert input map projection to GRASS format; cannot create new project." -msgstr "Nevar izveidot projekcijas failus: %s" - -#: ../raster/r.in.gdal/proj.c:323 -msgid "" -"\n" -"In case of no significant differences in the CRS definitions, use the -o flag to ignore them and use current project definition.\n" -msgstr "" - #: ../raster/r.in.gridatb/file_io.c:16 #, fuzzy, c-format #| msgid "Unable to open file <%s>" @@ -22270,6 +22274,13 @@ msgstr "" msgid "Unable to calculate trimmed mean without the trim option specified!" msgstr "" +#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 +#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.in.lidar/projection.c:30 +msgid "" +"Coordinate reference system of dataset does not appear to match current project.\n" +"\n" +msgstr "" + #: ../raster/r.in.lidar/projection.c:38 ../raster/r.in.pdal/projection.c:36 #: ../vector/v.in.lidar/projection.c:36 ../vector/v.in.pdal/projection.c:36 msgid "GRASS project PROJ_INFO is:\n" @@ -25127,116 +25138,116 @@ msgstr "Datu tips" msgid "Do not break lines (faster for single-direction bitmask encoding)" msgstr "" -#: ../raster/r.path/main.c:384 +#: ../raster/r.path/main.c:387 msgid "No start point(s) specified" msgstr "" -#: ../raster/r.path/main.c:394 +#: ../raster/r.path/main.c:397 #, fuzzy, c-format msgid "Reading raster values map <%s> ..." msgstr "Izejas rastra kartes nosaukums" -#: ../raster/r.path/main.c:399 +#: ../raster/r.path/main.c:402 #, fuzzy, c-format msgid "Unable to open temporary file <%s>: %s" msgstr "Nebija iespējams atvērt failu <%s>" -#: ../raster/r.path/main.c:411 ../raster/r.path/main.c:489 -#: ../raster/r.path/main.c:506 +#: ../raster/r.path/main.c:414 ../raster/r.path/main.c:492 +#: ../raster/r.path/main.c:509 #, fuzzy msgid "Unable to write to tempfile" msgstr "Nav iespēju atvērt šūnu failu priekš[%s]" -#: ../raster/r.path/main.c:419 +#: ../raster/r.path/main.c:422 msgid "Unable to read range file" msgstr "" -#: ../raster/r.path/main.c:422 +#: ../raster/r.path/main.c:425 #, fuzzy, c-format msgid "Invalid directions map <%s>" msgstr "nederīgs reģions: %s" -#: ../raster/r.path/main.c:427 +#: ../raster/r.path/main.c:430 msgid "Directional degrees can not be > 360" msgstr "" -#: ../raster/r.path/main.c:433 +#: ../raster/r.path/main.c:436 msgid "Directional degrees divided by 45 can not be > 8" msgstr "" -#: ../raster/r.path/main.c:438 +#: ../raster/r.path/main.c:441 #, c-format msgid "Bitmask encoded directions can not be > %d" msgstr "" -#: ../raster/r.path/main.c:445 +#: ../raster/r.path/main.c:448 msgid "Input direction format assumed to be degrees CCW from East divided by 45" msgstr "" -#: ../raster/r.path/main.c:450 +#: ../raster/r.path/main.c:453 msgid "Input direction format assumed to be bitmask encoded without Knight's move" msgstr "" -#: ../raster/r.path/main.c:456 +#: ../raster/r.path/main.c:459 msgid "Input direction format assumed to be degrees CCW from East" msgstr "" -#: ../raster/r.path/main.c:460 +#: ../raster/r.path/main.c:463 msgid "Input direction format assumed to be bitmask encoded with Knight's move" msgstr "" -#: ../raster/r.path/main.c:465 +#: ../raster/r.path/main.c:468 #, fuzzy, c-format msgid "Unable to detect format of input direction map <%s>" msgstr "Rastra kartes nosaukums" -#: ../raster/r.path/main.c:469 +#: ../raster/r.path/main.c:472 #, fuzzy, c-format msgid "Invalid directions format '%s'" msgstr "nederīgs reģions: %s" -#: ../raster/r.path/main.c:471 +#: ../raster/r.path/main.c:474 #, fuzzy, c-format msgid "Reading direction map <%s> ..." msgstr "nederīgs reģions: %s" -#: ../raster/r.path/main.c:525 +#: ../raster/r.path/main.c:528 #, fuzzy msgid "Processing start points..." msgstr "Izveidot punktus visā garumā ilīniju garumā" -#: ../raster/r.path/main.c:535 ../vector/v.buffer/main.c:410 +#: ../raster/r.path/main.c:538 ../vector/v.buffer/main.c:410 #: ../vector/v.in.ogr/main.c:881 ../vector/v.overlay/main.c:237 #: ../vector/v.voronoi/main.c:215 msgid "Unable to create temporary vector map" msgstr "" -#: ../raster/r.path/main.c:541 ../raster/r.path/main.c:557 +#: ../raster/r.path/main.c:544 ../raster/r.path/main.c:560 #, c-format msgid "No path at row %d, col %d" msgstr "" -#: ../raster/r.path/main.c:546 ../vector/v.overlay/area_area.c:134 +#: ../raster/r.path/main.c:549 ../vector/v.overlay/area_area.c:134 #: ../vector/v.overlay/line_area.c:255 msgid "Breaking lines..." msgstr "" -#: ../raster/r.path/main.c:684 +#: ../raster/r.path/main.c:687 #, fuzzy msgid "Unable to increase point list" msgstr "Nav iespēju atvērt šūnu failu priekš[%s]" -#: ../raster/r.path/main.c:887 +#: ../raster/r.path/main.c:890 #, c-format msgid "No path from row %d, col %d" msgstr "" -#: ../raster/r.path/main.c:901 +#: ../raster/r.path/main.c:904 #, fuzzy, c-format msgid "Invalid direction %d" msgstr "nederīgs reģions: %s" -#: ../raster/r.path/main.c:999 +#: ../raster/r.path/main.c:1002 msgid "Path is leaving the current region" msgstr "" @@ -38983,39 +38994,17 @@ msgstr "" msgid "Link to vector map <%s> created." msgstr "" -#: ../vector/v.external/proj.c:35 ../vector/v.in.ogr/main.c:741 -#: ../vector/v.in.ogr/proj.c:36 +#: ../vector/v.external/proj.c:34 ../vector/v.in.ogr/main.c:741 +#: ../vector/v.in.ogr/proj.c:34 #, fuzzy, c-format msgid "Geometry column <%s> not found in input layer <%s>" msgstr "reģions <%s> nav atrasts" -#: ../vector/v.external/proj.c:49 ../vector/v.in.ogr/proj.c:50 -msgid "Unable to convert input layer projection information to GRASS format for checking" -msgstr "" - -#: ../vector/v.external/proj.c:55 ../vector/v.external/proj.c:85 -#: ../vector/v.in.ogr/proj.c:56 ../vector/v.in.ogr/proj.c:86 -msgid "Can't get WKT parameter string" -msgstr "" - -#: ../vector/v.external/proj.c:58 ../vector/v.external/proj.c:88 -#: ../vector/v.in.ogr/proj.c:59 ../vector/v.in.ogr/proj.c:89 -#, c-format -msgid "" -"WKT definition:\n" -"%s" -msgstr "" - -#: ../vector/v.external/proj.c:69 ../vector/v.in.ogr/proj.c:70 +#: ../vector/v.external/proj.c:46 ../vector/v.in.ogr/proj.c:46 #, c-format msgid "No projection information available for layer <%s>" msgstr "" -#: ../vector/v.external/proj.c:78 ../vector/v.in.ogr/proj.c:79 -#, fuzzy, c-format -msgid "Projection for layer <%s> does not contain a valid CRS" -msgstr "Trūkst projekcijas failu" - #: ../vector/v.extract/extract.c:202 #, c-format msgid "No category found for area %d. Skipping." @@ -40782,16 +40771,16 @@ msgstr "" msgid "The spatial filter does not overlap with OGR layer <%s>. Nothing to import." msgstr "" -#: ../vector/v.in.ogr/proj.c:168 +#: ../vector/v.in.ogr/proj.c:85 msgid "Layer projections are unreadable" msgstr "" -#: ../vector/v.in.ogr/proj.c:184 +#: ../vector/v.in.ogr/proj.c:93 #, fuzzy, c-format msgid "Projection for layer <%s> is unreadable" msgstr "Trūkst projekcijas failu" -#: ../vector/v.in.ogr/proj.c:236 +#: ../vector/v.in.ogr/proj.c:113 #, c-format msgid "Projection of layer <%s> is different from projection of layer <%s>" msgstr "" @@ -48369,32 +48358,6 @@ msgstr "" msgid "Image file" msgstr "" -#, fuzzy, c-format -#~ msgid "Unable to seek: %s" -#~ msgstr "Neiespējami atvērt šūnu failu[%s]" - -#~ msgid "Print the stats in shell script style" -#~ msgstr "Drukāt statistiku komandrindas skripta stilā" - -#~ msgid "now" -#~ msgstr "tagad" - -#, fuzzy, c-format -#~ msgid "Only one of -%c, -%c, -%c, -%c or -%c flags may be specified" -#~ msgstr "2 līmeņiem jābūt norādītiem" - -#, fuzzy -#~ msgid "Print in shell script style, but in one line (flat)" -#~ msgstr "Drukāt statistiku komandrindas skripta stilā" - -#, fuzzy -#~ msgid "feature" -#~ msgstr "Objektu tips" - -#, fuzzy -#~ msgid "features" -#~ msgstr "Objektu tips" - #, fuzzy #~ msgid "6S Parameters" #~ msgstr "metri" @@ -50865,6 +50828,10 @@ msgstr "" #~ msgid "Offset factor for input" #~ msgstr "neiespējami atvērt <%s>" +#, fuzzy, c-format +#~ msgid "Only one of -%c, -%c, -%c, -%c or -%c flags may be specified" +#~ msgstr "2 līmeņiem jābūt norādītiem" + #, fuzzy #~ msgid "Only print selected polygons" #~ msgstr "Tikai izdrukāt šūnu skaitu" @@ -51129,6 +51096,10 @@ msgstr "" #~ msgid "Print attribut table" #~ msgstr "Draiveris %s nav atrasts" +#, fuzzy +#~ msgid "Print in shell script style, but in one line (flat)" +#~ msgstr "Drukāt statistiku komandrindas skripta stilā" + #, fuzzy #~ msgid "Print mapcalculator expressions and exit" #~ msgstr "Importējamais rastra fails" @@ -51145,10 +51116,17 @@ msgstr "" #~ msgid "Print result from matching taxon names in shell script style and exit" #~ msgstr "Drukāt statistiku komandrindas skripta stilā" +#~ msgid "Print the stats in shell script style" +#~ msgstr "Drukāt statistiku komandrindas skripta stilā" + #, fuzzy #~ msgid "Print the threshold value in shell script style" #~ msgstr "Drukāt statistiku komandrindas skripta stilā" +#, fuzzy, c-format +#~ msgid "Projection for layer <%s> does not contain a valid CRS" +#~ msgstr "Trūkst projekcijas failu" + #, fuzzy #~ msgid "Projection region" #~ msgstr "Trūkst projekcijas failu" @@ -51601,6 +51579,10 @@ msgstr "" #~ msgid "Unable to re-open data source <%s>" #~ msgstr "neiespējami atvērt <%s>" +#, fuzzy, c-format +#~ msgid "Unable to seek: %s" +#~ msgstr "Neiespējami atvērt šūnu failu[%s]" + #, fuzzy #~ msgid "Units for output areas" #~ msgstr "Izejas rastra kartes nosaukums" @@ -51873,6 +51855,14 @@ msgstr "" #~ msgid "evolution" #~ msgstr "Izšķirtspēja" +#, fuzzy +#~ msgid "feature" +#~ msgstr "Objektu tips" + +#, fuzzy +#~ msgid "features" +#~ msgstr "Objektu tips" + #, fuzzy #~ msgid "flows" #~ msgstr "plūsma" @@ -51981,6 +51971,9 @@ msgstr "" #~ msgid "network analysis" #~ msgstr "Lasam dig failu... \n" +#~ msgid "now" +#~ msgstr "tagad" + #, fuzzy #~ msgid "number of jobs to use during the domain exploration" #~ msgstr "Jaunā reģiona kolonu skaits" diff --git a/locale/po/grassmods_ml.po b/locale/po/grassmods_ml.po index 5c7b87f47d5..0c77bfcd7ab 100644 --- a/locale/po/grassmods_ml.po +++ b/locale/po/grassmods_ml.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: grasslibs_ml\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-07-26 01:36+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Malayalam \n" @@ -176,7 +176,7 @@ msgstr "" #: ../general/g.proj/main.c:90 ../general/g.proj/main.c:99 #: ../general/g.proj/main.c:105 ../general/g.proj/main.c:114 #: ../general/g.proj/main.c:126 ../general/g.proj/main.c:135 -#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:244 +#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:245 #: ../general/g.region/main.c:91 ../general/g.region/main.c:97 #: ../general/g.region/main.c:102 ../general/g.region/main.c:108 #: ../general/g.region/main.c:113 ../general/g.region/main.c:118 @@ -302,13 +302,12 @@ msgstr "" #: ../db/db.connect/main.c:144 ../general/g.findfile/main.c:187 #: ../general/g.list/list.c:122 ../general/g.mapset/main.c:119 -#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:54 -#: ../general/g.proj/output.c:360 ../general/g.region/main.c:471 -#: ../general/g.version/main.c:140 ../misc/m.measure/main.c:87 -#: ../raster/r.describe/dumplist.c:38 ../raster/r.distance/report.c:211 -#: ../raster/r.distance/report.c:218 ../raster/r.distance/report.c:225 -#: ../raster/r.info/main.c:147 ../raster/r.proj/main.c:487 -#: ../raster/r.regression.line/main.c:101 +#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:351 +#: ../general/g.region/main.c:471 ../general/g.version/main.c:140 +#: ../misc/m.measure/main.c:87 ../raster/r.describe/dumplist.c:38 +#: ../raster/r.distance/report.c:211 ../raster/r.distance/report.c:218 +#: ../raster/r.distance/report.c:225 ../raster/r.info/main.c:147 +#: ../raster/r.proj/main.c:487 ../raster/r.regression.line/main.c:101 #: ../raster/r.regression.multi/main.c:197 #: ../raster/r.regression.multi/main.c:566 #: ../raster/r.stats.quantile/main.c:430 ../raster/r.stats.quantile/main.c:447 @@ -327,7 +326,7 @@ msgstr "" msgid "Failed to initialize JSON object. Out of memory?" msgstr "" -#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:277 +#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:278 #: ../general/g.region/main.c:427 ../general/g.version/main.c:153 #: ../imagery/i.group/main.c:137 ../misc/m.measure/main.c:100 #: ../raster/r.proj/main.c:270 ../raster/r.regression.line/main.c:114 @@ -481,7 +480,7 @@ msgstr "" msgid "Lists all databases for a given driver and location." msgstr "" -#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:383 +#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:374 #: ../general/g.region/main.c:990 ../general/g.version/main.c:409 #: ../imagery/i.group/main.c:301 ../raster/r.category/main.c:412 #: ../raster/r.describe/dumplist.c:71 ../raster/r.info/main.c:1000 @@ -6441,10 +6440,10 @@ msgstr "" msgid "Converts between PPM/PGM and PNG image formats." msgstr "" -#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:141 -#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:140 -#: ../vector/v.external/proj.c:173 ../vector/v.in.lidar/main.c:525 -#: ../vector/v.in.ogr/proj.c:307 +#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:129 +#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:129 +#: ../vector/v.external/proj.c:158 ../vector/v.in.lidar/main.c:525 +#: ../vector/v.in.ogr/proj.c:228 #, c-format msgid "Project <%s> created" msgstr "" @@ -6749,55 +6748,63 @@ msgstr "" msgid "Name of new project (location) to create" msgstr "" -#: ../general/g.proj/main.c:239 -msgid "plain;Human readable text output;shell;shell script style text output;json;JSON (JavaScript Object Notation);wkt;Well-known text output;proj4;PROJ.4 style text output;" +#: ../general/g.proj/main.c:240 +msgid "plain;Human readable text output;shell;shell script style text output;wkt;Well-known text output;projjson;JSON (JavaScript Object Notation) version of WKT;proj4;PROJ.4 style text output;" msgstr "" -#: ../general/g.proj/main.c:271 ../vector/v.what.rast/main.c:159 +#: ../general/g.proj/main.c:272 ../vector/v.what.rast/main.c:159 #, c-format msgid "The format option can only be used with -%c flag" msgstr "" -#: ../general/g.proj/main.c:283 +#: ../general/g.proj/main.c:284 msgid "Flag 'j' is deprecated and will be removed in a future release. Please use format=proj4 instead." msgstr "" -#: ../general/g.proj/main.c:292 +#: ../general/g.proj/main.c:293 msgid "Flag 'w' is deprecated and will be removed in a future release. Please use format=wkt instead." msgstr "" -#: ../general/g.proj/main.c:312 +#: ../general/g.proj/main.c:313 #, c-format msgid "Only one of '%s', '%s', '%s', '%s' or '%s' options may be specified" msgstr "" -#: ../general/g.proj/main.c:364 +#: ../general/g.proj/main.c:365 msgid "Projection files missing" msgstr "" -#: ../general/g.proj/main.c:392 +#: ../general/g.proj/main.c:393 #, c-format msgid "No output format specified. Define one of the options: plain, shell, json, wkt, or proj4 using the -%c flag." msgstr "" -#: ../general/g.proj/main.c:397 +#: ../general/g.proj/main.c:398 #, c-format msgid "No output format specified. Define one of the options: plain, shell, json, or proj4 using the -%c flag." msgstr "" -#: ../general/g.proj/output.c:221 +#: ../general/g.proj/output.c:54 +msgid "JSON output is not available." +msgstr "" + +#: ../general/g.proj/output.c:212 msgid "Unable to convert projection information to PROJ format" msgstr "" -#: ../general/g.proj/output.c:295 +#: ../general/g.proj/output.c:286 #, c-format msgid "Unable to create PROJ definition from srid <%s>" msgstr "" -#: ../general/g.proj/output.c:337 +#: ../general/g.proj/output.c:328 msgid "Unable to convert to WKT" msgstr "" +#: ../general/g.proj/output.c:433 +msgid "Unable to convert to PROJJSON" +msgstr "" + #: ../general/g.region/main.c:67 msgid "computational region" msgstr "" @@ -11414,10 +11421,10 @@ msgstr "" #: ../raster/r.grow.distance/main.c:392 ../raster/r.li/r.li.daemon/daemon.c:743 #: ../raster/r.mfilter/execute.c:82 ../raster/r.mfilter/execute.c:114 #: ../raster/r.mfilter/execute.c:165 ../raster/r.mfilter/getrow.c:24 -#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:786 -#: ../raster/r.path/main.c:822 ../raster/r.path/main.c:954 -#: ../raster/r.path/main.c:1073 ../raster/r.path/main.c:1103 -#: ../raster/r.path/main.c:1207 ../raster/r.thin/io.c:72 +#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:789 +#: ../raster/r.path/main.c:825 ../raster/r.path/main.c:957 +#: ../raster/r.path/main.c:1076 ../raster/r.path/main.c:1106 +#: ../raster/r.path/main.c:1210 ../raster/r.thin/io.c:72 #: ../raster/r.thin/io.c:82 ../raster3d/r3.in.v5d/v5d.c:1192 #: ../raster3d/r3.in.v5d/v5d.c:1443 ../raster3d/r3.in.v5d/v5d.c:1523 #: ../raster3d/r3.in.v5d/v5d.c:1848 ../raster3d/r3.in.v5d/v5d.c:1859 @@ -11442,9 +11449,9 @@ msgstr "" #: ../raster/r.clump/minsize.c:268 ../raster/r.clump/minsize.c:308 #: ../raster/r.clump/minsize.c:319 ../raster/r.clump/minsize.c:454 #: ../raster/r.clump/minsize.c:481 ../raster/r.clump/minsize.c:557 -#: ../raster/r.path/main.c:791 ../raster/r.path/main.c:827 -#: ../raster/r.path/main.c:962 ../raster/r.path/main.c:1078 -#: ../raster/r.path/main.c:1108 ../raster/r.path/main.c:1213 +#: ../raster/r.path/main.c:794 ../raster/r.path/main.c:830 +#: ../raster/r.path/main.c:965 ../raster/r.path/main.c:1081 +#: ../raster/r.path/main.c:1111 ../raster/r.path/main.c:1216 msgid "Unable to read from temp file" msgstr "" @@ -19731,7 +19738,7 @@ msgstr "" msgid "Starting point %d is outside the current region" msgstr "" -#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:375 +#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:378 #, c-format msgid "Starting vector map <%s> contains no points in the current region" msgstr "" @@ -19745,8 +19752,8 @@ msgid "Calculating flow directions..." msgstr "" #: ../raster/r.drain/main.c:485 ../raster/r.in.lidar/main.c:783 -#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:598 -#: ../raster/r.path/main.c:628 ../raster/r.viewshed/grass.cpp:621 +#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:601 +#: ../raster/r.path/main.c:631 ../raster/r.viewshed/grass.cpp:621 msgid "Writing output raster map..." msgstr "" @@ -19994,83 +20001,88 @@ msgstr "" msgid "Imagery group <%s> created" msgstr "" -#: ../raster/r.external/proj.c:51 ../raster/r.external/proj.c:93 -#: ../raster/r.in.gdal/proj.c:51 ../raster/r.in.gdal/proj.c:93 -#, c-format -msgid "" -"Input contains an invalid CRS. WKT definition:\n" -"%s" +#: ../raster/r.external/proj.c:36 ../raster/r.external/proj.c:63 +#: ../raster/r.external/proj.c:122 ../raster/r.in.gdal/proj.c:36 +#: ../raster/r.in.gdal/proj.c:63 ../raster/r.in.gdal/proj.c:122 +#: ../vector/v.external/proj.c:92 ../vector/v.external/proj.c:151 +#: ../vector/v.in.ogr/proj.c:162 ../vector/v.in.ogr/proj.c:221 +msgid "Can't get WKT parameter string" +msgstr "" + +#: ../raster/r.external/proj.c:56 ../raster/r.in.gdal/proj.c:56 +#: ../vector/v.external/proj.c:85 ../vector/v.in.ogr/proj.c:155 +msgid "Input contains an invalid CRS." +msgstr "" + +#: ../raster/r.external/proj.c:66 ../raster/r.in.gdal/proj.c:66 +#: ../vector/v.external/proj.c:95 ../vector/v.in.ogr/proj.c:165 +msgid "WKT definition:" msgstr "" -#: ../raster/r.external/proj.c:120 ../raster/r.in.gdal/proj.c:120 +#: ../raster/r.external/proj.c:99 ../raster/r.in.gdal/proj.c:99 +#: ../vector/v.external/proj.c:128 ../vector/v.in.ogr/proj.c:198 msgid "No projection information available" msgstr "" -#: ../raster/r.external/proj.c:133 -msgid "Unable to convert input map coordinate reference system to GRASS format; cannot create new project." +#: ../raster/r.external/proj.c:114 ../raster/r.in.gdal/proj.c:114 +#: ../vector/v.external/proj.c:143 ../vector/v.in.ogr/proj.c:213 +msgid "Unable to convert input map projection to GRASS format; cannot create new project." msgstr "" -#: ../raster/r.external/proj.c:139 ../raster/r.in.gdal/main.c:1039 -#: ../raster/r.in.gdal/proj.c:138 ../vector/v.external/proj.c:171 -#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:305 +#: ../raster/r.external/proj.c:127 ../raster/r.in.gdal/main.c:1039 +#: ../raster/r.in.gdal/proj.c:127 ../vector/v.external/proj.c:156 +#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:226 #, c-format msgid "Unable to create new project <%s>" msgstr "" -#: ../raster/r.external/proj.c:165 ../raster/r.in.gdal/proj.c:164 -#: ../vector/v.external/proj.c:197 ../vector/v.in.ogr/proj.c:331 +#: ../raster/r.external/proj.c:157 ../raster/r.in.gdal/proj.c:157 +#: ../vector/v.external/proj.c:186 ../vector/v.in.ogr/proj.c:256 msgid "Unable to convert input map projection information to GRASS format." msgstr "" -#: ../raster/r.external/proj.c:192 ../raster/r.in.gdal/proj.c:192 +#: ../raster/r.external/proj.c:238 ../raster/r.in.gdal/proj.c:238 #: ../raster/r.in.lidar/projection.c:126 -#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:228 -#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:360 +#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:267 +#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:337 msgid "Over-riding projection check" msgstr "" -#: ../raster/r.external/proj.c:200 ../raster/r.in.gdal/proj.c:200 -#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 -#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.external/proj.c:236 -#: ../vector/v.in.lidar/projection.c:30 ../vector/v.in.ogr/proj.c:368 -msgid "" -"Coordinate reference system of dataset does not appear to match current project.\n" -"\n" +#: ../raster/r.external/proj.c:244 ../raster/r.in.gdal/proj.c:244 +#: ../vector/v.external/proj.c:273 ../vector/v.in.ogr/proj.c:343 +msgid "Coordinate reference system of dataset does not appear to match current project.\n" msgstr "" -#: ../raster/r.external/proj.c:207 ../raster/r.external/proj.c:216 -#: ../raster/r.in.gdal/proj.c:207 ../raster/r.in.gdal/proj.c:216 -#: ../vector/v.external/proj.c:243 ../vector/v.external/proj.c:252 -#: ../vector/v.in.ogr/proj.c:375 ../vector/v.in.ogr/proj.c:384 -msgid "Project PROJ_INFO is:\n" +#: ../raster/r.external/proj.c:258 ../raster/r.in.gdal/proj.c:258 +#: ../vector/v.external/proj.c:287 ../vector/v.in.ogr/proj.c:357 +msgid "Dataset CRS is:\n" msgstr "" -#: ../raster/r.external/proj.c:236 ../raster/r.external/proj.c:243 -#: ../raster/r.in.gdal/proj.c:236 ../raster/r.in.gdal/proj.c:243 -#: ../vector/v.external/proj.c:272 ../vector/v.external/proj.c:279 -#: ../vector/v.in.ogr/proj.c:404 ../vector/v.in.ogr/proj.c:411 -msgid "Dataset PROJ_INFO is:\n" +#: ../raster/r.external/proj.c:272 ../raster/r.in.gdal/proj.c:272 +#: ../vector/v.external/proj.c:301 ../vector/v.in.ogr/proj.c:371 +msgid "Project CRS is:\n" msgstr "" -#: ../raster/r.external/proj.c:324 ../raster/r.in.lidar/projection.c:89 -#: ../raster/r.in.pdal/projection.c:87 ../raster3d/r3.in.lidar/projection.c:90 -#: ../vector/v.external/proj.c:360 ../vector/v.in.lidar/projection.c:87 -#: ../vector/v.in.ogr/proj.c:492 ../vector/v.in.pdal/projection.c:87 +#: ../raster/r.external/proj.c:286 ../raster/r.in.gdal/proj.c:286 +#: ../raster/r.in.lidar/projection.c:89 ../raster/r.in.pdal/projection.c:87 +#: ../raster3d/r3.in.lidar/projection.c:90 ../vector/v.external/proj.c:315 +#: ../vector/v.in.lidar/projection.c:87 ../vector/v.in.ogr/proj.c:385 +#: ../vector/v.in.pdal/projection.c:87 #, c-format msgid "" "\n" "In case of no significant differences in the coordinate reference system definitions, use the -o flag to ignore them and use current project definition.\n" msgstr "" -#: ../raster/r.external/proj.c:328 ../raster/r.in.gdal/proj.c:327 -#: ../vector/v.external/proj.c:364 ../vector/v.in.ogr/proj.c:496 +#: ../raster/r.external/proj.c:290 ../raster/r.in.gdal/proj.c:290 +#: ../vector/v.external/proj.c:319 ../vector/v.in.ogr/proj.c:389 msgid "Consider generating a new project from the input dataset using the 'project' parameter.\n" msgstr "" -#: ../raster/r.external/proj.c:348 ../raster/r.in.gdal/proj.c:347 +#: ../raster/r.external/proj.c:310 ../raster/r.in.gdal/proj.c:310 #: ../raster/r.in.lidar/projection.c:136 ../raster/r.in.pdal/projection.c:134 -#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:384 -#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:516 +#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:339 +#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:409 msgid "Coordinate reference system of input dataset and current project appear to match" msgstr "" @@ -20678,7 +20690,7 @@ msgstr "" msgid "Region resolution shouldn't be lesser than map %s resolution. Run g.region raster=%s to set proper resolution" msgstr "" -#: ../raster/r.geomorphon/pattern.c:228 +#: ../raster/r.geomorphon/pattern.c:229 #, c-format msgid "Internal error in %s()" msgstr "" @@ -21641,8 +21653,7 @@ msgstr "" msgid "Error in %s (can't re-project GCP %i)" msgstr "" -#: ../raster/r.in.gdal/main.c:983 ../vector/v.external/proj.c:165 -#: ../vector/v.in.lidar/main.c:516 +#: ../raster/r.in.gdal/main.c:983 ../vector/v.in.lidar/main.c:516 msgid "Unable to convert input map CRS to GRASS format; cannot create new project." msgstr "" @@ -21693,16 +21704,6 @@ msgstr "" msgid "Unable to open file <%s>: %s." msgstr "" -#: ../raster/r.in.gdal/proj.c:132 ../vector/v.in.ogr/proj.c:299 -msgid "Unable to convert input map projection to GRASS format; cannot create new project." -msgstr "" - -#: ../raster/r.in.gdal/proj.c:323 -msgid "" -"\n" -"In case of no significant differences in the CRS definitions, use the -o flag to ignore them and use current project definition.\n" -msgstr "" - #: ../raster/r.in.gridatb/file_io.c:16 #, c-format msgid "Unable to open file: %s" @@ -22063,6 +22064,13 @@ msgstr "" msgid "Unable to calculate trimmed mean without the trim option specified!" msgstr "" +#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 +#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.in.lidar/projection.c:30 +msgid "" +"Coordinate reference system of dataset does not appear to match current project.\n" +"\n" +msgstr "" + #: ../raster/r.in.lidar/projection.c:38 ../raster/r.in.pdal/projection.c:36 #: ../vector/v.in.lidar/projection.c:36 ../vector/v.in.pdal/projection.c:36 msgid "GRASS project PROJ_INFO is:\n" @@ -24883,113 +24891,113 @@ msgstr "" msgid "Do not break lines (faster for single-direction bitmask encoding)" msgstr "" -#: ../raster/r.path/main.c:384 +#: ../raster/r.path/main.c:387 msgid "No start point(s) specified" msgstr "" -#: ../raster/r.path/main.c:394 +#: ../raster/r.path/main.c:397 #, c-format msgid "Reading raster values map <%s> ..." msgstr "" -#: ../raster/r.path/main.c:399 +#: ../raster/r.path/main.c:402 #, c-format msgid "Unable to open temporary file <%s>: %s" msgstr "" -#: ../raster/r.path/main.c:411 ../raster/r.path/main.c:489 -#: ../raster/r.path/main.c:506 +#: ../raster/r.path/main.c:414 ../raster/r.path/main.c:492 +#: ../raster/r.path/main.c:509 msgid "Unable to write to tempfile" msgstr "" -#: ../raster/r.path/main.c:419 +#: ../raster/r.path/main.c:422 msgid "Unable to read range file" msgstr "" -#: ../raster/r.path/main.c:422 +#: ../raster/r.path/main.c:425 #, c-format msgid "Invalid directions map <%s>" msgstr "" -#: ../raster/r.path/main.c:427 +#: ../raster/r.path/main.c:430 msgid "Directional degrees can not be > 360" msgstr "" -#: ../raster/r.path/main.c:433 +#: ../raster/r.path/main.c:436 msgid "Directional degrees divided by 45 can not be > 8" msgstr "" -#: ../raster/r.path/main.c:438 +#: ../raster/r.path/main.c:441 #, c-format msgid "Bitmask encoded directions can not be > %d" msgstr "" -#: ../raster/r.path/main.c:445 +#: ../raster/r.path/main.c:448 msgid "Input direction format assumed to be degrees CCW from East divided by 45" msgstr "" -#: ../raster/r.path/main.c:450 +#: ../raster/r.path/main.c:453 msgid "Input direction format assumed to be bitmask encoded without Knight's move" msgstr "" -#: ../raster/r.path/main.c:456 +#: ../raster/r.path/main.c:459 msgid "Input direction format assumed to be degrees CCW from East" msgstr "" -#: ../raster/r.path/main.c:460 +#: ../raster/r.path/main.c:463 msgid "Input direction format assumed to be bitmask encoded with Knight's move" msgstr "" -#: ../raster/r.path/main.c:465 +#: ../raster/r.path/main.c:468 #, c-format msgid "Unable to detect format of input direction map <%s>" msgstr "" -#: ../raster/r.path/main.c:469 +#: ../raster/r.path/main.c:472 #, c-format msgid "Invalid directions format '%s'" msgstr "" -#: ../raster/r.path/main.c:471 +#: ../raster/r.path/main.c:474 #, c-format msgid "Reading direction map <%s> ..." msgstr "" -#: ../raster/r.path/main.c:525 +#: ../raster/r.path/main.c:528 msgid "Processing start points..." msgstr "" -#: ../raster/r.path/main.c:535 ../vector/v.buffer/main.c:410 +#: ../raster/r.path/main.c:538 ../vector/v.buffer/main.c:410 #: ../vector/v.in.ogr/main.c:881 ../vector/v.overlay/main.c:237 #: ../vector/v.voronoi/main.c:215 msgid "Unable to create temporary vector map" msgstr "" -#: ../raster/r.path/main.c:541 ../raster/r.path/main.c:557 +#: ../raster/r.path/main.c:544 ../raster/r.path/main.c:560 #, c-format msgid "No path at row %d, col %d" msgstr "" -#: ../raster/r.path/main.c:546 ../vector/v.overlay/area_area.c:134 +#: ../raster/r.path/main.c:549 ../vector/v.overlay/area_area.c:134 #: ../vector/v.overlay/line_area.c:255 msgid "Breaking lines..." msgstr "" -#: ../raster/r.path/main.c:684 +#: ../raster/r.path/main.c:687 msgid "Unable to increase point list" msgstr "" -#: ../raster/r.path/main.c:887 +#: ../raster/r.path/main.c:890 #, c-format msgid "No path from row %d, col %d" msgstr "" -#: ../raster/r.path/main.c:901 +#: ../raster/r.path/main.c:904 #, c-format msgid "Invalid direction %d" msgstr "" -#: ../raster/r.path/main.c:999 +#: ../raster/r.path/main.c:1002 msgid "Path is leaving the current region" msgstr "" @@ -38477,39 +38485,17 @@ msgstr "" msgid "Link to vector map <%s> created." msgstr "" -#: ../vector/v.external/proj.c:35 ../vector/v.in.ogr/main.c:741 -#: ../vector/v.in.ogr/proj.c:36 +#: ../vector/v.external/proj.c:34 ../vector/v.in.ogr/main.c:741 +#: ../vector/v.in.ogr/proj.c:34 #, c-format msgid "Geometry column <%s> not found in input layer <%s>" msgstr "" -#: ../vector/v.external/proj.c:49 ../vector/v.in.ogr/proj.c:50 -msgid "Unable to convert input layer projection information to GRASS format for checking" -msgstr "" - -#: ../vector/v.external/proj.c:55 ../vector/v.external/proj.c:85 -#: ../vector/v.in.ogr/proj.c:56 ../vector/v.in.ogr/proj.c:86 -msgid "Can't get WKT parameter string" -msgstr "" - -#: ../vector/v.external/proj.c:58 ../vector/v.external/proj.c:88 -#: ../vector/v.in.ogr/proj.c:59 ../vector/v.in.ogr/proj.c:89 -#, c-format -msgid "" -"WKT definition:\n" -"%s" -msgstr "" - -#: ../vector/v.external/proj.c:69 ../vector/v.in.ogr/proj.c:70 +#: ../vector/v.external/proj.c:46 ../vector/v.in.ogr/proj.c:46 #, c-format msgid "No projection information available for layer <%s>" msgstr "" -#: ../vector/v.external/proj.c:78 ../vector/v.in.ogr/proj.c:79 -#, c-format -msgid "Projection for layer <%s> does not contain a valid CRS" -msgstr "" - #: ../vector/v.extract/extract.c:202 #, c-format msgid "No category found for area %d. Skipping." @@ -40269,16 +40255,16 @@ msgstr "" msgid "The spatial filter does not overlap with OGR layer <%s>. Nothing to import." msgstr "" -#: ../vector/v.in.ogr/proj.c:168 +#: ../vector/v.in.ogr/proj.c:85 msgid "Layer projections are unreadable" msgstr "" -#: ../vector/v.in.ogr/proj.c:184 +#: ../vector/v.in.ogr/proj.c:93 #, c-format msgid "Projection for layer <%s> is unreadable" msgstr "" -#: ../vector/v.in.ogr/proj.c:236 +#: ../vector/v.in.ogr/proj.c:113 #, c-format msgid "Projection of layer <%s> is different from projection of layer <%s>" msgstr "" diff --git a/locale/po/grassmods_pl.po b/locale/po/grassmods_pl.po index 301a19cfb81..9ca467eb280 100644 --- a/locale/po/grassmods_pl.po +++ b/locale/po/grassmods_pl.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: grassmods_pl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-07-26 01:36+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Polish \n" @@ -178,7 +178,7 @@ msgstr "Wyświetl wszystkie kolumny dla danej tabeli." #: ../general/g.proj/main.c:90 ../general/g.proj/main.c:99 #: ../general/g.proj/main.c:105 ../general/g.proj/main.c:114 #: ../general/g.proj/main.c:126 ../general/g.proj/main.c:135 -#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:244 +#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:245 #: ../general/g.region/main.c:91 ../general/g.region/main.c:97 #: ../general/g.region/main.c:102 ../general/g.region/main.c:108 #: ../general/g.region/main.c:113 ../general/g.region/main.c:118 @@ -306,13 +306,12 @@ msgstr "" #: ../db/db.connect/main.c:144 ../general/g.findfile/main.c:187 #: ../general/g.list/list.c:122 ../general/g.mapset/main.c:119 -#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:54 -#: ../general/g.proj/output.c:360 ../general/g.region/main.c:471 -#: ../general/g.version/main.c:140 ../misc/m.measure/main.c:87 -#: ../raster/r.describe/dumplist.c:38 ../raster/r.distance/report.c:211 -#: ../raster/r.distance/report.c:218 ../raster/r.distance/report.c:225 -#: ../raster/r.info/main.c:147 ../raster/r.proj/main.c:487 -#: ../raster/r.regression.line/main.c:101 +#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:351 +#: ../general/g.region/main.c:471 ../general/g.version/main.c:140 +#: ../misc/m.measure/main.c:87 ../raster/r.describe/dumplist.c:38 +#: ../raster/r.distance/report.c:211 ../raster/r.distance/report.c:218 +#: ../raster/r.distance/report.c:225 ../raster/r.info/main.c:147 +#: ../raster/r.proj/main.c:487 ../raster/r.regression.line/main.c:101 #: ../raster/r.regression.multi/main.c:197 #: ../raster/r.regression.multi/main.c:566 #: ../raster/r.stats.quantile/main.c:430 ../raster/r.stats.quantile/main.c:447 @@ -331,7 +330,7 @@ msgstr "" msgid "Failed to initialize JSON object. Out of memory?" msgstr "" -#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:277 +#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:278 #: ../general/g.region/main.c:427 ../general/g.version/main.c:153 #: ../imagery/i.group/main.c:137 ../misc/m.measure/main.c:100 #: ../raster/r.proj/main.c:270 ../raster/r.regression.line/main.c:114 @@ -488,7 +487,7 @@ msgstr "" msgid "Lists all databases for a given driver and location." msgstr "Wyświetla listę baz danych dla danego sterownika i lokacji." -#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:383 +#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:374 #: ../general/g.region/main.c:990 ../general/g.version/main.c:409 #: ../imagery/i.group/main.c:301 ../raster/r.category/main.c:412 #: ../raster/r.describe/dumplist.c:71 ../raster/r.info/main.c:1000 @@ -6496,10 +6495,10 @@ msgstr "" msgid "Converts between PPM/PGM and PNG image formats." msgstr "" -#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:141 -#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:140 -#: ../vector/v.external/proj.c:173 ../vector/v.in.lidar/main.c:525 -#: ../vector/v.in.ogr/proj.c:307 +#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:129 +#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:129 +#: ../vector/v.external/proj.c:158 ../vector/v.in.lidar/main.c:525 +#: ../vector/v.in.ogr/proj.c:228 #, fuzzy, c-format msgid "Project <%s> created" msgstr "Lokacja <%s> została stworzona" @@ -6817,55 +6816,67 @@ msgstr "Nie można utworzyć plików odwzorowania: %s" msgid "Name of new project (location) to create" msgstr "Nazwa nowej lokacji, która ma być utworzona" -#: ../general/g.proj/main.c:239 -msgid "plain;Human readable text output;shell;shell script style text output;json;JSON (JavaScript Object Notation);wkt;Well-known text output;proj4;PROJ.4 style text output;" +#: ../general/g.proj/main.c:240 +msgid "plain;Human readable text output;shell;shell script style text output;wkt;Well-known text output;projjson;JSON (JavaScript Object Notation) version of WKT;proj4;PROJ.4 style text output;" msgstr "" -#: ../general/g.proj/main.c:271 ../vector/v.what.rast/main.c:159 +#: ../general/g.proj/main.c:272 ../vector/v.what.rast/main.c:159 #, c-format msgid "The format option can only be used with -%c flag" msgstr "" -#: ../general/g.proj/main.c:283 +#: ../general/g.proj/main.c:284 msgid "Flag 'j' is deprecated and will be removed in a future release. Please use format=proj4 instead." msgstr "" -#: ../general/g.proj/main.c:292 +#: ../general/g.proj/main.c:293 msgid "Flag 'w' is deprecated and will be removed in a future release. Please use format=wkt instead." msgstr "" -#: ../general/g.proj/main.c:312 +#: ../general/g.proj/main.c:313 #, c-format msgid "Only one of '%s', '%s', '%s', '%s' or '%s' options may be specified" msgstr "" -#: ../general/g.proj/main.c:364 +#: ../general/g.proj/main.c:365 msgid "Projection files missing" msgstr "Brak plików projekcji" -#: ../general/g.proj/main.c:392 +#: ../general/g.proj/main.c:393 #, c-format msgid "No output format specified. Define one of the options: plain, shell, json, wkt, or proj4 using the -%c flag." msgstr "" -#: ../general/g.proj/main.c:397 +#: ../general/g.proj/main.c:398 #, c-format msgid "No output format specified. Define one of the options: plain, shell, json, or proj4 using the -%c flag." msgstr "" -#: ../general/g.proj/output.c:221 +#: ../general/g.proj/output.c:54 +#, fuzzy +#| msgid "Layer <%s> not available" +msgid "JSON output is not available." +msgstr "Warstwa <%s> jest niedostępna" + +#: ../general/g.proj/output.c:212 msgid "Unable to convert projection information to PROJ format" msgstr "" -#: ../general/g.proj/output.c:295 +#: ../general/g.proj/output.c:286 #, c-format msgid "Unable to create PROJ definition from srid <%s>" msgstr "" -#: ../general/g.proj/output.c:337 +#: ../general/g.proj/output.c:328 msgid "Unable to convert to WKT" msgstr "" +#: ../general/g.proj/output.c:433 +#, fuzzy +#| msgid "Unable to write to file" +msgid "Unable to convert to PROJJSON" +msgstr "Nie można zapisać do pliku" + #: ../general/g.region/main.c:67 msgid "computational region" msgstr "" @@ -11524,10 +11535,10 @@ msgstr "" #: ../raster/r.grow.distance/main.c:392 ../raster/r.li/r.li.daemon/daemon.c:743 #: ../raster/r.mfilter/execute.c:82 ../raster/r.mfilter/execute.c:114 #: ../raster/r.mfilter/execute.c:165 ../raster/r.mfilter/getrow.c:24 -#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:786 -#: ../raster/r.path/main.c:822 ../raster/r.path/main.c:954 -#: ../raster/r.path/main.c:1073 ../raster/r.path/main.c:1103 -#: ../raster/r.path/main.c:1207 ../raster/r.thin/io.c:72 +#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:789 +#: ../raster/r.path/main.c:825 ../raster/r.path/main.c:957 +#: ../raster/r.path/main.c:1076 ../raster/r.path/main.c:1106 +#: ../raster/r.path/main.c:1210 ../raster/r.thin/io.c:72 #: ../raster/r.thin/io.c:82 ../raster3d/r3.in.v5d/v5d.c:1192 #: ../raster3d/r3.in.v5d/v5d.c:1443 ../raster3d/r3.in.v5d/v5d.c:1523 #: ../raster3d/r3.in.v5d/v5d.c:1848 ../raster3d/r3.in.v5d/v5d.c:1859 @@ -11553,9 +11564,9 @@ msgstr "" #: ../raster/r.clump/minsize.c:268 ../raster/r.clump/minsize.c:308 #: ../raster/r.clump/minsize.c:319 ../raster/r.clump/minsize.c:454 #: ../raster/r.clump/minsize.c:481 ../raster/r.clump/minsize.c:557 -#: ../raster/r.path/main.c:791 ../raster/r.path/main.c:827 -#: ../raster/r.path/main.c:962 ../raster/r.path/main.c:1078 -#: ../raster/r.path/main.c:1108 ../raster/r.path/main.c:1213 +#: ../raster/r.path/main.c:794 ../raster/r.path/main.c:830 +#: ../raster/r.path/main.c:965 ../raster/r.path/main.c:1081 +#: ../raster/r.path/main.c:1111 ../raster/r.path/main.c:1216 msgid "Unable to read from temp file" msgstr "" @@ -19908,7 +19919,7 @@ msgstr "" msgid "Starting point %d is outside the current region" msgstr "Punkt startowy %d znajduje się poza bieżącym regionem" -#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:375 +#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:378 #, c-format msgid "Starting vector map <%s> contains no points in the current region" msgstr "Startowa mapa wektorowa <%s> nie zawiera żadnych punktów w bieżącym regionie." @@ -19922,8 +19933,8 @@ msgid "Calculating flow directions..." msgstr "Obliczanie kierunków spływu..." #: ../raster/r.drain/main.c:485 ../raster/r.in.lidar/main.c:783 -#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:598 -#: ../raster/r.path/main.c:628 ../raster/r.viewshed/grass.cpp:621 +#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:601 +#: ../raster/r.path/main.c:631 ../raster/r.viewshed/grass.cpp:621 msgid "Writing output raster map..." msgstr "" @@ -20171,83 +20182,95 @@ msgstr "" msgid "Imagery group <%s> created" msgstr "" -#: ../raster/r.external/proj.c:51 ../raster/r.external/proj.c:93 -#: ../raster/r.in.gdal/proj.c:51 ../raster/r.in.gdal/proj.c:93 -#, c-format -msgid "" -"Input contains an invalid CRS. WKT definition:\n" -"%s" +#: ../raster/r.external/proj.c:36 ../raster/r.external/proj.c:63 +#: ../raster/r.external/proj.c:122 ../raster/r.in.gdal/proj.c:36 +#: ../raster/r.in.gdal/proj.c:63 ../raster/r.in.gdal/proj.c:122 +#: ../vector/v.external/proj.c:92 ../vector/v.external/proj.c:151 +#: ../vector/v.in.ogr/proj.c:162 ../vector/v.in.ogr/proj.c:221 +msgid "Can't get WKT parameter string" msgstr "" -#: ../raster/r.external/proj.c:120 ../raster/r.in.gdal/proj.c:120 +#: ../raster/r.external/proj.c:56 ../raster/r.in.gdal/proj.c:56 +#: ../vector/v.external/proj.c:85 ../vector/v.in.ogr/proj.c:155 +#, fuzzy +#| msgid "Input map contains no data" +msgid "Input contains an invalid CRS." +msgstr "Mapa wejściowa nie zawiera danych" + +#: ../raster/r.external/proj.c:66 ../raster/r.in.gdal/proj.c:66 +#: ../vector/v.external/proj.c:95 ../vector/v.in.ogr/proj.c:165 +#, fuzzy +msgid "WKT definition:" +msgstr "Pozycja" + +#: ../raster/r.external/proj.c:99 ../raster/r.in.gdal/proj.c:99 +#: ../vector/v.external/proj.c:128 ../vector/v.in.ogr/proj.c:198 msgid "No projection information available" msgstr "" -#: ../raster/r.external/proj.c:133 -msgid "Unable to convert input map coordinate reference system to GRASS format; cannot create new project." +#: ../raster/r.external/proj.c:114 ../raster/r.in.gdal/proj.c:114 +#: ../vector/v.external/proj.c:143 ../vector/v.in.ogr/proj.c:213 +msgid "Unable to convert input map projection to GRASS format; cannot create new project." msgstr "" -#: ../raster/r.external/proj.c:139 ../raster/r.in.gdal/main.c:1039 -#: ../raster/r.in.gdal/proj.c:138 ../vector/v.external/proj.c:171 -#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:305 +#: ../raster/r.external/proj.c:127 ../raster/r.in.gdal/main.c:1039 +#: ../raster/r.in.gdal/proj.c:127 ../vector/v.external/proj.c:156 +#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:226 #, fuzzy, c-format msgid "Unable to create new project <%s>" msgstr "Nie można utworzyć pliku raportu <%s>" -#: ../raster/r.external/proj.c:165 ../raster/r.in.gdal/proj.c:164 -#: ../vector/v.external/proj.c:197 ../vector/v.in.ogr/proj.c:331 +#: ../raster/r.external/proj.c:157 ../raster/r.in.gdal/proj.c:157 +#: ../vector/v.external/proj.c:186 ../vector/v.in.ogr/proj.c:256 msgid "Unable to convert input map projection information to GRASS format." msgstr "" -#: ../raster/r.external/proj.c:192 ../raster/r.in.gdal/proj.c:192 +#: ../raster/r.external/proj.c:238 ../raster/r.in.gdal/proj.c:238 #: ../raster/r.in.lidar/projection.c:126 -#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:228 -#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:360 +#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:267 +#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:337 msgid "Over-riding projection check" msgstr "" -#: ../raster/r.external/proj.c:200 ../raster/r.in.gdal/proj.c:200 -#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 -#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.external/proj.c:236 -#: ../vector/v.in.lidar/projection.c:30 ../vector/v.in.ogr/proj.c:368 -msgid "" -"Coordinate reference system of dataset does not appear to match current project.\n" -"\n" -msgstr "" +#: ../raster/r.external/proj.c:244 ../raster/r.in.gdal/proj.c:244 +#: ../vector/v.external/proj.c:273 ../vector/v.in.ogr/proj.c:343 +#, fuzzy +msgid "Coordinate reference system of dataset does not appear to match current project.\n" +msgstr "Użyj współrzędnych mapy zamiast X, Y, Z" -#: ../raster/r.external/proj.c:207 ../raster/r.external/proj.c:216 -#: ../raster/r.in.gdal/proj.c:207 ../raster/r.in.gdal/proj.c:216 -#: ../vector/v.external/proj.c:243 ../vector/v.external/proj.c:252 -#: ../vector/v.in.ogr/proj.c:375 ../vector/v.in.ogr/proj.c:384 -msgid "Project PROJ_INFO is:\n" -msgstr "" +#: ../raster/r.external/proj.c:258 ../raster/r.in.gdal/proj.c:258 +#: ../vector/v.external/proj.c:287 ../vector/v.in.ogr/proj.c:357 +#, fuzzy +msgid "Dataset CRS is:\n" +msgstr "Baza danych:" -#: ../raster/r.external/proj.c:236 ../raster/r.external/proj.c:243 -#: ../raster/r.in.gdal/proj.c:236 ../raster/r.in.gdal/proj.c:243 -#: ../vector/v.external/proj.c:272 ../vector/v.external/proj.c:279 -#: ../vector/v.in.ogr/proj.c:404 ../vector/v.in.ogr/proj.c:411 -msgid "Dataset PROJ_INFO is:\n" -msgstr "" +#: ../raster/r.external/proj.c:272 ../raster/r.in.gdal/proj.c:272 +#: ../vector/v.external/proj.c:301 ../vector/v.in.ogr/proj.c:371 +#, fuzzy +#| msgid "Projections" +msgid "Project CRS is:\n" +msgstr "Projekcje" -#: ../raster/r.external/proj.c:324 ../raster/r.in.lidar/projection.c:89 -#: ../raster/r.in.pdal/projection.c:87 ../raster3d/r3.in.lidar/projection.c:90 -#: ../vector/v.external/proj.c:360 ../vector/v.in.lidar/projection.c:87 -#: ../vector/v.in.ogr/proj.c:492 ../vector/v.in.pdal/projection.c:87 +#: ../raster/r.external/proj.c:286 ../raster/r.in.gdal/proj.c:286 +#: ../raster/r.in.lidar/projection.c:89 ../raster/r.in.pdal/projection.c:87 +#: ../raster3d/r3.in.lidar/projection.c:90 ../vector/v.external/proj.c:315 +#: ../vector/v.in.lidar/projection.c:87 ../vector/v.in.ogr/proj.c:385 +#: ../vector/v.in.pdal/projection.c:87 #, c-format msgid "" "\n" "In case of no significant differences in the coordinate reference system definitions, use the -o flag to ignore them and use current project definition.\n" msgstr "" -#: ../raster/r.external/proj.c:328 ../raster/r.in.gdal/proj.c:327 -#: ../vector/v.external/proj.c:364 ../vector/v.in.ogr/proj.c:496 +#: ../raster/r.external/proj.c:290 ../raster/r.in.gdal/proj.c:290 +#: ../vector/v.external/proj.c:319 ../vector/v.in.ogr/proj.c:389 msgid "Consider generating a new project from the input dataset using the 'project' parameter.\n" msgstr "" -#: ../raster/r.external/proj.c:348 ../raster/r.in.gdal/proj.c:347 +#: ../raster/r.external/proj.c:310 ../raster/r.in.gdal/proj.c:310 #: ../raster/r.in.lidar/projection.c:136 ../raster/r.in.pdal/projection.c:134 -#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:384 -#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:516 +#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:339 +#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:409 msgid "Coordinate reference system of input dataset and current project appear to match" msgstr "" @@ -20861,7 +20884,7 @@ msgstr "" msgid "Region resolution shouldn't be lesser than map %s resolution. Run g.region raster=%s to set proper resolution" msgstr "" -#: ../raster/r.geomorphon/pattern.c:228 +#: ../raster/r.geomorphon/pattern.c:229 #, c-format msgid "Internal error in %s()" msgstr "" @@ -21832,8 +21855,7 @@ msgstr "" msgid "Error in %s (can't re-project GCP %i)" msgstr "" -#: ../raster/r.in.gdal/main.c:983 ../vector/v.external/proj.c:165 -#: ../vector/v.in.lidar/main.c:516 +#: ../raster/r.in.gdal/main.c:983 ../vector/v.in.lidar/main.c:516 msgid "Unable to convert input map CRS to GRASS format; cannot create new project." msgstr "" @@ -21887,16 +21909,6 @@ msgstr "" msgid "Unable to open file <%s>: %s." msgstr "" -#: ../raster/r.in.gdal/proj.c:132 ../vector/v.in.ogr/proj.c:299 -msgid "Unable to convert input map projection to GRASS format; cannot create new project." -msgstr "" - -#: ../raster/r.in.gdal/proj.c:323 -msgid "" -"\n" -"In case of no significant differences in the CRS definitions, use the -o flag to ignore them and use current project definition.\n" -msgstr "" - #: ../raster/r.in.gridatb/file_io.c:16 #, fuzzy, c-format #| msgid "Unable to open file <%s>" @@ -22258,6 +22270,13 @@ msgstr "" msgid "Unable to calculate trimmed mean without the trim option specified!" msgstr "" +#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 +#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.in.lidar/projection.c:30 +msgid "" +"Coordinate reference system of dataset does not appear to match current project.\n" +"\n" +msgstr "" + #: ../raster/r.in.lidar/projection.c:38 ../raster/r.in.pdal/projection.c:36 #: ../vector/v.in.lidar/projection.c:36 ../vector/v.in.pdal/projection.c:36 msgid "GRASS project PROJ_INFO is:\n" @@ -25128,114 +25147,114 @@ msgstr "Typ łuku" msgid "Do not break lines (faster for single-direction bitmask encoding)" msgstr "" -#: ../raster/r.path/main.c:384 +#: ../raster/r.path/main.c:387 msgid "No start point(s) specified" msgstr "" -#: ../raster/r.path/main.c:394 +#: ../raster/r.path/main.c:397 #, c-format msgid "Reading raster values map <%s> ..." msgstr "" -#: ../raster/r.path/main.c:399 +#: ../raster/r.path/main.c:402 #, fuzzy, c-format #| msgid "Unable to open temporary file <%s>" msgid "Unable to open temporary file <%s>: %s" msgstr "Nie można otworzyć pliku tymczasowego <%s>" -#: ../raster/r.path/main.c:411 ../raster/r.path/main.c:489 -#: ../raster/r.path/main.c:506 +#: ../raster/r.path/main.c:414 ../raster/r.path/main.c:492 +#: ../raster/r.path/main.c:509 msgid "Unable to write to tempfile" msgstr "" -#: ../raster/r.path/main.c:419 +#: ../raster/r.path/main.c:422 msgid "Unable to read range file" msgstr "Nie można odczytać pliku zakresu" -#: ../raster/r.path/main.c:422 +#: ../raster/r.path/main.c:425 #, c-format msgid "Invalid directions map <%s>" msgstr "" -#: ../raster/r.path/main.c:427 +#: ../raster/r.path/main.c:430 msgid "Directional degrees can not be > 360" msgstr "" -#: ../raster/r.path/main.c:433 +#: ../raster/r.path/main.c:436 msgid "Directional degrees divided by 45 can not be > 8" msgstr "" -#: ../raster/r.path/main.c:438 +#: ../raster/r.path/main.c:441 #, c-format msgid "Bitmask encoded directions can not be > %d" msgstr "" -#: ../raster/r.path/main.c:445 +#: ../raster/r.path/main.c:448 msgid "Input direction format assumed to be degrees CCW from East divided by 45" msgstr "" -#: ../raster/r.path/main.c:450 +#: ../raster/r.path/main.c:453 msgid "Input direction format assumed to be bitmask encoded without Knight's move" msgstr "" -#: ../raster/r.path/main.c:456 +#: ../raster/r.path/main.c:459 msgid "Input direction format assumed to be degrees CCW from East" msgstr "" -#: ../raster/r.path/main.c:460 +#: ../raster/r.path/main.c:463 msgid "Input direction format assumed to be bitmask encoded with Knight's move" msgstr "" -#: ../raster/r.path/main.c:465 +#: ../raster/r.path/main.c:468 #, c-format msgid "Unable to detect format of input direction map <%s>" msgstr "" -#: ../raster/r.path/main.c:469 +#: ../raster/r.path/main.c:472 #, c-format msgid "Invalid directions format '%s'" msgstr "" -#: ../raster/r.path/main.c:471 +#: ../raster/r.path/main.c:474 #, c-format msgid "Reading direction map <%s> ..." msgstr "" -#: ../raster/r.path/main.c:525 +#: ../raster/r.path/main.c:528 msgid "Processing start points..." msgstr "" -#: ../raster/r.path/main.c:535 ../vector/v.buffer/main.c:410 +#: ../raster/r.path/main.c:538 ../vector/v.buffer/main.c:410 #: ../vector/v.in.ogr/main.c:881 ../vector/v.overlay/main.c:237 #: ../vector/v.voronoi/main.c:215 msgid "Unable to create temporary vector map" msgstr "" -#: ../raster/r.path/main.c:541 ../raster/r.path/main.c:557 +#: ../raster/r.path/main.c:544 ../raster/r.path/main.c:560 #, c-format msgid "No path at row %d, col %d" msgstr "" -#: ../raster/r.path/main.c:546 ../vector/v.overlay/area_area.c:134 +#: ../raster/r.path/main.c:549 ../vector/v.overlay/area_area.c:134 #: ../vector/v.overlay/line_area.c:255 msgid "Breaking lines..." msgstr "" -#: ../raster/r.path/main.c:684 +#: ../raster/r.path/main.c:687 msgid "Unable to increase point list" msgstr "" -#: ../raster/r.path/main.c:887 +#: ../raster/r.path/main.c:890 #, c-format msgid "No path from row %d, col %d" msgstr "" -#: ../raster/r.path/main.c:901 +#: ../raster/r.path/main.c:904 #, c-format msgid "Invalid direction %d" msgstr "" -#: ../raster/r.path/main.c:999 +#: ../raster/r.path/main.c:1002 msgid "Path is leaving the current region" msgstr "" @@ -38886,39 +38905,17 @@ msgstr "" msgid "Link to vector map <%s> created." msgstr "" -#: ../vector/v.external/proj.c:35 ../vector/v.in.ogr/main.c:741 -#: ../vector/v.in.ogr/proj.c:36 +#: ../vector/v.external/proj.c:34 ../vector/v.in.ogr/main.c:741 +#: ../vector/v.in.ogr/proj.c:34 #, c-format msgid "Geometry column <%s> not found in input layer <%s>" msgstr "" -#: ../vector/v.external/proj.c:49 ../vector/v.in.ogr/proj.c:50 -msgid "Unable to convert input layer projection information to GRASS format for checking" -msgstr "" - -#: ../vector/v.external/proj.c:55 ../vector/v.external/proj.c:85 -#: ../vector/v.in.ogr/proj.c:56 ../vector/v.in.ogr/proj.c:86 -msgid "Can't get WKT parameter string" -msgstr "" - -#: ../vector/v.external/proj.c:58 ../vector/v.external/proj.c:88 -#: ../vector/v.in.ogr/proj.c:59 ../vector/v.in.ogr/proj.c:89 -#, c-format -msgid "" -"WKT definition:\n" -"%s" -msgstr "" - -#: ../vector/v.external/proj.c:69 ../vector/v.in.ogr/proj.c:70 +#: ../vector/v.external/proj.c:46 ../vector/v.in.ogr/proj.c:46 #, c-format msgid "No projection information available for layer <%s>" msgstr "" -#: ../vector/v.external/proj.c:78 ../vector/v.in.ogr/proj.c:79 -#, c-format -msgid "Projection for layer <%s> does not contain a valid CRS" -msgstr "" - #: ../vector/v.extract/extract.c:202 #, c-format msgid "No category found for area %d. Skipping." @@ -40689,16 +40686,16 @@ msgstr "" msgid "The spatial filter does not overlap with OGR layer <%s>. Nothing to import." msgstr "" -#: ../vector/v.in.ogr/proj.c:168 +#: ../vector/v.in.ogr/proj.c:85 msgid "Layer projections are unreadable" msgstr "" -#: ../vector/v.in.ogr/proj.c:184 +#: ../vector/v.in.ogr/proj.c:93 #, c-format msgid "Projection for layer <%s> is unreadable" msgstr "" -#: ../vector/v.in.ogr/proj.c:236 +#: ../vector/v.in.ogr/proj.c:113 #, c-format msgid "Projection of layer <%s> is different from projection of layer <%s>" msgstr "" @@ -48315,64 +48312,6 @@ msgstr "" msgid "Image file" msgstr "Plik obrazu" -#, fuzzy, c-format -#~| msgid "Unable to open <%s>" -#~ msgid "Unable to seek: %s" -#~ msgstr "Nie można otworzyć <%s>" - -#~ msgid "Both -s and -h doesn't make sense" -#~ msgstr "Nie można użyć jednocześnie flag -h i -s" - -#~ msgid "Use -M or -s, not both" -#~ msgstr "Użyj flagi '-m' lub '-s' - nie obu" - -#~ msgid "Print the stats in shell script style" -#~ msgstr "Wyświetl statystyki w stylu skryptu shell" - -#~ msgid "Field separator for shell script style output" -#~ msgstr "Separator pól dla wyjścia w stylu skryptu shell" - -#~ msgid "Output RRR:GGG:BBB color values for each profile point" -#~ msgstr "Zapisz wartości RRR:GGG:BBB kolorów dla każdego punktu profilu" - -#, c-format -#~ msgid "Test %s." -#~ msgstr "Test %s." - -#~ msgid "have" -#~ msgstr "masz" - -#~ msgid "read " -#~ msgstr "do odczytu " - -#~ msgid "Everyone" -#~ msgstr "Każdy" - -#~ msgid "has" -#~ msgstr "ma" - -#~ msgid "Only you" -#~ msgstr "Tylko ty" - -#~ msgid "now" -#~ msgstr "teraz" - -#~ msgid "will" -#~ msgstr "będzie" - -#, fuzzy, c-format -#~ msgid "Only one of -%c, -%c, -%c, -%c or -%c flags may be specified" -#~ msgstr "Tekst powinien być wprowadzony lub użyte -c" - -#~ msgid "temperature" -#~ msgstr "temperatura" - -#~ msgid "changed" -#~ msgstr "zmienione" - -#~ msgid "reduced" -#~ msgstr "zredukowane" - #~ msgid "" #~ "\n" #~ "%d classes, %.2f%% points stable\n" @@ -48590,6 +48529,9 @@ msgstr "Plik obrazu" #~ msgid "Bins vector points into a raster map." #~ msgstr "Konwertje (rasteryzuje) mapę wektorową na mapę rastrową." +#~ msgid "Both -s and -h doesn't make sense" +#~ msgstr "Nie można użyć jednocześnie flag -h i -s" + #, fuzzy #~ msgid "Boxplot color" #~ msgstr "Kolor tekstu" @@ -49046,10 +48988,6 @@ msgstr "Plik obrazu" #~ msgid "Database indexes" #~ msgstr "Baza danych:" -#, fuzzy -#~ msgid "Dataset ID" -#~ msgstr "Baza danych:" - #, fuzzy #~ msgid "Date format" #~ msgstr "Format tabeli" @@ -49251,6 +49189,9 @@ msgstr "Plik obrazu" #~ msgid "Evaluation" #~ msgstr "Lokacja: %s\n" +#~ msgid "Everyone" +#~ msgstr "Każdy" + #, fuzzy #~ msgid "Example: 1,3,7-9,13" #~ msgstr "Przykład: 1.4,3.8,13" @@ -49336,6 +49277,9 @@ msgstr "Plik obrazu" #~ msgid "Field separator" #~ msgstr "Wyjściowy separator pól" +#~ msgid "Field separator for shell script style output" +#~ msgstr "Separator pól dla wyjścia w stylu skryptu shell" + #, fuzzy #~ msgid "Field separator in input text files" #~ msgstr "Separator pól (tryb punktowy)" @@ -51870,10 +51814,17 @@ msgstr "Plik obrazu" #~ msgid "Only 'terrain' points output vector map" #~ msgstr "Mapa wektorowa punktów początkowych" +#, fuzzy, c-format +#~ msgid "Only one of -%c, -%c, -%c, -%c or -%c flags may be specified" +#~ msgstr "Tekst powinien być wprowadzony lub użyte -c" + #, fuzzy #~ msgid "Only tune and train model, do not predict" #~ msgstr "Tylko zapytanie testowe, bez jego wykonania" +#~ msgid "Only you" +#~ msgstr "Tylko ty" + #, fuzzy #~ msgid "Operators" #~ msgstr "temperatura" @@ -51938,6 +51889,9 @@ msgstr "Plik obrazu" #~ msgid "Output Potential file" #~ msgstr "\"world file\" dla pliku wyjściowego" +#~ msgid "Output RRR:GGG:BBB color values for each profile point" +#~ msgstr "Zapisz wartości RRR:GGG:BBB kolorów dla każdego punktu profilu" + #, fuzzy #~ msgid "Output beam irradiation raster map aggregated for the whole period of time [Wh.m-2.day-1]" #~ msgstr "Wynikowa mapa rozproszonego napromieniowania [W.m-2] (tryb 1) lub napromienienia [Wh.m-2.day-1] (tryb 2)" @@ -52381,6 +52335,9 @@ msgstr "Plik obrazu" #~ msgid "Print the request URL and exit" #~ msgstr "Wyświetl tabele i zakończ" +#~ msgid "Print the stats in shell script style" +#~ msgstr "Wyświetl statystyki w stylu skryptu shell" + #, fuzzy #~ msgid "Print the threshold value in shell script style" #~ msgstr "Wyświetl statystyki w stylu skryptu shell" @@ -53031,6 +52988,10 @@ msgstr "Plik obrazu" #~ msgid "Terrain options" #~ msgstr "Dane wejściowe" +#, c-format +#~ msgid "Test %s." +#~ msgstr "Test %s." + #, fuzzy #~ msgid "Test set (csv format)" #~ msgstr "Użyj tekstu jako tytułu mapy" @@ -53279,6 +53240,11 @@ msgstr "Plik obrazu" #~ msgid "Unable to open dig_cats file" #~ msgstr "Nie można otworzyć pliku dig_att <%s>\n" +#, fuzzy, c-format +#~| msgid "Unable to open <%s>" +#~ msgid "Unable to seek: %s" +#~ msgstr "Nie można otworzyć <%s>" + #, fuzzy #~ msgid "Unacceptable conditions for Designated Fill" #~ msgstr "Nie można otworzyć pliku sygnatury." @@ -53324,6 +53290,9 @@ msgstr "Plik obrazu" #~ msgid "Uploads raster values and labels to vector point layer" #~ msgstr "Próbkuje mapę rastrową w sąsiedztwie punktów wektorowych." +#~ msgid "Use -M or -s, not both" +#~ msgstr "Użyj flagi '-m' lub '-s' - nie obu" + #, fuzzy #~ msgid "Use a random seed" #~ msgstr "Tytuł nowej mapy rastrowej" @@ -53653,6 +53622,9 @@ msgstr "Plik obrazu" #~ msgid "centerpoint" #~ msgstr "centroid" +#~ msgid "changed" +#~ msgstr "zmienione" + #, fuzzy #~ msgid "channels" #~ msgstr "zmienione" @@ -53747,6 +53719,12 @@ msgstr "Plik obrazu" #~ msgid "grid lines" #~ msgstr "Linie wektorowe" +#~ msgid "has" +#~ msgstr "ma" + +#~ msgid "have" +#~ msgstr "masz" + #, fuzzy #~ msgid "high pass filter" #~ msgstr "Korelacja" @@ -53854,6 +53832,9 @@ msgstr "Plik obrazu" #~ msgid "nodata value in output files" #~ msgstr "Numer kolumny pliku wejściowego przechowującej dane" +#~ msgid "now" +#~ msgstr "teraz" + #, fuzzy #~ msgid "npoints = %d, nterrain = %d" #~ msgstr "" @@ -53926,10 +53907,16 @@ msgstr "Plik obrazu" #~ msgid "radius= and x_radius=/y_radius= are mutually exclusive" #~ msgstr "-r i -e wzajemnie się wykluczają" +#~ msgid "read " +#~ msgstr "do odczytu " + #, fuzzy #~ msgid "read vector region map" #~ msgstr "Nazwa wektorowej mapy poligonowej" +#~ msgid "reduced" +#~ msgstr "zredukowane" + #, fuzzy #~ msgid "resolution of plot" #~ msgstr "Rozdzielczość" @@ -53965,6 +53952,9 @@ msgstr "Plik obrazu" #~ msgid "symbology" #~ msgstr "hydrologia" +#~ msgid "temperature" +#~ msgstr "temperatura" + #, fuzzy #~ msgid "thredds" #~ msgstr "Narzędzie: Próg" @@ -53985,10 +53975,6 @@ msgstr "Plik obrazu" #~ msgid "trendline width" #~ msgstr "Szerokość linii" -#, fuzzy -#~ msgid "uri destination" -#~ msgstr "Pozycja" - #, fuzzy #~ msgid "uri source" #~ msgstr "Brak źródeł" @@ -54032,3 +54018,6 @@ msgstr "Plik obrazu" #, fuzzy #~ msgid "width of the boxplot median line" #~ msgstr "Scieżka do pliku z fontami" + +#~ msgid "will" +#~ msgstr "będzie" diff --git a/locale/po/grassmods_pt.po b/locale/po/grassmods_pt.po index 957c6d13250..306bfa60103 100644 --- a/locale/po/grassmods_pt.po +++ b/locale/po/grassmods_pt.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: grassmods_pt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-07-26 01:36+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Portuguese \n" @@ -179,7 +179,7 @@ msgstr "" #: ../general/g.proj/main.c:90 ../general/g.proj/main.c:99 #: ../general/g.proj/main.c:105 ../general/g.proj/main.c:114 #: ../general/g.proj/main.c:126 ../general/g.proj/main.c:135 -#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:244 +#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:245 #: ../general/g.region/main.c:91 ../general/g.region/main.c:97 #: ../general/g.region/main.c:102 ../general/g.region/main.c:108 #: ../general/g.region/main.c:113 ../general/g.region/main.c:118 @@ -307,13 +307,12 @@ msgstr "" #: ../db/db.connect/main.c:144 ../general/g.findfile/main.c:187 #: ../general/g.list/list.c:122 ../general/g.mapset/main.c:119 -#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:54 -#: ../general/g.proj/output.c:360 ../general/g.region/main.c:471 -#: ../general/g.version/main.c:140 ../misc/m.measure/main.c:87 -#: ../raster/r.describe/dumplist.c:38 ../raster/r.distance/report.c:211 -#: ../raster/r.distance/report.c:218 ../raster/r.distance/report.c:225 -#: ../raster/r.info/main.c:147 ../raster/r.proj/main.c:487 -#: ../raster/r.regression.line/main.c:101 +#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:351 +#: ../general/g.region/main.c:471 ../general/g.version/main.c:140 +#: ../misc/m.measure/main.c:87 ../raster/r.describe/dumplist.c:38 +#: ../raster/r.distance/report.c:211 ../raster/r.distance/report.c:218 +#: ../raster/r.distance/report.c:225 ../raster/r.info/main.c:147 +#: ../raster/r.proj/main.c:487 ../raster/r.regression.line/main.c:101 #: ../raster/r.regression.multi/main.c:197 #: ../raster/r.regression.multi/main.c:566 #: ../raster/r.stats.quantile/main.c:430 ../raster/r.stats.quantile/main.c:447 @@ -332,7 +331,7 @@ msgstr "" msgid "Failed to initialize JSON object. Out of memory?" msgstr "" -#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:277 +#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:278 #: ../general/g.region/main.c:427 ../general/g.version/main.c:153 #: ../imagery/i.group/main.c:137 ../misc/m.measure/main.c:100 #: ../raster/r.proj/main.c:270 ../raster/r.regression.line/main.c:114 @@ -486,7 +485,7 @@ msgstr "" msgid "Lists all databases for a given driver and location." msgstr "" -#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:383 +#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:374 #: ../general/g.region/main.c:990 ../general/g.version/main.c:409 #: ../imagery/i.group/main.c:301 ../raster/r.category/main.c:412 #: ../raster/r.describe/dumplist.c:71 ../raster/r.info/main.c:1000 @@ -6460,10 +6459,10 @@ msgstr "" msgid "Converts between PPM/PGM and PNG image formats." msgstr "" -#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:141 -#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:140 -#: ../vector/v.external/proj.c:173 ../vector/v.in.lidar/main.c:525 -#: ../vector/v.in.ogr/proj.c:307 +#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:129 +#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:129 +#: ../vector/v.external/proj.c:158 ../vector/v.in.lidar/main.c:525 +#: ../vector/v.in.ogr/proj.c:228 #, fuzzy, c-format msgid "Project <%s> created" msgstr "Mapa raster 3D <%s> não encontrado" @@ -6774,55 +6773,63 @@ msgstr "" msgid "Name of new project (location) to create" msgstr "Nome da nova locação a criar" -#: ../general/g.proj/main.c:239 -msgid "plain;Human readable text output;shell;shell script style text output;json;JSON (JavaScript Object Notation);wkt;Well-known text output;proj4;PROJ.4 style text output;" +#: ../general/g.proj/main.c:240 +msgid "plain;Human readable text output;shell;shell script style text output;wkt;Well-known text output;projjson;JSON (JavaScript Object Notation) version of WKT;proj4;PROJ.4 style text output;" msgstr "" -#: ../general/g.proj/main.c:271 ../vector/v.what.rast/main.c:159 +#: ../general/g.proj/main.c:272 ../vector/v.what.rast/main.c:159 #, c-format msgid "The format option can only be used with -%c flag" msgstr "" -#: ../general/g.proj/main.c:283 +#: ../general/g.proj/main.c:284 msgid "Flag 'j' is deprecated and will be removed in a future release. Please use format=proj4 instead." msgstr "" -#: ../general/g.proj/main.c:292 +#: ../general/g.proj/main.c:293 msgid "Flag 'w' is deprecated and will be removed in a future release. Please use format=wkt instead." msgstr "" -#: ../general/g.proj/main.c:312 +#: ../general/g.proj/main.c:313 #, c-format msgid "Only one of '%s', '%s', '%s', '%s' or '%s' options may be specified" msgstr "" -#: ../general/g.proj/main.c:364 +#: ../general/g.proj/main.c:365 msgid "Projection files missing" msgstr "" -#: ../general/g.proj/main.c:392 +#: ../general/g.proj/main.c:393 #, c-format msgid "No output format specified. Define one of the options: plain, shell, json, wkt, or proj4 using the -%c flag." msgstr "" -#: ../general/g.proj/main.c:397 +#: ../general/g.proj/main.c:398 #, c-format msgid "No output format specified. Define one of the options: plain, shell, json, or proj4 using the -%c flag." msgstr "" -#: ../general/g.proj/output.c:221 +#: ../general/g.proj/output.c:54 +msgid "JSON output is not available." +msgstr "" + +#: ../general/g.proj/output.c:212 msgid "Unable to convert projection information to PROJ format" msgstr "" -#: ../general/g.proj/output.c:295 +#: ../general/g.proj/output.c:286 #, c-format msgid "Unable to create PROJ definition from srid <%s>" msgstr "" -#: ../general/g.proj/output.c:337 +#: ../general/g.proj/output.c:328 msgid "Unable to convert to WKT" msgstr "" +#: ../general/g.proj/output.c:433 +msgid "Unable to convert to PROJJSON" +msgstr "" + #: ../general/g.region/main.c:67 msgid "computational region" msgstr "" @@ -11470,10 +11477,10 @@ msgstr "" #: ../raster/r.grow.distance/main.c:392 ../raster/r.li/r.li.daemon/daemon.c:743 #: ../raster/r.mfilter/execute.c:82 ../raster/r.mfilter/execute.c:114 #: ../raster/r.mfilter/execute.c:165 ../raster/r.mfilter/getrow.c:24 -#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:786 -#: ../raster/r.path/main.c:822 ../raster/r.path/main.c:954 -#: ../raster/r.path/main.c:1073 ../raster/r.path/main.c:1103 -#: ../raster/r.path/main.c:1207 ../raster/r.thin/io.c:72 +#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:789 +#: ../raster/r.path/main.c:825 ../raster/r.path/main.c:957 +#: ../raster/r.path/main.c:1076 ../raster/r.path/main.c:1106 +#: ../raster/r.path/main.c:1210 ../raster/r.thin/io.c:72 #: ../raster/r.thin/io.c:82 ../raster3d/r3.in.v5d/v5d.c:1192 #: ../raster3d/r3.in.v5d/v5d.c:1443 ../raster3d/r3.in.v5d/v5d.c:1523 #: ../raster3d/r3.in.v5d/v5d.c:1848 ../raster3d/r3.in.v5d/v5d.c:1859 @@ -11498,9 +11505,9 @@ msgstr "" #: ../raster/r.clump/minsize.c:268 ../raster/r.clump/minsize.c:308 #: ../raster/r.clump/minsize.c:319 ../raster/r.clump/minsize.c:454 #: ../raster/r.clump/minsize.c:481 ../raster/r.clump/minsize.c:557 -#: ../raster/r.path/main.c:791 ../raster/r.path/main.c:827 -#: ../raster/r.path/main.c:962 ../raster/r.path/main.c:1078 -#: ../raster/r.path/main.c:1108 ../raster/r.path/main.c:1213 +#: ../raster/r.path/main.c:794 ../raster/r.path/main.c:830 +#: ../raster/r.path/main.c:965 ../raster/r.path/main.c:1081 +#: ../raster/r.path/main.c:1111 ../raster/r.path/main.c:1216 msgid "Unable to read from temp file" msgstr "" @@ -19831,7 +19838,7 @@ msgstr "" msgid "Starting point %d is outside the current region" msgstr "" -#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:375 +#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:378 #, c-format msgid "Starting vector map <%s> contains no points in the current region" msgstr "" @@ -19845,8 +19852,8 @@ msgid "Calculating flow directions..." msgstr "" #: ../raster/r.drain/main.c:485 ../raster/r.in.lidar/main.c:783 -#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:598 -#: ../raster/r.path/main.c:628 ../raster/r.viewshed/grass.cpp:621 +#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:601 +#: ../raster/r.path/main.c:631 ../raster/r.viewshed/grass.cpp:621 msgid "Writing output raster map..." msgstr "" @@ -20094,84 +20101,92 @@ msgstr "" msgid "Imagery group <%s> created" msgstr "" -#: ../raster/r.external/proj.c:51 ../raster/r.external/proj.c:93 -#: ../raster/r.in.gdal/proj.c:51 ../raster/r.in.gdal/proj.c:93 -#, c-format -msgid "" -"Input contains an invalid CRS. WKT definition:\n" -"%s" +#: ../raster/r.external/proj.c:36 ../raster/r.external/proj.c:63 +#: ../raster/r.external/proj.c:122 ../raster/r.in.gdal/proj.c:36 +#: ../raster/r.in.gdal/proj.c:63 ../raster/r.in.gdal/proj.c:122 +#: ../vector/v.external/proj.c:92 ../vector/v.external/proj.c:151 +#: ../vector/v.in.ogr/proj.c:162 ../vector/v.in.ogr/proj.c:221 +msgid "Can't get WKT parameter string" +msgstr "" + +#: ../raster/r.external/proj.c:56 ../raster/r.in.gdal/proj.c:56 +#: ../vector/v.external/proj.c:85 ../vector/v.in.ogr/proj.c:155 +msgid "Input contains an invalid CRS." msgstr "" -#: ../raster/r.external/proj.c:120 ../raster/r.in.gdal/proj.c:120 +#: ../raster/r.external/proj.c:66 ../raster/r.in.gdal/proj.c:66 +#: ../vector/v.external/proj.c:95 ../vector/v.in.ogr/proj.c:165 +#, fuzzy +#| msgid "Transect definition" +msgid "WKT definition:" +msgstr "Definição do perfil" + +#: ../raster/r.external/proj.c:99 ../raster/r.in.gdal/proj.c:99 +#: ../vector/v.external/proj.c:128 ../vector/v.in.ogr/proj.c:198 msgid "No projection information available" msgstr "" -#: ../raster/r.external/proj.c:133 +#: ../raster/r.external/proj.c:114 ../raster/r.in.gdal/proj.c:114 +#: ../vector/v.external/proj.c:143 ../vector/v.in.ogr/proj.c:213 #, fuzzy -msgid "Unable to convert input map coordinate reference system to GRASS format; cannot create new project." +msgid "Unable to convert input map projection to GRASS format; cannot create new project." msgstr "Não consegui converter a projeção do mapa de entrada para o formato do GRASS, não posso criar nova locação." -#: ../raster/r.external/proj.c:139 ../raster/r.in.gdal/main.c:1039 -#: ../raster/r.in.gdal/proj.c:138 ../vector/v.external/proj.c:171 -#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:305 +#: ../raster/r.external/proj.c:127 ../raster/r.in.gdal/main.c:1039 +#: ../raster/r.in.gdal/proj.c:127 ../vector/v.external/proj.c:156 +#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:226 #, fuzzy, c-format msgid "Unable to create new project <%s>" msgstr "Não consegui alocar buffer de células." -#: ../raster/r.external/proj.c:165 ../raster/r.in.gdal/proj.c:164 -#: ../vector/v.external/proj.c:197 ../vector/v.in.ogr/proj.c:331 +#: ../raster/r.external/proj.c:157 ../raster/r.in.gdal/proj.c:157 +#: ../vector/v.external/proj.c:186 ../vector/v.in.ogr/proj.c:256 msgid "Unable to convert input map projection information to GRASS format." msgstr "" -#: ../raster/r.external/proj.c:192 ../raster/r.in.gdal/proj.c:192 +#: ../raster/r.external/proj.c:238 ../raster/r.in.gdal/proj.c:238 #: ../raster/r.in.lidar/projection.c:126 -#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:228 -#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:360 +#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:267 +#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:337 msgid "Over-riding projection check" msgstr "" -#: ../raster/r.external/proj.c:200 ../raster/r.in.gdal/proj.c:200 -#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 -#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.external/proj.c:236 -#: ../vector/v.in.lidar/projection.c:30 ../vector/v.in.ogr/proj.c:368 -msgid "" -"Coordinate reference system of dataset does not appear to match current project.\n" -"\n" -msgstr "" +#: ../raster/r.external/proj.c:244 ../raster/r.in.gdal/proj.c:244 +#: ../vector/v.external/proj.c:273 ../vector/v.in.ogr/proj.c:343 +#, fuzzy +msgid "Coordinate reference system of dataset does not appear to match current project.\n" +msgstr "Usar coordenadas do mapa ao invés de xyz" -#: ../raster/r.external/proj.c:207 ../raster/r.external/proj.c:216 -#: ../raster/r.in.gdal/proj.c:207 ../raster/r.in.gdal/proj.c:216 -#: ../vector/v.external/proj.c:243 ../vector/v.external/proj.c:252 -#: ../vector/v.in.ogr/proj.c:375 ../vector/v.in.ogr/proj.c:384 -msgid "Project PROJ_INFO is:\n" +#: ../raster/r.external/proj.c:258 ../raster/r.in.gdal/proj.c:258 +#: ../vector/v.external/proj.c:287 ../vector/v.in.ogr/proj.c:357 +msgid "Dataset CRS is:\n" msgstr "" -#: ../raster/r.external/proj.c:236 ../raster/r.external/proj.c:243 -#: ../raster/r.in.gdal/proj.c:236 ../raster/r.in.gdal/proj.c:243 -#: ../vector/v.external/proj.c:272 ../vector/v.external/proj.c:279 -#: ../vector/v.in.ogr/proj.c:404 ../vector/v.in.ogr/proj.c:411 -msgid "Dataset PROJ_INFO is:\n" +#: ../raster/r.external/proj.c:272 ../raster/r.in.gdal/proj.c:272 +#: ../vector/v.external/proj.c:301 ../vector/v.in.ogr/proj.c:371 +msgid "Project CRS is:\n" msgstr "" -#: ../raster/r.external/proj.c:324 ../raster/r.in.lidar/projection.c:89 -#: ../raster/r.in.pdal/projection.c:87 ../raster3d/r3.in.lidar/projection.c:90 -#: ../vector/v.external/proj.c:360 ../vector/v.in.lidar/projection.c:87 -#: ../vector/v.in.ogr/proj.c:492 ../vector/v.in.pdal/projection.c:87 +#: ../raster/r.external/proj.c:286 ../raster/r.in.gdal/proj.c:286 +#: ../raster/r.in.lidar/projection.c:89 ../raster/r.in.pdal/projection.c:87 +#: ../raster3d/r3.in.lidar/projection.c:90 ../vector/v.external/proj.c:315 +#: ../vector/v.in.lidar/projection.c:87 ../vector/v.in.ogr/proj.c:385 +#: ../vector/v.in.pdal/projection.c:87 #, c-format msgid "" "\n" "In case of no significant differences in the coordinate reference system definitions, use the -o flag to ignore them and use current project definition.\n" msgstr "" -#: ../raster/r.external/proj.c:328 ../raster/r.in.gdal/proj.c:327 -#: ../vector/v.external/proj.c:364 ../vector/v.in.ogr/proj.c:496 +#: ../raster/r.external/proj.c:290 ../raster/r.in.gdal/proj.c:290 +#: ../vector/v.external/proj.c:319 ../vector/v.in.ogr/proj.c:389 msgid "Consider generating a new project from the input dataset using the 'project' parameter.\n" msgstr "" -#: ../raster/r.external/proj.c:348 ../raster/r.in.gdal/proj.c:347 +#: ../raster/r.external/proj.c:310 ../raster/r.in.gdal/proj.c:310 #: ../raster/r.in.lidar/projection.c:136 ../raster/r.in.pdal/projection.c:134 -#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:384 -#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:516 +#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:339 +#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:409 msgid "Coordinate reference system of input dataset and current project appear to match" msgstr "" @@ -20781,7 +20796,7 @@ msgstr "" msgid "Region resolution shouldn't be lesser than map %s resolution. Run g.region raster=%s to set proper resolution" msgstr "" -#: ../raster/r.geomorphon/pattern.c:228 +#: ../raster/r.geomorphon/pattern.c:229 #, c-format msgid "Internal error in %s()" msgstr "" @@ -21751,8 +21766,7 @@ msgstr "" msgid "Error in %s (can't re-project GCP %i)" msgstr "" -#: ../raster/r.in.gdal/main.c:983 ../vector/v.external/proj.c:165 -#: ../vector/v.in.lidar/main.c:516 +#: ../raster/r.in.gdal/main.c:983 ../vector/v.in.lidar/main.c:516 #, fuzzy msgid "Unable to convert input map CRS to GRASS format; cannot create new project." msgstr "Não consegui converter a projeção do mapa de entrada para o formato do GRASS, não posso criar nova locação." @@ -21805,17 +21819,6 @@ msgstr "" msgid "Unable to open file <%s>: %s." msgstr "" -#: ../raster/r.in.gdal/proj.c:132 ../vector/v.in.ogr/proj.c:299 -#, fuzzy -msgid "Unable to convert input map projection to GRASS format; cannot create new project." -msgstr "Não consegui converter a projeção do mapa de entrada para o formato do GRASS, não posso criar nova locação." - -#: ../raster/r.in.gdal/proj.c:323 -msgid "" -"\n" -"In case of no significant differences in the CRS definitions, use the -o flag to ignore them and use current project definition.\n" -msgstr "" - #: ../raster/r.in.gridatb/file_io.c:16 #, fuzzy, c-format msgid "Unable to open file: %s" @@ -22176,6 +22179,13 @@ msgstr "" msgid "Unable to calculate trimmed mean without the trim option specified!" msgstr "" +#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 +#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.in.lidar/projection.c:30 +msgid "" +"Coordinate reference system of dataset does not appear to match current project.\n" +"\n" +msgstr "" + #: ../raster/r.in.lidar/projection.c:38 ../raster/r.in.pdal/projection.c:36 #: ../vector/v.in.lidar/projection.c:36 ../vector/v.in.pdal/projection.c:36 msgid "GRASS project PROJ_INFO is:\n" @@ -25027,113 +25037,113 @@ msgstr "Mostrar também ajustes 3D" msgid "Do not break lines (faster for single-direction bitmask encoding)" msgstr "" -#: ../raster/r.path/main.c:384 +#: ../raster/r.path/main.c:387 msgid "No start point(s) specified" msgstr "" -#: ../raster/r.path/main.c:394 +#: ../raster/r.path/main.c:397 #, c-format msgid "Reading raster values map <%s> ..." msgstr "" -#: ../raster/r.path/main.c:399 +#: ../raster/r.path/main.c:402 #, fuzzy, c-format msgid "Unable to open temporary file <%s>: %s" msgstr "Tamanho de malha inválido <%s>" -#: ../raster/r.path/main.c:411 ../raster/r.path/main.c:489 -#: ../raster/r.path/main.c:506 +#: ../raster/r.path/main.c:414 ../raster/r.path/main.c:492 +#: ../raster/r.path/main.c:509 msgid "Unable to write to tempfile" msgstr "" -#: ../raster/r.path/main.c:419 +#: ../raster/r.path/main.c:422 msgid "Unable to read range file" msgstr "" -#: ../raster/r.path/main.c:422 +#: ../raster/r.path/main.c:425 #, c-format msgid "Invalid directions map <%s>" msgstr "" -#: ../raster/r.path/main.c:427 +#: ../raster/r.path/main.c:430 msgid "Directional degrees can not be > 360" msgstr "" -#: ../raster/r.path/main.c:433 +#: ../raster/r.path/main.c:436 msgid "Directional degrees divided by 45 can not be > 8" msgstr "" -#: ../raster/r.path/main.c:438 +#: ../raster/r.path/main.c:441 #, c-format msgid "Bitmask encoded directions can not be > %d" msgstr "" -#: ../raster/r.path/main.c:445 +#: ../raster/r.path/main.c:448 msgid "Input direction format assumed to be degrees CCW from East divided by 45" msgstr "" -#: ../raster/r.path/main.c:450 +#: ../raster/r.path/main.c:453 msgid "Input direction format assumed to be bitmask encoded without Knight's move" msgstr "" -#: ../raster/r.path/main.c:456 +#: ../raster/r.path/main.c:459 msgid "Input direction format assumed to be degrees CCW from East" msgstr "" -#: ../raster/r.path/main.c:460 +#: ../raster/r.path/main.c:463 msgid "Input direction format assumed to be bitmask encoded with Knight's move" msgstr "" -#: ../raster/r.path/main.c:465 +#: ../raster/r.path/main.c:468 #, c-format msgid "Unable to detect format of input direction map <%s>" msgstr "" -#: ../raster/r.path/main.c:469 +#: ../raster/r.path/main.c:472 #, c-format msgid "Invalid directions format '%s'" msgstr "" -#: ../raster/r.path/main.c:471 +#: ../raster/r.path/main.c:474 #, c-format msgid "Reading direction map <%s> ..." msgstr "" -#: ../raster/r.path/main.c:525 +#: ../raster/r.path/main.c:528 msgid "Processing start points..." msgstr "" -#: ../raster/r.path/main.c:535 ../vector/v.buffer/main.c:410 +#: ../raster/r.path/main.c:538 ../vector/v.buffer/main.c:410 #: ../vector/v.in.ogr/main.c:881 ../vector/v.overlay/main.c:237 #: ../vector/v.voronoi/main.c:215 msgid "Unable to create temporary vector map" msgstr "" -#: ../raster/r.path/main.c:541 ../raster/r.path/main.c:557 +#: ../raster/r.path/main.c:544 ../raster/r.path/main.c:560 #, c-format msgid "No path at row %d, col %d" msgstr "" -#: ../raster/r.path/main.c:546 ../vector/v.overlay/area_area.c:134 +#: ../raster/r.path/main.c:549 ../vector/v.overlay/area_area.c:134 #: ../vector/v.overlay/line_area.c:255 msgid "Breaking lines..." msgstr "" -#: ../raster/r.path/main.c:684 +#: ../raster/r.path/main.c:687 msgid "Unable to increase point list" msgstr "" -#: ../raster/r.path/main.c:887 +#: ../raster/r.path/main.c:890 #, c-format msgid "No path from row %d, col %d" msgstr "" -#: ../raster/r.path/main.c:901 +#: ../raster/r.path/main.c:904 #, c-format msgid "Invalid direction %d" msgstr "" -#: ../raster/r.path/main.c:999 +#: ../raster/r.path/main.c:1002 msgid "Path is leaving the current region" msgstr "" @@ -38693,39 +38703,17 @@ msgstr "" msgid "Link to vector map <%s> created." msgstr "" -#: ../vector/v.external/proj.c:35 ../vector/v.in.ogr/main.c:741 -#: ../vector/v.in.ogr/proj.c:36 +#: ../vector/v.external/proj.c:34 ../vector/v.in.ogr/main.c:741 +#: ../vector/v.in.ogr/proj.c:34 #, c-format msgid "Geometry column <%s> not found in input layer <%s>" msgstr "" -#: ../vector/v.external/proj.c:49 ../vector/v.in.ogr/proj.c:50 -msgid "Unable to convert input layer projection information to GRASS format for checking" -msgstr "" - -#: ../vector/v.external/proj.c:55 ../vector/v.external/proj.c:85 -#: ../vector/v.in.ogr/proj.c:56 ../vector/v.in.ogr/proj.c:86 -msgid "Can't get WKT parameter string" -msgstr "" - -#: ../vector/v.external/proj.c:58 ../vector/v.external/proj.c:88 -#: ../vector/v.in.ogr/proj.c:59 ../vector/v.in.ogr/proj.c:89 -#, c-format -msgid "" -"WKT definition:\n" -"%s" -msgstr "" - -#: ../vector/v.external/proj.c:69 ../vector/v.in.ogr/proj.c:70 +#: ../vector/v.external/proj.c:46 ../vector/v.in.ogr/proj.c:46 #, c-format msgid "No projection information available for layer <%s>" msgstr "" -#: ../vector/v.external/proj.c:78 ../vector/v.in.ogr/proj.c:79 -#, c-format -msgid "Projection for layer <%s> does not contain a valid CRS" -msgstr "" - #: ../vector/v.extract/extract.c:202 #, c-format msgid "No category found for area %d. Skipping." @@ -40488,16 +40476,16 @@ msgstr "" msgid "The spatial filter does not overlap with OGR layer <%s>. Nothing to import." msgstr "" -#: ../vector/v.in.ogr/proj.c:168 +#: ../vector/v.in.ogr/proj.c:85 msgid "Layer projections are unreadable" msgstr "" -#: ../vector/v.in.ogr/proj.c:184 +#: ../vector/v.in.ogr/proj.c:93 #, c-format msgid "Projection for layer <%s> is unreadable" msgstr "" -#: ../vector/v.in.ogr/proj.c:236 +#: ../vector/v.in.ogr/proj.c:113 #, c-format msgid "Projection of layer <%s> is different from projection of layer <%s>" msgstr "" @@ -47978,16 +47966,6 @@ msgstr "" msgid "Image file" msgstr "Arquivo de imagem" -#, fuzzy, c-format -#~ msgid "Unable to seek: %s" -#~ msgstr "Não consegui alocar buffer de células." - -#~ msgid "Print the stats in shell script style" -#~ msgstr "Mostra as estatísticas em estilo shell script" - -#~ msgid "Output RRR:GGG:BBB color values for each profile point" -#~ msgstr "Saída de valores RRR:GGG:BBB para cada ponto do perfil" - #~ msgid "" #~ "\n" #~ "%d classes, %.2f%% points stable\n" @@ -50788,6 +50766,9 @@ msgstr "Arquivo de imagem" #~ msgid "Output Potential file" #~ msgstr "Título do raster de saída" +#~ msgid "Output RRR:GGG:BBB color values for each profile point" +#~ msgstr "Saída de valores RRR:GGG:BBB para cada ponto do perfil" + #, fuzzy #~ msgid "Output beam irradiation raster map aggregated for the whole period of time [Wh.m-2.day-1]" #~ msgstr "Saída de irradiação difusa [W.m-2] (modo 1) ou arquivo raster de irradiação [Wh.m².dia-1] (modo 2)" @@ -51132,6 +51113,9 @@ msgstr "Arquivo de imagem" #~ msgid "Print the request URL and exit" #~ msgstr "Mostra a extensão da região atual" +#~ msgid "Print the stats in shell script style" +#~ msgstr "Mostra as estatísticas em estilo shell script" + #, fuzzy #~ msgid "Print the threshold value in shell script style" #~ msgstr "Mostra as estatísticas em estilo shell script" @@ -51766,6 +51750,14 @@ msgstr "Arquivo de imagem" #~ msgid "Type of weighting to use" #~ msgstr "Tipo do mapa raster de orientação existente" +#, fuzzy +#~ msgid "Unable to convert input map coordinate reference system to GRASS format; cannot create new project." +#~ msgstr "Não consegui converter a projeção do mapa de entrada para o formato do GRASS, não posso criar nova locação." + +#, fuzzy, c-format +#~ msgid "Unable to seek: %s" +#~ msgstr "Não consegui alocar buffer de células." + #, fuzzy #~ msgid "Units for output areas" #~ msgstr "Nome do mapa raster de saída" diff --git a/locale/po/grassmods_pt_BR.po b/locale/po/grassmods_pt_BR.po index da0712d98b7..0e0d5f6b541 100644 --- a/locale/po/grassmods_pt_BR.po +++ b/locale/po/grassmods_pt_BR.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: grassmods_pt_BR\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-08-26 14:19+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Portuguese (Brazil) \n" @@ -176,7 +176,7 @@ msgstr "" #: ../general/g.proj/main.c:90 ../general/g.proj/main.c:99 #: ../general/g.proj/main.c:105 ../general/g.proj/main.c:114 #: ../general/g.proj/main.c:126 ../general/g.proj/main.c:135 -#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:244 +#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:245 #: ../general/g.region/main.c:91 ../general/g.region/main.c:97 #: ../general/g.region/main.c:102 ../general/g.region/main.c:108 #: ../general/g.region/main.c:113 ../general/g.region/main.c:118 @@ -304,13 +304,12 @@ msgstr "" #: ../db/db.connect/main.c:144 ../general/g.findfile/main.c:187 #: ../general/g.list/list.c:122 ../general/g.mapset/main.c:119 -#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:54 -#: ../general/g.proj/output.c:360 ../general/g.region/main.c:471 -#: ../general/g.version/main.c:140 ../misc/m.measure/main.c:87 -#: ../raster/r.describe/dumplist.c:38 ../raster/r.distance/report.c:211 -#: ../raster/r.distance/report.c:218 ../raster/r.distance/report.c:225 -#: ../raster/r.info/main.c:147 ../raster/r.proj/main.c:487 -#: ../raster/r.regression.line/main.c:101 +#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:351 +#: ../general/g.region/main.c:471 ../general/g.version/main.c:140 +#: ../misc/m.measure/main.c:87 ../raster/r.describe/dumplist.c:38 +#: ../raster/r.distance/report.c:211 ../raster/r.distance/report.c:218 +#: ../raster/r.distance/report.c:225 ../raster/r.info/main.c:147 +#: ../raster/r.proj/main.c:487 ../raster/r.regression.line/main.c:101 #: ../raster/r.regression.multi/main.c:197 #: ../raster/r.regression.multi/main.c:566 #: ../raster/r.stats.quantile/main.c:430 ../raster/r.stats.quantile/main.c:447 @@ -329,7 +328,7 @@ msgstr "" msgid "Failed to initialize JSON object. Out of memory?" msgstr "" -#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:277 +#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:278 #: ../general/g.region/main.c:427 ../general/g.version/main.c:153 #: ../imagery/i.group/main.c:137 ../misc/m.measure/main.c:100 #: ../raster/r.proj/main.c:270 ../raster/r.regression.line/main.c:114 @@ -483,7 +482,7 @@ msgstr "" msgid "Lists all databases for a given driver and location." msgstr "" -#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:383 +#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:374 #: ../general/g.region/main.c:990 ../general/g.version/main.c:409 #: ../imagery/i.group/main.c:301 ../raster/r.category/main.c:412 #: ../raster/r.describe/dumplist.c:71 ../raster/r.info/main.c:1000 @@ -6473,10 +6472,10 @@ msgstr "" msgid "Converts between PPM/PGM and PNG image formats." msgstr "" -#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:141 -#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:140 -#: ../vector/v.external/proj.c:173 ../vector/v.in.lidar/main.c:525 -#: ../vector/v.in.ogr/proj.c:307 +#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:129 +#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:129 +#: ../vector/v.external/proj.c:158 ../vector/v.in.lidar/main.c:525 +#: ../vector/v.in.ogr/proj.c:228 #, fuzzy, c-format msgid "Project <%s> created" msgstr "Location <%s> criada" @@ -6791,56 +6790,68 @@ msgstr "" msgid "Name of new project (location) to create" msgstr "Nome da nova locação a criar" -#: ../general/g.proj/main.c:239 -msgid "plain;Human readable text output;shell;shell script style text output;json;JSON (JavaScript Object Notation);wkt;Well-known text output;proj4;PROJ.4 style text output;" +#: ../general/g.proj/main.c:240 +msgid "plain;Human readable text output;shell;shell script style text output;wkt;Well-known text output;projjson;JSON (JavaScript Object Notation) version of WKT;proj4;PROJ.4 style text output;" msgstr "" -#: ../general/g.proj/main.c:271 ../vector/v.what.rast/main.c:159 +#: ../general/g.proj/main.c:272 ../vector/v.what.rast/main.c:159 #, fuzzy, c-format #| msgid "The configuration file can only be used with the <%s> raster map" msgid "The format option can only be used with -%c flag" msgstr "O arquivo de configuração só pode ser usado com o mapa raster <%s>" -#: ../general/g.proj/main.c:283 +#: ../general/g.proj/main.c:284 msgid "Flag 'j' is deprecated and will be removed in a future release. Please use format=proj4 instead." msgstr "" -#: ../general/g.proj/main.c:292 +#: ../general/g.proj/main.c:293 msgid "Flag 'w' is deprecated and will be removed in a future release. Please use format=wkt instead." msgstr "" -#: ../general/g.proj/main.c:312 +#: ../general/g.proj/main.c:313 #, c-format msgid "Only one of '%s', '%s', '%s', '%s' or '%s' options may be specified" msgstr "" -#: ../general/g.proj/main.c:364 +#: ../general/g.proj/main.c:365 msgid "Projection files missing" msgstr "" -#: ../general/g.proj/main.c:392 +#: ../general/g.proj/main.c:393 #, c-format msgid "No output format specified. Define one of the options: plain, shell, json, wkt, or proj4 using the -%c flag." msgstr "" -#: ../general/g.proj/main.c:397 +#: ../general/g.proj/main.c:398 #, c-format msgid "No output format specified. Define one of the options: plain, shell, json, or proj4 using the -%c flag." msgstr "" -#: ../general/g.proj/output.c:221 +#: ../general/g.proj/output.c:54 +#, fuzzy +#| msgid "OGR driver <%s> not available" +msgid "JSON output is not available." +msgstr "Driver OGR <%s> não disponível" + +#: ../general/g.proj/output.c:212 msgid "Unable to convert projection information to PROJ format" msgstr "" -#: ../general/g.proj/output.c:295 +#: ../general/g.proj/output.c:286 #, c-format msgid "Unable to create PROJ definition from srid <%s>" msgstr "" -#: ../general/g.proj/output.c:337 +#: ../general/g.proj/output.c:328 msgid "Unable to convert to WKT" msgstr "" +#: ../general/g.proj/output.c:433 +#, fuzzy +#| msgid "Unable to insert row: %s" +msgid "Unable to convert to PROJJSON" +msgstr "Não foi possível inserir linha: %s" + #: ../general/g.region/main.c:67 msgid "computational region" msgstr "" @@ -11495,10 +11506,10 @@ msgstr "Gerando esquema de renumeração..." #: ../raster/r.grow.distance/main.c:392 ../raster/r.li/r.li.daemon/daemon.c:743 #: ../raster/r.mfilter/execute.c:82 ../raster/r.mfilter/execute.c:114 #: ../raster/r.mfilter/execute.c:165 ../raster/r.mfilter/getrow.c:24 -#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:786 -#: ../raster/r.path/main.c:822 ../raster/r.path/main.c:954 -#: ../raster/r.path/main.c:1073 ../raster/r.path/main.c:1103 -#: ../raster/r.path/main.c:1207 ../raster/r.thin/io.c:72 +#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:789 +#: ../raster/r.path/main.c:825 ../raster/r.path/main.c:957 +#: ../raster/r.path/main.c:1076 ../raster/r.path/main.c:1106 +#: ../raster/r.path/main.c:1210 ../raster/r.thin/io.c:72 #: ../raster/r.thin/io.c:82 ../raster3d/r3.in.v5d/v5d.c:1192 #: ../raster3d/r3.in.v5d/v5d.c:1443 ../raster3d/r3.in.v5d/v5d.c:1523 #: ../raster3d/r3.in.v5d/v5d.c:1848 ../raster3d/r3.in.v5d/v5d.c:1859 @@ -11523,9 +11534,9 @@ msgstr "" #: ../raster/r.clump/minsize.c:268 ../raster/r.clump/minsize.c:308 #: ../raster/r.clump/minsize.c:319 ../raster/r.clump/minsize.c:454 #: ../raster/r.clump/minsize.c:481 ../raster/r.clump/minsize.c:557 -#: ../raster/r.path/main.c:791 ../raster/r.path/main.c:827 -#: ../raster/r.path/main.c:962 ../raster/r.path/main.c:1078 -#: ../raster/r.path/main.c:1108 ../raster/r.path/main.c:1213 +#: ../raster/r.path/main.c:794 ../raster/r.path/main.c:830 +#: ../raster/r.path/main.c:965 ../raster/r.path/main.c:1081 +#: ../raster/r.path/main.c:1111 ../raster/r.path/main.c:1216 msgid "Unable to read from temp file" msgstr "Não foi possível ler do arquivo temporário" @@ -19893,7 +19904,7 @@ msgstr "Especificar apenas um dentre as opções -c, -a e -n" msgid "Starting point %d is outside the current region" msgstr "Ponto inicial %d está fora da região atual" -#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:375 +#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:378 #, c-format msgid "Starting vector map <%s> contains no points in the current region" msgstr "Mapa vetorial inicial <%s> não contém pontos na região atual" @@ -19907,8 +19918,8 @@ msgid "Calculating flow directions..." msgstr "Calculando direções do fluxo..." #: ../raster/r.drain/main.c:485 ../raster/r.in.lidar/main.c:783 -#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:598 -#: ../raster/r.path/main.c:628 ../raster/r.viewshed/grass.cpp:621 +#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:601 +#: ../raster/r.path/main.c:631 ../raster/r.viewshed/grass.cpp:621 msgid "Writing output raster map..." msgstr "Escrevendo mapa raster de saída..." @@ -20157,78 +20168,92 @@ msgstr "Banda selecionada (%d) não existe" msgid "Imagery group <%s> created" msgstr "Grupo de imagens <%s> criado" -#: ../raster/r.external/proj.c:51 ../raster/r.external/proj.c:93 -#: ../raster/r.in.gdal/proj.c:51 ../raster/r.in.gdal/proj.c:93 -#, fuzzy, c-format +#: ../raster/r.external/proj.c:36 ../raster/r.external/proj.c:63 +#: ../raster/r.external/proj.c:122 ../raster/r.in.gdal/proj.c:36 +#: ../raster/r.in.gdal/proj.c:63 ../raster/r.in.gdal/proj.c:122 +#: ../vector/v.external/proj.c:92 ../vector/v.external/proj.c:151 +#: ../vector/v.in.ogr/proj.c:162 ../vector/v.in.ogr/proj.c:221 +msgid "Can't get WKT parameter string" +msgstr "Não é possível obter string de parâmetro WKT" + +#: ../raster/r.external/proj.c:56 ../raster/r.in.gdal/proj.c:56 +#: ../vector/v.external/proj.c:85 ../vector/v.in.ogr/proj.c:155 +#, fuzzy #| msgid "" #| "Input contains an invalid SRS. WKT definition:\n" #| "%s" -msgid "" -"Input contains an invalid CRS. WKT definition:\n" -"%s" +msgid "Input contains an invalid CRS." msgstr "" "A entrada contém um SRS inválido. Definição WKT:\n" "%s" -#: ../raster/r.external/proj.c:120 ../raster/r.in.gdal/proj.c:120 +#: ../raster/r.external/proj.c:66 ../raster/r.in.gdal/proj.c:66 +#: ../vector/v.external/proj.c:95 ../vector/v.in.ogr/proj.c:165 +#, fuzzy +#| msgid "" +#| "WKT definition:\n" +#| "%s" +msgid "WKT definition:" +msgstr "" +"Definição WKT:\n" +"%s" + +#: ../raster/r.external/proj.c:99 ../raster/r.in.gdal/proj.c:99 +#: ../vector/v.external/proj.c:128 ../vector/v.in.ogr/proj.c:198 msgid "No projection information available" msgstr "Nenhuma informação de projeção disponível" -#: ../raster/r.external/proj.c:133 +#: ../raster/r.external/proj.c:114 ../raster/r.in.gdal/proj.c:114 +#: ../vector/v.external/proj.c:143 ../vector/v.in.ogr/proj.c:213 #, fuzzy -msgid "Unable to convert input map coordinate reference system to GRASS format; cannot create new project." +msgid "Unable to convert input map projection to GRASS format; cannot create new project." msgstr "Não consegui converter a projeção do mapa de entrada para o formato do GRASS, não posso criar nova locação." -#: ../raster/r.external/proj.c:139 ../raster/r.in.gdal/main.c:1039 -#: ../raster/r.in.gdal/proj.c:138 ../vector/v.external/proj.c:171 -#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:305 +#: ../raster/r.external/proj.c:127 ../raster/r.in.gdal/main.c:1039 +#: ../raster/r.in.gdal/proj.c:127 ../vector/v.external/proj.c:156 +#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:226 #, fuzzy, c-format msgid "Unable to create new project <%s>" msgstr "Não foi possível criar nova location <%s>" -#: ../raster/r.external/proj.c:165 ../raster/r.in.gdal/proj.c:164 -#: ../vector/v.external/proj.c:197 ../vector/v.in.ogr/proj.c:331 +#: ../raster/r.external/proj.c:157 ../raster/r.in.gdal/proj.c:157 +#: ../vector/v.external/proj.c:186 ../vector/v.in.ogr/proj.c:256 msgid "Unable to convert input map projection information to GRASS format." msgstr "Não foi possível converter as informações de projeção do mapa de entrada para o formato GRASS." -#: ../raster/r.external/proj.c:192 ../raster/r.in.gdal/proj.c:192 +#: ../raster/r.external/proj.c:238 ../raster/r.in.gdal/proj.c:238 #: ../raster/r.in.lidar/projection.c:126 -#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:228 -#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:360 +#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:267 +#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:337 msgid "Over-riding projection check" msgstr "Se sobrepondo à verificação da projeção" -#: ../raster/r.external/proj.c:200 ../raster/r.in.gdal/proj.c:200 -#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 -#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.external/proj.c:236 -#: ../vector/v.in.lidar/projection.c:30 ../vector/v.in.ogr/proj.c:368 +#: ../raster/r.external/proj.c:244 ../raster/r.in.gdal/proj.c:244 +#: ../vector/v.external/proj.c:273 ../vector/v.in.ogr/proj.c:343 #, fuzzy -msgid "" -"Coordinate reference system of dataset does not appear to match current project.\n" -"\n" +msgid "Coordinate reference system of dataset does not appear to match current project.\n" msgstr "" "Projeção do conjunto de dados parece não combinar com a locação atual.\n" "\n" -#: ../raster/r.external/proj.c:207 ../raster/r.external/proj.c:216 -#: ../raster/r.in.gdal/proj.c:207 ../raster/r.in.gdal/proj.c:216 -#: ../vector/v.external/proj.c:243 ../vector/v.external/proj.c:252 -#: ../vector/v.in.ogr/proj.c:375 ../vector/v.in.ogr/proj.c:384 +#: ../raster/r.external/proj.c:258 ../raster/r.in.gdal/proj.c:258 +#: ../vector/v.external/proj.c:287 ../vector/v.in.ogr/proj.c:357 #, fuzzy -msgid "Project PROJ_INFO is:\n" -msgstr "Locação PROJ_INFO é:\n" - -#: ../raster/r.external/proj.c:236 ../raster/r.external/proj.c:243 -#: ../raster/r.in.gdal/proj.c:236 ../raster/r.in.gdal/proj.c:243 -#: ../vector/v.external/proj.c:272 ../vector/v.external/proj.c:279 -#: ../vector/v.in.ogr/proj.c:404 ../vector/v.in.ogr/proj.c:411 -msgid "Dataset PROJ_INFO is:\n" +#| msgid "Dataset PROJ_INFO is:\n" +msgid "Dataset CRS is:\n" msgstr "PROJ_INFO do conjunto de dados é:\n" -#: ../raster/r.external/proj.c:324 ../raster/r.in.lidar/projection.c:89 -#: ../raster/r.in.pdal/projection.c:87 ../raster3d/r3.in.lidar/projection.c:90 -#: ../vector/v.external/proj.c:360 ../vector/v.in.lidar/projection.c:87 -#: ../vector/v.in.ogr/proj.c:492 ../vector/v.in.pdal/projection.c:87 +#: ../raster/r.external/proj.c:272 ../raster/r.in.gdal/proj.c:272 +#: ../vector/v.external/proj.c:301 ../vector/v.in.ogr/proj.c:371 +#, fuzzy +msgid "Project CRS is:\n" +msgstr "Locação PROJ_INFO é:\n" + +#: ../raster/r.external/proj.c:286 ../raster/r.in.gdal/proj.c:286 +#: ../raster/r.in.lidar/projection.c:89 ../raster/r.in.pdal/projection.c:87 +#: ../raster3d/r3.in.lidar/projection.c:90 ../vector/v.external/proj.c:315 +#: ../vector/v.in.lidar/projection.c:87 ../vector/v.in.ogr/proj.c:385 +#: ../vector/v.in.pdal/projection.c:87 #, fuzzy, c-format msgid "" "\n" @@ -20237,16 +20262,16 @@ msgstr "" "\n" "No caso de não haver diferenças significativas nas definições de projeção, use a flag -o para ignorá-las e use a definição de location atual.\n" -#: ../raster/r.external/proj.c:328 ../raster/r.in.gdal/proj.c:327 -#: ../vector/v.external/proj.c:364 ../vector/v.in.ogr/proj.c:496 +#: ../raster/r.external/proj.c:290 ../raster/r.in.gdal/proj.c:290 +#: ../vector/v.external/proj.c:319 ../vector/v.in.ogr/proj.c:389 #, fuzzy msgid "Consider generating a new project from the input dataset using the 'project' parameter.\n" msgstr "Considere gerar uma nova locação a partir do conjunto de dados de entrada usando o parâmetro 'location'.\n" -#: ../raster/r.external/proj.c:348 ../raster/r.in.gdal/proj.c:347 +#: ../raster/r.external/proj.c:310 ../raster/r.in.gdal/proj.c:310 #: ../raster/r.in.lidar/projection.c:136 ../raster/r.in.pdal/projection.c:134 -#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:384 -#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:516 +#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:339 +#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:409 #, fuzzy msgid "Coordinate reference system of input dataset and current project appear to match" msgstr "Projeção do conjunto de dados de entrada e locação atual parecem combinar" @@ -20860,7 +20885,7 @@ msgstr "" msgid "Region resolution shouldn't be lesser than map %s resolution. Run g.region raster=%s to set proper resolution" msgstr "" -#: ../raster/r.geomorphon/pattern.c:228 +#: ../raster/r.geomorphon/pattern.c:229 #, c-format msgid "Internal error in %s()" msgstr "" @@ -21837,8 +21862,7 @@ msgstr "* Projeção de saída para a tabela GCP: %s" msgid "Error in %s (can't re-project GCP %i)" msgstr "" -#: ../raster/r.in.gdal/main.c:983 ../vector/v.external/proj.c:165 -#: ../vector/v.in.lidar/main.c:516 +#: ../raster/r.in.gdal/main.c:983 ../vector/v.in.lidar/main.c:516 #, fuzzy msgid "Unable to convert input map CRS to GRASS format; cannot create new project." msgstr "Não consegui converter a projeção do mapa de entrada para o formato do GRASS, não posso criar nova locação." @@ -21893,20 +21917,6 @@ msgstr "" msgid "Unable to open file <%s>: %s." msgstr "" -#: ../raster/r.in.gdal/proj.c:132 ../vector/v.in.ogr/proj.c:299 -#, fuzzy -msgid "Unable to convert input map projection to GRASS format; cannot create new project." -msgstr "Não consegui converter a projeção do mapa de entrada para o formato do GRASS, não posso criar nova locação." - -#: ../raster/r.in.gdal/proj.c:323 -#, fuzzy -msgid "" -"\n" -"In case of no significant differences in the CRS definitions, use the -o flag to ignore them and use current project definition.\n" -msgstr "" -"\n" -"No caso de não haver diferenças significativas nas definições de projeção, use a flag -o para ignorá-las e use a definição de location atual.\n" - #: ../raster/r.in.gridatb/file_io.c:16 #, fuzzy, c-format #| msgid "Unable to open file <%s>" @@ -22268,6 +22278,16 @@ msgstr "" msgid "Unable to calculate trimmed mean without the trim option specified!" msgstr "" +#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 +#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.in.lidar/projection.c:30 +#, fuzzy +msgid "" +"Coordinate reference system of dataset does not appear to match current project.\n" +"\n" +msgstr "" +"Projeção do conjunto de dados parece não combinar com a locação atual.\n" +"\n" + #: ../raster/r.in.lidar/projection.c:38 ../raster/r.in.pdal/projection.c:36 #: ../vector/v.in.lidar/projection.c:36 ../vector/v.in.pdal/projection.c:36 #, fuzzy @@ -25143,114 +25163,114 @@ msgstr "Configurações de caminho" msgid "Do not break lines (faster for single-direction bitmask encoding)" msgstr "" -#: ../raster/r.path/main.c:384 +#: ../raster/r.path/main.c:387 msgid "No start point(s) specified" msgstr "Nenhum ponto inicial especificado" -#: ../raster/r.path/main.c:394 +#: ../raster/r.path/main.c:397 #, c-format msgid "Reading raster values map <%s> ..." msgstr "Lendo mapa de valores raster <%s>..." -#: ../raster/r.path/main.c:399 +#: ../raster/r.path/main.c:402 #, fuzzy, c-format #| msgid "Unable to open temporary file <%s>" msgid "Unable to open temporary file <%s>: %s" msgstr "Não foi possível abrir arquivo temporário <%s>" -#: ../raster/r.path/main.c:411 ../raster/r.path/main.c:489 -#: ../raster/r.path/main.c:506 +#: ../raster/r.path/main.c:414 ../raster/r.path/main.c:492 +#: ../raster/r.path/main.c:509 msgid "Unable to write to tempfile" msgstr "Não é possível escrever no arquivo temporário" -#: ../raster/r.path/main.c:419 +#: ../raster/r.path/main.c:422 msgid "Unable to read range file" msgstr "Não foi possível ler o arquivo de intervalo" -#: ../raster/r.path/main.c:422 +#: ../raster/r.path/main.c:425 #, c-format msgid "Invalid directions map <%s>" msgstr "Mapa de direções inválido <%s>" -#: ../raster/r.path/main.c:427 +#: ../raster/r.path/main.c:430 msgid "Directional degrees can not be > 360" msgstr "Os graus direcionais não podem ser > 360" -#: ../raster/r.path/main.c:433 +#: ../raster/r.path/main.c:436 msgid "Directional degrees divided by 45 can not be > 8" msgstr "Os graus direcionais divididos por 45 não podem ser > 8" -#: ../raster/r.path/main.c:438 +#: ../raster/r.path/main.c:441 #, c-format msgid "Bitmask encoded directions can not be > %d" msgstr "As direções codificadas de bitmask não podem ser > %d" -#: ../raster/r.path/main.c:445 +#: ../raster/r.path/main.c:448 msgid "Input direction format assumed to be degrees CCW from East divided by 45" msgstr "Formato de direção de entrada assumido como graus CCW de leste dividido por 45" -#: ../raster/r.path/main.c:450 +#: ../raster/r.path/main.c:453 msgid "Input direction format assumed to be bitmask encoded without Knight's move" msgstr "Formato de direção de entrada assumido como sendo codificado em bitmask sem o movimento de Knight" -#: ../raster/r.path/main.c:456 +#: ../raster/r.path/main.c:459 msgid "Input direction format assumed to be degrees CCW from East" msgstr "Formato de direção de entrada assumido como graus CCW de Leste" -#: ../raster/r.path/main.c:460 +#: ../raster/r.path/main.c:463 msgid "Input direction format assumed to be bitmask encoded with Knight's move" msgstr "Formato de direção de entrada assumido como bitmask codificado com o movimento de Knight" -#: ../raster/r.path/main.c:465 +#: ../raster/r.path/main.c:468 #, c-format msgid "Unable to detect format of input direction map <%s>" msgstr "Não foi possível detectar o formato do mapa de direção de entrada <%s>" -#: ../raster/r.path/main.c:469 +#: ../raster/r.path/main.c:472 #, c-format msgid "Invalid directions format '%s'" msgstr "Formato de direções inválido '%s'" -#: ../raster/r.path/main.c:471 +#: ../raster/r.path/main.c:474 #, c-format msgid "Reading direction map <%s> ..." msgstr "Lendo mapa de direção <%s>..." -#: ../raster/r.path/main.c:525 +#: ../raster/r.path/main.c:528 msgid "Processing start points..." msgstr "Processando pontos iniciais..." -#: ../raster/r.path/main.c:535 ../vector/v.buffer/main.c:410 +#: ../raster/r.path/main.c:538 ../vector/v.buffer/main.c:410 #: ../vector/v.in.ogr/main.c:881 ../vector/v.overlay/main.c:237 #: ../vector/v.voronoi/main.c:215 msgid "Unable to create temporary vector map" msgstr "Não é possível criar mapa vetorial temporário" -#: ../raster/r.path/main.c:541 ../raster/r.path/main.c:557 +#: ../raster/r.path/main.c:544 ../raster/r.path/main.c:560 #, c-format msgid "No path at row %d, col %d" msgstr "Sem caminho na linha %d, col %d" -#: ../raster/r.path/main.c:546 ../vector/v.overlay/area_area.c:134 +#: ../raster/r.path/main.c:549 ../vector/v.overlay/area_area.c:134 #: ../vector/v.overlay/line_area.c:255 msgid "Breaking lines..." msgstr "Quebrando linhas..." -#: ../raster/r.path/main.c:684 +#: ../raster/r.path/main.c:687 msgid "Unable to increase point list" msgstr "Não é possível aumentar a lista de pontos" -#: ../raster/r.path/main.c:887 +#: ../raster/r.path/main.c:890 #, c-format msgid "No path from row %d, col %d" msgstr "Sem caminho da linha %d, col %d" -#: ../raster/r.path/main.c:901 +#: ../raster/r.path/main.c:904 #, c-format msgid "Invalid direction %d" msgstr "Direção inválida %d" -#: ../raster/r.path/main.c:999 +#: ../raster/r.path/main.c:1002 msgid "Path is leaving the current region" msgstr "O caminho está saindo da região atual" @@ -38901,42 +38921,17 @@ msgstr "Não foi possível criar o arquivo '%s/%s'" msgid "Link to vector map <%s> created." msgstr "Link para o mapa vetorial <%s> criado." -#: ../vector/v.external/proj.c:35 ../vector/v.in.ogr/main.c:741 -#: ../vector/v.in.ogr/proj.c:36 +#: ../vector/v.external/proj.c:34 ../vector/v.in.ogr/main.c:741 +#: ../vector/v.in.ogr/proj.c:34 #, c-format msgid "Geometry column <%s> not found in input layer <%s>" msgstr "Coluna de geometria <%s> não encontrada na camada de entrada <%s>" -#: ../vector/v.external/proj.c:49 ../vector/v.in.ogr/proj.c:50 -msgid "Unable to convert input layer projection information to GRASS format for checking" -msgstr "Não foi possível converter as informações de projeção da camada de entrada para o formato GRASS para verificação" - -#: ../vector/v.external/proj.c:55 ../vector/v.external/proj.c:85 -#: ../vector/v.in.ogr/proj.c:56 ../vector/v.in.ogr/proj.c:86 -msgid "Can't get WKT parameter string" -msgstr "Não é possível obter string de parâmetro WKT" - -#: ../vector/v.external/proj.c:58 ../vector/v.external/proj.c:88 -#: ../vector/v.in.ogr/proj.c:59 ../vector/v.in.ogr/proj.c:89 -#, c-format -msgid "" -"WKT definition:\n" -"%s" -msgstr "" -"Definição WKT:\n" -"%s" - -#: ../vector/v.external/proj.c:69 ../vector/v.in.ogr/proj.c:70 +#: ../vector/v.external/proj.c:46 ../vector/v.in.ogr/proj.c:46 #, c-format msgid "No projection information available for layer <%s>" msgstr "Nenhuma informação de projeção disponível para a camada <%s>" -#: ../vector/v.external/proj.c:78 ../vector/v.in.ogr/proj.c:79 -#, fuzzy, c-format -#| msgid "Projection for layer <%s> does not contain a valid SRS" -msgid "Projection for layer <%s> does not contain a valid CRS" -msgstr "A projeção para a camada <%s> não contém um SRS válido" - #: ../vector/v.extract/extract.c:202 #, c-format msgid "No category found for area %d. Skipping." @@ -40714,16 +40709,16 @@ msgstr "ymin é maior do que ymax em parâmetros 'spatial'" msgid "The spatial filter does not overlap with OGR layer <%s>. Nothing to import." msgstr "O filtro espacial não se sobrepõe à camada OGR <%s>. Nada para importar." -#: ../vector/v.in.ogr/proj.c:168 +#: ../vector/v.in.ogr/proj.c:85 msgid "Layer projections are unreadable" msgstr "As projeções da camada são ilegíveis" -#: ../vector/v.in.ogr/proj.c:184 +#: ../vector/v.in.ogr/proj.c:93 #, c-format msgid "Projection for layer <%s> is unreadable" msgstr "A projeção para a camada <%s> é ilegível" -#: ../vector/v.in.ogr/proj.c:236 +#: ../vector/v.in.ogr/proj.c:113 #, c-format msgid "Projection of layer <%s> is different from projection of layer <%s>" msgstr "A projeção da camada <%s> é diferente da projeção da camada <%s>" @@ -48301,54 +48296,6 @@ msgstr "" msgid "Image file" msgstr "Arquivo de imagem" -#, fuzzy, c-format -#~| msgid "Unable to create %s" -#~ msgid "Unable to seek: %s" -#~ msgstr "Não foi possível criar %s" - -#~ msgid "Use -M or -s, not both" -#~ msgstr "Escolha -M ou -s, não ambos" - -#~ msgid "Print the stats in shell script style" -#~ msgstr "Mostra as estatísticas em estilo shell script" - -#~ msgid "Field separator for shell script style output" -#~ msgstr "Separador de campo para saída com estilo shell script" - -#~ msgid "Print all map connection parameters in shell script style and exit" -#~ msgstr "Imprime todos os parâmetros de conexão do mapa no estilo shell script e sai" - -#~ msgid "Format: layer[/layer name] table key database driver" -#~ msgstr "Formato: camada [/nome da camada] driver do banco de dados de chaves da tabela" - -#~ msgid "Output RRR:GGG:BBB color values for each profile point" -#~ msgstr "Saída de valores RRR:GGG:BBB para cada ponto do perfil" - -#~ msgid "has" -#~ msgstr "tem" - -#~ msgid "Only you" -#~ msgstr "Somente você" - -#~ msgid "now" -#~ msgstr "agora" - -#, fuzzy, c-format -#~ msgid "Only one of -%c, -%c, -%c, -%c or -%c flags may be specified" -#~ msgstr "Um de -%c, -%c ou %s=, %s= ou %s= deve ser especificado" - -#~ msgid "changed" -#~ msgstr "modificado" - -#~ msgid "reduced" -#~ msgstr "reduzido" - -#~ msgid "feature" -#~ msgstr "feição" - -#~ msgid "features" -#~ msgstr "feições" - #~ msgid "" #~ "\n" #~ "%d classes, %.2f%% points stable\n" @@ -48356,6 +48303,14 @@ msgstr "Arquivo de imagem" #~ "\n" #~ "%d classes, %.2f%% pontos estáveis\n" +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "In case of no significant differences in the CRS definitions, use the -o flag to ignore them and use current project definition.\n" +#~ msgstr "" +#~ "\n" +#~ "No caso de não haver diferenças significativas nas definições de projeção, use a flag -o para ignorá-las e use a definição de location atual.\n" + #, fuzzy #~ msgid "" #~ "\n" @@ -49287,6 +49242,9 @@ msgstr "Arquivo de imagem" #~ msgid "Field separator" #~ msgstr "Separador de campo" +#~ msgid "Field separator for shell script style output" +#~ msgstr "Separador de campo para saída com estilo shell script" + #, fuzzy #~ msgid "Field separator in input text files" #~ msgstr "Falha abrindo arquivo dig_att." @@ -49390,6 +49348,9 @@ msgstr "Arquivo de imagem" #~ msgid "Format: All values must be >0" #~ msgstr "O valor limiar deve ser >= 0" +#~ msgid "Format: layer[/layer name] table key database driver" +#~ msgstr "Formato: camada [/nome da camada] driver do banco de dados de chaves da tabela" + #, fuzzy #~ msgid "GPSBabel supported output format" #~ msgstr "Mostra oso formatos suportados e encerra" @@ -51654,6 +51615,13 @@ msgstr "Arquivo de imagem" #~ msgid "Only draw fills (no outlines) for areas and points" #~ msgstr "pontos" +#, fuzzy, c-format +#~ msgid "Only one of -%c, -%c, -%c, -%c or -%c flags may be specified" +#~ msgstr "Um de -%c, -%c ou %s=, %s= ou %s= deve ser especificado" + +#~ msgid "Only you" +#~ msgstr "Somente você" + #, fuzzy #~ msgid "Opt files" #~ msgstr "Arquivo de entrada" @@ -51722,6 +51690,9 @@ msgstr "Arquivo de imagem" #~ msgid "Output Potential file" #~ msgstr "Título do raster de saída" +#~ msgid "Output RRR:GGG:BBB color values for each profile point" +#~ msgstr "Saída de valores RRR:GGG:BBB para cada ponto do perfil" + #, fuzzy #~ msgid "Output beam irradiation raster map aggregated for the whole period of time [Wh.m-2.day-1]" #~ msgstr "Saída de irradiação difusa [W.m-2] (modo 1) ou arquivo raster de irradiação [Wh.m².dia-1] (modo 2)" @@ -52040,6 +52011,9 @@ msgstr "Arquivo de imagem" #~ msgid "Print Maxent command" #~ msgstr "Mostra x e y (coluna e linha)" +#~ msgid "Print all map connection parameters in shell script style and exit" +#~ msgstr "Imprime todos os parâmetros de conexão do mapa no estilo shell script e sai" + #, fuzzy #~ msgid "Print attribut table" #~ msgstr "Não exportar tabela de atributos" @@ -52102,6 +52076,9 @@ msgstr "Arquivo de imagem" #~ msgid "Print the request URL and exit" #~ msgstr "Mostra a extensão da região atual" +#~ msgid "Print the stats in shell script style" +#~ msgstr "Mostra as estatísticas em estilo shell script" + #, fuzzy #~ msgid "Print the threshold value in shell script style" #~ msgstr "Mostra as estatísticas em estilo shell script" @@ -52116,6 +52093,11 @@ msgstr "Arquivo de imagem" #~ msgid "Print valid CSW connections resources URLs" #~ msgstr "Imprimir todos os parâmetros de conexão do mapa e sair" +#, fuzzy, c-format +#~| msgid "Projection for layer <%s> does not contain a valid SRS" +#~ msgid "Projection for layer <%s> does not contain a valid CRS" +#~ msgstr "A projeção para a camada <%s> não contém um SRS válido" + #, fuzzy #~ msgid "Projection region" #~ msgstr "Nome do mapa de pontos de saída" @@ -52948,6 +52930,13 @@ msgstr "Arquivo de imagem" #~ msgid "Unable To create table: %s" #~ msgstr "Não consegui criar arquivo [%s]" +#~ msgid "Unable to convert input layer projection information to GRASS format for checking" +#~ msgstr "Não foi possível converter as informações de projeção da camada de entrada para o formato GRASS para verificação" + +#, fuzzy +#~ msgid "Unable to convert input map coordinate reference system to GRASS format; cannot create new project." +#~ msgstr "Não consegui converter a projeção do mapa de entrada para o formato do GRASS, não posso criar nova locação." + #~ msgid "Unable to convert input raster map projection information to GRASS format for checking" #~ msgstr "Não consegui converter a projeção do mapa raster de entrada para o formato do GRASS para verificação" @@ -52967,6 +52956,11 @@ msgstr "Arquivo de imagem" #~ msgid "Unable to open input file <%s>. Error %d: %s" #~ msgstr "Não é possível abrir o arquivo de entrada <%s>. Erro %d: %s" +#, fuzzy, c-format +#~| msgid "Unable to create %s" +#~ msgid "Unable to seek: %s" +#~ msgstr "Não foi possível criar %s" + #, fuzzy #~ msgid "Unit used for layout specification" #~ msgstr "Algoritmo a ser usado para classificação" @@ -53012,6 +53006,9 @@ msgstr "Arquivo de imagem" #~ msgid "Uploads raster values and labels to vector point layer" #~ msgstr "Carrega valores raster em posições de pontos vetoriais para a tabela." +#~ msgid "Use -M or -s, not both" +#~ msgstr "Escolha -M ou -s, não ambos" + #, fuzzy #~ msgid "Use a random seed" #~ msgstr "Título para o novo mapa raster" @@ -53368,6 +53365,9 @@ msgstr "Arquivo de imagem" #~ msgid "centerpoint" #~ msgstr "centroide" +#~ msgid "changed" +#~ msgstr "modificado" + #, fuzzy #~ msgid "citation" #~ msgstr "Locação: %s\n" @@ -53441,6 +53441,12 @@ msgstr "Arquivo de imagem" #~ msgid "evolution" #~ msgstr "Seleção" +#~ msgid "feature" +#~ msgstr "feição" + +#~ msgid "features" +#~ msgstr "feições" + #, fuzzy #~ msgid "file= and expression= are mutually exclusive" #~ msgstr "Opções -B e -C são mutuamente exclusivas. Escolha apenas uma." @@ -53465,6 +53471,9 @@ msgstr "Arquivo de imagem" #~ msgid "grid lines" #~ msgstr "isolinhas" +#~ msgid "has" +#~ msgstr "tem" + #, fuzzy #~ msgid "high pass filter" #~ msgstr "Correlação" @@ -53556,6 +53565,9 @@ msgstr "Arquivo de imagem" #~ msgid "nodata value in output files" #~ msgstr "Valor máximo na saída: %e." +#~ msgid "now" +#~ msgstr "agora" + #, fuzzy #~ msgid "npoints = %d, nterrain = %d" #~ msgstr "" @@ -53618,6 +53630,9 @@ msgstr "Arquivo de imagem" #~ msgid "recreation potential" #~ msgstr "Opções de criação" +#~ msgid "reduced" +#~ msgstr "reduzido" + #, fuzzy #~ msgid "region extension" #~ msgstr "Opções de criação" diff --git a/locale/po/grassmods_ro.po b/locale/po/grassmods_ro.po index 4da50c519ad..609a4cc3175 100644 --- a/locale/po/grassmods_ro.po +++ b/locale/po/grassmods_ro.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: grassmods_ro\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-07-26 01:37+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Romanian \n" @@ -176,7 +176,7 @@ msgstr "Listează toate coloanele pentru un tabel dat." #: ../general/g.proj/main.c:90 ../general/g.proj/main.c:99 #: ../general/g.proj/main.c:105 ../general/g.proj/main.c:114 #: ../general/g.proj/main.c:126 ../general/g.proj/main.c:135 -#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:244 +#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:245 #: ../general/g.region/main.c:91 ../general/g.region/main.c:97 #: ../general/g.region/main.c:102 ../general/g.region/main.c:108 #: ../general/g.region/main.c:113 ../general/g.region/main.c:118 @@ -304,13 +304,12 @@ msgstr "" #: ../db/db.connect/main.c:144 ../general/g.findfile/main.c:187 #: ../general/g.list/list.c:122 ../general/g.mapset/main.c:119 -#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:54 -#: ../general/g.proj/output.c:360 ../general/g.region/main.c:471 -#: ../general/g.version/main.c:140 ../misc/m.measure/main.c:87 -#: ../raster/r.describe/dumplist.c:38 ../raster/r.distance/report.c:211 -#: ../raster/r.distance/report.c:218 ../raster/r.distance/report.c:225 -#: ../raster/r.info/main.c:147 ../raster/r.proj/main.c:487 -#: ../raster/r.regression.line/main.c:101 +#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:351 +#: ../general/g.region/main.c:471 ../general/g.version/main.c:140 +#: ../misc/m.measure/main.c:87 ../raster/r.describe/dumplist.c:38 +#: ../raster/r.distance/report.c:211 ../raster/r.distance/report.c:218 +#: ../raster/r.distance/report.c:225 ../raster/r.info/main.c:147 +#: ../raster/r.proj/main.c:487 ../raster/r.regression.line/main.c:101 #: ../raster/r.regression.multi/main.c:197 #: ../raster/r.regression.multi/main.c:566 #: ../raster/r.stats.quantile/main.c:430 ../raster/r.stats.quantile/main.c:447 @@ -329,7 +328,7 @@ msgstr "" msgid "Failed to initialize JSON object. Out of memory?" msgstr "" -#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:277 +#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:278 #: ../general/g.region/main.c:427 ../general/g.version/main.c:153 #: ../imagery/i.group/main.c:137 ../misc/m.measure/main.c:100 #: ../raster/r.proj/main.c:270 ../raster/r.regression.line/main.c:114 @@ -486,7 +485,7 @@ msgstr "" msgid "Lists all databases for a given driver and location." msgstr "" -#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:383 +#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:374 #: ../general/g.region/main.c:990 ../general/g.version/main.c:409 #: ../imagery/i.group/main.c:301 ../raster/r.category/main.c:412 #: ../raster/r.describe/dumplist.c:71 ../raster/r.info/main.c:1000 @@ -6472,10 +6471,10 @@ msgstr "" msgid "Converts between PPM/PGM and PNG image formats." msgstr "" -#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:141 -#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:140 -#: ../vector/v.external/proj.c:173 ../vector/v.in.lidar/main.c:525 -#: ../vector/v.in.ogr/proj.c:307 +#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:129 +#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:129 +#: ../vector/v.external/proj.c:158 ../vector/v.in.lidar/main.c:525 +#: ../vector/v.in.ogr/proj.c:228 #, fuzzy, c-format msgid "Project <%s> created" msgstr "Locația <%s> creată" @@ -6786,55 +6785,67 @@ msgstr "" msgid "Name of new project (location) to create" msgstr "Nume pentru harta vectorială de intrare" -#: ../general/g.proj/main.c:239 -msgid "plain;Human readable text output;shell;shell script style text output;json;JSON (JavaScript Object Notation);wkt;Well-known text output;proj4;PROJ.4 style text output;" +#: ../general/g.proj/main.c:240 +msgid "plain;Human readable text output;shell;shell script style text output;wkt;Well-known text output;projjson;JSON (JavaScript Object Notation) version of WKT;proj4;PROJ.4 style text output;" msgstr "" -#: ../general/g.proj/main.c:271 ../vector/v.what.rast/main.c:159 +#: ../general/g.proj/main.c:272 ../vector/v.what.rast/main.c:159 #, c-format msgid "The format option can only be used with -%c flag" msgstr "" -#: ../general/g.proj/main.c:283 +#: ../general/g.proj/main.c:284 msgid "Flag 'j' is deprecated and will be removed in a future release. Please use format=proj4 instead." msgstr "" -#: ../general/g.proj/main.c:292 +#: ../general/g.proj/main.c:293 msgid "Flag 'w' is deprecated and will be removed in a future release. Please use format=wkt instead." msgstr "" -#: ../general/g.proj/main.c:312 +#: ../general/g.proj/main.c:313 #, c-format msgid "Only one of '%s', '%s', '%s', '%s' or '%s' options may be specified" msgstr "" -#: ../general/g.proj/main.c:364 +#: ../general/g.proj/main.c:365 msgid "Projection files missing" msgstr "" -#: ../general/g.proj/main.c:392 +#: ../general/g.proj/main.c:393 #, c-format msgid "No output format specified. Define one of the options: plain, shell, json, wkt, or proj4 using the -%c flag." msgstr "" -#: ../general/g.proj/main.c:397 +#: ../general/g.proj/main.c:398 #, c-format msgid "No output format specified. Define one of the options: plain, shell, json, or proj4 using the -%c flag." msgstr "" -#: ../general/g.proj/output.c:221 +#: ../general/g.proj/output.c:54 +#, fuzzy +#| msgid "OGR driver <%s> not available" +msgid "JSON output is not available." +msgstr "Stratul OGR <%s> nu este disponibil" + +#: ../general/g.proj/output.c:212 msgid "Unable to convert projection information to PROJ format" msgstr "" -#: ../general/g.proj/output.c:295 +#: ../general/g.proj/output.c:286 #, c-format msgid "Unable to create PROJ definition from srid <%s>" msgstr "" -#: ../general/g.proj/output.c:337 +#: ../general/g.proj/output.c:328 msgid "Unable to convert to WKT" msgstr "" +#: ../general/g.proj/output.c:433 +#, fuzzy +#| msgid "Unable to connect to Postgres:" +msgid "Unable to convert to PROJJSON" +msgstr "Imposibil de conectat la Postgres:" + #: ../general/g.region/main.c:67 msgid "computational region" msgstr "" @@ -11480,10 +11491,10 @@ msgstr "" #: ../raster/r.grow.distance/main.c:392 ../raster/r.li/r.li.daemon/daemon.c:743 #: ../raster/r.mfilter/execute.c:82 ../raster/r.mfilter/execute.c:114 #: ../raster/r.mfilter/execute.c:165 ../raster/r.mfilter/getrow.c:24 -#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:786 -#: ../raster/r.path/main.c:822 ../raster/r.path/main.c:954 -#: ../raster/r.path/main.c:1073 ../raster/r.path/main.c:1103 -#: ../raster/r.path/main.c:1207 ../raster/r.thin/io.c:72 +#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:789 +#: ../raster/r.path/main.c:825 ../raster/r.path/main.c:957 +#: ../raster/r.path/main.c:1076 ../raster/r.path/main.c:1106 +#: ../raster/r.path/main.c:1210 ../raster/r.thin/io.c:72 #: ../raster/r.thin/io.c:82 ../raster3d/r3.in.v5d/v5d.c:1192 #: ../raster3d/r3.in.v5d/v5d.c:1443 ../raster3d/r3.in.v5d/v5d.c:1523 #: ../raster3d/r3.in.v5d/v5d.c:1848 ../raster3d/r3.in.v5d/v5d.c:1859 @@ -11508,9 +11519,9 @@ msgstr "" #: ../raster/r.clump/minsize.c:268 ../raster/r.clump/minsize.c:308 #: ../raster/r.clump/minsize.c:319 ../raster/r.clump/minsize.c:454 #: ../raster/r.clump/minsize.c:481 ../raster/r.clump/minsize.c:557 -#: ../raster/r.path/main.c:791 ../raster/r.path/main.c:827 -#: ../raster/r.path/main.c:962 ../raster/r.path/main.c:1078 -#: ../raster/r.path/main.c:1108 ../raster/r.path/main.c:1213 +#: ../raster/r.path/main.c:794 ../raster/r.path/main.c:830 +#: ../raster/r.path/main.c:965 ../raster/r.path/main.c:1081 +#: ../raster/r.path/main.c:1111 ../raster/r.path/main.c:1216 msgid "Unable to read from temp file" msgstr "" @@ -19854,7 +19865,7 @@ msgstr "" msgid "Starting point %d is outside the current region" msgstr "" -#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:375 +#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:378 #, c-format msgid "Starting vector map <%s> contains no points in the current region" msgstr "" @@ -19868,8 +19879,8 @@ msgid "Calculating flow directions..." msgstr "" #: ../raster/r.drain/main.c:485 ../raster/r.in.lidar/main.c:783 -#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:598 -#: ../raster/r.path/main.c:628 ../raster/r.viewshed/grass.cpp:621 +#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:601 +#: ../raster/r.path/main.c:631 ../raster/r.viewshed/grass.cpp:621 msgid "Writing output raster map..." msgstr "" @@ -20117,83 +20128,93 @@ msgstr "" msgid "Imagery group <%s> created" msgstr "" -#: ../raster/r.external/proj.c:51 ../raster/r.external/proj.c:93 -#: ../raster/r.in.gdal/proj.c:51 ../raster/r.in.gdal/proj.c:93 -#, c-format -msgid "" -"Input contains an invalid CRS. WKT definition:\n" -"%s" +#: ../raster/r.external/proj.c:36 ../raster/r.external/proj.c:63 +#: ../raster/r.external/proj.c:122 ../raster/r.in.gdal/proj.c:36 +#: ../raster/r.in.gdal/proj.c:63 ../raster/r.in.gdal/proj.c:122 +#: ../vector/v.external/proj.c:92 ../vector/v.external/proj.c:151 +#: ../vector/v.in.ogr/proj.c:162 ../vector/v.in.ogr/proj.c:221 +msgid "Can't get WKT parameter string" msgstr "" -#: ../raster/r.external/proj.c:120 ../raster/r.in.gdal/proj.c:120 +#: ../raster/r.external/proj.c:56 ../raster/r.in.gdal/proj.c:56 +#: ../vector/v.external/proj.c:85 ../vector/v.in.ogr/proj.c:155 +msgid "Input contains an invalid CRS." +msgstr "" + +#: ../raster/r.external/proj.c:66 ../raster/r.in.gdal/proj.c:66 +#: ../vector/v.external/proj.c:95 ../vector/v.in.ogr/proj.c:165 +#, fuzzy +#| msgid "Transect definition" +msgid "WKT definition:" +msgstr "Definire transect" + +#: ../raster/r.external/proj.c:99 ../raster/r.in.gdal/proj.c:99 +#: ../vector/v.external/proj.c:128 ../vector/v.in.ogr/proj.c:198 msgid "No projection information available" msgstr "" -#: ../raster/r.external/proj.c:133 -msgid "Unable to convert input map coordinate reference system to GRASS format; cannot create new project." +#: ../raster/r.external/proj.c:114 ../raster/r.in.gdal/proj.c:114 +#: ../vector/v.external/proj.c:143 ../vector/v.in.ogr/proj.c:213 +msgid "Unable to convert input map projection to GRASS format; cannot create new project." msgstr "" -#: ../raster/r.external/proj.c:139 ../raster/r.in.gdal/main.c:1039 -#: ../raster/r.in.gdal/proj.c:138 ../vector/v.external/proj.c:171 -#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:305 +#: ../raster/r.external/proj.c:127 ../raster/r.in.gdal/main.c:1039 +#: ../raster/r.in.gdal/proj.c:127 ../vector/v.external/proj.c:156 +#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:226 #, fuzzy, c-format msgid "Unable to create new project <%s>" msgstr "Imposibil de creat harta raster<%s>" -#: ../raster/r.external/proj.c:165 ../raster/r.in.gdal/proj.c:164 -#: ../vector/v.external/proj.c:197 ../vector/v.in.ogr/proj.c:331 +#: ../raster/r.external/proj.c:157 ../raster/r.in.gdal/proj.c:157 +#: ../vector/v.external/proj.c:186 ../vector/v.in.ogr/proj.c:256 msgid "Unable to convert input map projection information to GRASS format." msgstr "" -#: ../raster/r.external/proj.c:192 ../raster/r.in.gdal/proj.c:192 +#: ../raster/r.external/proj.c:238 ../raster/r.in.gdal/proj.c:238 #: ../raster/r.in.lidar/projection.c:126 -#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:228 -#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:360 +#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:267 +#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:337 msgid "Over-riding projection check" msgstr "" -#: ../raster/r.external/proj.c:200 ../raster/r.in.gdal/proj.c:200 -#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 -#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.external/proj.c:236 -#: ../vector/v.in.lidar/projection.c:30 ../vector/v.in.ogr/proj.c:368 -msgid "" -"Coordinate reference system of dataset does not appear to match current project.\n" -"\n" +#: ../raster/r.external/proj.c:244 ../raster/r.in.gdal/proj.c:244 +#: ../vector/v.external/proj.c:273 ../vector/v.in.ogr/proj.c:343 +msgid "Coordinate reference system of dataset does not appear to match current project.\n" msgstr "" -#: ../raster/r.external/proj.c:207 ../raster/r.external/proj.c:216 -#: ../raster/r.in.gdal/proj.c:207 ../raster/r.in.gdal/proj.c:216 -#: ../vector/v.external/proj.c:243 ../vector/v.external/proj.c:252 -#: ../vector/v.in.ogr/proj.c:375 ../vector/v.in.ogr/proj.c:384 -msgid "Project PROJ_INFO is:\n" -msgstr "" +#: ../raster/r.external/proj.c:258 ../raster/r.in.gdal/proj.c:258 +#: ../vector/v.external/proj.c:287 ../vector/v.in.ogr/proj.c:357 +#, fuzzy +msgid "Dataset CRS is:\n" +msgstr "baza de date" -#: ../raster/r.external/proj.c:236 ../raster/r.external/proj.c:243 -#: ../raster/r.in.gdal/proj.c:236 ../raster/r.in.gdal/proj.c:243 -#: ../vector/v.external/proj.c:272 ../vector/v.external/proj.c:279 -#: ../vector/v.in.ogr/proj.c:404 ../vector/v.in.ogr/proj.c:411 -msgid "Dataset PROJ_INFO is:\n" -msgstr "" +#: ../raster/r.external/proj.c:272 ../raster/r.in.gdal/proj.c:272 +#: ../vector/v.external/proj.c:301 ../vector/v.in.ogr/proj.c:371 +#, fuzzy +#| msgid "Projections" +msgid "Project CRS is:\n" +msgstr "Proiecții" -#: ../raster/r.external/proj.c:324 ../raster/r.in.lidar/projection.c:89 -#: ../raster/r.in.pdal/projection.c:87 ../raster3d/r3.in.lidar/projection.c:90 -#: ../vector/v.external/proj.c:360 ../vector/v.in.lidar/projection.c:87 -#: ../vector/v.in.ogr/proj.c:492 ../vector/v.in.pdal/projection.c:87 +#: ../raster/r.external/proj.c:286 ../raster/r.in.gdal/proj.c:286 +#: ../raster/r.in.lidar/projection.c:89 ../raster/r.in.pdal/projection.c:87 +#: ../raster3d/r3.in.lidar/projection.c:90 ../vector/v.external/proj.c:315 +#: ../vector/v.in.lidar/projection.c:87 ../vector/v.in.ogr/proj.c:385 +#: ../vector/v.in.pdal/projection.c:87 #, c-format msgid "" "\n" "In case of no significant differences in the coordinate reference system definitions, use the -o flag to ignore them and use current project definition.\n" msgstr "" -#: ../raster/r.external/proj.c:328 ../raster/r.in.gdal/proj.c:327 -#: ../vector/v.external/proj.c:364 ../vector/v.in.ogr/proj.c:496 +#: ../raster/r.external/proj.c:290 ../raster/r.in.gdal/proj.c:290 +#: ../vector/v.external/proj.c:319 ../vector/v.in.ogr/proj.c:389 msgid "Consider generating a new project from the input dataset using the 'project' parameter.\n" msgstr "" -#: ../raster/r.external/proj.c:348 ../raster/r.in.gdal/proj.c:347 +#: ../raster/r.external/proj.c:310 ../raster/r.in.gdal/proj.c:310 #: ../raster/r.in.lidar/projection.c:136 ../raster/r.in.pdal/projection.c:134 -#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:384 -#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:516 +#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:339 +#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:409 msgid "Coordinate reference system of input dataset and current project appear to match" msgstr "" @@ -20806,7 +20827,7 @@ msgstr "" msgid "Region resolution shouldn't be lesser than map %s resolution. Run g.region raster=%s to set proper resolution" msgstr "" -#: ../raster/r.geomorphon/pattern.c:228 +#: ../raster/r.geomorphon/pattern.c:229 #, c-format msgid "Internal error in %s()" msgstr "" @@ -21774,8 +21795,7 @@ msgstr "" msgid "Error in %s (can't re-project GCP %i)" msgstr "" -#: ../raster/r.in.gdal/main.c:983 ../vector/v.external/proj.c:165 -#: ../vector/v.in.lidar/main.c:516 +#: ../raster/r.in.gdal/main.c:983 ../vector/v.in.lidar/main.c:516 msgid "Unable to convert input map CRS to GRASS format; cannot create new project." msgstr "" @@ -21829,16 +21849,6 @@ msgstr "" msgid "Unable to open file <%s>: %s." msgstr "" -#: ../raster/r.in.gdal/proj.c:132 ../vector/v.in.ogr/proj.c:299 -msgid "Unable to convert input map projection to GRASS format; cannot create new project." -msgstr "" - -#: ../raster/r.in.gdal/proj.c:323 -msgid "" -"\n" -"In case of no significant differences in the CRS definitions, use the -o flag to ignore them and use current project definition.\n" -msgstr "" - #: ../raster/r.in.gridatb/file_io.c:16 #, fuzzy, c-format #| msgid "Unable to open file <%s>" @@ -22200,6 +22210,13 @@ msgstr "" msgid "Unable to calculate trimmed mean without the trim option specified!" msgstr "" +#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 +#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.in.lidar/projection.c:30 +msgid "" +"Coordinate reference system of dataset does not appear to match current project.\n" +"\n" +msgstr "" + #: ../raster/r.in.lidar/projection.c:38 ../raster/r.in.pdal/projection.c:36 #: ../vector/v.in.lidar/projection.c:36 ../vector/v.in.pdal/projection.c:36 msgid "GRASS project PROJ_INFO is:\n" @@ -25056,114 +25073,114 @@ msgstr "setările conexiunii" msgid "Do not break lines (faster for single-direction bitmask encoding)" msgstr "" -#: ../raster/r.path/main.c:384 +#: ../raster/r.path/main.c:387 msgid "No start point(s) specified" msgstr "" -#: ../raster/r.path/main.c:394 +#: ../raster/r.path/main.c:397 #, c-format msgid "Reading raster values map <%s> ..." msgstr "" -#: ../raster/r.path/main.c:399 +#: ../raster/r.path/main.c:402 #, fuzzy, c-format #| msgid "Unable to open temporary file <%s>" msgid "Unable to open temporary file <%s>: %s" msgstr "Imposibil de a deschide temporar fișierul <%s>" -#: ../raster/r.path/main.c:411 ../raster/r.path/main.c:489 -#: ../raster/r.path/main.c:506 +#: ../raster/r.path/main.c:414 ../raster/r.path/main.c:492 +#: ../raster/r.path/main.c:509 msgid "Unable to write to tempfile" msgstr "" -#: ../raster/r.path/main.c:419 +#: ../raster/r.path/main.c:422 msgid "Unable to read range file" msgstr "" -#: ../raster/r.path/main.c:422 +#: ../raster/r.path/main.c:425 #, c-format msgid "Invalid directions map <%s>" msgstr "" -#: ../raster/r.path/main.c:427 +#: ../raster/r.path/main.c:430 msgid "Directional degrees can not be > 360" msgstr "" -#: ../raster/r.path/main.c:433 +#: ../raster/r.path/main.c:436 msgid "Directional degrees divided by 45 can not be > 8" msgstr "" -#: ../raster/r.path/main.c:438 +#: ../raster/r.path/main.c:441 #, c-format msgid "Bitmask encoded directions can not be > %d" msgstr "" -#: ../raster/r.path/main.c:445 +#: ../raster/r.path/main.c:448 msgid "Input direction format assumed to be degrees CCW from East divided by 45" msgstr "" -#: ../raster/r.path/main.c:450 +#: ../raster/r.path/main.c:453 msgid "Input direction format assumed to be bitmask encoded without Knight's move" msgstr "" -#: ../raster/r.path/main.c:456 +#: ../raster/r.path/main.c:459 msgid "Input direction format assumed to be degrees CCW from East" msgstr "" -#: ../raster/r.path/main.c:460 +#: ../raster/r.path/main.c:463 msgid "Input direction format assumed to be bitmask encoded with Knight's move" msgstr "" -#: ../raster/r.path/main.c:465 +#: ../raster/r.path/main.c:468 #, c-format msgid "Unable to detect format of input direction map <%s>" msgstr "" -#: ../raster/r.path/main.c:469 +#: ../raster/r.path/main.c:472 #, c-format msgid "Invalid directions format '%s'" msgstr "" -#: ../raster/r.path/main.c:471 +#: ../raster/r.path/main.c:474 #, c-format msgid "Reading direction map <%s> ..." msgstr "" -#: ../raster/r.path/main.c:525 +#: ../raster/r.path/main.c:528 msgid "Processing start points..." msgstr "" -#: ../raster/r.path/main.c:535 ../vector/v.buffer/main.c:410 +#: ../raster/r.path/main.c:538 ../vector/v.buffer/main.c:410 #: ../vector/v.in.ogr/main.c:881 ../vector/v.overlay/main.c:237 #: ../vector/v.voronoi/main.c:215 msgid "Unable to create temporary vector map" msgstr "Imposibil de creat fișierul temporar" -#: ../raster/r.path/main.c:541 ../raster/r.path/main.c:557 +#: ../raster/r.path/main.c:544 ../raster/r.path/main.c:560 #, c-format msgid "No path at row %d, col %d" msgstr "" -#: ../raster/r.path/main.c:546 ../vector/v.overlay/area_area.c:134 +#: ../raster/r.path/main.c:549 ../vector/v.overlay/area_area.c:134 #: ../vector/v.overlay/line_area.c:255 msgid "Breaking lines..." msgstr "" -#: ../raster/r.path/main.c:684 +#: ../raster/r.path/main.c:687 msgid "Unable to increase point list" msgstr "" -#: ../raster/r.path/main.c:887 +#: ../raster/r.path/main.c:890 #, c-format msgid "No path from row %d, col %d" msgstr "" -#: ../raster/r.path/main.c:901 +#: ../raster/r.path/main.c:904 #, c-format msgid "Invalid direction %d" msgstr "" -#: ../raster/r.path/main.c:999 +#: ../raster/r.path/main.c:1002 msgid "Path is leaving the current region" msgstr "" @@ -38759,39 +38776,17 @@ msgstr "" msgid "Link to vector map <%s> created." msgstr "" -#: ../vector/v.external/proj.c:35 ../vector/v.in.ogr/main.c:741 -#: ../vector/v.in.ogr/proj.c:36 +#: ../vector/v.external/proj.c:34 ../vector/v.in.ogr/main.c:741 +#: ../vector/v.in.ogr/proj.c:34 #, c-format msgid "Geometry column <%s> not found in input layer <%s>" msgstr "" -#: ../vector/v.external/proj.c:49 ../vector/v.in.ogr/proj.c:50 -msgid "Unable to convert input layer projection information to GRASS format for checking" -msgstr "" - -#: ../vector/v.external/proj.c:55 ../vector/v.external/proj.c:85 -#: ../vector/v.in.ogr/proj.c:56 ../vector/v.in.ogr/proj.c:86 -msgid "Can't get WKT parameter string" -msgstr "" - -#: ../vector/v.external/proj.c:58 ../vector/v.external/proj.c:88 -#: ../vector/v.in.ogr/proj.c:59 ../vector/v.in.ogr/proj.c:89 -#, c-format -msgid "" -"WKT definition:\n" -"%s" -msgstr "" - -#: ../vector/v.external/proj.c:69 ../vector/v.in.ogr/proj.c:70 +#: ../vector/v.external/proj.c:46 ../vector/v.in.ogr/proj.c:46 #, c-format msgid "No projection information available for layer <%s>" msgstr "" -#: ../vector/v.external/proj.c:78 ../vector/v.in.ogr/proj.c:79 -#, c-format -msgid "Projection for layer <%s> does not contain a valid CRS" -msgstr "" - #: ../vector/v.extract/extract.c:202 #, c-format msgid "No category found for area %d. Skipping." @@ -40559,16 +40554,16 @@ msgstr "" msgid "The spatial filter does not overlap with OGR layer <%s>. Nothing to import." msgstr "" -#: ../vector/v.in.ogr/proj.c:168 +#: ../vector/v.in.ogr/proj.c:85 msgid "Layer projections are unreadable" msgstr "" -#: ../vector/v.in.ogr/proj.c:184 +#: ../vector/v.in.ogr/proj.c:93 #, c-format msgid "Projection for layer <%s> is unreadable" msgstr "" -#: ../vector/v.in.ogr/proj.c:236 +#: ../vector/v.in.ogr/proj.c:113 #, c-format msgid "Projection of layer <%s> is different from projection of layer <%s>" msgstr "" @@ -48131,27 +48126,6 @@ msgstr "" msgid "Image file" msgstr "" -#, fuzzy, c-format -#~| msgid "Unable to select: \n" -#~ msgid "Unable to seek: %s" -#~ msgstr "Imposibil de selectat:\n" - -#~ msgid "now" -#~ msgstr "acum" - -#, fuzzy, c-format -#~ msgid "Only one of -%c, -%c, -%c, -%c or -%c flags may be specified" -#~ msgstr "Unul dintre -%c, -%c or %s=, %s= or %s= trebuie specificat" - -#~ msgid "temperature" -#~ msgstr "temperatură" - -#~ msgid "changed" -#~ msgstr "modificat" - -#~ msgid "reduced" -#~ msgstr "redus" - #, c-format #~ msgid "%d elements processed" #~ msgstr "%d elemente procesate" @@ -48571,10 +48545,6 @@ msgstr "" #~ msgid "Database indexes" #~ msgstr "Baza de date:" -#, fuzzy -#~ msgid "Dataset ID" -#~ msgstr "baza de date" - #, fuzzy #~ msgid "Date format" #~ msgstr "Formatul hărții:" @@ -50574,6 +50544,10 @@ msgstr "" #~ msgid "Only create patch size distribution file" #~ msgstr "Imposibil de creat fișierul setări" +#, fuzzy, c-format +#~ msgid "Only one of -%c, -%c, -%c, -%c or -%c flags may be specified" +#~ msgstr "Unul dintre -%c, -%c or %s=, %s= or %s= trebuie specificat" + #, fuzzy #~ msgid "Only print selected polygons" #~ msgstr "Printează doar declarația SQL" @@ -51345,6 +51319,11 @@ msgstr "" #~ msgid "Unable to plot variogram" #~ msgstr "Imposibil de rulat r.stats" +#, fuzzy, c-format +#~| msgid "Unable to select: \n" +#~ msgid "Unable to seek: %s" +#~ msgstr "Imposibil de selectat:\n" + #, fuzzy #~ msgid "Unit used for layout specification" #~ msgstr "Funcția Kernel " @@ -51645,6 +51624,9 @@ msgstr "" #~ msgid "centerpoint" #~ msgstr "centroid" +#~ msgid "changed" +#~ msgstr "modificat" + #, fuzzy #~ msgid "channels" #~ msgstr "modificat" @@ -51819,6 +51801,9 @@ msgstr "" #~ msgid "nodata value in output files" #~ msgstr "Imposibil de deschis fișierul de ieșire <%s>" +#~ msgid "now" +#~ msgstr "acum" + #, fuzzy #~ msgid "number of sample points (number or percentage)" #~ msgstr "Număr de puncte pentru a fi creat(e)" @@ -51867,6 +51852,9 @@ msgstr "" #~ msgid "reclassify" #~ msgstr "reclasificare" +#~ msgid "reduced" +#~ msgstr "redus" + #, fuzzy #~ msgid "renewable energy" #~ msgstr "energie solară" @@ -51895,6 +51883,9 @@ msgstr "" #~ msgid "symbology" #~ msgstr "Simboluri" +#~ msgid "temperature" +#~ msgstr "temperatură" + #, fuzzy #~ msgid "thredds" #~ msgstr "Prag" diff --git a/locale/po/grassmods_ru.po b/locale/po/grassmods_ru.po index 693f8d5965f..f53b00b67b8 100644 --- a/locale/po/grassmods_ru.po +++ b/locale/po/grassmods_ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: grassmods_ru\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-07-26 01:37+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Russian \n" @@ -175,7 +175,7 @@ msgstr "Список всех столбцов для указанной таб #: ../general/g.proj/main.c:90 ../general/g.proj/main.c:99 #: ../general/g.proj/main.c:105 ../general/g.proj/main.c:114 #: ../general/g.proj/main.c:126 ../general/g.proj/main.c:135 -#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:244 +#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:245 #: ../general/g.region/main.c:91 ../general/g.region/main.c:97 #: ../general/g.region/main.c:102 ../general/g.region/main.c:108 #: ../general/g.region/main.c:113 ../general/g.region/main.c:118 @@ -302,13 +302,12 @@ msgstr "" #: ../db/db.connect/main.c:144 ../general/g.findfile/main.c:187 #: ../general/g.list/list.c:122 ../general/g.mapset/main.c:119 -#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:54 -#: ../general/g.proj/output.c:360 ../general/g.region/main.c:471 -#: ../general/g.version/main.c:140 ../misc/m.measure/main.c:87 -#: ../raster/r.describe/dumplist.c:38 ../raster/r.distance/report.c:211 -#: ../raster/r.distance/report.c:218 ../raster/r.distance/report.c:225 -#: ../raster/r.info/main.c:147 ../raster/r.proj/main.c:487 -#: ../raster/r.regression.line/main.c:101 +#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:351 +#: ../general/g.region/main.c:471 ../general/g.version/main.c:140 +#: ../misc/m.measure/main.c:87 ../raster/r.describe/dumplist.c:38 +#: ../raster/r.distance/report.c:211 ../raster/r.distance/report.c:218 +#: ../raster/r.distance/report.c:225 ../raster/r.info/main.c:147 +#: ../raster/r.proj/main.c:487 ../raster/r.regression.line/main.c:101 #: ../raster/r.regression.multi/main.c:197 #: ../raster/r.regression.multi/main.c:566 #: ../raster/r.stats.quantile/main.c:430 ../raster/r.stats.quantile/main.c:447 @@ -327,7 +326,7 @@ msgstr "" msgid "Failed to initialize JSON object. Out of memory?" msgstr "" -#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:277 +#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:278 #: ../general/g.region/main.c:427 ../general/g.version/main.c:153 #: ../imagery/i.group/main.c:137 ../misc/m.measure/main.c:100 #: ../raster/r.proj/main.c:270 ../raster/r.regression.line/main.c:114 @@ -484,7 +483,7 @@ msgstr "" msgid "Lists all databases for a given driver and location." msgstr "" -#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:383 +#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:374 #: ../general/g.region/main.c:990 ../general/g.version/main.c:409 #: ../imagery/i.group/main.c:301 ../raster/r.category/main.c:412 #: ../raster/r.describe/dumplist.c:71 ../raster/r.info/main.c:1000 @@ -6471,10 +6470,10 @@ msgstr "" msgid "Converts between PPM/PGM and PNG image formats." msgstr "" -#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:141 -#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:140 -#: ../vector/v.external/proj.c:173 ../vector/v.in.lidar/main.c:525 -#: ../vector/v.in.ogr/proj.c:307 +#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:129 +#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:129 +#: ../vector/v.external/proj.c:158 ../vector/v.in.lidar/main.c:525 +#: ../vector/v.in.ogr/proj.c:228 #, fuzzy, c-format msgid "Project <%s> created" msgstr "Растровая карта <%s> не найдена" @@ -6784,55 +6783,63 @@ msgstr "" msgid "Name of new project (location) to create" msgstr "Имя выходного растрового слоя экспозиции склонов" -#: ../general/g.proj/main.c:239 -msgid "plain;Human readable text output;shell;shell script style text output;json;JSON (JavaScript Object Notation);wkt;Well-known text output;proj4;PROJ.4 style text output;" +#: ../general/g.proj/main.c:240 +msgid "plain;Human readable text output;shell;shell script style text output;wkt;Well-known text output;projjson;JSON (JavaScript Object Notation) version of WKT;proj4;PROJ.4 style text output;" msgstr "" -#: ../general/g.proj/main.c:271 ../vector/v.what.rast/main.c:159 +#: ../general/g.proj/main.c:272 ../vector/v.what.rast/main.c:159 #, c-format msgid "The format option can only be used with -%c flag" msgstr "" -#: ../general/g.proj/main.c:283 +#: ../general/g.proj/main.c:284 msgid "Flag 'j' is deprecated and will be removed in a future release. Please use format=proj4 instead." msgstr "" -#: ../general/g.proj/main.c:292 +#: ../general/g.proj/main.c:293 msgid "Flag 'w' is deprecated and will be removed in a future release. Please use format=wkt instead." msgstr "" -#: ../general/g.proj/main.c:312 +#: ../general/g.proj/main.c:313 #, c-format msgid "Only one of '%s', '%s', '%s', '%s' or '%s' options may be specified" msgstr "" -#: ../general/g.proj/main.c:364 +#: ../general/g.proj/main.c:365 msgid "Projection files missing" msgstr "" -#: ../general/g.proj/main.c:392 +#: ../general/g.proj/main.c:393 #, c-format msgid "No output format specified. Define one of the options: plain, shell, json, wkt, or proj4 using the -%c flag." msgstr "" -#: ../general/g.proj/main.c:397 +#: ../general/g.proj/main.c:398 #, c-format msgid "No output format specified. Define one of the options: plain, shell, json, or proj4 using the -%c flag." msgstr "" -#: ../general/g.proj/output.c:221 +#: ../general/g.proj/output.c:54 +msgid "JSON output is not available." +msgstr "" + +#: ../general/g.proj/output.c:212 msgid "Unable to convert projection information to PROJ format" msgstr "" -#: ../general/g.proj/output.c:295 +#: ../general/g.proj/output.c:286 #, c-format msgid "Unable to create PROJ definition from srid <%s>" msgstr "" -#: ../general/g.proj/output.c:337 +#: ../general/g.proj/output.c:328 msgid "Unable to convert to WKT" msgstr "" +#: ../general/g.proj/output.c:433 +msgid "Unable to convert to PROJJSON" +msgstr "" + #: ../general/g.region/main.c:67 msgid "computational region" msgstr "" @@ -11460,10 +11467,10 @@ msgstr "" #: ../raster/r.grow.distance/main.c:392 ../raster/r.li/r.li.daemon/daemon.c:743 #: ../raster/r.mfilter/execute.c:82 ../raster/r.mfilter/execute.c:114 #: ../raster/r.mfilter/execute.c:165 ../raster/r.mfilter/getrow.c:24 -#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:786 -#: ../raster/r.path/main.c:822 ../raster/r.path/main.c:954 -#: ../raster/r.path/main.c:1073 ../raster/r.path/main.c:1103 -#: ../raster/r.path/main.c:1207 ../raster/r.thin/io.c:72 +#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:789 +#: ../raster/r.path/main.c:825 ../raster/r.path/main.c:957 +#: ../raster/r.path/main.c:1076 ../raster/r.path/main.c:1106 +#: ../raster/r.path/main.c:1210 ../raster/r.thin/io.c:72 #: ../raster/r.thin/io.c:82 ../raster3d/r3.in.v5d/v5d.c:1192 #: ../raster3d/r3.in.v5d/v5d.c:1443 ../raster3d/r3.in.v5d/v5d.c:1523 #: ../raster3d/r3.in.v5d/v5d.c:1848 ../raster3d/r3.in.v5d/v5d.c:1859 @@ -11488,9 +11495,9 @@ msgstr "" #: ../raster/r.clump/minsize.c:268 ../raster/r.clump/minsize.c:308 #: ../raster/r.clump/minsize.c:319 ../raster/r.clump/minsize.c:454 #: ../raster/r.clump/minsize.c:481 ../raster/r.clump/minsize.c:557 -#: ../raster/r.path/main.c:791 ../raster/r.path/main.c:827 -#: ../raster/r.path/main.c:962 ../raster/r.path/main.c:1078 -#: ../raster/r.path/main.c:1108 ../raster/r.path/main.c:1213 +#: ../raster/r.path/main.c:794 ../raster/r.path/main.c:830 +#: ../raster/r.path/main.c:965 ../raster/r.path/main.c:1081 +#: ../raster/r.path/main.c:1111 ../raster/r.path/main.c:1216 msgid "Unable to read from temp file" msgstr "" @@ -19813,7 +19820,7 @@ msgstr "" msgid "Starting point %d is outside the current region" msgstr "" -#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:375 +#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:378 #, c-format msgid "Starting vector map <%s> contains no points in the current region" msgstr "" @@ -19827,8 +19834,8 @@ msgid "Calculating flow directions..." msgstr "" #: ../raster/r.drain/main.c:485 ../raster/r.in.lidar/main.c:783 -#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:598 -#: ../raster/r.path/main.c:628 ../raster/r.viewshed/grass.cpp:621 +#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:601 +#: ../raster/r.path/main.c:631 ../raster/r.viewshed/grass.cpp:621 msgid "Writing output raster map..." msgstr "" @@ -20076,83 +20083,90 @@ msgstr "" msgid "Imagery group <%s> created" msgstr "" -#: ../raster/r.external/proj.c:51 ../raster/r.external/proj.c:93 -#: ../raster/r.in.gdal/proj.c:51 ../raster/r.in.gdal/proj.c:93 -#, c-format -msgid "" -"Input contains an invalid CRS. WKT definition:\n" -"%s" +#: ../raster/r.external/proj.c:36 ../raster/r.external/proj.c:63 +#: ../raster/r.external/proj.c:122 ../raster/r.in.gdal/proj.c:36 +#: ../raster/r.in.gdal/proj.c:63 ../raster/r.in.gdal/proj.c:122 +#: ../vector/v.external/proj.c:92 ../vector/v.external/proj.c:151 +#: ../vector/v.in.ogr/proj.c:162 ../vector/v.in.ogr/proj.c:221 +msgid "Can't get WKT parameter string" msgstr "" -#: ../raster/r.external/proj.c:120 ../raster/r.in.gdal/proj.c:120 +#: ../raster/r.external/proj.c:56 ../raster/r.in.gdal/proj.c:56 +#: ../vector/v.external/proj.c:85 ../vector/v.in.ogr/proj.c:155 +msgid "Input contains an invalid CRS." +msgstr "" + +#: ../raster/r.external/proj.c:66 ../raster/r.in.gdal/proj.c:66 +#: ../vector/v.external/proj.c:95 ../vector/v.in.ogr/proj.c:165 +#, fuzzy +msgid "WKT definition:" +msgstr "Область: %s\n" + +#: ../raster/r.external/proj.c:99 ../raster/r.in.gdal/proj.c:99 +#: ../vector/v.external/proj.c:128 ../vector/v.in.ogr/proj.c:198 msgid "No projection information available" msgstr "" -#: ../raster/r.external/proj.c:133 -msgid "Unable to convert input map coordinate reference system to GRASS format; cannot create new project." +#: ../raster/r.external/proj.c:114 ../raster/r.in.gdal/proj.c:114 +#: ../vector/v.external/proj.c:143 ../vector/v.in.ogr/proj.c:213 +msgid "Unable to convert input map projection to GRASS format; cannot create new project." msgstr "" -#: ../raster/r.external/proj.c:139 ../raster/r.in.gdal/main.c:1039 -#: ../raster/r.in.gdal/proj.c:138 ../vector/v.external/proj.c:171 -#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:305 +#: ../raster/r.external/proj.c:127 ../raster/r.in.gdal/main.c:1039 +#: ../raster/r.in.gdal/proj.c:127 ../vector/v.external/proj.c:156 +#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:226 #, fuzzy, c-format msgid "Unable to create new project <%s>" msgstr "Не удалось создать векторную карту <%s>." -#: ../raster/r.external/proj.c:165 ../raster/r.in.gdal/proj.c:164 -#: ../vector/v.external/proj.c:197 ../vector/v.in.ogr/proj.c:331 +#: ../raster/r.external/proj.c:157 ../raster/r.in.gdal/proj.c:157 +#: ../vector/v.external/proj.c:186 ../vector/v.in.ogr/proj.c:256 msgid "Unable to convert input map projection information to GRASS format." msgstr "" -#: ../raster/r.external/proj.c:192 ../raster/r.in.gdal/proj.c:192 +#: ../raster/r.external/proj.c:238 ../raster/r.in.gdal/proj.c:238 #: ../raster/r.in.lidar/projection.c:126 -#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:228 -#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:360 +#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:267 +#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:337 msgid "Over-riding projection check" msgstr "" -#: ../raster/r.external/proj.c:200 ../raster/r.in.gdal/proj.c:200 -#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 -#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.external/proj.c:236 -#: ../vector/v.in.lidar/projection.c:30 ../vector/v.in.ogr/proj.c:368 -msgid "" -"Coordinate reference system of dataset does not appear to match current project.\n" -"\n" +#: ../raster/r.external/proj.c:244 ../raster/r.in.gdal/proj.c:244 +#: ../vector/v.external/proj.c:273 ../vector/v.in.ogr/proj.c:343 +msgid "Coordinate reference system of dataset does not appear to match current project.\n" msgstr "" -#: ../raster/r.external/proj.c:207 ../raster/r.external/proj.c:216 -#: ../raster/r.in.gdal/proj.c:207 ../raster/r.in.gdal/proj.c:216 -#: ../vector/v.external/proj.c:243 ../vector/v.external/proj.c:252 -#: ../vector/v.in.ogr/proj.c:375 ../vector/v.in.ogr/proj.c:384 -msgid "Project PROJ_INFO is:\n" -msgstr "" +#: ../raster/r.external/proj.c:258 ../raster/r.in.gdal/proj.c:258 +#: ../vector/v.external/proj.c:287 ../vector/v.in.ogr/proj.c:357 +#, fuzzy +msgid "Dataset CRS is:\n" +msgstr "база данных" -#: ../raster/r.external/proj.c:236 ../raster/r.external/proj.c:243 -#: ../raster/r.in.gdal/proj.c:236 ../raster/r.in.gdal/proj.c:243 -#: ../vector/v.external/proj.c:272 ../vector/v.external/proj.c:279 -#: ../vector/v.in.ogr/proj.c:404 ../vector/v.in.ogr/proj.c:411 -msgid "Dataset PROJ_INFO is:\n" +#: ../raster/r.external/proj.c:272 ../raster/r.in.gdal/proj.c:272 +#: ../vector/v.external/proj.c:301 ../vector/v.in.ogr/proj.c:371 +msgid "Project CRS is:\n" msgstr "" -#: ../raster/r.external/proj.c:324 ../raster/r.in.lidar/projection.c:89 -#: ../raster/r.in.pdal/projection.c:87 ../raster3d/r3.in.lidar/projection.c:90 -#: ../vector/v.external/proj.c:360 ../vector/v.in.lidar/projection.c:87 -#: ../vector/v.in.ogr/proj.c:492 ../vector/v.in.pdal/projection.c:87 +#: ../raster/r.external/proj.c:286 ../raster/r.in.gdal/proj.c:286 +#: ../raster/r.in.lidar/projection.c:89 ../raster/r.in.pdal/projection.c:87 +#: ../raster3d/r3.in.lidar/projection.c:90 ../vector/v.external/proj.c:315 +#: ../vector/v.in.lidar/projection.c:87 ../vector/v.in.ogr/proj.c:385 +#: ../vector/v.in.pdal/projection.c:87 #, c-format msgid "" "\n" "In case of no significant differences in the coordinate reference system definitions, use the -o flag to ignore them and use current project definition.\n" msgstr "" -#: ../raster/r.external/proj.c:328 ../raster/r.in.gdal/proj.c:327 -#: ../vector/v.external/proj.c:364 ../vector/v.in.ogr/proj.c:496 +#: ../raster/r.external/proj.c:290 ../raster/r.in.gdal/proj.c:290 +#: ../vector/v.external/proj.c:319 ../vector/v.in.ogr/proj.c:389 msgid "Consider generating a new project from the input dataset using the 'project' parameter.\n" msgstr "" -#: ../raster/r.external/proj.c:348 ../raster/r.in.gdal/proj.c:347 +#: ../raster/r.external/proj.c:310 ../raster/r.in.gdal/proj.c:310 #: ../raster/r.in.lidar/projection.c:136 ../raster/r.in.pdal/projection.c:134 -#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:384 -#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:516 +#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:339 +#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:409 msgid "Coordinate reference system of input dataset and current project appear to match" msgstr "" @@ -20766,7 +20780,7 @@ msgstr "" msgid "Region resolution shouldn't be lesser than map %s resolution. Run g.region raster=%s to set proper resolution" msgstr "" -#: ../raster/r.geomorphon/pattern.c:228 +#: ../raster/r.geomorphon/pattern.c:229 #, c-format msgid "Internal error in %s()" msgstr "" @@ -21733,8 +21747,7 @@ msgstr "" msgid "Error in %s (can't re-project GCP %i)" msgstr "" -#: ../raster/r.in.gdal/main.c:983 ../vector/v.external/proj.c:165 -#: ../vector/v.in.lidar/main.c:516 +#: ../raster/r.in.gdal/main.c:983 ../vector/v.in.lidar/main.c:516 msgid "Unable to convert input map CRS to GRASS format; cannot create new project." msgstr "" @@ -21785,16 +21798,6 @@ msgstr "" msgid "Unable to open file <%s>: %s." msgstr "" -#: ../raster/r.in.gdal/proj.c:132 ../vector/v.in.ogr/proj.c:299 -msgid "Unable to convert input map projection to GRASS format; cannot create new project." -msgstr "" - -#: ../raster/r.in.gdal/proj.c:323 -msgid "" -"\n" -"In case of no significant differences in the CRS definitions, use the -o flag to ignore them and use current project definition.\n" -msgstr "" - #: ../raster/r.in.gridatb/file_io.c:16 #, fuzzy, c-format #| msgid "Unable to open file '%s'" @@ -22156,6 +22159,13 @@ msgstr "" msgid "Unable to calculate trimmed mean without the trim option specified!" msgstr "" +#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 +#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.in.lidar/projection.c:30 +msgid "" +"Coordinate reference system of dataset does not appear to match current project.\n" +"\n" +msgstr "" + #: ../raster/r.in.lidar/projection.c:38 ../raster/r.in.pdal/projection.c:36 #: ../vector/v.in.lidar/projection.c:36 ../vector/v.in.pdal/projection.c:36 msgid "GRASS project PROJ_INFO is:\n" @@ -24997,113 +25007,113 @@ msgstr "настройки соединения" msgid "Do not break lines (faster for single-direction bitmask encoding)" msgstr "" -#: ../raster/r.path/main.c:384 +#: ../raster/r.path/main.c:387 msgid "No start point(s) specified" msgstr "" -#: ../raster/r.path/main.c:394 +#: ../raster/r.path/main.c:397 #, c-format msgid "Reading raster values map <%s> ..." msgstr "" -#: ../raster/r.path/main.c:399 +#: ../raster/r.path/main.c:402 #, fuzzy, c-format msgid "Unable to open temporary file <%s>: %s" msgstr "Не удалось открыть файл %s: <%s>" -#: ../raster/r.path/main.c:411 ../raster/r.path/main.c:489 -#: ../raster/r.path/main.c:506 +#: ../raster/r.path/main.c:414 ../raster/r.path/main.c:492 +#: ../raster/r.path/main.c:509 msgid "Unable to write to tempfile" msgstr "" -#: ../raster/r.path/main.c:419 +#: ../raster/r.path/main.c:422 msgid "Unable to read range file" msgstr "Не удалось прочитать файл диапазона" -#: ../raster/r.path/main.c:422 +#: ../raster/r.path/main.c:425 #, c-format msgid "Invalid directions map <%s>" msgstr "" -#: ../raster/r.path/main.c:427 +#: ../raster/r.path/main.c:430 msgid "Directional degrees can not be > 360" msgstr "" -#: ../raster/r.path/main.c:433 +#: ../raster/r.path/main.c:436 msgid "Directional degrees divided by 45 can not be > 8" msgstr "" -#: ../raster/r.path/main.c:438 +#: ../raster/r.path/main.c:441 #, c-format msgid "Bitmask encoded directions can not be > %d" msgstr "" -#: ../raster/r.path/main.c:445 +#: ../raster/r.path/main.c:448 msgid "Input direction format assumed to be degrees CCW from East divided by 45" msgstr "" -#: ../raster/r.path/main.c:450 +#: ../raster/r.path/main.c:453 msgid "Input direction format assumed to be bitmask encoded without Knight's move" msgstr "" -#: ../raster/r.path/main.c:456 +#: ../raster/r.path/main.c:459 msgid "Input direction format assumed to be degrees CCW from East" msgstr "" -#: ../raster/r.path/main.c:460 +#: ../raster/r.path/main.c:463 msgid "Input direction format assumed to be bitmask encoded with Knight's move" msgstr "" -#: ../raster/r.path/main.c:465 +#: ../raster/r.path/main.c:468 #, c-format msgid "Unable to detect format of input direction map <%s>" msgstr "" -#: ../raster/r.path/main.c:469 +#: ../raster/r.path/main.c:472 #, c-format msgid "Invalid directions format '%s'" msgstr "" -#: ../raster/r.path/main.c:471 +#: ../raster/r.path/main.c:474 #, c-format msgid "Reading direction map <%s> ..." msgstr "" -#: ../raster/r.path/main.c:525 +#: ../raster/r.path/main.c:528 msgid "Processing start points..." msgstr "" -#: ../raster/r.path/main.c:535 ../vector/v.buffer/main.c:410 +#: ../raster/r.path/main.c:538 ../vector/v.buffer/main.c:410 #: ../vector/v.in.ogr/main.c:881 ../vector/v.overlay/main.c:237 #: ../vector/v.voronoi/main.c:215 msgid "Unable to create temporary vector map" msgstr "" -#: ../raster/r.path/main.c:541 ../raster/r.path/main.c:557 +#: ../raster/r.path/main.c:544 ../raster/r.path/main.c:560 #, c-format msgid "No path at row %d, col %d" msgstr "" -#: ../raster/r.path/main.c:546 ../vector/v.overlay/area_area.c:134 +#: ../raster/r.path/main.c:549 ../vector/v.overlay/area_area.c:134 #: ../vector/v.overlay/line_area.c:255 msgid "Breaking lines..." msgstr "" -#: ../raster/r.path/main.c:684 +#: ../raster/r.path/main.c:687 msgid "Unable to increase point list" msgstr "" -#: ../raster/r.path/main.c:887 +#: ../raster/r.path/main.c:890 #, c-format msgid "No path from row %d, col %d" msgstr "" -#: ../raster/r.path/main.c:901 +#: ../raster/r.path/main.c:904 #, c-format msgid "Invalid direction %d" msgstr "" -#: ../raster/r.path/main.c:999 +#: ../raster/r.path/main.c:1002 msgid "Path is leaving the current region" msgstr "" @@ -38699,39 +38709,17 @@ msgstr "" msgid "Link to vector map <%s> created." msgstr "" -#: ../vector/v.external/proj.c:35 ../vector/v.in.ogr/main.c:741 -#: ../vector/v.in.ogr/proj.c:36 +#: ../vector/v.external/proj.c:34 ../vector/v.in.ogr/main.c:741 +#: ../vector/v.in.ogr/proj.c:34 #, c-format msgid "Geometry column <%s> not found in input layer <%s>" msgstr "" -#: ../vector/v.external/proj.c:49 ../vector/v.in.ogr/proj.c:50 -msgid "Unable to convert input layer projection information to GRASS format for checking" -msgstr "" - -#: ../vector/v.external/proj.c:55 ../vector/v.external/proj.c:85 -#: ../vector/v.in.ogr/proj.c:56 ../vector/v.in.ogr/proj.c:86 -msgid "Can't get WKT parameter string" -msgstr "" - -#: ../vector/v.external/proj.c:58 ../vector/v.external/proj.c:88 -#: ../vector/v.in.ogr/proj.c:59 ../vector/v.in.ogr/proj.c:89 -#, c-format -msgid "" -"WKT definition:\n" -"%s" -msgstr "" - -#: ../vector/v.external/proj.c:69 ../vector/v.in.ogr/proj.c:70 +#: ../vector/v.external/proj.c:46 ../vector/v.in.ogr/proj.c:46 #, c-format msgid "No projection information available for layer <%s>" msgstr "" -#: ../vector/v.external/proj.c:78 ../vector/v.in.ogr/proj.c:79 -#, c-format -msgid "Projection for layer <%s> does not contain a valid CRS" -msgstr "" - #: ../vector/v.extract/extract.c:202 #, c-format msgid "No category found for area %d. Skipping." @@ -40500,16 +40488,16 @@ msgstr "" msgid "The spatial filter does not overlap with OGR layer <%s>. Nothing to import." msgstr "" -#: ../vector/v.in.ogr/proj.c:168 +#: ../vector/v.in.ogr/proj.c:85 msgid "Layer projections are unreadable" msgstr "" -#: ../vector/v.in.ogr/proj.c:184 +#: ../vector/v.in.ogr/proj.c:93 #, c-format msgid "Projection for layer <%s> is unreadable" msgstr "" -#: ../vector/v.in.ogr/proj.c:236 +#: ../vector/v.in.ogr/proj.c:113 #, c-format msgid "Projection of layer <%s> is different from projection of layer <%s>" msgstr "" @@ -48084,11 +48072,6 @@ msgstr "" msgid "Image file" msgstr "" -#, fuzzy, c-format -#~| msgid "Unable to open file '%s'" -#~ msgid "Unable to seek: %s" -#~ msgstr "Не удалось открыть файл «%s»" - #~ msgid "" #~ "\n" #~ "%d classes, %.2f%% points stable\n" @@ -48430,10 +48413,6 @@ msgstr "" #~ msgid "Database indexes" #~ msgstr "база данных" -#, fuzzy -#~ msgid "Dataset ID" -#~ msgstr "база данных" - #, fuzzy #~ msgid "Default value: GRASS_GUI if defined otherwise wxpython" #~ msgstr "Значение по умолчанию: GRASS_GUI если установлен, иначе - tcltk" @@ -50422,6 +50401,11 @@ msgstr "" #~ msgid "Type of thematic display" #~ msgstr "Тип тематической карты" +#, fuzzy, c-format +#~| msgid "Unable to open file '%s'" +#~ msgid "Unable to seek: %s" +#~ msgstr "Не удалось открыть файл «%s»" + #, fuzzy #~ msgid "Units for output areas" #~ msgstr "Префикс выходного растрового слоя (слоев)" @@ -50677,10 +50661,6 @@ msgstr "" #~ msgid "time series" #~ msgstr "сайты" -#, fuzzy -#~ msgid "uri destination" -#~ msgstr "Область: %s\n" - #, fuzzy #~ msgid "validation" #~ msgstr "Область: %s\n" diff --git a/locale/po/grassmods_si.po b/locale/po/grassmods_si.po index 5ffa3561f88..f3441e84659 100644 --- a/locale/po/grassmods_si.po +++ b/locale/po/grassmods_si.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: grasslibs_si\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-07-26 01:37+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Sinhala \n" @@ -176,7 +176,7 @@ msgstr "" #: ../general/g.proj/main.c:90 ../general/g.proj/main.c:99 #: ../general/g.proj/main.c:105 ../general/g.proj/main.c:114 #: ../general/g.proj/main.c:126 ../general/g.proj/main.c:135 -#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:244 +#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:245 #: ../general/g.region/main.c:91 ../general/g.region/main.c:97 #: ../general/g.region/main.c:102 ../general/g.region/main.c:108 #: ../general/g.region/main.c:113 ../general/g.region/main.c:118 @@ -302,13 +302,12 @@ msgstr "" #: ../db/db.connect/main.c:144 ../general/g.findfile/main.c:187 #: ../general/g.list/list.c:122 ../general/g.mapset/main.c:119 -#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:54 -#: ../general/g.proj/output.c:360 ../general/g.region/main.c:471 -#: ../general/g.version/main.c:140 ../misc/m.measure/main.c:87 -#: ../raster/r.describe/dumplist.c:38 ../raster/r.distance/report.c:211 -#: ../raster/r.distance/report.c:218 ../raster/r.distance/report.c:225 -#: ../raster/r.info/main.c:147 ../raster/r.proj/main.c:487 -#: ../raster/r.regression.line/main.c:101 +#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:351 +#: ../general/g.region/main.c:471 ../general/g.version/main.c:140 +#: ../misc/m.measure/main.c:87 ../raster/r.describe/dumplist.c:38 +#: ../raster/r.distance/report.c:211 ../raster/r.distance/report.c:218 +#: ../raster/r.distance/report.c:225 ../raster/r.info/main.c:147 +#: ../raster/r.proj/main.c:487 ../raster/r.regression.line/main.c:101 #: ../raster/r.regression.multi/main.c:197 #: ../raster/r.regression.multi/main.c:566 #: ../raster/r.stats.quantile/main.c:430 ../raster/r.stats.quantile/main.c:447 @@ -327,7 +326,7 @@ msgstr "" msgid "Failed to initialize JSON object. Out of memory?" msgstr "" -#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:277 +#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:278 #: ../general/g.region/main.c:427 ../general/g.version/main.c:153 #: ../imagery/i.group/main.c:137 ../misc/m.measure/main.c:100 #: ../raster/r.proj/main.c:270 ../raster/r.regression.line/main.c:114 @@ -481,7 +480,7 @@ msgstr "" msgid "Lists all databases for a given driver and location." msgstr "" -#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:383 +#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:374 #: ../general/g.region/main.c:990 ../general/g.version/main.c:409 #: ../imagery/i.group/main.c:301 ../raster/r.category/main.c:412 #: ../raster/r.describe/dumplist.c:71 ../raster/r.info/main.c:1000 @@ -6441,10 +6440,10 @@ msgstr "" msgid "Converts between PPM/PGM and PNG image formats." msgstr "" -#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:141 -#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:140 -#: ../vector/v.external/proj.c:173 ../vector/v.in.lidar/main.c:525 -#: ../vector/v.in.ogr/proj.c:307 +#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:129 +#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:129 +#: ../vector/v.external/proj.c:158 ../vector/v.in.lidar/main.c:525 +#: ../vector/v.in.ogr/proj.c:228 #, c-format msgid "Project <%s> created" msgstr "" @@ -6749,55 +6748,63 @@ msgstr "" msgid "Name of new project (location) to create" msgstr "" -#: ../general/g.proj/main.c:239 -msgid "plain;Human readable text output;shell;shell script style text output;json;JSON (JavaScript Object Notation);wkt;Well-known text output;proj4;PROJ.4 style text output;" +#: ../general/g.proj/main.c:240 +msgid "plain;Human readable text output;shell;shell script style text output;wkt;Well-known text output;projjson;JSON (JavaScript Object Notation) version of WKT;proj4;PROJ.4 style text output;" msgstr "" -#: ../general/g.proj/main.c:271 ../vector/v.what.rast/main.c:159 +#: ../general/g.proj/main.c:272 ../vector/v.what.rast/main.c:159 #, c-format msgid "The format option can only be used with -%c flag" msgstr "" -#: ../general/g.proj/main.c:283 +#: ../general/g.proj/main.c:284 msgid "Flag 'j' is deprecated and will be removed in a future release. Please use format=proj4 instead." msgstr "" -#: ../general/g.proj/main.c:292 +#: ../general/g.proj/main.c:293 msgid "Flag 'w' is deprecated and will be removed in a future release. Please use format=wkt instead." msgstr "" -#: ../general/g.proj/main.c:312 +#: ../general/g.proj/main.c:313 #, c-format msgid "Only one of '%s', '%s', '%s', '%s' or '%s' options may be specified" msgstr "" -#: ../general/g.proj/main.c:364 +#: ../general/g.proj/main.c:365 msgid "Projection files missing" msgstr "" -#: ../general/g.proj/main.c:392 +#: ../general/g.proj/main.c:393 #, c-format msgid "No output format specified. Define one of the options: plain, shell, json, wkt, or proj4 using the -%c flag." msgstr "" -#: ../general/g.proj/main.c:397 +#: ../general/g.proj/main.c:398 #, c-format msgid "No output format specified. Define one of the options: plain, shell, json, or proj4 using the -%c flag." msgstr "" -#: ../general/g.proj/output.c:221 +#: ../general/g.proj/output.c:54 +msgid "JSON output is not available." +msgstr "" + +#: ../general/g.proj/output.c:212 msgid "Unable to convert projection information to PROJ format" msgstr "" -#: ../general/g.proj/output.c:295 +#: ../general/g.proj/output.c:286 #, c-format msgid "Unable to create PROJ definition from srid <%s>" msgstr "" -#: ../general/g.proj/output.c:337 +#: ../general/g.proj/output.c:328 msgid "Unable to convert to WKT" msgstr "" +#: ../general/g.proj/output.c:433 +msgid "Unable to convert to PROJJSON" +msgstr "" + #: ../general/g.region/main.c:67 msgid "computational region" msgstr "" @@ -11414,10 +11421,10 @@ msgstr "" #: ../raster/r.grow.distance/main.c:392 ../raster/r.li/r.li.daemon/daemon.c:743 #: ../raster/r.mfilter/execute.c:82 ../raster/r.mfilter/execute.c:114 #: ../raster/r.mfilter/execute.c:165 ../raster/r.mfilter/getrow.c:24 -#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:786 -#: ../raster/r.path/main.c:822 ../raster/r.path/main.c:954 -#: ../raster/r.path/main.c:1073 ../raster/r.path/main.c:1103 -#: ../raster/r.path/main.c:1207 ../raster/r.thin/io.c:72 +#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:789 +#: ../raster/r.path/main.c:825 ../raster/r.path/main.c:957 +#: ../raster/r.path/main.c:1076 ../raster/r.path/main.c:1106 +#: ../raster/r.path/main.c:1210 ../raster/r.thin/io.c:72 #: ../raster/r.thin/io.c:82 ../raster3d/r3.in.v5d/v5d.c:1192 #: ../raster3d/r3.in.v5d/v5d.c:1443 ../raster3d/r3.in.v5d/v5d.c:1523 #: ../raster3d/r3.in.v5d/v5d.c:1848 ../raster3d/r3.in.v5d/v5d.c:1859 @@ -11442,9 +11449,9 @@ msgstr "" #: ../raster/r.clump/minsize.c:268 ../raster/r.clump/minsize.c:308 #: ../raster/r.clump/minsize.c:319 ../raster/r.clump/minsize.c:454 #: ../raster/r.clump/minsize.c:481 ../raster/r.clump/minsize.c:557 -#: ../raster/r.path/main.c:791 ../raster/r.path/main.c:827 -#: ../raster/r.path/main.c:962 ../raster/r.path/main.c:1078 -#: ../raster/r.path/main.c:1108 ../raster/r.path/main.c:1213 +#: ../raster/r.path/main.c:794 ../raster/r.path/main.c:830 +#: ../raster/r.path/main.c:965 ../raster/r.path/main.c:1081 +#: ../raster/r.path/main.c:1111 ../raster/r.path/main.c:1216 msgid "Unable to read from temp file" msgstr "" @@ -19731,7 +19738,7 @@ msgstr "" msgid "Starting point %d is outside the current region" msgstr "" -#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:375 +#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:378 #, c-format msgid "Starting vector map <%s> contains no points in the current region" msgstr "" @@ -19745,8 +19752,8 @@ msgid "Calculating flow directions..." msgstr "" #: ../raster/r.drain/main.c:485 ../raster/r.in.lidar/main.c:783 -#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:598 -#: ../raster/r.path/main.c:628 ../raster/r.viewshed/grass.cpp:621 +#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:601 +#: ../raster/r.path/main.c:631 ../raster/r.viewshed/grass.cpp:621 msgid "Writing output raster map..." msgstr "" @@ -19994,83 +20001,88 @@ msgstr "" msgid "Imagery group <%s> created" msgstr "" -#: ../raster/r.external/proj.c:51 ../raster/r.external/proj.c:93 -#: ../raster/r.in.gdal/proj.c:51 ../raster/r.in.gdal/proj.c:93 -#, c-format -msgid "" -"Input contains an invalid CRS. WKT definition:\n" -"%s" +#: ../raster/r.external/proj.c:36 ../raster/r.external/proj.c:63 +#: ../raster/r.external/proj.c:122 ../raster/r.in.gdal/proj.c:36 +#: ../raster/r.in.gdal/proj.c:63 ../raster/r.in.gdal/proj.c:122 +#: ../vector/v.external/proj.c:92 ../vector/v.external/proj.c:151 +#: ../vector/v.in.ogr/proj.c:162 ../vector/v.in.ogr/proj.c:221 +msgid "Can't get WKT parameter string" +msgstr "" + +#: ../raster/r.external/proj.c:56 ../raster/r.in.gdal/proj.c:56 +#: ../vector/v.external/proj.c:85 ../vector/v.in.ogr/proj.c:155 +msgid "Input contains an invalid CRS." +msgstr "" + +#: ../raster/r.external/proj.c:66 ../raster/r.in.gdal/proj.c:66 +#: ../vector/v.external/proj.c:95 ../vector/v.in.ogr/proj.c:165 +msgid "WKT definition:" msgstr "" -#: ../raster/r.external/proj.c:120 ../raster/r.in.gdal/proj.c:120 +#: ../raster/r.external/proj.c:99 ../raster/r.in.gdal/proj.c:99 +#: ../vector/v.external/proj.c:128 ../vector/v.in.ogr/proj.c:198 msgid "No projection information available" msgstr "" -#: ../raster/r.external/proj.c:133 -msgid "Unable to convert input map coordinate reference system to GRASS format; cannot create new project." +#: ../raster/r.external/proj.c:114 ../raster/r.in.gdal/proj.c:114 +#: ../vector/v.external/proj.c:143 ../vector/v.in.ogr/proj.c:213 +msgid "Unable to convert input map projection to GRASS format; cannot create new project." msgstr "" -#: ../raster/r.external/proj.c:139 ../raster/r.in.gdal/main.c:1039 -#: ../raster/r.in.gdal/proj.c:138 ../vector/v.external/proj.c:171 -#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:305 +#: ../raster/r.external/proj.c:127 ../raster/r.in.gdal/main.c:1039 +#: ../raster/r.in.gdal/proj.c:127 ../vector/v.external/proj.c:156 +#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:226 #, c-format msgid "Unable to create new project <%s>" msgstr "" -#: ../raster/r.external/proj.c:165 ../raster/r.in.gdal/proj.c:164 -#: ../vector/v.external/proj.c:197 ../vector/v.in.ogr/proj.c:331 +#: ../raster/r.external/proj.c:157 ../raster/r.in.gdal/proj.c:157 +#: ../vector/v.external/proj.c:186 ../vector/v.in.ogr/proj.c:256 msgid "Unable to convert input map projection information to GRASS format." msgstr "" -#: ../raster/r.external/proj.c:192 ../raster/r.in.gdal/proj.c:192 +#: ../raster/r.external/proj.c:238 ../raster/r.in.gdal/proj.c:238 #: ../raster/r.in.lidar/projection.c:126 -#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:228 -#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:360 +#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:267 +#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:337 msgid "Over-riding projection check" msgstr "" -#: ../raster/r.external/proj.c:200 ../raster/r.in.gdal/proj.c:200 -#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 -#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.external/proj.c:236 -#: ../vector/v.in.lidar/projection.c:30 ../vector/v.in.ogr/proj.c:368 -msgid "" -"Coordinate reference system of dataset does not appear to match current project.\n" -"\n" +#: ../raster/r.external/proj.c:244 ../raster/r.in.gdal/proj.c:244 +#: ../vector/v.external/proj.c:273 ../vector/v.in.ogr/proj.c:343 +msgid "Coordinate reference system of dataset does not appear to match current project.\n" msgstr "" -#: ../raster/r.external/proj.c:207 ../raster/r.external/proj.c:216 -#: ../raster/r.in.gdal/proj.c:207 ../raster/r.in.gdal/proj.c:216 -#: ../vector/v.external/proj.c:243 ../vector/v.external/proj.c:252 -#: ../vector/v.in.ogr/proj.c:375 ../vector/v.in.ogr/proj.c:384 -msgid "Project PROJ_INFO is:\n" +#: ../raster/r.external/proj.c:258 ../raster/r.in.gdal/proj.c:258 +#: ../vector/v.external/proj.c:287 ../vector/v.in.ogr/proj.c:357 +msgid "Dataset CRS is:\n" msgstr "" -#: ../raster/r.external/proj.c:236 ../raster/r.external/proj.c:243 -#: ../raster/r.in.gdal/proj.c:236 ../raster/r.in.gdal/proj.c:243 -#: ../vector/v.external/proj.c:272 ../vector/v.external/proj.c:279 -#: ../vector/v.in.ogr/proj.c:404 ../vector/v.in.ogr/proj.c:411 -msgid "Dataset PROJ_INFO is:\n" +#: ../raster/r.external/proj.c:272 ../raster/r.in.gdal/proj.c:272 +#: ../vector/v.external/proj.c:301 ../vector/v.in.ogr/proj.c:371 +msgid "Project CRS is:\n" msgstr "" -#: ../raster/r.external/proj.c:324 ../raster/r.in.lidar/projection.c:89 -#: ../raster/r.in.pdal/projection.c:87 ../raster3d/r3.in.lidar/projection.c:90 -#: ../vector/v.external/proj.c:360 ../vector/v.in.lidar/projection.c:87 -#: ../vector/v.in.ogr/proj.c:492 ../vector/v.in.pdal/projection.c:87 +#: ../raster/r.external/proj.c:286 ../raster/r.in.gdal/proj.c:286 +#: ../raster/r.in.lidar/projection.c:89 ../raster/r.in.pdal/projection.c:87 +#: ../raster3d/r3.in.lidar/projection.c:90 ../vector/v.external/proj.c:315 +#: ../vector/v.in.lidar/projection.c:87 ../vector/v.in.ogr/proj.c:385 +#: ../vector/v.in.pdal/projection.c:87 #, c-format msgid "" "\n" "In case of no significant differences in the coordinate reference system definitions, use the -o flag to ignore them and use current project definition.\n" msgstr "" -#: ../raster/r.external/proj.c:328 ../raster/r.in.gdal/proj.c:327 -#: ../vector/v.external/proj.c:364 ../vector/v.in.ogr/proj.c:496 +#: ../raster/r.external/proj.c:290 ../raster/r.in.gdal/proj.c:290 +#: ../vector/v.external/proj.c:319 ../vector/v.in.ogr/proj.c:389 msgid "Consider generating a new project from the input dataset using the 'project' parameter.\n" msgstr "" -#: ../raster/r.external/proj.c:348 ../raster/r.in.gdal/proj.c:347 +#: ../raster/r.external/proj.c:310 ../raster/r.in.gdal/proj.c:310 #: ../raster/r.in.lidar/projection.c:136 ../raster/r.in.pdal/projection.c:134 -#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:384 -#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:516 +#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:339 +#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:409 msgid "Coordinate reference system of input dataset and current project appear to match" msgstr "" @@ -20678,7 +20690,7 @@ msgstr "" msgid "Region resolution shouldn't be lesser than map %s resolution. Run g.region raster=%s to set proper resolution" msgstr "" -#: ../raster/r.geomorphon/pattern.c:228 +#: ../raster/r.geomorphon/pattern.c:229 #, c-format msgid "Internal error in %s()" msgstr "" @@ -21641,8 +21653,7 @@ msgstr "" msgid "Error in %s (can't re-project GCP %i)" msgstr "" -#: ../raster/r.in.gdal/main.c:983 ../vector/v.external/proj.c:165 -#: ../vector/v.in.lidar/main.c:516 +#: ../raster/r.in.gdal/main.c:983 ../vector/v.in.lidar/main.c:516 msgid "Unable to convert input map CRS to GRASS format; cannot create new project." msgstr "" @@ -21693,16 +21704,6 @@ msgstr "" msgid "Unable to open file <%s>: %s." msgstr "" -#: ../raster/r.in.gdal/proj.c:132 ../vector/v.in.ogr/proj.c:299 -msgid "Unable to convert input map projection to GRASS format; cannot create new project." -msgstr "" - -#: ../raster/r.in.gdal/proj.c:323 -msgid "" -"\n" -"In case of no significant differences in the CRS definitions, use the -o flag to ignore them and use current project definition.\n" -msgstr "" - #: ../raster/r.in.gridatb/file_io.c:16 #, c-format msgid "Unable to open file: %s" @@ -22063,6 +22064,13 @@ msgstr "" msgid "Unable to calculate trimmed mean without the trim option specified!" msgstr "" +#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 +#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.in.lidar/projection.c:30 +msgid "" +"Coordinate reference system of dataset does not appear to match current project.\n" +"\n" +msgstr "" + #: ../raster/r.in.lidar/projection.c:38 ../raster/r.in.pdal/projection.c:36 #: ../vector/v.in.lidar/projection.c:36 ../vector/v.in.pdal/projection.c:36 msgid "GRASS project PROJ_INFO is:\n" @@ -24883,113 +24891,113 @@ msgstr "" msgid "Do not break lines (faster for single-direction bitmask encoding)" msgstr "" -#: ../raster/r.path/main.c:384 +#: ../raster/r.path/main.c:387 msgid "No start point(s) specified" msgstr "" -#: ../raster/r.path/main.c:394 +#: ../raster/r.path/main.c:397 #, c-format msgid "Reading raster values map <%s> ..." msgstr "" -#: ../raster/r.path/main.c:399 +#: ../raster/r.path/main.c:402 #, c-format msgid "Unable to open temporary file <%s>: %s" msgstr "" -#: ../raster/r.path/main.c:411 ../raster/r.path/main.c:489 -#: ../raster/r.path/main.c:506 +#: ../raster/r.path/main.c:414 ../raster/r.path/main.c:492 +#: ../raster/r.path/main.c:509 msgid "Unable to write to tempfile" msgstr "" -#: ../raster/r.path/main.c:419 +#: ../raster/r.path/main.c:422 msgid "Unable to read range file" msgstr "" -#: ../raster/r.path/main.c:422 +#: ../raster/r.path/main.c:425 #, c-format msgid "Invalid directions map <%s>" msgstr "" -#: ../raster/r.path/main.c:427 +#: ../raster/r.path/main.c:430 msgid "Directional degrees can not be > 360" msgstr "" -#: ../raster/r.path/main.c:433 +#: ../raster/r.path/main.c:436 msgid "Directional degrees divided by 45 can not be > 8" msgstr "" -#: ../raster/r.path/main.c:438 +#: ../raster/r.path/main.c:441 #, c-format msgid "Bitmask encoded directions can not be > %d" msgstr "" -#: ../raster/r.path/main.c:445 +#: ../raster/r.path/main.c:448 msgid "Input direction format assumed to be degrees CCW from East divided by 45" msgstr "" -#: ../raster/r.path/main.c:450 +#: ../raster/r.path/main.c:453 msgid "Input direction format assumed to be bitmask encoded without Knight's move" msgstr "" -#: ../raster/r.path/main.c:456 +#: ../raster/r.path/main.c:459 msgid "Input direction format assumed to be degrees CCW from East" msgstr "" -#: ../raster/r.path/main.c:460 +#: ../raster/r.path/main.c:463 msgid "Input direction format assumed to be bitmask encoded with Knight's move" msgstr "" -#: ../raster/r.path/main.c:465 +#: ../raster/r.path/main.c:468 #, c-format msgid "Unable to detect format of input direction map <%s>" msgstr "" -#: ../raster/r.path/main.c:469 +#: ../raster/r.path/main.c:472 #, c-format msgid "Invalid directions format '%s'" msgstr "" -#: ../raster/r.path/main.c:471 +#: ../raster/r.path/main.c:474 #, c-format msgid "Reading direction map <%s> ..." msgstr "" -#: ../raster/r.path/main.c:525 +#: ../raster/r.path/main.c:528 msgid "Processing start points..." msgstr "" -#: ../raster/r.path/main.c:535 ../vector/v.buffer/main.c:410 +#: ../raster/r.path/main.c:538 ../vector/v.buffer/main.c:410 #: ../vector/v.in.ogr/main.c:881 ../vector/v.overlay/main.c:237 #: ../vector/v.voronoi/main.c:215 msgid "Unable to create temporary vector map" msgstr "" -#: ../raster/r.path/main.c:541 ../raster/r.path/main.c:557 +#: ../raster/r.path/main.c:544 ../raster/r.path/main.c:560 #, c-format msgid "No path at row %d, col %d" msgstr "" -#: ../raster/r.path/main.c:546 ../vector/v.overlay/area_area.c:134 +#: ../raster/r.path/main.c:549 ../vector/v.overlay/area_area.c:134 #: ../vector/v.overlay/line_area.c:255 msgid "Breaking lines..." msgstr "" -#: ../raster/r.path/main.c:684 +#: ../raster/r.path/main.c:687 msgid "Unable to increase point list" msgstr "" -#: ../raster/r.path/main.c:887 +#: ../raster/r.path/main.c:890 #, c-format msgid "No path from row %d, col %d" msgstr "" -#: ../raster/r.path/main.c:901 +#: ../raster/r.path/main.c:904 #, c-format msgid "Invalid direction %d" msgstr "" -#: ../raster/r.path/main.c:999 +#: ../raster/r.path/main.c:1002 msgid "Path is leaving the current region" msgstr "" @@ -38477,39 +38485,17 @@ msgstr "" msgid "Link to vector map <%s> created." msgstr "" -#: ../vector/v.external/proj.c:35 ../vector/v.in.ogr/main.c:741 -#: ../vector/v.in.ogr/proj.c:36 +#: ../vector/v.external/proj.c:34 ../vector/v.in.ogr/main.c:741 +#: ../vector/v.in.ogr/proj.c:34 #, c-format msgid "Geometry column <%s> not found in input layer <%s>" msgstr "" -#: ../vector/v.external/proj.c:49 ../vector/v.in.ogr/proj.c:50 -msgid "Unable to convert input layer projection information to GRASS format for checking" -msgstr "" - -#: ../vector/v.external/proj.c:55 ../vector/v.external/proj.c:85 -#: ../vector/v.in.ogr/proj.c:56 ../vector/v.in.ogr/proj.c:86 -msgid "Can't get WKT parameter string" -msgstr "" - -#: ../vector/v.external/proj.c:58 ../vector/v.external/proj.c:88 -#: ../vector/v.in.ogr/proj.c:59 ../vector/v.in.ogr/proj.c:89 -#, c-format -msgid "" -"WKT definition:\n" -"%s" -msgstr "" - -#: ../vector/v.external/proj.c:69 ../vector/v.in.ogr/proj.c:70 +#: ../vector/v.external/proj.c:46 ../vector/v.in.ogr/proj.c:46 #, c-format msgid "No projection information available for layer <%s>" msgstr "" -#: ../vector/v.external/proj.c:78 ../vector/v.in.ogr/proj.c:79 -#, c-format -msgid "Projection for layer <%s> does not contain a valid CRS" -msgstr "" - #: ../vector/v.extract/extract.c:202 #, c-format msgid "No category found for area %d. Skipping." @@ -40269,16 +40255,16 @@ msgstr "" msgid "The spatial filter does not overlap with OGR layer <%s>. Nothing to import." msgstr "" -#: ../vector/v.in.ogr/proj.c:168 +#: ../vector/v.in.ogr/proj.c:85 msgid "Layer projections are unreadable" msgstr "" -#: ../vector/v.in.ogr/proj.c:184 +#: ../vector/v.in.ogr/proj.c:93 #, c-format msgid "Projection for layer <%s> is unreadable" msgstr "" -#: ../vector/v.in.ogr/proj.c:236 +#: ../vector/v.in.ogr/proj.c:113 #, c-format msgid "Projection of layer <%s> is different from projection of layer <%s>" msgstr "" diff --git a/locale/po/grassmods_sl.po b/locale/po/grassmods_sl.po index 3d81385a6fa..6c174ddd8da 100644 --- a/locale/po/grassmods_sl.po +++ b/locale/po/grassmods_sl.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: grassmods_sl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-07-26 01:37+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Slovenian \n" @@ -180,7 +180,7 @@ msgstr "naštej vse kolone (spremenljivke) za dano tabelo" #: ../general/g.proj/main.c:90 ../general/g.proj/main.c:99 #: ../general/g.proj/main.c:105 ../general/g.proj/main.c:114 #: ../general/g.proj/main.c:126 ../general/g.proj/main.c:135 -#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:244 +#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:245 #: ../general/g.region/main.c:91 ../general/g.region/main.c:97 #: ../general/g.region/main.c:102 ../general/g.region/main.c:108 #: ../general/g.region/main.c:113 ../general/g.region/main.c:118 @@ -314,13 +314,12 @@ msgstr "" #: ../db/db.connect/main.c:144 ../general/g.findfile/main.c:187 #: ../general/g.list/list.c:122 ../general/g.mapset/main.c:119 -#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:54 -#: ../general/g.proj/output.c:360 ../general/g.region/main.c:471 -#: ../general/g.version/main.c:140 ../misc/m.measure/main.c:87 -#: ../raster/r.describe/dumplist.c:38 ../raster/r.distance/report.c:211 -#: ../raster/r.distance/report.c:218 ../raster/r.distance/report.c:225 -#: ../raster/r.info/main.c:147 ../raster/r.proj/main.c:487 -#: ../raster/r.regression.line/main.c:101 +#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:351 +#: ../general/g.region/main.c:471 ../general/g.version/main.c:140 +#: ../misc/m.measure/main.c:87 ../raster/r.describe/dumplist.c:38 +#: ../raster/r.distance/report.c:211 ../raster/r.distance/report.c:218 +#: ../raster/r.distance/report.c:225 ../raster/r.info/main.c:147 +#: ../raster/r.proj/main.c:487 ../raster/r.regression.line/main.c:101 #: ../raster/r.regression.multi/main.c:197 #: ../raster/r.regression.multi/main.c:566 #: ../raster/r.stats.quantile/main.c:430 ../raster/r.stats.quantile/main.c:447 @@ -340,7 +339,7 @@ msgstr "" msgid "Failed to initialize JSON object. Out of memory?" msgstr "Ime izhodnega rastrskega sloja" -#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:277 +#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:278 #: ../general/g.region/main.c:427 ../general/g.version/main.c:153 #: ../imagery/i.group/main.c:137 ../misc/m.measure/main.c:100 #: ../raster/r.proj/main.c:270 ../raster/r.regression.line/main.c:114 @@ -508,7 +507,7 @@ msgstr "" msgid "Lists all databases for a given driver and location." msgstr "Navedi vse baze podatkov za določeni gonilnik in lokacijo" -#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:383 +#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:374 #: ../general/g.region/main.c:990 ../general/g.version/main.c:409 #: ../imagery/i.group/main.c:301 ../raster/r.category/main.c:412 #: ../raster/r.describe/dumplist.c:71 ../raster/r.info/main.c:1000 @@ -6916,10 +6915,10 @@ msgstr "ne morem odpreti <%s>" msgid "Converts between PPM/PGM and PNG image formats." msgstr "" -#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:141 -#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:140 -#: ../vector/v.external/proj.c:173 ../vector/v.in.lidar/main.c:525 -#: ../vector/v.in.ogr/proj.c:307 +#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:129 +#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:129 +#: ../vector/v.external/proj.c:158 ../vector/v.in.lidar/main.c:525 +#: ../vector/v.in.ogr/proj.c:228 #, fuzzy, c-format msgid "Project <%s> created" msgstr "ne morem odpreti %s" @@ -7247,57 +7246,67 @@ msgstr "Ne morem ustvariti tabele: %s" msgid "Name of new project (location) to create" msgstr "Ime nove lokacije (location), ki bo ustvarjena" -#: ../general/g.proj/main.c:239 -msgid "plain;Human readable text output;shell;shell script style text output;json;JSON (JavaScript Object Notation);wkt;Well-known text output;proj4;PROJ.4 style text output;" +#: ../general/g.proj/main.c:240 +msgid "plain;Human readable text output;shell;shell script style text output;wkt;Well-known text output;projjson;JSON (JavaScript Object Notation) version of WKT;proj4;PROJ.4 style text output;" msgstr "" -#: ../general/g.proj/main.c:271 ../vector/v.what.rast/main.c:159 +#: ../general/g.proj/main.c:272 ../vector/v.what.rast/main.c:159 #, c-format msgid "The format option can only be used with -%c flag" msgstr "" -#: ../general/g.proj/main.c:283 +#: ../general/g.proj/main.c:284 msgid "Flag 'j' is deprecated and will be removed in a future release. Please use format=proj4 instead." msgstr "" -#: ../general/g.proj/main.c:292 +#: ../general/g.proj/main.c:293 msgid "Flag 'w' is deprecated and will be removed in a future release. Please use format=wkt instead." msgstr "" -#: ../general/g.proj/main.c:312 +#: ../general/g.proj/main.c:313 #, fuzzy, c-format msgid "Only one of '%s', '%s', '%s', '%s' or '%s' options may be specified" msgstr "Uporabiš lahko ali 'from_table' ali 'select'" -#: ../general/g.proj/main.c:364 +#: ../general/g.proj/main.c:365 msgid "Projection files missing" msgstr "" -#: ../general/g.proj/main.c:392 +#: ../general/g.proj/main.c:393 #, c-format msgid "No output format specified. Define one of the options: plain, shell, json, wkt, or proj4 using the -%c flag." msgstr "" -#: ../general/g.proj/main.c:397 +#: ../general/g.proj/main.c:398 #, c-format msgid "No output format specified. Define one of the options: plain, shell, json, or proj4 using the -%c flag." msgstr "" -#: ../general/g.proj/output.c:221 +#: ../general/g.proj/output.c:54 +#, fuzzy +msgid "JSON output is not available." +msgstr "Ime rastrskega sloja" + +#: ../general/g.proj/output.c:212 #, fuzzy msgid "Unable to convert projection information to PROJ format" msgstr "\"Location\" vhodnega sloja" -#: ../general/g.proj/output.c:295 +#: ../general/g.proj/output.c:286 #, fuzzy, c-format msgid "Unable to create PROJ definition from srid <%s>" msgstr "ne morem odpreti <%s>" -#: ../general/g.proj/output.c:337 +#: ../general/g.proj/output.c:328 #, fuzzy msgid "Unable to convert to WKT" msgstr "Ne morem vstaviti nove vrstice: %s" +#: ../general/g.proj/output.c:433 +#, fuzzy +msgid "Unable to convert to PROJJSON" +msgstr "Ne morem vstaviti nove vrstice: %s" + #: ../general/g.region/main.c:67 msgid "computational region" msgstr "" @@ -12256,10 +12265,10 @@ msgstr "Zapisujem novo datoteko...\n" #: ../raster/r.grow.distance/main.c:392 ../raster/r.li/r.li.daemon/daemon.c:743 #: ../raster/r.mfilter/execute.c:82 ../raster/r.mfilter/execute.c:114 #: ../raster/r.mfilter/execute.c:165 ../raster/r.mfilter/getrow.c:24 -#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:786 -#: ../raster/r.path/main.c:822 ../raster/r.path/main.c:954 -#: ../raster/r.path/main.c:1073 ../raster/r.path/main.c:1103 -#: ../raster/r.path/main.c:1207 ../raster/r.thin/io.c:72 +#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:789 +#: ../raster/r.path/main.c:825 ../raster/r.path/main.c:957 +#: ../raster/r.path/main.c:1076 ../raster/r.path/main.c:1106 +#: ../raster/r.path/main.c:1210 ../raster/r.thin/io.c:72 #: ../raster/r.thin/io.c:82 ../raster3d/r3.in.v5d/v5d.c:1192 #: ../raster3d/r3.in.v5d/v5d.c:1443 ../raster3d/r3.in.v5d/v5d.c:1523 #: ../raster3d/r3.in.v5d/v5d.c:1848 ../raster3d/r3.in.v5d/v5d.c:1859 @@ -12284,9 +12293,9 @@ msgstr "" #: ../raster/r.clump/minsize.c:268 ../raster/r.clump/minsize.c:308 #: ../raster/r.clump/minsize.c:319 ../raster/r.clump/minsize.c:454 #: ../raster/r.clump/minsize.c:481 ../raster/r.clump/minsize.c:557 -#: ../raster/r.path/main.c:791 ../raster/r.path/main.c:827 -#: ../raster/r.path/main.c:962 ../raster/r.path/main.c:1078 -#: ../raster/r.path/main.c:1108 ../raster/r.path/main.c:1213 +#: ../raster/r.path/main.c:794 ../raster/r.path/main.c:830 +#: ../raster/r.path/main.c:965 ../raster/r.path/main.c:1081 +#: ../raster/r.path/main.c:1111 ../raster/r.path/main.c:1216 #, fuzzy msgid "Unable to read from temp file" msgstr "Ime rastrskega sloja" @@ -21487,7 +21496,7 @@ msgstr "" msgid "Starting point %d is outside the current region" msgstr "Uporabi trenutno regijo" -#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:375 +#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:378 #, fuzzy, c-format msgid "Starting vector map <%s> contains no points in the current region" msgstr "Uporabi trenutno regijo" @@ -21503,8 +21512,8 @@ msgid "Calculating flow directions..." msgstr "Izračunavam sence iz DMR..." #: ../raster/r.drain/main.c:485 ../raster/r.in.lidar/main.c:783 -#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:598 -#: ../raster/r.path/main.c:628 ../raster/r.viewshed/grass.cpp:621 +#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:601 +#: ../raster/r.path/main.c:631 ../raster/r.viewshed/grass.cpp:621 #, fuzzy msgid "Writing output raster map..." msgstr "Ime izhodnega rastrskega sloja" @@ -21774,89 +21783,97 @@ msgstr "Ne najdem vhodnega rastrskega sloja <%s>." msgid "Imagery group <%s> created" msgstr "dig_att datoteka ne obstaja." -#: ../raster/r.external/proj.c:51 ../raster/r.external/proj.c:93 -#: ../raster/r.in.gdal/proj.c:51 ../raster/r.in.gdal/proj.c:93 -#, c-format -msgid "" -"Input contains an invalid CRS. WKT definition:\n" -"%s" +#: ../raster/r.external/proj.c:36 ../raster/r.external/proj.c:63 +#: ../raster/r.external/proj.c:122 ../raster/r.in.gdal/proj.c:36 +#: ../raster/r.in.gdal/proj.c:63 ../raster/r.in.gdal/proj.c:122 +#: ../vector/v.external/proj.c:92 ../vector/v.external/proj.c:151 +#: ../vector/v.in.ogr/proj.c:162 ../vector/v.in.ogr/proj.c:221 +msgid "Can't get WKT parameter string" msgstr "" -#: ../raster/r.external/proj.c:120 ../raster/r.in.gdal/proj.c:120 +#: ../raster/r.external/proj.c:56 ../raster/r.in.gdal/proj.c:56 +#: ../vector/v.external/proj.c:85 ../vector/v.in.ogr/proj.c:155 +#, fuzzy +msgid "Input contains an invalid CRS." +msgstr "Vhodni sloj vsebuje linije." + +#: ../raster/r.external/proj.c:66 ../raster/r.in.gdal/proj.c:66 +#: ../vector/v.external/proj.c:95 ../vector/v.in.ogr/proj.c:165 +#, fuzzy +msgid "WKT definition:" +msgstr "Črta prereza" + +#: ../raster/r.external/proj.c:99 ../raster/r.in.gdal/proj.c:99 +#: ../vector/v.external/proj.c:128 ../vector/v.in.ogr/proj.c:198 #, fuzzy msgid "No projection information available" msgstr "Izpiši etikete kategorij" -#: ../raster/r.external/proj.c:133 +#: ../raster/r.external/proj.c:114 ../raster/r.in.gdal/proj.c:114 +#: ../vector/v.external/proj.c:143 ../vector/v.in.ogr/proj.c:213 #, fuzzy -msgid "Unable to convert input map coordinate reference system to GRASS format; cannot create new project." +msgid "Unable to convert input map projection to GRASS format; cannot create new project." msgstr "\"Location\" vhodnega sloja" -#: ../raster/r.external/proj.c:139 ../raster/r.in.gdal/main.c:1039 -#: ../raster/r.in.gdal/proj.c:138 ../vector/v.external/proj.c:171 -#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:305 +#: ../raster/r.external/proj.c:127 ../raster/r.in.gdal/main.c:1039 +#: ../raster/r.in.gdal/proj.c:127 ../vector/v.external/proj.c:156 +#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:226 #, fuzzy, c-format msgid "Unable to create new project <%s>" msgstr "Ime izhodnega rastrskega sloja" -#: ../raster/r.external/proj.c:165 ../raster/r.in.gdal/proj.c:164 -#: ../vector/v.external/proj.c:197 ../vector/v.in.ogr/proj.c:331 +#: ../raster/r.external/proj.c:157 ../raster/r.in.gdal/proj.c:157 +#: ../vector/v.external/proj.c:186 ../vector/v.in.ogr/proj.c:256 #, fuzzy msgid "Unable to convert input map projection information to GRASS format." msgstr "\"Location\" vhodnega sloja" -#: ../raster/r.external/proj.c:192 ../raster/r.in.gdal/proj.c:192 +#: ../raster/r.external/proj.c:238 ../raster/r.in.gdal/proj.c:238 #: ../raster/r.in.lidar/projection.c:126 -#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:228 -#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:360 +#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:267 +#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:337 #, fuzzy msgid "Over-riding projection check" msgstr "Ne najdem vhodne datoteke %s\n" -#: ../raster/r.external/proj.c:200 ../raster/r.in.gdal/proj.c:200 -#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 -#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.external/proj.c:236 -#: ../vector/v.in.lidar/projection.c:30 ../vector/v.in.ogr/proj.c:368 +#: ../raster/r.external/proj.c:244 ../raster/r.in.gdal/proj.c:244 +#: ../vector/v.external/proj.c:273 ../vector/v.in.ogr/proj.c:343 #, fuzzy -msgid "" -"Coordinate reference system of dataset does not appear to match current project.\n" -"\n" +msgid "Coordinate reference system of dataset does not appear to match current project.\n" msgstr "Transformira projekcijo rastrskega sloja iz ene \"location\" v trenutno \"location\"" -#: ../raster/r.external/proj.c:207 ../raster/r.external/proj.c:216 -#: ../raster/r.in.gdal/proj.c:207 ../raster/r.in.gdal/proj.c:216 -#: ../vector/v.external/proj.c:243 ../vector/v.external/proj.c:252 -#: ../vector/v.in.ogr/proj.c:375 ../vector/v.in.ogr/proj.c:384 +#: ../raster/r.external/proj.c:258 ../raster/r.in.gdal/proj.c:258 +#: ../vector/v.external/proj.c:287 ../vector/v.in.ogr/proj.c:357 #, fuzzy -msgid "Project PROJ_INFO is:\n" -msgstr "ne morem odpreti %s" +msgid "Dataset CRS is:\n" +msgstr "Ime izhodne datoteke" -#: ../raster/r.external/proj.c:236 ../raster/r.external/proj.c:243 -#: ../raster/r.in.gdal/proj.c:236 ../raster/r.in.gdal/proj.c:243 -#: ../vector/v.external/proj.c:272 ../vector/v.external/proj.c:279 -#: ../vector/v.in.ogr/proj.c:404 ../vector/v.in.ogr/proj.c:411 -msgid "Dataset PROJ_INFO is:\n" -msgstr "" +#: ../raster/r.external/proj.c:272 ../raster/r.in.gdal/proj.c:272 +#: ../vector/v.external/proj.c:301 ../vector/v.in.ogr/proj.c:371 +#, fuzzy +msgid "Project CRS is:\n" +msgstr "ne morem odpreti %s" -#: ../raster/r.external/proj.c:324 ../raster/r.in.lidar/projection.c:89 -#: ../raster/r.in.pdal/projection.c:87 ../raster3d/r3.in.lidar/projection.c:90 -#: ../vector/v.external/proj.c:360 ../vector/v.in.lidar/projection.c:87 -#: ../vector/v.in.ogr/proj.c:492 ../vector/v.in.pdal/projection.c:87 +#: ../raster/r.external/proj.c:286 ../raster/r.in.gdal/proj.c:286 +#: ../raster/r.in.lidar/projection.c:89 ../raster/r.in.pdal/projection.c:87 +#: ../raster3d/r3.in.lidar/projection.c:90 ../vector/v.external/proj.c:315 +#: ../vector/v.in.lidar/projection.c:87 ../vector/v.in.ogr/proj.c:385 +#: ../vector/v.in.pdal/projection.c:87 #, c-format msgid "" "\n" "In case of no significant differences in the coordinate reference system definitions, use the -o flag to ignore them and use current project definition.\n" msgstr "" -#: ../raster/r.external/proj.c:328 ../raster/r.in.gdal/proj.c:327 -#: ../vector/v.external/proj.c:364 ../vector/v.in.ogr/proj.c:496 +#: ../raster/r.external/proj.c:290 ../raster/r.in.gdal/proj.c:290 +#: ../vector/v.external/proj.c:319 ../vector/v.in.ogr/proj.c:389 msgid "Consider generating a new project from the input dataset using the 'project' parameter.\n" msgstr "" -#: ../raster/r.external/proj.c:348 ../raster/r.in.gdal/proj.c:347 +#: ../raster/r.external/proj.c:310 ../raster/r.in.gdal/proj.c:310 #: ../raster/r.in.lidar/projection.c:136 ../raster/r.in.pdal/projection.c:134 -#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:384 -#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:516 +#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:339 +#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:409 #, fuzzy msgid "Coordinate reference system of input dataset and current project appear to match" msgstr "Transformira projekcijo rastrskega sloja iz ene \"location\" v trenutno \"location\"" @@ -22521,7 +22538,7 @@ msgstr "" msgid "Region resolution shouldn't be lesser than map %s resolution. Run g.region raster=%s to set proper resolution" msgstr "" -#: ../raster/r.geomorphon/pattern.c:228 +#: ../raster/r.geomorphon/pattern.c:229 #, fuzzy, c-format msgid "Internal error in %s()" msgstr "%d napak med posodabljanjem\n" @@ -23571,8 +23588,7 @@ msgstr "Ime izhodnega rastrskega sloja smeri toka" msgid "Error in %s (can't re-project GCP %i)" msgstr "" -#: ../raster/r.in.gdal/main.c:983 ../vector/v.external/proj.c:165 -#: ../vector/v.in.lidar/main.c:516 +#: ../raster/r.in.gdal/main.c:983 ../vector/v.in.lidar/main.c:516 #, fuzzy msgid "Unable to convert input map CRS to GRASS format; cannot create new project." msgstr "\"Location\" vhodnega sloja" @@ -23629,17 +23645,6 @@ msgstr "ne morem odpreti razpona za datoteko %s" msgid "Unable to open file <%s>: %s." msgstr "Ne morem odpreti cellfile za [%s]" -#: ../raster/r.in.gdal/proj.c:132 ../vector/v.in.ogr/proj.c:299 -#, fuzzy -msgid "Unable to convert input map projection to GRASS format; cannot create new project." -msgstr "\"Location\" vhodnega sloja" - -#: ../raster/r.in.gdal/proj.c:323 -msgid "" -"\n" -"In case of no significant differences in the CRS definitions, use the -o flag to ignore them and use current project definition.\n" -msgstr "" - #: ../raster/r.in.gridatb/file_io.c:16 #, fuzzy, c-format msgid "Unable to open file: %s" @@ -24030,6 +24035,14 @@ msgstr "" msgid "Unable to calculate trimmed mean without the trim option specified!" msgstr "" +#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 +#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.in.lidar/projection.c:30 +#, fuzzy +msgid "" +"Coordinate reference system of dataset does not appear to match current project.\n" +"\n" +msgstr "Transformira projekcijo rastrskega sloja iz ene \"location\" v trenutno \"location\"" + #: ../raster/r.in.lidar/projection.c:38 ../raster/r.in.pdal/projection.c:36 #: ../vector/v.in.lidar/projection.c:36 ../vector/v.in.pdal/projection.c:36 #, fuzzy @@ -27122,120 +27135,120 @@ msgstr "Prosim popravite nastavitve." msgid "Do not break lines (faster for single-direction bitmask encoding)" msgstr "" -#: ../raster/r.path/main.c:384 +#: ../raster/r.path/main.c:387 #, fuzzy msgid "No start point(s) specified" msgstr "Določena ni bila nobena vhodna datoteka." -#: ../raster/r.path/main.c:394 +#: ../raster/r.path/main.c:397 #, fuzzy, c-format msgid "Reading raster values map <%s> ..." msgstr "Berem dig_att datoteko...\n" -#: ../raster/r.path/main.c:399 +#: ../raster/r.path/main.c:402 #, fuzzy, c-format msgid "Unable to open temporary file <%s>: %s" msgstr "Vrednost, ki bo prirejena NULL vrednosti" -#: ../raster/r.path/main.c:411 ../raster/r.path/main.c:489 -#: ../raster/r.path/main.c:506 +#: ../raster/r.path/main.c:414 ../raster/r.path/main.c:492 +#: ../raster/r.path/main.c:509 #, fuzzy msgid "Unable to write to tempfile" msgstr "Vrednost, ki bo prirejena NULL vrednosti" -#: ../raster/r.path/main.c:419 +#: ../raster/r.path/main.c:422 #, fuzzy msgid "Unable to read range file" msgstr "Ime izhodne datoteke" -#: ../raster/r.path/main.c:422 +#: ../raster/r.path/main.c:425 #, fuzzy, c-format msgid "Invalid directions map <%s>" msgstr "neveljavna regija: %s" -#: ../raster/r.path/main.c:427 +#: ../raster/r.path/main.c:430 msgid "Directional degrees can not be > 360" msgstr "" -#: ../raster/r.path/main.c:433 +#: ../raster/r.path/main.c:436 msgid "Directional degrees divided by 45 can not be > 8" msgstr "" -#: ../raster/r.path/main.c:438 +#: ../raster/r.path/main.c:441 #, c-format msgid "Bitmask encoded directions can not be > %d" msgstr "" -#: ../raster/r.path/main.c:445 +#: ../raster/r.path/main.c:448 msgid "Input direction format assumed to be degrees CCW from East divided by 45" msgstr "" -#: ../raster/r.path/main.c:450 +#: ../raster/r.path/main.c:453 msgid "Input direction format assumed to be bitmask encoded without Knight's move" msgstr "" -#: ../raster/r.path/main.c:456 +#: ../raster/r.path/main.c:459 msgid "Input direction format assumed to be degrees CCW from East" msgstr "" -#: ../raster/r.path/main.c:460 +#: ../raster/r.path/main.c:463 msgid "Input direction format assumed to be bitmask encoded with Knight's move" msgstr "" -#: ../raster/r.path/main.c:465 +#: ../raster/r.path/main.c:468 #, fuzzy, c-format msgid "Unable to detect format of input direction map <%s>" msgstr "Ime izhodnega rastrskega sloja" -#: ../raster/r.path/main.c:469 +#: ../raster/r.path/main.c:472 #, fuzzy, c-format msgid "Invalid directions format '%s'" msgstr "Ime izhodnega rastrskega sloja smeri toka" -#: ../raster/r.path/main.c:471 +#: ../raster/r.path/main.c:474 #, fuzzy, c-format msgid "Reading direction map <%s> ..." msgstr "Berem dig_att datoteko...\n" -#: ../raster/r.path/main.c:525 +#: ../raster/r.path/main.c:528 #, fuzzy msgid "Processing start points..." msgstr "Ustvari točke vzdolž vhodnih linij." -#: ../raster/r.path/main.c:535 ../vector/v.buffer/main.c:410 +#: ../raster/r.path/main.c:538 ../vector/v.buffer/main.c:410 #: ../vector/v.in.ogr/main.c:881 ../vector/v.overlay/main.c:237 #: ../vector/v.voronoi/main.c:215 #, fuzzy msgid "Unable to create temporary vector map" msgstr "Ime izhodnega rastrskega sloja" -#: ../raster/r.path/main.c:541 ../raster/r.path/main.c:557 +#: ../raster/r.path/main.c:544 ../raster/r.path/main.c:560 #, fuzzy, c-format msgid "No path at row %d, col %d" msgstr "%-5d mrtvih kategorij točk preskočenih\n" -#: ../raster/r.path/main.c:546 ../vector/v.overlay/area_area.c:134 +#: ../raster/r.path/main.c:549 ../vector/v.overlay/area_area.c:134 #: ../vector/v.overlay/line_area.c:255 #, fuzzy msgid "Breaking lines..." msgstr "Zapisujem novo datoteko...\n" -#: ../raster/r.path/main.c:684 +#: ../raster/r.path/main.c:687 #, fuzzy msgid "Unable to increase point list" msgstr "ne morem odpreti <%s>" -#: ../raster/r.path/main.c:887 +#: ../raster/r.path/main.c:890 #, c-format msgid "No path from row %d, col %d" msgstr "" -#: ../raster/r.path/main.c:901 +#: ../raster/r.path/main.c:904 #, fuzzy, c-format msgid "Invalid direction %d" msgstr "neveljavna regija: %s" -#: ../raster/r.path/main.c:999 +#: ../raster/r.path/main.c:1002 #, fuzzy msgid "Path is leaving the current region" msgstr "Uporabi trenutno regijo" @@ -41878,40 +41891,17 @@ msgstr "Ne morem odpreti cellfile za [%s]" msgid "Link to vector map <%s> created." msgstr "dig_att datoteka ne obstaja." -#: ../vector/v.external/proj.c:35 ../vector/v.in.ogr/main.c:741 -#: ../vector/v.in.ogr/proj.c:36 +#: ../vector/v.external/proj.c:34 ../vector/v.in.ogr/main.c:741 +#: ../vector/v.in.ogr/proj.c:34 #, fuzzy, c-format msgid "Geometry column <%s> not found in input layer <%s>" msgstr "ne najdem regije <%s>" -#: ../vector/v.external/proj.c:49 ../vector/v.in.ogr/proj.c:50 -#, fuzzy -msgid "Unable to convert input layer projection information to GRASS format for checking" -msgstr "\"Location\" vhodnega sloja" - -#: ../vector/v.external/proj.c:55 ../vector/v.external/proj.c:85 -#: ../vector/v.in.ogr/proj.c:56 ../vector/v.in.ogr/proj.c:86 -msgid "Can't get WKT parameter string" -msgstr "" - -#: ../vector/v.external/proj.c:58 ../vector/v.external/proj.c:88 -#: ../vector/v.in.ogr/proj.c:59 ../vector/v.in.ogr/proj.c:89 -#, fuzzy, c-format -msgid "" -"WKT definition:\n" -"%s" -msgstr "Črta prereza" - -#: ../vector/v.external/proj.c:69 ../vector/v.in.ogr/proj.c:70 +#: ../vector/v.external/proj.c:46 ../vector/v.in.ogr/proj.c:46 #, fuzzy, c-format msgid "No projection information available for layer <%s>" msgstr "Izpiše vrednosti v stilu lupinskega skripta" -#: ../vector/v.external/proj.c:78 ../vector/v.in.ogr/proj.c:79 -#, fuzzy, c-format -msgid "Projection for layer <%s> does not contain a valid CRS" -msgstr "Rastrski sloj kateremu naj se regija prilagodi" - #: ../vector/v.extract/extract.c:202 #, fuzzy, c-format msgid "No category found for area %d. Skipping." @@ -43809,16 +43799,16 @@ msgstr "" msgid "The spatial filter does not overlap with OGR layer <%s>. Nothing to import." msgstr "" -#: ../vector/v.in.ogr/proj.c:168 +#: ../vector/v.in.ogr/proj.c:85 msgid "Layer projections are unreadable" msgstr "" -#: ../vector/v.in.ogr/proj.c:184 +#: ../vector/v.in.ogr/proj.c:93 #, fuzzy, c-format msgid "Projection for layer <%s> is unreadable" msgstr "Izpiši etikete kategorij" -#: ../vector/v.in.ogr/proj.c:236 +#: ../vector/v.in.ogr/proj.c:113 #, c-format msgid "Projection of layer <%s> is different from projection of layer <%s>" msgstr "" @@ -51952,61 +51942,6 @@ msgstr "" msgid "Image file" msgstr "Vhodni sloj" -#, fuzzy, c-format -#~ msgid "Unable to seek: %s" -#~ msgstr "ne morem odpreti <%s>" - -#~ msgid "Print the stats in shell script style" -#~ msgstr "Izpiše vrednosti v stilu lupinskega skripta" - -#, fuzzy -#~ msgid "Field separator for shell script style output" -#~ msgstr "Izpiše vrednosti v stilu lupinskega skripta" - -#, fuzzy -#~ msgid "Print all map connection parameters in shell script style and exit" -#~ msgstr "Izpiši trenutne parametre povezave in končaj" - -#, fuzzy -#~ msgid "Print stats in shell script style" -#~ msgstr "Izpiše vrednosti v stilu lupinskega skripta" - -#, fuzzy -#~ msgid "Print raster3d information in shell style" -#~ msgstr "Izpiše vrednosti v stilu lupinskega skripta" - -#, fuzzy -#~ msgid "Print range in shell style only" -#~ msgstr "Izpiše vrednosti v stilu lupinskega skripta" - -#, fuzzy -#~ msgid "Shell script style" -#~ msgstr "Izpiše vrednosti v stilu lupinskega skripta" - -#, fuzzy, c-format -#~ msgid "Only one of -%c, -%c, -%c, -%c or -%c flags may be specified" -#~ msgstr "Uporabiš lahko ali 'from_table' ali 'select'" - -#, fuzzy -#~ msgid "Print in shell script style, but in one line (flat)" -#~ msgstr "Izpiše vrednosti v stilu lupinskega skripta" - -#, fuzzy -#~ msgid "temperature" -#~ msgstr "Tip objektov" - -#, fuzzy -#~ msgid "set" -#~ msgstr "Ne najdem vhodne datoteke %s\n" - -#, fuzzy -#~ msgid "feature" -#~ msgstr "Tip objektov" - -#, fuzzy -#~ msgid "features" -#~ msgstr "Zapiši vmesne točke v liniji." - #, fuzzy #~ msgid "\"-\" to write to stdout" #~ msgstr "Vrednost, ki bo prirejena NULL vrednosti" @@ -52791,10 +52726,6 @@ msgstr "Vhodni sloj" #~ msgid "Database indexes" #~ msgstr "ime baze podatkov" -#, fuzzy -#~ msgid "Dataset ID" -#~ msgstr "Ime izhodne datoteke" - #, fuzzy #~ msgid "Date format" #~ msgstr "Izhodni sloj" @@ -53186,6 +53117,10 @@ msgstr "Vhodni sloj" #~ msgid "Field separator" #~ msgstr "izpiši znak razmejitve med polji" +#, fuzzy +#~ msgid "Field separator for shell script style output" +#~ msgstr "Izpiše vrednosti v stilu lupinskega skripta" + #, fuzzy #~ msgid "Field separator in input text files" #~ msgstr "izpiši znak razmejitve med polji" @@ -56165,6 +56100,10 @@ msgstr "Vhodni sloj" #~ msgid "Only create patch size distribution file" #~ msgstr "Ime rastrskega sloja" +#, fuzzy, c-format +#~ msgid "Only one of -%c, -%c, -%c, -%c or -%c flags may be specified" +#~ msgstr "Uporabiš lahko ali 'from_table' ali 'select'" + #, fuzzy #~ msgid "Only print selected polygons" #~ msgstr "Izpiši število celic v razredu" @@ -56660,6 +56599,10 @@ msgstr "Vhodni sloj" #~ msgid "Print Maxent command" #~ msgstr "Izpiši le razpon vrednosti" +#, fuzzy +#~ msgid "Print all map connection parameters in shell script style and exit" +#~ msgstr "Izpiši trenutne parametre povezave in končaj" + #, fuzzy #~ msgid "Print attribut table" #~ msgstr "Izpiši etikete kategorij" @@ -56680,6 +56623,10 @@ msgstr "Vhodni sloj" #~ msgid "Print history instead of info and exit" #~ msgstr "Izpiši le tip podatkovnega zapisa rastrskega sloja" +#, fuzzy +#~ msgid "Print in shell script style, but in one line (flat)" +#~ msgstr "Izpiše vrednosti v stilu lupinskega skripta" + #, fuzzy #~ msgid "Print list of biogeographic regions" #~ msgstr "Vzhodni rob regije (zunanji rob)" @@ -56728,6 +56675,10 @@ msgstr "Vhodni sloj" #~ msgid "Print range in shell script style" #~ msgstr "Izpiše vrednosti v stilu lupinskega skripta" +#, fuzzy +#~ msgid "Print range in shell style only" +#~ msgstr "Izpiše vrednosti v stilu lupinskega skripta" + #, fuzzy #~ msgid "Print raster array information in shell script style" #~ msgstr "Izpiše vrednosti v stilu lupinskega skripta" @@ -56736,6 +56687,10 @@ msgstr "Vhodni sloj" #~ msgid "Print raster data to be imported and exit" #~ msgstr "Rastrski sloj, ki ga nameravate uvoziti" +#, fuzzy +#~ msgid "Print raster3d information in shell style" +#~ msgstr "Izpiše vrednosti v stilu lupinskega skripta" + #, fuzzy #~ msgid "Print result from matching taxa names and exit" #~ msgstr "Izpiši trenutne parametre povezave in končaj" @@ -56748,6 +56703,10 @@ msgstr "Vhodni sloj" #~ msgid "Print result of taxon matching in table format and exit" #~ msgstr "Vhodni sloj" +#, fuzzy +#~ msgid "Print stats in shell script style" +#~ msgstr "Izpiše vrednosti v stilu lupinskega skripta" + #, fuzzy #~ msgid "Print table structure" #~ msgstr "izpiši tabele in končaj" @@ -56756,6 +56715,9 @@ msgstr "Vhodni sloj" #~ msgid "Print the request URL and exit" #~ msgstr "izpiši tabele in končaj" +#~ msgid "Print the stats in shell script style" +#~ msgstr "Izpiše vrednosti v stilu lupinskega skripta" + #, fuzzy #~ msgid "Print the threshold value in shell script style" #~ msgstr "Izpiše vrednosti v stilu lupinskega skripta" @@ -56776,6 +56738,10 @@ msgstr "Vhodni sloj" #~ msgid "Projected conditions" #~ msgstr "Rišem ..." +#, fuzzy, c-format +#~ msgid "Projection for layer <%s> does not contain a valid CRS" +#~ msgstr "Rastrski sloj kateremu naj se regija prilagodi" + #, fuzzy #~ msgid "Projection region" #~ msgstr "Rišem ..." @@ -57363,6 +57329,10 @@ msgstr "Vhodni sloj" #~ msgid "Shape statistics" #~ msgstr "Ime rastrskega sloja, ki bo uporabljen za <%s>" +#, fuzzy +#~ msgid "Shell script style" +#~ msgstr "Izpiše vrednosti v stilu lupinskega skripta" + #, fuzzy #~ msgid "Show category numbers" #~ msgstr "Izpiši etikete kategorij" @@ -57894,6 +57864,14 @@ msgstr "Vhodni sloj" #~ msgid "Unable to add column <%s>." #~ msgstr "Ne morem odpreti cellfile za [%s]" +#, fuzzy +#~ msgid "Unable to convert input layer projection information to GRASS format for checking" +#~ msgstr "\"Location\" vhodnega sloja" + +#, fuzzy +#~ msgid "Unable to convert input map coordinate reference system to GRASS format; cannot create new project." +#~ msgstr "\"Location\" vhodnega sloja" + #, fuzzy, c-format #~ msgid "Unable to create new location <%s>" #~ msgstr "Ne morem ustvariti tabele: %s" @@ -57918,6 +57896,10 @@ msgstr "Vhodni sloj" #~ msgid "Unable to re-open data source <%s>" #~ msgstr "Ime izhodnega rastrskega sloja" +#, fuzzy, c-format +#~ msgid "Unable to seek: %s" +#~ msgstr "ne morem odpreti <%s>" + #, fuzzy #~ msgid "Unacceptable conditions for Designated Fill" #~ msgstr "Nisem mogel odpreti vhodne datoteke dig_att." @@ -58428,6 +58410,14 @@ msgstr "Vhodni sloj" #~ msgid "evolution" #~ msgstr "Ime izhodnega rastrskega sloja" +#, fuzzy +#~ msgid "feature" +#~ msgstr "Tip objektov" + +#, fuzzy +#~ msgid "features" +#~ msgstr "Zapiši vmesne točke v liniji." + #, fuzzy #~ msgid "fixed distance between segment points" #~ msgstr "Največja razdalja med točkami in enotami karte." @@ -58716,6 +58706,10 @@ msgstr "Vhodni sloj" #~ msgid "server port" #~ msgstr "Široki izpis" +#, fuzzy +#~ msgid "set" +#~ msgstr "Ne najdem vhodne datoteke %s\n" + #, fuzzy #~ msgid "set seed for random number generation" #~ msgstr "Nepoznan tip" @@ -58752,6 +58746,10 @@ msgstr "Vhodni sloj" #~ msgid "subsample" #~ msgstr "Rastrski sloj, ki ga želite rekodirati" +#, fuzzy +#~ msgid "temperature" +#~ msgstr "Tip objektov" + #, fuzzy #~ msgid "thredds" #~ msgstr "Enote razdalje" diff --git a/locale/po/grassmods_sv.po b/locale/po/grassmods_sv.po index 058109dadce..810523f8e7a 100644 --- a/locale/po/grassmods_sv.po +++ b/locale/po/grassmods_sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-10-26 23:01+0000\n" "Last-Translator: Daniel Nylander \n" "Language-Team: Swedish \n" @@ -175,7 +175,7 @@ msgstr "Lista alla kolumner för en given tabell." #: ../general/g.proj/main.c:90 ../general/g.proj/main.c:99 #: ../general/g.proj/main.c:105 ../general/g.proj/main.c:114 #: ../general/g.proj/main.c:126 ../general/g.proj/main.c:135 -#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:244 +#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:245 #: ../general/g.region/main.c:91 ../general/g.region/main.c:97 #: ../general/g.region/main.c:102 ../general/g.region/main.c:108 #: ../general/g.region/main.c:113 ../general/g.region/main.c:118 @@ -301,13 +301,12 @@ msgstr "plain;Utdata i klartext;skal;utdata i skalskriptstil;json;JSON (JavaScri #: ../db/db.connect/main.c:144 ../general/g.findfile/main.c:187 #: ../general/g.list/list.c:122 ../general/g.mapset/main.c:119 -#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:54 -#: ../general/g.proj/output.c:360 ../general/g.region/main.c:471 -#: ../general/g.version/main.c:140 ../misc/m.measure/main.c:87 -#: ../raster/r.describe/dumplist.c:38 ../raster/r.distance/report.c:211 -#: ../raster/r.distance/report.c:218 ../raster/r.distance/report.c:225 -#: ../raster/r.info/main.c:147 ../raster/r.proj/main.c:487 -#: ../raster/r.regression.line/main.c:101 +#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:351 +#: ../general/g.region/main.c:471 ../general/g.version/main.c:140 +#: ../misc/m.measure/main.c:87 ../raster/r.describe/dumplist.c:38 +#: ../raster/r.distance/report.c:211 ../raster/r.distance/report.c:218 +#: ../raster/r.distance/report.c:225 ../raster/r.info/main.c:147 +#: ../raster/r.proj/main.c:487 ../raster/r.regression.line/main.c:101 #: ../raster/r.regression.multi/main.c:197 #: ../raster/r.regression.multi/main.c:566 #: ../raster/r.stats.quantile/main.c:430 ../raster/r.stats.quantile/main.c:447 @@ -326,7 +325,7 @@ msgstr "plain;Utdata i klartext;skal;utdata i skalskriptstil;json;JSON (JavaScri msgid "Failed to initialize JSON object. Out of memory?" msgstr "Misslyckades med att initiera JSON-objekt. Har du slut på minne?" -#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:277 +#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:278 #: ../general/g.region/main.c:427 ../general/g.version/main.c:153 #: ../imagery/i.group/main.c:137 ../misc/m.measure/main.c:100 #: ../raster/r.proj/main.c:270 ../raster/r.regression.line/main.c:114 @@ -483,7 +482,7 @@ msgstr "Sökväg för SQLite-drivrutin eller anslutningssträng för PostgreSQL- msgid "Lists all databases for a given driver and location." msgstr "Visar en lista över alla databaser för en viss drivrutin och plats." -#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:383 +#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:374 #: ../general/g.region/main.c:990 ../general/g.version/main.c:409 #: ../imagery/i.group/main.c:301 ../raster/r.category/main.c:412 #: ../raster/r.describe/dumplist.c:71 ../raster/r.info/main.c:1000 @@ -6464,10 +6463,10 @@ msgstr "Det går inte att öppna utdatafilen %s" msgid "Converts between PPM/PGM and PNG image formats." msgstr "Konverterar mellan PPM/PGM- och PNG-bildformat." -#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:141 -#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:140 -#: ../vector/v.external/proj.c:173 ../vector/v.in.lidar/main.c:525 -#: ../vector/v.in.ogr/proj.c:307 +#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:129 +#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:129 +#: ../vector/v.external/proj.c:158 ../vector/v.in.lidar/main.c:525 +#: ../vector/v.in.ogr/proj.c:228 #, c-format msgid "Project <%s> created" msgstr "Projekt <%s> skapat" @@ -6774,55 +6773,69 @@ msgstr "Modifiera det aktuella projektets projektionsfiler" msgid "Name of new project (location) to create" msgstr "Namn på det nya projekt (plats) som ska skapas" -#: ../general/g.proj/main.c:239 -msgid "plain;Human readable text output;shell;shell script style text output;json;JSON (JavaScript Object Notation);wkt;Well-known text output;proj4;PROJ.4 style text output;" +#: ../general/g.proj/main.c:240 +#, fuzzy +#| msgid "plain;Human readable text output;shell;shell script style text output;json;JSON (JavaScript Object Notation);wkt;Well-known text output;proj4;PROJ.4 style text output;" +msgid "plain;Human readable text output;shell;shell script style text output;wkt;Well-known text output;projjson;JSON (JavaScript Object Notation) version of WKT;proj4;PROJ.4 style text output;" msgstr "plain;Human readable text output;skal;skal script style text output;json;JSON (JavaScript Object Notation);wkt;Välkänd text output;proj4;PROJ.4 style text output;" -#: ../general/g.proj/main.c:271 ../vector/v.what.rast/main.c:159 +#: ../general/g.proj/main.c:272 ../vector/v.what.rast/main.c:159 #, c-format msgid "The format option can only be used with -%c flag" msgstr "Formatalternativet kan endast användas med flaggan -%c" -#: ../general/g.proj/main.c:283 +#: ../general/g.proj/main.c:284 msgid "Flag 'j' is deprecated and will be removed in a future release. Please use format=proj4 instead." msgstr "Flaggan 'j' är föråldrad och kommer att tas bort i en framtida version. Använd format=proj4 istället." -#: ../general/g.proj/main.c:292 +#: ../general/g.proj/main.c:293 msgid "Flag 'w' is deprecated and will be removed in a future release. Please use format=wkt instead." msgstr "Flaggan \"w\" är föråldrad och kommer att tas bort i en framtida version. Använd format=wkt istället." -#: ../general/g.proj/main.c:312 +#: ../general/g.proj/main.c:313 #, c-format msgid "Only one of '%s', '%s', '%s', '%s' or '%s' options may be specified" msgstr "Endast ett av alternativen '%s', '%s', '%s', '%s' eller '%s' får anges" -#: ../general/g.proj/main.c:364 +#: ../general/g.proj/main.c:365 msgid "Projection files missing" msgstr "Projektionsfiler saknas" -#: ../general/g.proj/main.c:392 +#: ../general/g.proj/main.c:393 #, c-format msgid "No output format specified. Define one of the options: plain, shell, json, wkt, or proj4 using the -%c flag." msgstr "Inget utdataformat har angetts. Definiera ett av alternativen: plain, skal, json, wkt eller proj4 med hjälp av flaggan -%c." -#: ../general/g.proj/main.c:397 +#: ../general/g.proj/main.c:398 #, c-format msgid "No output format specified. Define one of the options: plain, shell, json, or proj4 using the -%c flag." msgstr "Inget utdataformat har angetts. Definiera ett av alternativen: plain, skal, json eller proj4 med hjälp av flaggan -%c." -#: ../general/g.proj/output.c:221 +#: ../general/g.proj/output.c:54 +#, fuzzy +#| msgid "Volume set number %d is not available" +msgid "JSON output is not available." +msgstr "Volyminställningsnummer %d är inte tillgängligt" + +#: ../general/g.proj/output.c:212 msgid "Unable to convert projection information to PROJ format" msgstr "Det går inte att konvertera projektionsinformation till PROJ-format" -#: ../general/g.proj/output.c:295 +#: ../general/g.proj/output.c:286 #, c-format msgid "Unable to create PROJ definition from srid <%s>" msgstr "Det går inte att skapa en PROJ-definition från srid <%s>" -#: ../general/g.proj/output.c:337 +#: ../general/g.proj/output.c:328 msgid "Unable to convert to WKT" msgstr "Går inte att konvertera till WKT" +#: ../general/g.proj/output.c:433 +#, fuzzy +#| msgid "Unable to convert to WKT" +msgid "Unable to convert to PROJJSON" +msgstr "Går inte att konvertera till WKT" + #: ../general/g.region/main.c:67 msgid "computational region" msgstr "beräkningsregion" @@ -11447,10 +11460,10 @@ msgstr "Generering av omnumreringssystem..." #: ../raster/r.grow.distance/main.c:392 ../raster/r.li/r.li.daemon/daemon.c:743 #: ../raster/r.mfilter/execute.c:82 ../raster/r.mfilter/execute.c:114 #: ../raster/r.mfilter/execute.c:165 ../raster/r.mfilter/getrow.c:24 -#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:786 -#: ../raster/r.path/main.c:822 ../raster/r.path/main.c:954 -#: ../raster/r.path/main.c:1073 ../raster/r.path/main.c:1103 -#: ../raster/r.path/main.c:1207 ../raster/r.thin/io.c:72 +#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:789 +#: ../raster/r.path/main.c:825 ../raster/r.path/main.c:957 +#: ../raster/r.path/main.c:1076 ../raster/r.path/main.c:1106 +#: ../raster/r.path/main.c:1210 ../raster/r.thin/io.c:72 #: ../raster/r.thin/io.c:82 ../raster3d/r3.in.v5d/v5d.c:1192 #: ../raster3d/r3.in.v5d/v5d.c:1443 ../raster3d/r3.in.v5d/v5d.c:1523 #: ../raster3d/r3.in.v5d/v5d.c:1848 ../raster3d/r3.in.v5d/v5d.c:1859 @@ -11475,9 +11488,9 @@ msgstr "Tilldelning av slutliga region-ID..." #: ../raster/r.clump/minsize.c:268 ../raster/r.clump/minsize.c:308 #: ../raster/r.clump/minsize.c:319 ../raster/r.clump/minsize.c:454 #: ../raster/r.clump/minsize.c:481 ../raster/r.clump/minsize.c:557 -#: ../raster/r.path/main.c:791 ../raster/r.path/main.c:827 -#: ../raster/r.path/main.c:962 ../raster/r.path/main.c:1078 -#: ../raster/r.path/main.c:1108 ../raster/r.path/main.c:1213 +#: ../raster/r.path/main.c:794 ../raster/r.path/main.c:830 +#: ../raster/r.path/main.c:965 ../raster/r.path/main.c:1081 +#: ../raster/r.path/main.c:1111 ../raster/r.path/main.c:1216 msgid "Unable to read from temp file" msgstr "Det går inte att läsa från temp-filen" @@ -19773,7 +19786,7 @@ msgstr "Ange bara en av flaggorna -c, -a och -n" msgid "Starting point %d is outside the current region" msgstr "Startpunkten %d ligger utanför den aktuella regionen" -#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:375 +#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:378 #, c-format msgid "Starting vector map <%s> contains no points in the current region" msgstr "Startvektormapp <%s> innehåller inga punkter i den aktuella regionen" @@ -19787,8 +19800,8 @@ msgid "Calculating flow directions..." msgstr "Beräkning av flödesriktningar..." #: ../raster/r.drain/main.c:485 ../raster/r.in.lidar/main.c:783 -#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:598 -#: ../raster/r.path/main.c:628 ../raster/r.viewshed/grass.cpp:621 +#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:601 +#: ../raster/r.path/main.c:631 ../raster/r.viewshed/grass.cpp:621 msgid "Writing output raster map..." msgstr "Skriva ut rasterkarta..." @@ -20036,72 +20049,95 @@ msgstr "Valt band (%d) finns inte" msgid "Imagery group <%s> created" msgstr "Bildgrupp <%s> skapad" -#: ../raster/r.external/proj.c:51 ../raster/r.external/proj.c:93 -#: ../raster/r.in.gdal/proj.c:51 ../raster/r.in.gdal/proj.c:93 -#, c-format -msgid "" -"Input contains an invalid CRS. WKT definition:\n" -"%s" +#: ../raster/r.external/proj.c:36 ../raster/r.external/proj.c:63 +#: ../raster/r.external/proj.c:122 ../raster/r.in.gdal/proj.c:36 +#: ../raster/r.in.gdal/proj.c:63 ../raster/r.in.gdal/proj.c:122 +#: ../vector/v.external/proj.c:92 ../vector/v.external/proj.c:151 +#: ../vector/v.in.ogr/proj.c:162 ../vector/v.in.ogr/proj.c:221 +msgid "Can't get WKT parameter string" +msgstr "Kan inte få WKT-parametersträng" + +#: ../raster/r.external/proj.c:56 ../raster/r.in.gdal/proj.c:56 +#: ../vector/v.external/proj.c:85 ../vector/v.in.ogr/proj.c:155 +#, fuzzy +#| msgid "" +#| "Input contains an invalid CRS. WKT definition:\n" +#| "%s" +msgid "Input contains an invalid CRS." msgstr "" "Indata innehåller en ogiltig CRS. WKT-definition:\n" "%s" -#: ../raster/r.external/proj.c:120 ../raster/r.in.gdal/proj.c:120 +#: ../raster/r.external/proj.c:66 ../raster/r.in.gdal/proj.c:66 +#: ../vector/v.external/proj.c:95 ../vector/v.in.ogr/proj.c:165 +#, fuzzy +#| msgid "" +#| "WKT definition:\n" +#| "%s" +msgid "WKT definition:" +msgstr "" +"WKT definition:\n" +"%s" + +#: ../raster/r.external/proj.c:99 ../raster/r.in.gdal/proj.c:99 +#: ../vector/v.external/proj.c:128 ../vector/v.in.ogr/proj.c:198 msgid "No projection information available" msgstr "Ingen projektionsinformation tillgänglig" -#: ../raster/r.external/proj.c:133 -msgid "Unable to convert input map coordinate reference system to GRASS format; cannot create new project." -msgstr "Det går inte att konvertera referenssystemet för inmatade kartkoordinater till GRASS-format; det går inte att skapa ett nytt projekt." +#: ../raster/r.external/proj.c:114 ../raster/r.in.gdal/proj.c:114 +#: ../vector/v.external/proj.c:143 ../vector/v.in.ogr/proj.c:213 +msgid "Unable to convert input map projection to GRASS format; cannot create new project." +msgstr "Det går inte att konvertera inmatad kartprojektion till GRASS-format; det går inte att skapa ett nytt projekt." -#: ../raster/r.external/proj.c:139 ../raster/r.in.gdal/main.c:1039 -#: ../raster/r.in.gdal/proj.c:138 ../vector/v.external/proj.c:171 -#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:305 +#: ../raster/r.external/proj.c:127 ../raster/r.in.gdal/main.c:1039 +#: ../raster/r.in.gdal/proj.c:127 ../vector/v.external/proj.c:156 +#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:226 #, c-format msgid "Unable to create new project <%s>" msgstr "Det går inte att skapa ett nytt projekt <%s>" -#: ../raster/r.external/proj.c:165 ../raster/r.in.gdal/proj.c:164 -#: ../vector/v.external/proj.c:197 ../vector/v.in.ogr/proj.c:331 +#: ../raster/r.external/proj.c:157 ../raster/r.in.gdal/proj.c:157 +#: ../vector/v.external/proj.c:186 ../vector/v.in.ogr/proj.c:256 msgid "Unable to convert input map projection information to GRASS format." msgstr "Det gick inte att konvertera inmatad kartprojektionsinformation till GRASS-format." -#: ../raster/r.external/proj.c:192 ../raster/r.in.gdal/proj.c:192 +#: ../raster/r.external/proj.c:238 ../raster/r.in.gdal/proj.c:238 #: ../raster/r.in.lidar/projection.c:126 -#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:228 -#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:360 +#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:267 +#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:337 msgid "Over-riding projection check" msgstr "Åsidosättande av projektionskontroll" -#: ../raster/r.external/proj.c:200 ../raster/r.in.gdal/proj.c:200 -#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 -#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.external/proj.c:236 -#: ../vector/v.in.lidar/projection.c:30 ../vector/v.in.ogr/proj.c:368 -msgid "" -"Coordinate reference system of dataset does not appear to match current project.\n" -"\n" +#: ../raster/r.external/proj.c:244 ../raster/r.in.gdal/proj.c:244 +#: ../vector/v.external/proj.c:273 ../vector/v.in.ogr/proj.c:343 +#, fuzzy +#| msgid "" +#| "Coordinate reference system of dataset does not appear to match current project.\n" +#| "\n" +msgid "Coordinate reference system of dataset does not appear to match current project.\n" msgstr "" "Datasetets koordinatreferenssystem verkar inte stämma överens med det aktuella projektet.\n" "\n" -#: ../raster/r.external/proj.c:207 ../raster/r.external/proj.c:216 -#: ../raster/r.in.gdal/proj.c:207 ../raster/r.in.gdal/proj.c:216 -#: ../vector/v.external/proj.c:243 ../vector/v.external/proj.c:252 -#: ../vector/v.in.ogr/proj.c:375 ../vector/v.in.ogr/proj.c:384 -msgid "Project PROJ_INFO is:\n" -msgstr "Projekt PROJ_INFO är:\n" - -#: ../raster/r.external/proj.c:236 ../raster/r.external/proj.c:243 -#: ../raster/r.in.gdal/proj.c:236 ../raster/r.in.gdal/proj.c:243 -#: ../vector/v.external/proj.c:272 ../vector/v.external/proj.c:279 -#: ../vector/v.in.ogr/proj.c:404 ../vector/v.in.ogr/proj.c:411 -msgid "Dataset PROJ_INFO is:\n" +#: ../raster/r.external/proj.c:258 ../raster/r.in.gdal/proj.c:258 +#: ../vector/v.external/proj.c:287 ../vector/v.in.ogr/proj.c:357 +#, fuzzy +#| msgid "Dataset PROJ_INFO is:\n" +msgid "Dataset CRS is:\n" msgstr "Dataset PROJ_INFO är:\n" -#: ../raster/r.external/proj.c:324 ../raster/r.in.lidar/projection.c:89 -#: ../raster/r.in.pdal/projection.c:87 ../raster3d/r3.in.lidar/projection.c:90 -#: ../vector/v.external/proj.c:360 ../vector/v.in.lidar/projection.c:87 -#: ../vector/v.in.ogr/proj.c:492 ../vector/v.in.pdal/projection.c:87 +#: ../raster/r.external/proj.c:272 ../raster/r.in.gdal/proj.c:272 +#: ../vector/v.external/proj.c:301 ../vector/v.in.ogr/proj.c:371 +#, fuzzy +#| msgid "Project PROJ_INFO is:\n" +msgid "Project CRS is:\n" +msgstr "Projekt PROJ_INFO är:\n" + +#: ../raster/r.external/proj.c:286 ../raster/r.in.gdal/proj.c:286 +#: ../raster/r.in.lidar/projection.c:89 ../raster/r.in.pdal/projection.c:87 +#: ../raster3d/r3.in.lidar/projection.c:90 ../vector/v.external/proj.c:315 +#: ../vector/v.in.lidar/projection.c:87 ../vector/v.in.ogr/proj.c:385 +#: ../vector/v.in.pdal/projection.c:87 #, c-format msgid "" "\n" @@ -20110,15 +20146,15 @@ msgstr "" "\n" "Om det inte finns några betydande skillnader i definitionerna av koordinatreferenssystem kan flaggan -o användas för att ignorera dem och använda den aktuella projektdefinitionen.\n" -#: ../raster/r.external/proj.c:328 ../raster/r.in.gdal/proj.c:327 -#: ../vector/v.external/proj.c:364 ../vector/v.in.ogr/proj.c:496 +#: ../raster/r.external/proj.c:290 ../raster/r.in.gdal/proj.c:290 +#: ../vector/v.external/proj.c:319 ../vector/v.in.ogr/proj.c:389 msgid "Consider generating a new project from the input dataset using the 'project' parameter.\n" msgstr "Överväg att generera ett nytt projekt från indatadatasetet med hjälp av parametern \"project\".\n" -#: ../raster/r.external/proj.c:348 ../raster/r.in.gdal/proj.c:347 +#: ../raster/r.external/proj.c:310 ../raster/r.in.gdal/proj.c:310 #: ../raster/r.in.lidar/projection.c:136 ../raster/r.in.pdal/projection.c:134 -#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:384 -#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:516 +#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:339 +#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:409 msgid "Coordinate reference system of input dataset and current project appear to match" msgstr "Koordinering av referenssystem för indatadataset och aktuellt projekt verkar stämma överens" @@ -20731,7 +20767,7 @@ msgstr "Misslyckades med att profilera beräkningen, kontrollera parametrarna" msgid "Region resolution shouldn't be lesser than map %s resolution. Run g.region raster=%s to set proper resolution" msgstr "Regionens upplösning bör inte vara mindre än kartans %s upplösning. Kör g.region raster=%s för att ställa in rätt upplösning" -#: ../raster/r.geomorphon/pattern.c:228 +#: ../raster/r.geomorphon/pattern.c:229 #, c-format msgid "Internal error in %s()" msgstr "Internt fel i %s()" @@ -21694,8 +21730,7 @@ msgstr "* Mata ut projektion för GCP-tabell: %s" msgid "Error in %s (can't re-project GCP %i)" msgstr "Fel i %s (kan inte omprojektera GCP %i)" -#: ../raster/r.in.gdal/main.c:983 ../vector/v.external/proj.c:165 -#: ../vector/v.in.lidar/main.c:516 +#: ../raster/r.in.gdal/main.c:983 ../vector/v.in.lidar/main.c:516 msgid "Unable to convert input map CRS to GRASS format; cannot create new project." msgstr "Det går inte att konvertera CRS-data till GRASS-format; det går inte att skapa ett nytt projekt." @@ -21746,18 +21781,6 @@ msgstr "Det går inte att läsa raden %d" msgid "Unable to open file <%s>: %s." msgstr "Det går inte att öppna filen <%s>: %s." -#: ../raster/r.in.gdal/proj.c:132 ../vector/v.in.ogr/proj.c:299 -msgid "Unable to convert input map projection to GRASS format; cannot create new project." -msgstr "Det går inte att konvertera inmatad kartprojektion till GRASS-format; det går inte att skapa ett nytt projekt." - -#: ../raster/r.in.gdal/proj.c:323 -msgid "" -"\n" -"In case of no significant differences in the CRS definitions, use the -o flag to ignore them and use current project definition.\n" -msgstr "" -"\n" -"Om det inte finns några betydande skillnader i CRS-definitionerna kan du använda flaggan -o för att ignorera dem och använda den aktuella projektdefinitionen.\n" - #: ../raster/r.in.gridatb/file_io.c:16 #, c-format msgid "Unable to open file: %s" @@ -22118,6 +22141,15 @@ msgstr "Det går inte att beräkna percentil utan att alternativet pth anges!" msgid "Unable to calculate trimmed mean without the trim option specified!" msgstr "Det går inte att beräkna trimmat medelvärde utan att trim-alternativet har angetts!" +#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 +#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.in.lidar/projection.c:30 +msgid "" +"Coordinate reference system of dataset does not appear to match current project.\n" +"\n" +msgstr "" +"Datasetets koordinatreferenssystem verkar inte stämma överens med det aktuella projektet.\n" +"\n" + #: ../raster/r.in.lidar/projection.c:38 ../raster/r.in.pdal/projection.c:36 #: ../vector/v.in.lidar/projection.c:36 ../vector/v.in.pdal/projection.c:36 msgid "GRASS project PROJ_INFO is:\n" @@ -24940,113 +24972,113 @@ msgstr "Inställningar för riktning" msgid "Do not break lines (faster for single-direction bitmask encoding)" msgstr "Bryt inte rader (snabbare för enkelriktad kodning med bitmask)" -#: ../raster/r.path/main.c:384 +#: ../raster/r.path/main.c:387 msgid "No start point(s) specified" msgstr "Ingen startpunkt angiven" -#: ../raster/r.path/main.c:394 +#: ../raster/r.path/main.c:397 #, c-format msgid "Reading raster values map <%s> ..." msgstr "Läser rastervärden map <%s> ..." -#: ../raster/r.path/main.c:399 +#: ../raster/r.path/main.c:402 #, c-format msgid "Unable to open temporary file <%s>: %s" msgstr "Det går inte att öppna temporära filen <%s>: %s" -#: ../raster/r.path/main.c:411 ../raster/r.path/main.c:489 -#: ../raster/r.path/main.c:506 +#: ../raster/r.path/main.c:414 ../raster/r.path/main.c:492 +#: ../raster/r.path/main.c:509 msgid "Unable to write to tempfile" msgstr "Det går inte att skriva till tempfile" -#: ../raster/r.path/main.c:419 +#: ../raster/r.path/main.c:422 msgid "Unable to read range file" msgstr "Det går inte att läsa range-filen" -#: ../raster/r.path/main.c:422 +#: ../raster/r.path/main.c:425 #, c-format msgid "Invalid directions map <%s>" msgstr "Ogiltig vägbeskrivning karta <%s>" -#: ../raster/r.path/main.c:427 +#: ../raster/r.path/main.c:430 msgid "Directional degrees can not be > 360" msgstr "Riktningsgraderna kan inte vara > 360" -#: ../raster/r.path/main.c:433 +#: ../raster/r.path/main.c:436 msgid "Directional degrees divided by 45 can not be > 8" msgstr "Riktningsgrader dividerat med 45 kan inte vara > 8" -#: ../raster/r.path/main.c:438 +#: ../raster/r.path/main.c:441 #, c-format msgid "Bitmask encoded directions can not be > %d" msgstr "Bitmask-kodade anvisningar kan inte vara > %d" -#: ../raster/r.path/main.c:445 +#: ../raster/r.path/main.c:448 msgid "Input direction format assumed to be degrees CCW from East divided by 45" msgstr "Inmatningens riktningsformat antas vara grader CCW från öst dividerat med 45" -#: ../raster/r.path/main.c:450 +#: ../raster/r.path/main.c:453 msgid "Input direction format assumed to be bitmask encoded without Knight's move" msgstr "Formatet för inmatningsriktningen antas vara bitmaskkodat utan riddarens drag" -#: ../raster/r.path/main.c:456 +#: ../raster/r.path/main.c:459 msgid "Input direction format assumed to be degrees CCW from East" msgstr "Formatet för inmatningsriktning antas vara grader CCW från öst" -#: ../raster/r.path/main.c:460 +#: ../raster/r.path/main.c:463 msgid "Input direction format assumed to be bitmask encoded with Knight's move" msgstr "Formatet för inmatningsriktningen antas vara bitmask kodad med riddarens drag" -#: ../raster/r.path/main.c:465 +#: ../raster/r.path/main.c:468 #, c-format msgid "Unable to detect format of input direction map <%s>" msgstr "Det går inte att identifiera formatet för input direction map <%s>" -#: ../raster/r.path/main.c:469 +#: ../raster/r.path/main.c:472 #, c-format msgid "Invalid directions format '%s'" msgstr "Ogiltigt format för vägbeskrivning '%s'" -#: ../raster/r.path/main.c:471 +#: ../raster/r.path/main.c:474 #, c-format msgid "Reading direction map <%s> ..." msgstr "Läser riktningskarta <%s> ..." -#: ../raster/r.path/main.c:525 +#: ../raster/r.path/main.c:528 msgid "Processing start points..." msgstr "Bearbetning av startpunkter..." -#: ../raster/r.path/main.c:535 ../vector/v.buffer/main.c:410 +#: ../raster/r.path/main.c:538 ../vector/v.buffer/main.c:410 #: ../vector/v.in.ogr/main.c:881 ../vector/v.overlay/main.c:237 #: ../vector/v.voronoi/main.c:215 msgid "Unable to create temporary vector map" msgstr "Det går inte att skapa en tillfällig vektorkarta" -#: ../raster/r.path/main.c:541 ../raster/r.path/main.c:557 +#: ../raster/r.path/main.c:544 ../raster/r.path/main.c:560 #, c-format msgid "No path at row %d, col %d" msgstr "Ingen bana vid rad %d, kol %d" -#: ../raster/r.path/main.c:546 ../vector/v.overlay/area_area.c:134 +#: ../raster/r.path/main.c:549 ../vector/v.overlay/area_area.c:134 #: ../vector/v.overlay/line_area.c:255 msgid "Breaking lines..." msgstr "Brytande linjer..." -#: ../raster/r.path/main.c:684 +#: ../raster/r.path/main.c:687 msgid "Unable to increase point list" msgstr "Det går inte att öka punktlistan" -#: ../raster/r.path/main.c:887 +#: ../raster/r.path/main.c:890 #, c-format msgid "No path from row %d, col %d" msgstr "Ingen sökväg från rad %d, kol %d" -#: ../raster/r.path/main.c:901 +#: ../raster/r.path/main.c:904 #, c-format msgid "Invalid direction %d" msgstr "Ogiltig riktning %d" -#: ../raster/r.path/main.c:999 +#: ../raster/r.path/main.c:1002 msgid "Path is leaving the current region" msgstr "Banan lämnar den nuvarande regionen" @@ -38702,41 +38734,17 @@ msgstr "Det går inte att skapa filen '%s/%s'" msgid "Link to vector map <%s> created." msgstr "Länk till vektorkarta <%s> skapad." -#: ../vector/v.external/proj.c:35 ../vector/v.in.ogr/main.c:741 -#: ../vector/v.in.ogr/proj.c:36 +#: ../vector/v.external/proj.c:34 ../vector/v.in.ogr/main.c:741 +#: ../vector/v.in.ogr/proj.c:34 #, c-format msgid "Geometry column <%s> not found in input layer <%s>" msgstr "Geometrikolumn <%s> hittades inte i inmatningslagret <%s>" -#: ../vector/v.external/proj.c:49 ../vector/v.in.ogr/proj.c:50 -msgid "Unable to convert input layer projection information to GRASS format for checking" -msgstr "Det gick inte att konvertera projektionsinformation för inmatningslager till GRASS-format för kontroll" - -#: ../vector/v.external/proj.c:55 ../vector/v.external/proj.c:85 -#: ../vector/v.in.ogr/proj.c:56 ../vector/v.in.ogr/proj.c:86 -msgid "Can't get WKT parameter string" -msgstr "Kan inte få WKT-parametersträng" - -#: ../vector/v.external/proj.c:58 ../vector/v.external/proj.c:88 -#: ../vector/v.in.ogr/proj.c:59 ../vector/v.in.ogr/proj.c:89 -#, c-format -msgid "" -"WKT definition:\n" -"%s" -msgstr "" -"WKT definition:\n" -"%s" - -#: ../vector/v.external/proj.c:69 ../vector/v.in.ogr/proj.c:70 +#: ../vector/v.external/proj.c:46 ../vector/v.in.ogr/proj.c:46 #, c-format msgid "No projection information available for layer <%s>" msgstr "Ingen projektionsinformation tillgänglig för lager <%s>" -#: ../vector/v.external/proj.c:78 ../vector/v.in.ogr/proj.c:79 -#, c-format -msgid "Projection for layer <%s> does not contain a valid CRS" -msgstr "Projektionen för lager <%s> innehåller inte en giltig CRS" - #: ../vector/v.extract/extract.c:202 #, c-format msgid "No category found for area %d. Skipping." @@ -40504,16 +40512,16 @@ msgstr "ymin är större än ymax i \"spatial\"-parametrar" msgid "The spatial filter does not overlap with OGR layer <%s>. Nothing to import." msgstr "Det spatiala filtret överlappar inte OGR-lagret <%s>. Inget att importera." -#: ../vector/v.in.ogr/proj.c:168 +#: ../vector/v.in.ogr/proj.c:85 msgid "Layer projections are unreadable" msgstr "Lagerprojektioner är oläsliga" -#: ../vector/v.in.ogr/proj.c:184 +#: ../vector/v.in.ogr/proj.c:93 #, c-format msgid "Projection for layer <%s> is unreadable" msgstr "Projektionen för lager <%s> är oläslig" -#: ../vector/v.in.ogr/proj.c:236 +#: ../vector/v.in.ogr/proj.c:113 #, c-format msgid "Projection of layer <%s> is different from projection of layer <%s>" msgstr "Projektionen av lager <%s> skiljer sig från projektionen av lager <%s>" @@ -48040,79 +48048,124 @@ msgstr "Visa BMP-bilder från PNG-drivrutinen." msgid "Image file" msgstr "Bildfil" +#~ msgid "" +#~ "\n" +#~ "In case of no significant differences in the CRS definitions, use the -o flag to ignore them and use current project definition.\n" +#~ msgstr "" +#~ "\n" +#~ "Om det inte finns några betydande skillnader i CRS-definitionerna kan du använda flaggan -o för att ignorera dem och använda den aktuella projektdefinitionen.\n" + #, c-format -#~ msgid "Unable to seek: %s" -#~ msgstr "Det går inte att söka: %s" +#~ msgid "<%d> is not valid number of threads." +#~ msgstr "<%d> är inte ett giltigt antal trådar." #~ msgid "Both -s and -h doesn't make sense" #~ msgstr "Både -s och -h är inte meningsfulla" -#~ msgid "Use -M or -s, not both" -#~ msgstr "Använd -M eller -s, inte båda" - -#~ msgid "Print the stats in shell script style" -#~ msgstr "Skriv ut statistiken i skal script-stil" +#~ msgid "Everyone" +#~ msgstr "Vem som helst" #~ msgid "Field separator for shell script style output" #~ msgstr "Fältavgränsare för utdata i stil med skal-skript" -#~ msgid "Print all map connection parameters in shell script style and exit" -#~ msgstr "Skriv ut alla parametrar för map-anslutningen i form av ett skalskript och avsluta" +#, c-format +#~ msgid "Flags -%c and -%c/%c/%c are mutually exclusive" +#~ msgstr "Flaggorna -%c och -%c/%c/%c är ömsesidigt uteslutande" #~ msgid "Format: layer[/layer name] table key database driver" #~ msgstr "Format: lager[/lagernamn] tabell nyckel databas drivrutin" -#~ msgid "Substitute variables in database settings" -#~ msgstr "Ersätta variabler i databasinställningar" +#~ msgid "GRASS is compiled without OpenMP support. Ignoring threads setting." +#~ msgstr "GRASS är kompilerad utan OpenMP-stöd. Ignorerar inställningen för trådar." -#~ msgid "Unable to allocate cell buffers." -#~ msgstr "Det går inte att allokera cellbuffertar." +#, c-format +#~ msgid "Only one of -%c, -%c, -%c, -%c or -%c flags may be specified" +#~ msgstr "Endast en av flaggorna -%c, -%c, -%c, -%c eller -%c kan anges" -#~ msgid "Print stats in shell script style" -#~ msgstr "Skriv ut statistik i skal-skriptformat" +#, c-format +#~ msgid "Only one of -%c, -%c, -%c, -%c, -%c or -%c flags may be specified" +#~ msgstr "Endast en av flaggorna -%c, -%c, -%c, -%c, -%c eller -%c kan anges" -#~ msgid "Print raster3d information in shell style" -#~ msgstr "Skriv ut raster3d-information i skal-stil" +#~ msgid "Only you" +#~ msgstr "Bara du" + +#~ msgid "Output RRR:GGG:BBB color values for each profile point" +#~ msgstr "Utmatning av RRR:GGG:BBB-färgvärden för varje profilpunkt" + +#~ msgid "Print all map connection parameters in shell script style and exit" +#~ msgstr "Skriv ut alla parametrar för map-anslutningen i form av ett skalskript och avsluta" + +#~ msgid "Print extended metadata info in shell script style" +#~ msgstr "Skriv ut utökad metadatainformation i skal-skriptformat" + +#~ msgid "Print extended metadata information in shell script style" +#~ msgstr "Skriv ut utökad metadatainformation i skalskriptformat" + +#~ msgid "Print history instead of info and exit" +#~ msgstr "Skriv ut historik i stället för info och avsluta" + +#~ msgid "Print in shell script style, but in one line (flat)" +#~ msgstr "Skriv ut i skal script-stil, men på en rad (flat)" + +#~ msgid "Print range in shell script style" +#~ msgstr "Skriv ut intervall i skal-skriptformat" #~ msgid "Print range in shell style only" #~ msgstr "Utskriftsområde endast i skalmodell" -#~ msgid "The format option is used and -g flag ignored" -#~ msgstr "Alternativet format används och flaggan -g ignoreras" +#~ msgid "Print raster array information in shell script style" +#~ msgstr "Skriv ut information om rasterarray i skalskriptformat" + +#~ msgid "Print raster3d information in shell style" +#~ msgstr "Skriv ut raster3d-information i skal-stil" + +#~ msgid "Print stats in shell script style" +#~ msgstr "Skriv ut statistik i skal-skriptformat" + +#~ msgid "Print the stats in shell script style" +#~ msgstr "Skriv ut statistiken i skal script-stil" + +#~ msgid "Print topology info in shell script style" +#~ msgstr "Skriv ut topologiinformation i skal-skriptformat" + +#~ msgid "Print types/names of table columns for specified layer instead of info and exit" +#~ msgstr "Skriv ut typ/namn på tabellkolumner för angivet lager i stället för info och exit" + +#, c-format +#~ msgid "Projection for layer <%s> does not contain a valid CRS" +#~ msgstr "Projektionen för lager <%s> innehåller inte en giltig CRS" #~ msgid "Shell script style" #~ msgstr "Shell-skript stil" -#~ msgid "Output RRR:GGG:BBB color values for each profile point" -#~ msgstr "Utmatning av RRR:GGG:BBB-färgvärden för varje profilpunkt" +#~ msgid "Substitute variables in database settings" +#~ msgstr "Ersätta variabler i databasinställningar" #, c-format #~ msgid "Test %s." #~ msgstr "Test %s." -#~ msgid "have" -#~ msgstr "har" - -#~ msgid "read " -#~ msgstr "läsa " +#~ msgid "The format option is used and -g flag ignored" +#~ msgstr "Alternativet format används och flaggan -g ignoreras" -#~ msgid "Everyone" -#~ msgstr "Vem som helst" +#~ msgid "Unable to allocate cell buffers." +#~ msgstr "Det går inte att allokera cellbuffertar." -#~ msgid "has" -#~ msgstr "har" +#~ msgid "Unable to convert input layer projection information to GRASS format for checking" +#~ msgstr "Det gick inte att konvertera projektionsinformation för inmatningslager till GRASS-format för kontroll" -#~ msgid "Only you" -#~ msgstr "Bara du" +#~ msgid "Unable to convert input map coordinate reference system to GRASS format; cannot create new project." +#~ msgstr "Det går inte att konvertera referenssystemet för inmatade kartkoordinater till GRASS-format; det går inte att skapa ett nytt projekt." -#~ msgid "now" -#~ msgstr "nu" +#, c-format +#~ msgid "Unable to seek: %s" +#~ msgstr "Det går inte att söka: %s" -#~ msgid "will" -#~ msgstr "testamente" +#~ msgid "Use -M or -s, not both" +#~ msgstr "Använd -M eller -s, inte båda" -#~ msgid "[DEPRECATED] Print projection information in shell script style. This flag is obsolete and will be removed in a future release. Use format=shell instead." -#~ msgstr "[DEPREDIERAD] Skriv ut projektionsinformation i skalskriptformat. Denna flagga är föråldrad och kommer att tas bort i en framtida version. Använd format=skal i stället." +#~ msgid "[DEPRECATED] Print input map's bounds in the current projection and exit (shell style). This flag is obsolete and will be removed in a future release. Use format=shell instead." +#~ msgstr "[DEPRECATED] Skriv ut inmatningskartans gränser i den aktuella projektionen och avsluta (skal-stil). Denna flagga är föråldrad och kommer att tas bort i en framtida version. Använd format=skal i stället." #~ msgid "[DEPRECATED] Print projection information in PROJ.4 format. This flag is obsolete and will be removed in a future release. Use format=proj4 instead." #~ msgstr "[DEPRECATED] Skriv ut projektionsinformation i PROJ.4-format. Denna flagga är föråldrad och kommer att tas bort i en framtida version. Använd format=proj4 istället." @@ -48120,69 +48173,41 @@ msgstr "Bildfil" #~ msgid "[DEPRECATED] Print projection information in WKT format. This flag is obsolete and will be removed in a future release. Use format=wkt instead." #~ msgstr "[DEPREDIERAD] Skriv ut projektionsinformation i WKT-format. Denna flagga är föråldrad och kommer att tas bort i en framtida version. Använd format=wkt istället." -#, c-format -#~ msgid "Only one of -%c, -%c, -%c, -%c, -%c or -%c flags may be specified" -#~ msgstr "Endast en av flaggorna -%c, -%c, -%c, -%c, -%c eller -%c kan anges" - -#, c-format -#~ msgid "Only one of -%c, -%c, -%c, -%c or -%c flags may be specified" -#~ msgstr "Endast en av flaggorna -%c, -%c, -%c, -%c eller -%c kan anges" - -#~ msgid "Print in shell script style, but in one line (flat)" -#~ msgstr "Skriv ut i skal script-stil, men på en rad (flat)" - -#~ msgid "temperature" -#~ msgstr "temperatur" - -#~ msgid "set" -#~ msgstr "set" - -#~ msgid "unset" -#~ msgstr "avaktivera" - -#~ msgid "[DEPRECATED] Print input map's bounds in the current projection and exit (shell style). This flag is obsolete and will be removed in a future release. Use format=shell instead." -#~ msgstr "[DEPRECATED] Skriv ut inmatningskartans gränser i den aktuella projektionen och avsluta (skal-stil). Denna flagga är föråldrad och kommer att tas bort i en framtida version. Använd format=skal i stället." +#~ msgid "[DEPRECATED] Print projection information in shell script style. This flag is obsolete and will be removed in a future release. Use format=shell instead." +#~ msgstr "[DEPREDIERAD] Skriv ut projektionsinformation i skalskriptformat. Denna flagga är föråldrad och kommer att tas bort i en framtida version. Använd format=skal i stället." #~ msgid "changed" #~ msgstr "ändrat" -#~ msgid "reduced" -#~ msgstr "reducerad" - #~ msgid "feature" #~ msgstr "funktion" #~ msgid "features" #~ msgstr "funktioner" -#, c-format -#~ msgid "<%d> is not valid number of threads." -#~ msgstr "<%d> är inte ett giltigt antal trådar." - -#, c-format -#~ msgid "Flags -%c and -%c/%c/%c are mutually exclusive" -#~ msgstr "Flaggorna -%c och -%c/%c/%c är ömsesidigt uteslutande" +#~ msgid "has" +#~ msgstr "har" -#~ msgid "GRASS is compiled without OpenMP support. Ignoring threads setting." -#~ msgstr "GRASS är kompilerad utan OpenMP-stöd. Ignorerar inställningen för trådar." +#~ msgid "have" +#~ msgstr "har" -#~ msgid "Print extended metadata info in shell script style" -#~ msgstr "Skriv ut utökad metadatainformation i skal-skriptformat" +#~ msgid "now" +#~ msgstr "nu" -#~ msgid "Print extended metadata information in shell script style" -#~ msgstr "Skriv ut utökad metadatainformation i skalskriptformat" +#~ msgid "read " +#~ msgstr "läsa " -#~ msgid "Print history instead of info and exit" -#~ msgstr "Skriv ut historik i stället för info och avsluta" +#~ msgid "reduced" +#~ msgstr "reducerad" -#~ msgid "Print range in shell script style" -#~ msgstr "Skriv ut intervall i skal-skriptformat" +#~ msgid "set" +#~ msgstr "set" -#~ msgid "Print raster array information in shell script style" -#~ msgstr "Skriv ut information om rasterarray i skalskriptformat" +#~ msgid "temperature" +#~ msgstr "temperatur" -#~ msgid "Print topology info in shell script style" -#~ msgstr "Skriv ut topologiinformation i skal-skriptformat" +#~ msgid "unset" +#~ msgstr "avaktivera" -#~ msgid "Print types/names of table columns for specified layer instead of info and exit" -#~ msgstr "Skriv ut typ/namn på tabellkolumner för angivet lager i stället för info och exit" +#~ msgid "will" +#~ msgstr "testamente" diff --git a/locale/po/grassmods_ta.po b/locale/po/grassmods_ta.po index 0ce1cb324e4..f0a9668c1ab 100644 --- a/locale/po/grassmods_ta.po +++ b/locale/po/grassmods_ta.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: grasslibs_ta\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-07-26 01:37+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Tamil \n" @@ -178,7 +178,7 @@ msgstr "" #: ../general/g.proj/main.c:90 ../general/g.proj/main.c:99 #: ../general/g.proj/main.c:105 ../general/g.proj/main.c:114 #: ../general/g.proj/main.c:126 ../general/g.proj/main.c:135 -#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:244 +#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:245 #: ../general/g.region/main.c:91 ../general/g.region/main.c:97 #: ../general/g.region/main.c:102 ../general/g.region/main.c:108 #: ../general/g.region/main.c:113 ../general/g.region/main.c:118 @@ -304,13 +304,12 @@ msgstr "" #: ../db/db.connect/main.c:144 ../general/g.findfile/main.c:187 #: ../general/g.list/list.c:122 ../general/g.mapset/main.c:119 -#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:54 -#: ../general/g.proj/output.c:360 ../general/g.region/main.c:471 -#: ../general/g.version/main.c:140 ../misc/m.measure/main.c:87 -#: ../raster/r.describe/dumplist.c:38 ../raster/r.distance/report.c:211 -#: ../raster/r.distance/report.c:218 ../raster/r.distance/report.c:225 -#: ../raster/r.info/main.c:147 ../raster/r.proj/main.c:487 -#: ../raster/r.regression.line/main.c:101 +#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:351 +#: ../general/g.region/main.c:471 ../general/g.version/main.c:140 +#: ../misc/m.measure/main.c:87 ../raster/r.describe/dumplist.c:38 +#: ../raster/r.distance/report.c:211 ../raster/r.distance/report.c:218 +#: ../raster/r.distance/report.c:225 ../raster/r.info/main.c:147 +#: ../raster/r.proj/main.c:487 ../raster/r.regression.line/main.c:101 #: ../raster/r.regression.multi/main.c:197 #: ../raster/r.regression.multi/main.c:566 #: ../raster/r.stats.quantile/main.c:430 ../raster/r.stats.quantile/main.c:447 @@ -329,7 +328,7 @@ msgstr "" msgid "Failed to initialize JSON object. Out of memory?" msgstr "" -#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:277 +#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:278 #: ../general/g.region/main.c:427 ../general/g.version/main.c:153 #: ../imagery/i.group/main.c:137 ../misc/m.measure/main.c:100 #: ../raster/r.proj/main.c:270 ../raster/r.regression.line/main.c:114 @@ -483,7 +482,7 @@ msgstr "" msgid "Lists all databases for a given driver and location." msgstr "" -#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:383 +#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:374 #: ../general/g.region/main.c:990 ../general/g.version/main.c:409 #: ../imagery/i.group/main.c:301 ../raster/r.category/main.c:412 #: ../raster/r.describe/dumplist.c:71 ../raster/r.info/main.c:1000 @@ -6444,10 +6443,10 @@ msgstr "" msgid "Converts between PPM/PGM and PNG image formats." msgstr "" -#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:141 -#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:140 -#: ../vector/v.external/proj.c:173 ../vector/v.in.lidar/main.c:525 -#: ../vector/v.in.ogr/proj.c:307 +#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:129 +#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:129 +#: ../vector/v.external/proj.c:158 ../vector/v.in.lidar/main.c:525 +#: ../vector/v.in.ogr/proj.c:228 #, c-format msgid "Project <%s> created" msgstr "" @@ -6752,55 +6751,63 @@ msgstr "" msgid "Name of new project (location) to create" msgstr "" -#: ../general/g.proj/main.c:239 -msgid "plain;Human readable text output;shell;shell script style text output;json;JSON (JavaScript Object Notation);wkt;Well-known text output;proj4;PROJ.4 style text output;" +#: ../general/g.proj/main.c:240 +msgid "plain;Human readable text output;shell;shell script style text output;wkt;Well-known text output;projjson;JSON (JavaScript Object Notation) version of WKT;proj4;PROJ.4 style text output;" msgstr "" -#: ../general/g.proj/main.c:271 ../vector/v.what.rast/main.c:159 +#: ../general/g.proj/main.c:272 ../vector/v.what.rast/main.c:159 #, c-format msgid "The format option can only be used with -%c flag" msgstr "" -#: ../general/g.proj/main.c:283 +#: ../general/g.proj/main.c:284 msgid "Flag 'j' is deprecated and will be removed in a future release. Please use format=proj4 instead." msgstr "" -#: ../general/g.proj/main.c:292 +#: ../general/g.proj/main.c:293 msgid "Flag 'w' is deprecated and will be removed in a future release. Please use format=wkt instead." msgstr "" -#: ../general/g.proj/main.c:312 +#: ../general/g.proj/main.c:313 #, c-format msgid "Only one of '%s', '%s', '%s', '%s' or '%s' options may be specified" msgstr "" -#: ../general/g.proj/main.c:364 +#: ../general/g.proj/main.c:365 msgid "Projection files missing" msgstr "" -#: ../general/g.proj/main.c:392 +#: ../general/g.proj/main.c:393 #, c-format msgid "No output format specified. Define one of the options: plain, shell, json, wkt, or proj4 using the -%c flag." msgstr "" -#: ../general/g.proj/main.c:397 +#: ../general/g.proj/main.c:398 #, c-format msgid "No output format specified. Define one of the options: plain, shell, json, or proj4 using the -%c flag." msgstr "" -#: ../general/g.proj/output.c:221 +#: ../general/g.proj/output.c:54 +msgid "JSON output is not available." +msgstr "" + +#: ../general/g.proj/output.c:212 msgid "Unable to convert projection information to PROJ format" msgstr "" -#: ../general/g.proj/output.c:295 +#: ../general/g.proj/output.c:286 #, c-format msgid "Unable to create PROJ definition from srid <%s>" msgstr "" -#: ../general/g.proj/output.c:337 +#: ../general/g.proj/output.c:328 msgid "Unable to convert to WKT" msgstr "" +#: ../general/g.proj/output.c:433 +msgid "Unable to convert to PROJJSON" +msgstr "" + #: ../general/g.region/main.c:67 msgid "computational region" msgstr "" @@ -11418,10 +11425,10 @@ msgstr "" #: ../raster/r.grow.distance/main.c:392 ../raster/r.li/r.li.daemon/daemon.c:743 #: ../raster/r.mfilter/execute.c:82 ../raster/r.mfilter/execute.c:114 #: ../raster/r.mfilter/execute.c:165 ../raster/r.mfilter/getrow.c:24 -#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:786 -#: ../raster/r.path/main.c:822 ../raster/r.path/main.c:954 -#: ../raster/r.path/main.c:1073 ../raster/r.path/main.c:1103 -#: ../raster/r.path/main.c:1207 ../raster/r.thin/io.c:72 +#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:789 +#: ../raster/r.path/main.c:825 ../raster/r.path/main.c:957 +#: ../raster/r.path/main.c:1076 ../raster/r.path/main.c:1106 +#: ../raster/r.path/main.c:1210 ../raster/r.thin/io.c:72 #: ../raster/r.thin/io.c:82 ../raster3d/r3.in.v5d/v5d.c:1192 #: ../raster3d/r3.in.v5d/v5d.c:1443 ../raster3d/r3.in.v5d/v5d.c:1523 #: ../raster3d/r3.in.v5d/v5d.c:1848 ../raster3d/r3.in.v5d/v5d.c:1859 @@ -11446,9 +11453,9 @@ msgstr "" #: ../raster/r.clump/minsize.c:268 ../raster/r.clump/minsize.c:308 #: ../raster/r.clump/minsize.c:319 ../raster/r.clump/minsize.c:454 #: ../raster/r.clump/minsize.c:481 ../raster/r.clump/minsize.c:557 -#: ../raster/r.path/main.c:791 ../raster/r.path/main.c:827 -#: ../raster/r.path/main.c:962 ../raster/r.path/main.c:1078 -#: ../raster/r.path/main.c:1108 ../raster/r.path/main.c:1213 +#: ../raster/r.path/main.c:794 ../raster/r.path/main.c:830 +#: ../raster/r.path/main.c:965 ../raster/r.path/main.c:1081 +#: ../raster/r.path/main.c:1111 ../raster/r.path/main.c:1216 msgid "Unable to read from temp file" msgstr "" @@ -19738,7 +19745,7 @@ msgstr "" msgid "Starting point %d is outside the current region" msgstr "" -#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:375 +#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:378 #, c-format msgid "Starting vector map <%s> contains no points in the current region" msgstr "" @@ -19752,8 +19759,8 @@ msgid "Calculating flow directions..." msgstr "" #: ../raster/r.drain/main.c:485 ../raster/r.in.lidar/main.c:783 -#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:598 -#: ../raster/r.path/main.c:628 ../raster/r.viewshed/grass.cpp:621 +#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:601 +#: ../raster/r.path/main.c:631 ../raster/r.viewshed/grass.cpp:621 msgid "Writing output raster map..." msgstr "" @@ -20001,83 +20008,89 @@ msgstr "" msgid "Imagery group <%s> created" msgstr "" -#: ../raster/r.external/proj.c:51 ../raster/r.external/proj.c:93 -#: ../raster/r.in.gdal/proj.c:51 ../raster/r.in.gdal/proj.c:93 -#, c-format -msgid "" -"Input contains an invalid CRS. WKT definition:\n" -"%s" +#: ../raster/r.external/proj.c:36 ../raster/r.external/proj.c:63 +#: ../raster/r.external/proj.c:122 ../raster/r.in.gdal/proj.c:36 +#: ../raster/r.in.gdal/proj.c:63 ../raster/r.in.gdal/proj.c:122 +#: ../vector/v.external/proj.c:92 ../vector/v.external/proj.c:151 +#: ../vector/v.in.ogr/proj.c:162 ../vector/v.in.ogr/proj.c:221 +msgid "Can't get WKT parameter string" msgstr "" -#: ../raster/r.external/proj.c:120 ../raster/r.in.gdal/proj.c:120 +#: ../raster/r.external/proj.c:56 ../raster/r.in.gdal/proj.c:56 +#: ../vector/v.external/proj.c:85 ../vector/v.in.ogr/proj.c:155 +msgid "Input contains an invalid CRS." +msgstr "" + +#: ../raster/r.external/proj.c:66 ../raster/r.in.gdal/proj.c:66 +#: ../vector/v.external/proj.c:95 ../vector/v.in.ogr/proj.c:165 +#, fuzzy +msgid "WKT definition:" +msgstr "பகுதி மதிப்பீடு" + +#: ../raster/r.external/proj.c:99 ../raster/r.in.gdal/proj.c:99 +#: ../vector/v.external/proj.c:128 ../vector/v.in.ogr/proj.c:198 msgid "No projection information available" msgstr "" -#: ../raster/r.external/proj.c:133 -msgid "Unable to convert input map coordinate reference system to GRASS format; cannot create new project." +#: ../raster/r.external/proj.c:114 ../raster/r.in.gdal/proj.c:114 +#: ../vector/v.external/proj.c:143 ../vector/v.in.ogr/proj.c:213 +msgid "Unable to convert input map projection to GRASS format; cannot create new project." msgstr "" -#: ../raster/r.external/proj.c:139 ../raster/r.in.gdal/main.c:1039 -#: ../raster/r.in.gdal/proj.c:138 ../vector/v.external/proj.c:171 -#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:305 +#: ../raster/r.external/proj.c:127 ../raster/r.in.gdal/main.c:1039 +#: ../raster/r.in.gdal/proj.c:127 ../vector/v.external/proj.c:156 +#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:226 #, c-format msgid "Unable to create new project <%s>" msgstr "" -#: ../raster/r.external/proj.c:165 ../raster/r.in.gdal/proj.c:164 -#: ../vector/v.external/proj.c:197 ../vector/v.in.ogr/proj.c:331 +#: ../raster/r.external/proj.c:157 ../raster/r.in.gdal/proj.c:157 +#: ../vector/v.external/proj.c:186 ../vector/v.in.ogr/proj.c:256 msgid "Unable to convert input map projection information to GRASS format." msgstr "" -#: ../raster/r.external/proj.c:192 ../raster/r.in.gdal/proj.c:192 +#: ../raster/r.external/proj.c:238 ../raster/r.in.gdal/proj.c:238 #: ../raster/r.in.lidar/projection.c:126 -#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:228 -#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:360 +#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:267 +#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:337 msgid "Over-riding projection check" msgstr "" -#: ../raster/r.external/proj.c:200 ../raster/r.in.gdal/proj.c:200 -#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 -#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.external/proj.c:236 -#: ../vector/v.in.lidar/projection.c:30 ../vector/v.in.ogr/proj.c:368 -msgid "" -"Coordinate reference system of dataset does not appear to match current project.\n" -"\n" +#: ../raster/r.external/proj.c:244 ../raster/r.in.gdal/proj.c:244 +#: ../vector/v.external/proj.c:273 ../vector/v.in.ogr/proj.c:343 +msgid "Coordinate reference system of dataset does not appear to match current project.\n" msgstr "" -#: ../raster/r.external/proj.c:207 ../raster/r.external/proj.c:216 -#: ../raster/r.in.gdal/proj.c:207 ../raster/r.in.gdal/proj.c:216 -#: ../vector/v.external/proj.c:243 ../vector/v.external/proj.c:252 -#: ../vector/v.in.ogr/proj.c:375 ../vector/v.in.ogr/proj.c:384 -msgid "Project PROJ_INFO is:\n" +#: ../raster/r.external/proj.c:258 ../raster/r.in.gdal/proj.c:258 +#: ../vector/v.external/proj.c:287 ../vector/v.in.ogr/proj.c:357 +msgid "Dataset CRS is:\n" msgstr "" -#: ../raster/r.external/proj.c:236 ../raster/r.external/proj.c:243 -#: ../raster/r.in.gdal/proj.c:236 ../raster/r.in.gdal/proj.c:243 -#: ../vector/v.external/proj.c:272 ../vector/v.external/proj.c:279 -#: ../vector/v.in.ogr/proj.c:404 ../vector/v.in.ogr/proj.c:411 -msgid "Dataset PROJ_INFO is:\n" +#: ../raster/r.external/proj.c:272 ../raster/r.in.gdal/proj.c:272 +#: ../vector/v.external/proj.c:301 ../vector/v.in.ogr/proj.c:371 +msgid "Project CRS is:\n" msgstr "" -#: ../raster/r.external/proj.c:324 ../raster/r.in.lidar/projection.c:89 -#: ../raster/r.in.pdal/projection.c:87 ../raster3d/r3.in.lidar/projection.c:90 -#: ../vector/v.external/proj.c:360 ../vector/v.in.lidar/projection.c:87 -#: ../vector/v.in.ogr/proj.c:492 ../vector/v.in.pdal/projection.c:87 +#: ../raster/r.external/proj.c:286 ../raster/r.in.gdal/proj.c:286 +#: ../raster/r.in.lidar/projection.c:89 ../raster/r.in.pdal/projection.c:87 +#: ../raster3d/r3.in.lidar/projection.c:90 ../vector/v.external/proj.c:315 +#: ../vector/v.in.lidar/projection.c:87 ../vector/v.in.ogr/proj.c:385 +#: ../vector/v.in.pdal/projection.c:87 #, c-format msgid "" "\n" "In case of no significant differences in the coordinate reference system definitions, use the -o flag to ignore them and use current project definition.\n" msgstr "" -#: ../raster/r.external/proj.c:328 ../raster/r.in.gdal/proj.c:327 -#: ../vector/v.external/proj.c:364 ../vector/v.in.ogr/proj.c:496 +#: ../raster/r.external/proj.c:290 ../raster/r.in.gdal/proj.c:290 +#: ../vector/v.external/proj.c:319 ../vector/v.in.ogr/proj.c:389 msgid "Consider generating a new project from the input dataset using the 'project' parameter.\n" msgstr "" -#: ../raster/r.external/proj.c:348 ../raster/r.in.gdal/proj.c:347 +#: ../raster/r.external/proj.c:310 ../raster/r.in.gdal/proj.c:310 #: ../raster/r.in.lidar/projection.c:136 ../raster/r.in.pdal/projection.c:134 -#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:384 -#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:516 +#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:339 +#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:409 msgid "Coordinate reference system of input dataset and current project appear to match" msgstr "" @@ -20685,7 +20698,7 @@ msgstr "" msgid "Region resolution shouldn't be lesser than map %s resolution. Run g.region raster=%s to set proper resolution" msgstr "" -#: ../raster/r.geomorphon/pattern.c:228 +#: ../raster/r.geomorphon/pattern.c:229 #, c-format msgid "Internal error in %s()" msgstr "" @@ -21650,8 +21663,7 @@ msgstr "" msgid "Error in %s (can't re-project GCP %i)" msgstr "" -#: ../raster/r.in.gdal/main.c:983 ../vector/v.external/proj.c:165 -#: ../vector/v.in.lidar/main.c:516 +#: ../raster/r.in.gdal/main.c:983 ../vector/v.in.lidar/main.c:516 msgid "Unable to convert input map CRS to GRASS format; cannot create new project." msgstr "" @@ -21702,16 +21714,6 @@ msgstr "" msgid "Unable to open file <%s>: %s." msgstr "" -#: ../raster/r.in.gdal/proj.c:132 ../vector/v.in.ogr/proj.c:299 -msgid "Unable to convert input map projection to GRASS format; cannot create new project." -msgstr "" - -#: ../raster/r.in.gdal/proj.c:323 -msgid "" -"\n" -"In case of no significant differences in the CRS definitions, use the -o flag to ignore them and use current project definition.\n" -msgstr "" - #: ../raster/r.in.gridatb/file_io.c:16 #, fuzzy, c-format #| msgid "unable to open" @@ -22073,6 +22075,13 @@ msgstr "" msgid "Unable to calculate trimmed mean without the trim option specified!" msgstr "" +#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 +#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.in.lidar/projection.c:30 +msgid "" +"Coordinate reference system of dataset does not appear to match current project.\n" +"\n" +msgstr "" + #: ../raster/r.in.lidar/projection.c:38 ../raster/r.in.pdal/projection.c:36 #: ../vector/v.in.lidar/projection.c:36 ../vector/v.in.pdal/projection.c:36 msgid "GRASS project PROJ_INFO is:\n" @@ -24899,114 +24908,114 @@ msgstr "" msgid "Do not break lines (faster for single-direction bitmask encoding)" msgstr "" -#: ../raster/r.path/main.c:384 +#: ../raster/r.path/main.c:387 msgid "No start point(s) specified" msgstr "" -#: ../raster/r.path/main.c:394 +#: ../raster/r.path/main.c:397 #, c-format msgid "Reading raster values map <%s> ..." msgstr "" -#: ../raster/r.path/main.c:399 +#: ../raster/r.path/main.c:402 #, fuzzy, c-format #| msgid "unable to open" msgid "Unable to open temporary file <%s>: %s" msgstr "திறக்க முடியவில்லை " -#: ../raster/r.path/main.c:411 ../raster/r.path/main.c:489 -#: ../raster/r.path/main.c:506 +#: ../raster/r.path/main.c:414 ../raster/r.path/main.c:492 +#: ../raster/r.path/main.c:509 msgid "Unable to write to tempfile" msgstr "" -#: ../raster/r.path/main.c:419 +#: ../raster/r.path/main.c:422 msgid "Unable to read range file" msgstr "" -#: ../raster/r.path/main.c:422 +#: ../raster/r.path/main.c:425 #, c-format msgid "Invalid directions map <%s>" msgstr "" -#: ../raster/r.path/main.c:427 +#: ../raster/r.path/main.c:430 msgid "Directional degrees can not be > 360" msgstr "" -#: ../raster/r.path/main.c:433 +#: ../raster/r.path/main.c:436 msgid "Directional degrees divided by 45 can not be > 8" msgstr "" -#: ../raster/r.path/main.c:438 +#: ../raster/r.path/main.c:441 #, c-format msgid "Bitmask encoded directions can not be > %d" msgstr "" -#: ../raster/r.path/main.c:445 +#: ../raster/r.path/main.c:448 msgid "Input direction format assumed to be degrees CCW from East divided by 45" msgstr "" -#: ../raster/r.path/main.c:450 +#: ../raster/r.path/main.c:453 msgid "Input direction format assumed to be bitmask encoded without Knight's move" msgstr "" -#: ../raster/r.path/main.c:456 +#: ../raster/r.path/main.c:459 msgid "Input direction format assumed to be degrees CCW from East" msgstr "" -#: ../raster/r.path/main.c:460 +#: ../raster/r.path/main.c:463 msgid "Input direction format assumed to be bitmask encoded with Knight's move" msgstr "" -#: ../raster/r.path/main.c:465 +#: ../raster/r.path/main.c:468 #, c-format msgid "Unable to detect format of input direction map <%s>" msgstr "" -#: ../raster/r.path/main.c:469 +#: ../raster/r.path/main.c:472 #, c-format msgid "Invalid directions format '%s'" msgstr "" -#: ../raster/r.path/main.c:471 +#: ../raster/r.path/main.c:474 #, c-format msgid "Reading direction map <%s> ..." msgstr "" -#: ../raster/r.path/main.c:525 +#: ../raster/r.path/main.c:528 msgid "Processing start points..." msgstr "" -#: ../raster/r.path/main.c:535 ../vector/v.buffer/main.c:410 +#: ../raster/r.path/main.c:538 ../vector/v.buffer/main.c:410 #: ../vector/v.in.ogr/main.c:881 ../vector/v.overlay/main.c:237 #: ../vector/v.voronoi/main.c:215 msgid "Unable to create temporary vector map" msgstr "" -#: ../raster/r.path/main.c:541 ../raster/r.path/main.c:557 +#: ../raster/r.path/main.c:544 ../raster/r.path/main.c:560 #, c-format msgid "No path at row %d, col %d" msgstr "" -#: ../raster/r.path/main.c:546 ../vector/v.overlay/area_area.c:134 +#: ../raster/r.path/main.c:549 ../vector/v.overlay/area_area.c:134 #: ../vector/v.overlay/line_area.c:255 msgid "Breaking lines..." msgstr "" -#: ../raster/r.path/main.c:684 +#: ../raster/r.path/main.c:687 msgid "Unable to increase point list" msgstr "" -#: ../raster/r.path/main.c:887 +#: ../raster/r.path/main.c:890 #, c-format msgid "No path from row %d, col %d" msgstr "" -#: ../raster/r.path/main.c:901 +#: ../raster/r.path/main.c:904 #, c-format msgid "Invalid direction %d" msgstr "" -#: ../raster/r.path/main.c:999 +#: ../raster/r.path/main.c:1002 msgid "Path is leaving the current region" msgstr "" @@ -38499,39 +38508,17 @@ msgstr "" msgid "Link to vector map <%s> created." msgstr "" -#: ../vector/v.external/proj.c:35 ../vector/v.in.ogr/main.c:741 -#: ../vector/v.in.ogr/proj.c:36 +#: ../vector/v.external/proj.c:34 ../vector/v.in.ogr/main.c:741 +#: ../vector/v.in.ogr/proj.c:34 #, c-format msgid "Geometry column <%s> not found in input layer <%s>" msgstr "" -#: ../vector/v.external/proj.c:49 ../vector/v.in.ogr/proj.c:50 -msgid "Unable to convert input layer projection information to GRASS format for checking" -msgstr "" - -#: ../vector/v.external/proj.c:55 ../vector/v.external/proj.c:85 -#: ../vector/v.in.ogr/proj.c:56 ../vector/v.in.ogr/proj.c:86 -msgid "Can't get WKT parameter string" -msgstr "" - -#: ../vector/v.external/proj.c:58 ../vector/v.external/proj.c:88 -#: ../vector/v.in.ogr/proj.c:59 ../vector/v.in.ogr/proj.c:89 -#, c-format -msgid "" -"WKT definition:\n" -"%s" -msgstr "" - -#: ../vector/v.external/proj.c:69 ../vector/v.in.ogr/proj.c:70 +#: ../vector/v.external/proj.c:46 ../vector/v.in.ogr/proj.c:46 #, c-format msgid "No projection information available for layer <%s>" msgstr "" -#: ../vector/v.external/proj.c:78 ../vector/v.in.ogr/proj.c:79 -#, c-format -msgid "Projection for layer <%s> does not contain a valid CRS" -msgstr "" - #: ../vector/v.extract/extract.c:202 #, c-format msgid "No category found for area %d. Skipping." @@ -40291,16 +40278,16 @@ msgstr "" msgid "The spatial filter does not overlap with OGR layer <%s>. Nothing to import." msgstr "" -#: ../vector/v.in.ogr/proj.c:168 +#: ../vector/v.in.ogr/proj.c:85 msgid "Layer projections are unreadable" msgstr "" -#: ../vector/v.in.ogr/proj.c:184 +#: ../vector/v.in.ogr/proj.c:93 #, c-format msgid "Projection for layer <%s> is unreadable" msgstr "" -#: ../vector/v.in.ogr/proj.c:236 +#: ../vector/v.in.ogr/proj.c:113 #, c-format msgid "Projection of layer <%s> is different from projection of layer <%s>" msgstr "" @@ -47758,11 +47745,6 @@ msgstr "" msgid "Image file" msgstr "" -#, fuzzy, c-format -#~| msgid "unable to open" -#~ msgid "Unable to seek: %s" -#~ msgstr "திறக்க முடியவில்லை " - #, fuzzy #~ msgid "Boxplot text labels" #~ msgstr "செல்களின் எண்ணிக்கை" @@ -47915,6 +47897,11 @@ msgstr "" #~ msgid "Station ID" #~ msgstr "ஒருங்கிணைப்பு" +#, fuzzy, c-format +#~| msgid "unable to open" +#~ msgid "Unable to seek: %s" +#~ msgstr "திறக்க முடியவில்லை " + #, fuzzy #~ msgid "Validation" #~ msgstr "ஒருங்கிணைப்பு" @@ -47955,10 +47942,6 @@ msgstr "" #~ msgid "symbology" #~ msgstr "நீரியல்" -#, fuzzy -#~ msgid "uri destination" -#~ msgstr "பகுதி மதிப்பீடு" - #, fuzzy #~ msgid "validation" #~ msgstr "ஒருங்கிணைப்பு" diff --git a/locale/po/grassmods_th.po b/locale/po/grassmods_th.po index 2e1eb9ff903..233ef3ad5ea 100644 --- a/locale/po/grassmods_th.po +++ b/locale/po/grassmods_th.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: grassmods_th\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-07-26 01:37+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Thai \n" @@ -178,7 +178,7 @@ msgstr "" #: ../general/g.proj/main.c:90 ../general/g.proj/main.c:99 #: ../general/g.proj/main.c:105 ../general/g.proj/main.c:114 #: ../general/g.proj/main.c:126 ../general/g.proj/main.c:135 -#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:244 +#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:245 #: ../general/g.region/main.c:91 ../general/g.region/main.c:97 #: ../general/g.region/main.c:102 ../general/g.region/main.c:108 #: ../general/g.region/main.c:113 ../general/g.region/main.c:118 @@ -305,13 +305,12 @@ msgstr "" #: ../db/db.connect/main.c:144 ../general/g.findfile/main.c:187 #: ../general/g.list/list.c:122 ../general/g.mapset/main.c:119 -#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:54 -#: ../general/g.proj/output.c:360 ../general/g.region/main.c:471 -#: ../general/g.version/main.c:140 ../misc/m.measure/main.c:87 -#: ../raster/r.describe/dumplist.c:38 ../raster/r.distance/report.c:211 -#: ../raster/r.distance/report.c:218 ../raster/r.distance/report.c:225 -#: ../raster/r.info/main.c:147 ../raster/r.proj/main.c:487 -#: ../raster/r.regression.line/main.c:101 +#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:351 +#: ../general/g.region/main.c:471 ../general/g.version/main.c:140 +#: ../misc/m.measure/main.c:87 ../raster/r.describe/dumplist.c:38 +#: ../raster/r.distance/report.c:211 ../raster/r.distance/report.c:218 +#: ../raster/r.distance/report.c:225 ../raster/r.info/main.c:147 +#: ../raster/r.proj/main.c:487 ../raster/r.regression.line/main.c:101 #: ../raster/r.regression.multi/main.c:197 #: ../raster/r.regression.multi/main.c:566 #: ../raster/r.stats.quantile/main.c:430 ../raster/r.stats.quantile/main.c:447 @@ -330,7 +329,7 @@ msgstr "" msgid "Failed to initialize JSON object. Out of memory?" msgstr "" -#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:277 +#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:278 #: ../general/g.region/main.c:427 ../general/g.version/main.c:153 #: ../imagery/i.group/main.c:137 ../misc/m.measure/main.c:100 #: ../raster/r.proj/main.c:270 ../raster/r.regression.line/main.c:114 @@ -484,7 +483,7 @@ msgstr "" msgid "Lists all databases for a given driver and location." msgstr "" -#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:383 +#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:374 #: ../general/g.region/main.c:990 ../general/g.version/main.c:409 #: ../imagery/i.group/main.c:301 ../raster/r.category/main.c:412 #: ../raster/r.describe/dumplist.c:71 ../raster/r.info/main.c:1000 @@ -6434,10 +6433,10 @@ msgstr "" msgid "Converts between PPM/PGM and PNG image formats." msgstr "" -#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:141 -#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:140 -#: ../vector/v.external/proj.c:173 ../vector/v.in.lidar/main.c:525 -#: ../vector/v.in.ogr/proj.c:307 +#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:129 +#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:129 +#: ../vector/v.external/proj.c:158 ../vector/v.in.lidar/main.c:525 +#: ../vector/v.in.ogr/proj.c:228 #, c-format msgid "Project <%s> created" msgstr "" @@ -6747,55 +6746,63 @@ msgstr "" msgid "Name of new project (location) to create" msgstr "ชื่อของแผนที่เชิงภาพผลลัพธ์" -#: ../general/g.proj/main.c:239 -msgid "plain;Human readable text output;shell;shell script style text output;json;JSON (JavaScript Object Notation);wkt;Well-known text output;proj4;PROJ.4 style text output;" +#: ../general/g.proj/main.c:240 +msgid "plain;Human readable text output;shell;shell script style text output;wkt;Well-known text output;projjson;JSON (JavaScript Object Notation) version of WKT;proj4;PROJ.4 style text output;" msgstr "" -#: ../general/g.proj/main.c:271 ../vector/v.what.rast/main.c:159 +#: ../general/g.proj/main.c:272 ../vector/v.what.rast/main.c:159 #, c-format msgid "The format option can only be used with -%c flag" msgstr "" -#: ../general/g.proj/main.c:283 +#: ../general/g.proj/main.c:284 msgid "Flag 'j' is deprecated and will be removed in a future release. Please use format=proj4 instead." msgstr "" -#: ../general/g.proj/main.c:292 +#: ../general/g.proj/main.c:293 msgid "Flag 'w' is deprecated and will be removed in a future release. Please use format=wkt instead." msgstr "" -#: ../general/g.proj/main.c:312 +#: ../general/g.proj/main.c:313 #, c-format msgid "Only one of '%s', '%s', '%s', '%s' or '%s' options may be specified" msgstr "" -#: ../general/g.proj/main.c:364 +#: ../general/g.proj/main.c:365 msgid "Projection files missing" msgstr "" -#: ../general/g.proj/main.c:392 +#: ../general/g.proj/main.c:393 #, c-format msgid "No output format specified. Define one of the options: plain, shell, json, wkt, or proj4 using the -%c flag." msgstr "" -#: ../general/g.proj/main.c:397 +#: ../general/g.proj/main.c:398 #, c-format msgid "No output format specified. Define one of the options: plain, shell, json, or proj4 using the -%c flag." msgstr "" -#: ../general/g.proj/output.c:221 +#: ../general/g.proj/output.c:54 +msgid "JSON output is not available." +msgstr "" + +#: ../general/g.proj/output.c:212 msgid "Unable to convert projection information to PROJ format" msgstr "" -#: ../general/g.proj/output.c:295 +#: ../general/g.proj/output.c:286 #, c-format msgid "Unable to create PROJ definition from srid <%s>" msgstr "" -#: ../general/g.proj/output.c:337 +#: ../general/g.proj/output.c:328 msgid "Unable to convert to WKT" msgstr "" +#: ../general/g.proj/output.c:433 +msgid "Unable to convert to PROJJSON" +msgstr "" + #: ../general/g.region/main.c:67 msgid "computational region" msgstr "" @@ -11418,10 +11425,10 @@ msgstr "" #: ../raster/r.grow.distance/main.c:392 ../raster/r.li/r.li.daemon/daemon.c:743 #: ../raster/r.mfilter/execute.c:82 ../raster/r.mfilter/execute.c:114 #: ../raster/r.mfilter/execute.c:165 ../raster/r.mfilter/getrow.c:24 -#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:786 -#: ../raster/r.path/main.c:822 ../raster/r.path/main.c:954 -#: ../raster/r.path/main.c:1073 ../raster/r.path/main.c:1103 -#: ../raster/r.path/main.c:1207 ../raster/r.thin/io.c:72 +#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:789 +#: ../raster/r.path/main.c:825 ../raster/r.path/main.c:957 +#: ../raster/r.path/main.c:1076 ../raster/r.path/main.c:1106 +#: ../raster/r.path/main.c:1210 ../raster/r.thin/io.c:72 #: ../raster/r.thin/io.c:82 ../raster3d/r3.in.v5d/v5d.c:1192 #: ../raster3d/r3.in.v5d/v5d.c:1443 ../raster3d/r3.in.v5d/v5d.c:1523 #: ../raster3d/r3.in.v5d/v5d.c:1848 ../raster3d/r3.in.v5d/v5d.c:1859 @@ -11446,9 +11453,9 @@ msgstr "" #: ../raster/r.clump/minsize.c:268 ../raster/r.clump/minsize.c:308 #: ../raster/r.clump/minsize.c:319 ../raster/r.clump/minsize.c:454 #: ../raster/r.clump/minsize.c:481 ../raster/r.clump/minsize.c:557 -#: ../raster/r.path/main.c:791 ../raster/r.path/main.c:827 -#: ../raster/r.path/main.c:962 ../raster/r.path/main.c:1078 -#: ../raster/r.path/main.c:1108 ../raster/r.path/main.c:1213 +#: ../raster/r.path/main.c:794 ../raster/r.path/main.c:830 +#: ../raster/r.path/main.c:965 ../raster/r.path/main.c:1081 +#: ../raster/r.path/main.c:1111 ../raster/r.path/main.c:1216 msgid "Unable to read from temp file" msgstr "" @@ -19757,7 +19764,7 @@ msgstr "" msgid "Starting point %d is outside the current region" msgstr "" -#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:375 +#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:378 #, c-format msgid "Starting vector map <%s> contains no points in the current region" msgstr "" @@ -19771,8 +19778,8 @@ msgid "Calculating flow directions..." msgstr "" #: ../raster/r.drain/main.c:485 ../raster/r.in.lidar/main.c:783 -#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:598 -#: ../raster/r.path/main.c:628 ../raster/r.viewshed/grass.cpp:621 +#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:601 +#: ../raster/r.path/main.c:631 ../raster/r.viewshed/grass.cpp:621 msgid "Writing output raster map..." msgstr "" @@ -20020,83 +20027,89 @@ msgstr "" msgid "Imagery group <%s> created" msgstr "" -#: ../raster/r.external/proj.c:51 ../raster/r.external/proj.c:93 -#: ../raster/r.in.gdal/proj.c:51 ../raster/r.in.gdal/proj.c:93 -#, c-format -msgid "" -"Input contains an invalid CRS. WKT definition:\n" -"%s" +#: ../raster/r.external/proj.c:36 ../raster/r.external/proj.c:63 +#: ../raster/r.external/proj.c:122 ../raster/r.in.gdal/proj.c:36 +#: ../raster/r.in.gdal/proj.c:63 ../raster/r.in.gdal/proj.c:122 +#: ../vector/v.external/proj.c:92 ../vector/v.external/proj.c:151 +#: ../vector/v.in.ogr/proj.c:162 ../vector/v.in.ogr/proj.c:221 +msgid "Can't get WKT parameter string" msgstr "" -#: ../raster/r.external/proj.c:120 ../raster/r.in.gdal/proj.c:120 +#: ../raster/r.external/proj.c:56 ../raster/r.in.gdal/proj.c:56 +#: ../vector/v.external/proj.c:85 ../vector/v.in.ogr/proj.c:155 +msgid "Input contains an invalid CRS." +msgstr "" + +#: ../raster/r.external/proj.c:66 ../raster/r.in.gdal/proj.c:66 +#: ../vector/v.external/proj.c:95 ../vector/v.in.ogr/proj.c:165 +#, fuzzy +msgid "WKT definition:" +msgstr "ตำแหน่ง: %s\n" + +#: ../raster/r.external/proj.c:99 ../raster/r.in.gdal/proj.c:99 +#: ../vector/v.external/proj.c:128 ../vector/v.in.ogr/proj.c:198 msgid "No projection information available" msgstr "" -#: ../raster/r.external/proj.c:133 -msgid "Unable to convert input map coordinate reference system to GRASS format; cannot create new project." +#: ../raster/r.external/proj.c:114 ../raster/r.in.gdal/proj.c:114 +#: ../vector/v.external/proj.c:143 ../vector/v.in.ogr/proj.c:213 +msgid "Unable to convert input map projection to GRASS format; cannot create new project." msgstr "" -#: ../raster/r.external/proj.c:139 ../raster/r.in.gdal/main.c:1039 -#: ../raster/r.in.gdal/proj.c:138 ../vector/v.external/proj.c:171 -#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:305 +#: ../raster/r.external/proj.c:127 ../raster/r.in.gdal/main.c:1039 +#: ../raster/r.in.gdal/proj.c:127 ../vector/v.external/proj.c:156 +#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:226 #, fuzzy, c-format msgid "Unable to create new project <%s>" msgstr "นำเข้า ล้มเหลว" -#: ../raster/r.external/proj.c:165 ../raster/r.in.gdal/proj.c:164 -#: ../vector/v.external/proj.c:197 ../vector/v.in.ogr/proj.c:331 +#: ../raster/r.external/proj.c:157 ../raster/r.in.gdal/proj.c:157 +#: ../vector/v.external/proj.c:186 ../vector/v.in.ogr/proj.c:256 msgid "Unable to convert input map projection information to GRASS format." msgstr "" -#: ../raster/r.external/proj.c:192 ../raster/r.in.gdal/proj.c:192 +#: ../raster/r.external/proj.c:238 ../raster/r.in.gdal/proj.c:238 #: ../raster/r.in.lidar/projection.c:126 -#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:228 -#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:360 +#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:267 +#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:337 msgid "Over-riding projection check" msgstr "" -#: ../raster/r.external/proj.c:200 ../raster/r.in.gdal/proj.c:200 -#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 -#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.external/proj.c:236 -#: ../vector/v.in.lidar/projection.c:30 ../vector/v.in.ogr/proj.c:368 -msgid "" -"Coordinate reference system of dataset does not appear to match current project.\n" -"\n" +#: ../raster/r.external/proj.c:244 ../raster/r.in.gdal/proj.c:244 +#: ../vector/v.external/proj.c:273 ../vector/v.in.ogr/proj.c:343 +msgid "Coordinate reference system of dataset does not appear to match current project.\n" msgstr "" -#: ../raster/r.external/proj.c:207 ../raster/r.external/proj.c:216 -#: ../raster/r.in.gdal/proj.c:207 ../raster/r.in.gdal/proj.c:216 -#: ../vector/v.external/proj.c:243 ../vector/v.external/proj.c:252 -#: ../vector/v.in.ogr/proj.c:375 ../vector/v.in.ogr/proj.c:384 -msgid "Project PROJ_INFO is:\n" +#: ../raster/r.external/proj.c:258 ../raster/r.in.gdal/proj.c:258 +#: ../vector/v.external/proj.c:287 ../vector/v.in.ogr/proj.c:357 +msgid "Dataset CRS is:\n" msgstr "" -#: ../raster/r.external/proj.c:236 ../raster/r.external/proj.c:243 -#: ../raster/r.in.gdal/proj.c:236 ../raster/r.in.gdal/proj.c:243 -#: ../vector/v.external/proj.c:272 ../vector/v.external/proj.c:279 -#: ../vector/v.in.ogr/proj.c:404 ../vector/v.in.ogr/proj.c:411 -msgid "Dataset PROJ_INFO is:\n" +#: ../raster/r.external/proj.c:272 ../raster/r.in.gdal/proj.c:272 +#: ../vector/v.external/proj.c:301 ../vector/v.in.ogr/proj.c:371 +msgid "Project CRS is:\n" msgstr "" -#: ../raster/r.external/proj.c:324 ../raster/r.in.lidar/projection.c:89 -#: ../raster/r.in.pdal/projection.c:87 ../raster3d/r3.in.lidar/projection.c:90 -#: ../vector/v.external/proj.c:360 ../vector/v.in.lidar/projection.c:87 -#: ../vector/v.in.ogr/proj.c:492 ../vector/v.in.pdal/projection.c:87 +#: ../raster/r.external/proj.c:286 ../raster/r.in.gdal/proj.c:286 +#: ../raster/r.in.lidar/projection.c:89 ../raster/r.in.pdal/projection.c:87 +#: ../raster3d/r3.in.lidar/projection.c:90 ../vector/v.external/proj.c:315 +#: ../vector/v.in.lidar/projection.c:87 ../vector/v.in.ogr/proj.c:385 +#: ../vector/v.in.pdal/projection.c:87 #, c-format msgid "" "\n" "In case of no significant differences in the coordinate reference system definitions, use the -o flag to ignore them and use current project definition.\n" msgstr "" -#: ../raster/r.external/proj.c:328 ../raster/r.in.gdal/proj.c:327 -#: ../vector/v.external/proj.c:364 ../vector/v.in.ogr/proj.c:496 +#: ../raster/r.external/proj.c:290 ../raster/r.in.gdal/proj.c:290 +#: ../vector/v.external/proj.c:319 ../vector/v.in.ogr/proj.c:389 msgid "Consider generating a new project from the input dataset using the 'project' parameter.\n" msgstr "" -#: ../raster/r.external/proj.c:348 ../raster/r.in.gdal/proj.c:347 +#: ../raster/r.external/proj.c:310 ../raster/r.in.gdal/proj.c:310 #: ../raster/r.in.lidar/projection.c:136 ../raster/r.in.pdal/projection.c:134 -#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:384 -#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:516 +#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:339 +#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:409 msgid "Coordinate reference system of input dataset and current project appear to match" msgstr "" @@ -20703,7 +20716,7 @@ msgstr "" msgid "Region resolution shouldn't be lesser than map %s resolution. Run g.region raster=%s to set proper resolution" msgstr "" -#: ../raster/r.geomorphon/pattern.c:228 +#: ../raster/r.geomorphon/pattern.c:229 #, c-format msgid "Internal error in %s()" msgstr "" @@ -21670,8 +21683,7 @@ msgstr "" msgid "Error in %s (can't re-project GCP %i)" msgstr "" -#: ../raster/r.in.gdal/main.c:983 ../vector/v.external/proj.c:165 -#: ../vector/v.in.lidar/main.c:516 +#: ../raster/r.in.gdal/main.c:983 ../vector/v.in.lidar/main.c:516 msgid "Unable to convert input map CRS to GRASS format; cannot create new project." msgstr "" @@ -21722,16 +21734,6 @@ msgstr "" msgid "Unable to open file <%s>: %s." msgstr "" -#: ../raster/r.in.gdal/proj.c:132 ../vector/v.in.ogr/proj.c:299 -msgid "Unable to convert input map projection to GRASS format; cannot create new project." -msgstr "" - -#: ../raster/r.in.gdal/proj.c:323 -msgid "" -"\n" -"In case of no significant differences in the CRS definitions, use the -o flag to ignore them and use current project definition.\n" -msgstr "" - #: ../raster/r.in.gridatb/file_io.c:16 #, fuzzy, c-format msgid "Unable to open file: %s" @@ -22092,6 +22094,13 @@ msgstr "" msgid "Unable to calculate trimmed mean without the trim option specified!" msgstr "" +#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 +#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.in.lidar/projection.c:30 +msgid "" +"Coordinate reference system of dataset does not appear to match current project.\n" +"\n" +msgstr "" + #: ../raster/r.in.lidar/projection.c:38 ../raster/r.in.pdal/projection.c:36 #: ../vector/v.in.lidar/projection.c:36 ../vector/v.in.pdal/projection.c:36 msgid "GRASS project PROJ_INFO is:\n" @@ -24920,113 +24929,113 @@ msgstr "อ่าน ขอบเขต แผนที่เชิงเส้ msgid "Do not break lines (faster for single-direction bitmask encoding)" msgstr "" -#: ../raster/r.path/main.c:384 +#: ../raster/r.path/main.c:387 msgid "No start point(s) specified" msgstr "" -#: ../raster/r.path/main.c:394 +#: ../raster/r.path/main.c:397 #, c-format msgid "Reading raster values map <%s> ..." msgstr "" -#: ../raster/r.path/main.c:399 +#: ../raster/r.path/main.c:402 #, fuzzy, c-format msgid "Unable to open temporary file <%s>: %s" msgstr "ไม่สามารถเปิดไฟล์ผลลัพธ์ <%s>" -#: ../raster/r.path/main.c:411 ../raster/r.path/main.c:489 -#: ../raster/r.path/main.c:506 +#: ../raster/r.path/main.c:414 ../raster/r.path/main.c:492 +#: ../raster/r.path/main.c:509 msgid "Unable to write to tempfile" msgstr "" -#: ../raster/r.path/main.c:419 +#: ../raster/r.path/main.c:422 msgid "Unable to read range file" msgstr "" -#: ../raster/r.path/main.c:422 +#: ../raster/r.path/main.c:425 #, c-format msgid "Invalid directions map <%s>" msgstr "" -#: ../raster/r.path/main.c:427 +#: ../raster/r.path/main.c:430 msgid "Directional degrees can not be > 360" msgstr "" -#: ../raster/r.path/main.c:433 +#: ../raster/r.path/main.c:436 msgid "Directional degrees divided by 45 can not be > 8" msgstr "" -#: ../raster/r.path/main.c:438 +#: ../raster/r.path/main.c:441 #, c-format msgid "Bitmask encoded directions can not be > %d" msgstr "" -#: ../raster/r.path/main.c:445 +#: ../raster/r.path/main.c:448 msgid "Input direction format assumed to be degrees CCW from East divided by 45" msgstr "" -#: ../raster/r.path/main.c:450 +#: ../raster/r.path/main.c:453 msgid "Input direction format assumed to be bitmask encoded without Knight's move" msgstr "" -#: ../raster/r.path/main.c:456 +#: ../raster/r.path/main.c:459 msgid "Input direction format assumed to be degrees CCW from East" msgstr "" -#: ../raster/r.path/main.c:460 +#: ../raster/r.path/main.c:463 msgid "Input direction format assumed to be bitmask encoded with Knight's move" msgstr "" -#: ../raster/r.path/main.c:465 +#: ../raster/r.path/main.c:468 #, c-format msgid "Unable to detect format of input direction map <%s>" msgstr "" -#: ../raster/r.path/main.c:469 +#: ../raster/r.path/main.c:472 #, c-format msgid "Invalid directions format '%s'" msgstr "" -#: ../raster/r.path/main.c:471 +#: ../raster/r.path/main.c:474 #, c-format msgid "Reading direction map <%s> ..." msgstr "" -#: ../raster/r.path/main.c:525 +#: ../raster/r.path/main.c:528 msgid "Processing start points..." msgstr "" -#: ../raster/r.path/main.c:535 ../vector/v.buffer/main.c:410 +#: ../raster/r.path/main.c:538 ../vector/v.buffer/main.c:410 #: ../vector/v.in.ogr/main.c:881 ../vector/v.overlay/main.c:237 #: ../vector/v.voronoi/main.c:215 msgid "Unable to create temporary vector map" msgstr "" -#: ../raster/r.path/main.c:541 ../raster/r.path/main.c:557 +#: ../raster/r.path/main.c:544 ../raster/r.path/main.c:560 #, c-format msgid "No path at row %d, col %d" msgstr "" -#: ../raster/r.path/main.c:546 ../vector/v.overlay/area_area.c:134 +#: ../raster/r.path/main.c:549 ../vector/v.overlay/area_area.c:134 #: ../vector/v.overlay/line_area.c:255 msgid "Breaking lines..." msgstr "" -#: ../raster/r.path/main.c:684 +#: ../raster/r.path/main.c:687 msgid "Unable to increase point list" msgstr "" -#: ../raster/r.path/main.c:887 +#: ../raster/r.path/main.c:890 #, c-format msgid "No path from row %d, col %d" msgstr "" -#: ../raster/r.path/main.c:901 +#: ../raster/r.path/main.c:904 #, c-format msgid "Invalid direction %d" msgstr "" -#: ../raster/r.path/main.c:999 +#: ../raster/r.path/main.c:1002 msgid "Path is leaving the current region" msgstr "" @@ -38505,39 +38514,17 @@ msgstr "" msgid "Link to vector map <%s> created." msgstr "" -#: ../vector/v.external/proj.c:35 ../vector/v.in.ogr/main.c:741 -#: ../vector/v.in.ogr/proj.c:36 +#: ../vector/v.external/proj.c:34 ../vector/v.in.ogr/main.c:741 +#: ../vector/v.in.ogr/proj.c:34 #, c-format msgid "Geometry column <%s> not found in input layer <%s>" msgstr "" -#: ../vector/v.external/proj.c:49 ../vector/v.in.ogr/proj.c:50 -msgid "Unable to convert input layer projection information to GRASS format for checking" -msgstr "" - -#: ../vector/v.external/proj.c:55 ../vector/v.external/proj.c:85 -#: ../vector/v.in.ogr/proj.c:56 ../vector/v.in.ogr/proj.c:86 -msgid "Can't get WKT parameter string" -msgstr "" - -#: ../vector/v.external/proj.c:58 ../vector/v.external/proj.c:88 -#: ../vector/v.in.ogr/proj.c:59 ../vector/v.in.ogr/proj.c:89 -#, c-format -msgid "" -"WKT definition:\n" -"%s" -msgstr "" - -#: ../vector/v.external/proj.c:69 ../vector/v.in.ogr/proj.c:70 +#: ../vector/v.external/proj.c:46 ../vector/v.in.ogr/proj.c:46 #, c-format msgid "No projection information available for layer <%s>" msgstr "" -#: ../vector/v.external/proj.c:78 ../vector/v.in.ogr/proj.c:79 -#, c-format -msgid "Projection for layer <%s> does not contain a valid CRS" -msgstr "" - #: ../vector/v.extract/extract.c:202 #, c-format msgid "No category found for area %d. Skipping." @@ -40293,16 +40280,16 @@ msgstr "" msgid "The spatial filter does not overlap with OGR layer <%s>. Nothing to import." msgstr "" -#: ../vector/v.in.ogr/proj.c:168 +#: ../vector/v.in.ogr/proj.c:85 msgid "Layer projections are unreadable" msgstr "" -#: ../vector/v.in.ogr/proj.c:184 +#: ../vector/v.in.ogr/proj.c:93 #, c-format msgid "Projection for layer <%s> is unreadable" msgstr "" -#: ../vector/v.in.ogr/proj.c:236 +#: ../vector/v.in.ogr/proj.c:113 #, c-format msgid "Projection of layer <%s> is different from projection of layer <%s>" msgstr "" @@ -47717,10 +47704,6 @@ msgstr "" msgid "Image file" msgstr "" -#, fuzzy, c-format -#~ msgid "Unable to seek: %s" -#~ msgstr "นำเข้า ล้มเหลว" - #~ msgid "" #~ "\n" #~ "%d classes, %.2f%% points stable\n" @@ -49932,6 +49915,10 @@ msgstr "" #~ msgid "Type of thematic display" #~ msgstr "ชนิดการแสดงผล thematic" +#, fuzzy, c-format +#~ msgid "Unable to seek: %s" +#~ msgstr "นำเข้า ล้มเหลว" + #, fuzzy #~ msgid "Units for output areas" #~ msgstr "คำนำหน้า สำหรับ แผนที่เชิงภาพ ผลลัพธ์" @@ -50169,10 +50156,6 @@ msgstr "" #~ msgid "time series" #~ msgstr "sites" -#, fuzzy -#~ msgid "uri destination" -#~ msgstr "ตำแหน่ง: %s\n" - #, fuzzy #~ msgid "validation" #~ msgstr "ตำแหน่ง: %s\n" diff --git a/locale/po/grassmods_tr.po b/locale/po/grassmods_tr.po index d37ed589e03..cf3752b219a 100644 --- a/locale/po/grassmods_tr.po +++ b/locale/po/grassmods_tr.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: grassmods_tr\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-07-26 01:37+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Turkish \n" @@ -180,7 +180,7 @@ msgstr "ilgili tablonun tüm sütunlarını listele." #: ../general/g.proj/main.c:90 ../general/g.proj/main.c:99 #: ../general/g.proj/main.c:105 ../general/g.proj/main.c:114 #: ../general/g.proj/main.c:126 ../general/g.proj/main.c:135 -#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:244 +#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:245 #: ../general/g.region/main.c:91 ../general/g.region/main.c:97 #: ../general/g.region/main.c:102 ../general/g.region/main.c:108 #: ../general/g.region/main.c:113 ../general/g.region/main.c:118 @@ -308,13 +308,12 @@ msgstr "" #: ../db/db.connect/main.c:144 ../general/g.findfile/main.c:187 #: ../general/g.list/list.c:122 ../general/g.mapset/main.c:119 -#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:54 -#: ../general/g.proj/output.c:360 ../general/g.region/main.c:471 -#: ../general/g.version/main.c:140 ../misc/m.measure/main.c:87 -#: ../raster/r.describe/dumplist.c:38 ../raster/r.distance/report.c:211 -#: ../raster/r.distance/report.c:218 ../raster/r.distance/report.c:225 -#: ../raster/r.info/main.c:147 ../raster/r.proj/main.c:487 -#: ../raster/r.regression.line/main.c:101 +#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:351 +#: ../general/g.region/main.c:471 ../general/g.version/main.c:140 +#: ../misc/m.measure/main.c:87 ../raster/r.describe/dumplist.c:38 +#: ../raster/r.distance/report.c:211 ../raster/r.distance/report.c:218 +#: ../raster/r.distance/report.c:225 ../raster/r.info/main.c:147 +#: ../raster/r.proj/main.c:487 ../raster/r.regression.line/main.c:101 #: ../raster/r.regression.multi/main.c:197 #: ../raster/r.regression.multi/main.c:566 #: ../raster/r.stats.quantile/main.c:430 ../raster/r.stats.quantile/main.c:447 @@ -333,7 +332,7 @@ msgstr "" msgid "Failed to initialize JSON object. Out of memory?" msgstr "" -#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:277 +#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:278 #: ../general/g.region/main.c:427 ../general/g.version/main.c:153 #: ../imagery/i.group/main.c:137 ../misc/m.measure/main.c:100 #: ../raster/r.proj/main.c:270 ../raster/r.regression.line/main.c:114 @@ -487,7 +486,7 @@ msgstr "" msgid "Lists all databases for a given driver and location." msgstr "" -#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:383 +#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:374 #: ../general/g.region/main.c:990 ../general/g.version/main.c:409 #: ../imagery/i.group/main.c:301 ../raster/r.category/main.c:412 #: ../raster/r.describe/dumplist.c:71 ../raster/r.info/main.c:1000 @@ -6468,10 +6467,10 @@ msgstr "" msgid "Converts between PPM/PGM and PNG image formats." msgstr "" -#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:141 -#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:140 -#: ../vector/v.external/proj.c:173 ../vector/v.in.lidar/main.c:525 -#: ../vector/v.in.ogr/proj.c:307 +#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:129 +#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:129 +#: ../vector/v.external/proj.c:158 ../vector/v.in.lidar/main.c:525 +#: ../vector/v.in.ogr/proj.c:228 #, fuzzy, c-format msgid "Project <%s> created" msgstr "< %s> Mevkisi oluşturuldu" @@ -6788,55 +6787,67 @@ msgstr "Projeksiyon dosyaları oluşturulamıyor: %s" msgid "Name of new project (location) to create" msgstr "Oluşturulacak yeni mevkinin adı" -#: ../general/g.proj/main.c:239 -msgid "plain;Human readable text output;shell;shell script style text output;json;JSON (JavaScript Object Notation);wkt;Well-known text output;proj4;PROJ.4 style text output;" +#: ../general/g.proj/main.c:240 +msgid "plain;Human readable text output;shell;shell script style text output;wkt;Well-known text output;projjson;JSON (JavaScript Object Notation) version of WKT;proj4;PROJ.4 style text output;" msgstr "" -#: ../general/g.proj/main.c:271 ../vector/v.what.rast/main.c:159 +#: ../general/g.proj/main.c:272 ../vector/v.what.rast/main.c:159 #, c-format msgid "The format option can only be used with -%c flag" msgstr "" -#: ../general/g.proj/main.c:283 +#: ../general/g.proj/main.c:284 msgid "Flag 'j' is deprecated and will be removed in a future release. Please use format=proj4 instead." msgstr "" -#: ../general/g.proj/main.c:292 +#: ../general/g.proj/main.c:293 msgid "Flag 'w' is deprecated and will be removed in a future release. Please use format=wkt instead." msgstr "" -#: ../general/g.proj/main.c:312 +#: ../general/g.proj/main.c:313 #, c-format msgid "Only one of '%s', '%s', '%s', '%s' or '%s' options may be specified" msgstr "" -#: ../general/g.proj/main.c:364 +#: ../general/g.proj/main.c:365 msgid "Projection files missing" msgstr "Projeksiyon dosyası kayıp" -#: ../general/g.proj/main.c:392 +#: ../general/g.proj/main.c:393 #, c-format msgid "No output format specified. Define one of the options: plain, shell, json, wkt, or proj4 using the -%c flag." msgstr "" -#: ../general/g.proj/main.c:397 +#: ../general/g.proj/main.c:398 #, c-format msgid "No output format specified. Define one of the options: plain, shell, json, or proj4 using the -%c flag." msgstr "" -#: ../general/g.proj/output.c:221 +#: ../general/g.proj/output.c:54 +#, fuzzy +#| msgid "Layer <%s> not available" +msgid "JSON output is not available." +msgstr "<%s> katmanı mevcut değil" + +#: ../general/g.proj/output.c:212 msgid "Unable to convert projection information to PROJ format" msgstr "" -#: ../general/g.proj/output.c:295 +#: ../general/g.proj/output.c:286 #, c-format msgid "Unable to create PROJ definition from srid <%s>" msgstr "" -#: ../general/g.proj/output.c:337 +#: ../general/g.proj/output.c:328 msgid "Unable to convert to WKT" msgstr "" +#: ../general/g.proj/output.c:433 +#, fuzzy +#| msgid "Unable to insert row: %s" +msgid "Unable to convert to PROJJSON" +msgstr "Satır girilemiyor: %s" + #: ../general/g.region/main.c:67 msgid "computational region" msgstr "" @@ -11494,10 +11505,10 @@ msgstr "" #: ../raster/r.grow.distance/main.c:392 ../raster/r.li/r.li.daemon/daemon.c:743 #: ../raster/r.mfilter/execute.c:82 ../raster/r.mfilter/execute.c:114 #: ../raster/r.mfilter/execute.c:165 ../raster/r.mfilter/getrow.c:24 -#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:786 -#: ../raster/r.path/main.c:822 ../raster/r.path/main.c:954 -#: ../raster/r.path/main.c:1073 ../raster/r.path/main.c:1103 -#: ../raster/r.path/main.c:1207 ../raster/r.thin/io.c:72 +#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:789 +#: ../raster/r.path/main.c:825 ../raster/r.path/main.c:957 +#: ../raster/r.path/main.c:1076 ../raster/r.path/main.c:1106 +#: ../raster/r.path/main.c:1210 ../raster/r.thin/io.c:72 #: ../raster/r.thin/io.c:82 ../raster3d/r3.in.v5d/v5d.c:1192 #: ../raster3d/r3.in.v5d/v5d.c:1443 ../raster3d/r3.in.v5d/v5d.c:1523 #: ../raster3d/r3.in.v5d/v5d.c:1848 ../raster3d/r3.in.v5d/v5d.c:1859 @@ -11523,9 +11534,9 @@ msgstr "" #: ../raster/r.clump/minsize.c:268 ../raster/r.clump/minsize.c:308 #: ../raster/r.clump/minsize.c:319 ../raster/r.clump/minsize.c:454 #: ../raster/r.clump/minsize.c:481 ../raster/r.clump/minsize.c:557 -#: ../raster/r.path/main.c:791 ../raster/r.path/main.c:827 -#: ../raster/r.path/main.c:962 ../raster/r.path/main.c:1078 -#: ../raster/r.path/main.c:1108 ../raster/r.path/main.c:1213 +#: ../raster/r.path/main.c:794 ../raster/r.path/main.c:830 +#: ../raster/r.path/main.c:965 ../raster/r.path/main.c:1081 +#: ../raster/r.path/main.c:1111 ../raster/r.path/main.c:1216 msgid "Unable to read from temp file" msgstr "" @@ -19867,7 +19878,7 @@ msgstr "" msgid "Starting point %d is outside the current region" msgstr "" -#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:375 +#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:378 #, c-format msgid "Starting vector map <%s> contains no points in the current region" msgstr "<%s> başlangıç vektör haritası geçerli bölgede hiç nokta içermiyor" @@ -19881,8 +19892,8 @@ msgid "Calculating flow directions..." msgstr "" #: ../raster/r.drain/main.c:485 ../raster/r.in.lidar/main.c:783 -#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:598 -#: ../raster/r.path/main.c:628 ../raster/r.viewshed/grass.cpp:621 +#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:601 +#: ../raster/r.path/main.c:631 ../raster/r.viewshed/grass.cpp:621 msgid "Writing output raster map..." msgstr "" @@ -20130,84 +20141,95 @@ msgstr "Seçilen (%d) bandı yok" msgid "Imagery group <%s> created" msgstr "" -#: ../raster/r.external/proj.c:51 ../raster/r.external/proj.c:93 -#: ../raster/r.in.gdal/proj.c:51 ../raster/r.in.gdal/proj.c:93 -#, c-format -msgid "" -"Input contains an invalid CRS. WKT definition:\n" -"%s" +#: ../raster/r.external/proj.c:36 ../raster/r.external/proj.c:63 +#: ../raster/r.external/proj.c:122 ../raster/r.in.gdal/proj.c:36 +#: ../raster/r.in.gdal/proj.c:63 ../raster/r.in.gdal/proj.c:122 +#: ../vector/v.external/proj.c:92 ../vector/v.external/proj.c:151 +#: ../vector/v.in.ogr/proj.c:162 ../vector/v.in.ogr/proj.c:221 +msgid "Can't get WKT parameter string" msgstr "" -#: ../raster/r.external/proj.c:120 ../raster/r.in.gdal/proj.c:120 +#: ../raster/r.external/proj.c:56 ../raster/r.in.gdal/proj.c:56 +#: ../vector/v.external/proj.c:85 ../vector/v.in.ogr/proj.c:155 +#, fuzzy +#| msgid "Input map contains no data" +msgid "Input contains an invalid CRS." +msgstr "Girdi harita veri içermiyor" + +#: ../raster/r.external/proj.c:66 ../raster/r.in.gdal/proj.c:66 +#: ../vector/v.external/proj.c:95 ../vector/v.in.ogr/proj.c:165 +#, fuzzy +msgid "WKT definition:" +msgstr "Konum" + +#: ../raster/r.external/proj.c:99 ../raster/r.in.gdal/proj.c:99 +#: ../vector/v.external/proj.c:128 ../vector/v.in.ogr/proj.c:198 msgid "No projection information available" msgstr "" -#: ../raster/r.external/proj.c:133 -msgid "Unable to convert input map coordinate reference system to GRASS format; cannot create new project." +#: ../raster/r.external/proj.c:114 ../raster/r.in.gdal/proj.c:114 +#: ../vector/v.external/proj.c:143 ../vector/v.in.ogr/proj.c:213 +msgid "Unable to convert input map projection to GRASS format; cannot create new project." msgstr "" -#: ../raster/r.external/proj.c:139 ../raster/r.in.gdal/main.c:1039 -#: ../raster/r.in.gdal/proj.c:138 ../vector/v.external/proj.c:171 -#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:305 +#: ../raster/r.external/proj.c:127 ../raster/r.in.gdal/main.c:1039 +#: ../raster/r.in.gdal/proj.c:127 ../vector/v.external/proj.c:156 +#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:226 #, fuzzy, c-format msgid "Unable to create new project <%s>" msgstr "<%s> raster haritası oluşturulamıyor" -#: ../raster/r.external/proj.c:165 ../raster/r.in.gdal/proj.c:164 -#: ../vector/v.external/proj.c:197 ../vector/v.in.ogr/proj.c:331 +#: ../raster/r.external/proj.c:157 ../raster/r.in.gdal/proj.c:157 +#: ../vector/v.external/proj.c:186 ../vector/v.in.ogr/proj.c:256 msgid "Unable to convert input map projection information to GRASS format." msgstr "" -#: ../raster/r.external/proj.c:192 ../raster/r.in.gdal/proj.c:192 +#: ../raster/r.external/proj.c:238 ../raster/r.in.gdal/proj.c:238 #: ../raster/r.in.lidar/projection.c:126 -#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:228 -#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:360 +#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:267 +#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:337 msgid "Over-riding projection check" msgstr "" -#: ../raster/r.external/proj.c:200 ../raster/r.in.gdal/proj.c:200 -#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 -#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.external/proj.c:236 -#: ../vector/v.in.lidar/projection.c:30 ../vector/v.in.ogr/proj.c:368 -msgid "" -"Coordinate reference system of dataset does not appear to match current project.\n" -"\n" -msgstr "" - -#: ../raster/r.external/proj.c:207 ../raster/r.external/proj.c:216 -#: ../raster/r.in.gdal/proj.c:207 ../raster/r.in.gdal/proj.c:216 -#: ../vector/v.external/proj.c:243 ../vector/v.external/proj.c:252 -#: ../vector/v.in.ogr/proj.c:375 ../vector/v.in.ogr/proj.c:384 +#: ../raster/r.external/proj.c:244 ../raster/r.in.gdal/proj.c:244 +#: ../vector/v.external/proj.c:273 ../vector/v.in.ogr/proj.c:343 #, fuzzy -msgid "Project PROJ_INFO is:\n" -msgstr "Mevki: PROJ_INFO:\n" +msgid "Coordinate reference system of dataset does not appear to match current project.\n" +msgstr "Girdi veri takımı ve geçerli mevkinin projeksiyonu eşleşiyor" -#: ../raster/r.external/proj.c:236 ../raster/r.external/proj.c:243 -#: ../raster/r.in.gdal/proj.c:236 ../raster/r.in.gdal/proj.c:243 -#: ../vector/v.external/proj.c:272 ../vector/v.external/proj.c:279 -#: ../vector/v.in.ogr/proj.c:404 ../vector/v.in.ogr/proj.c:411 -msgid "Dataset PROJ_INFO is:\n" +#: ../raster/r.external/proj.c:258 ../raster/r.in.gdal/proj.c:258 +#: ../vector/v.external/proj.c:287 ../vector/v.in.ogr/proj.c:357 +#, fuzzy +#| msgid "Dataset PROJ_INFO is:\n" +msgid "Dataset CRS is:\n" msgstr "Veri takımı PROJ_INFO su:\n" -#: ../raster/r.external/proj.c:324 ../raster/r.in.lidar/projection.c:89 -#: ../raster/r.in.pdal/projection.c:87 ../raster3d/r3.in.lidar/projection.c:90 -#: ../vector/v.external/proj.c:360 ../vector/v.in.lidar/projection.c:87 -#: ../vector/v.in.ogr/proj.c:492 ../vector/v.in.pdal/projection.c:87 +#: ../raster/r.external/proj.c:272 ../raster/r.in.gdal/proj.c:272 +#: ../vector/v.external/proj.c:301 ../vector/v.in.ogr/proj.c:371 +#, fuzzy +msgid "Project CRS is:\n" +msgstr "Mevki: PROJ_INFO:\n" + +#: ../raster/r.external/proj.c:286 ../raster/r.in.gdal/proj.c:286 +#: ../raster/r.in.lidar/projection.c:89 ../raster/r.in.pdal/projection.c:87 +#: ../raster3d/r3.in.lidar/projection.c:90 ../vector/v.external/proj.c:315 +#: ../vector/v.in.lidar/projection.c:87 ../vector/v.in.ogr/proj.c:385 +#: ../vector/v.in.pdal/projection.c:87 #, c-format msgid "" "\n" "In case of no significant differences in the coordinate reference system definitions, use the -o flag to ignore them and use current project definition.\n" msgstr "" -#: ../raster/r.external/proj.c:328 ../raster/r.in.gdal/proj.c:327 -#: ../vector/v.external/proj.c:364 ../vector/v.in.ogr/proj.c:496 +#: ../raster/r.external/proj.c:290 ../raster/r.in.gdal/proj.c:290 +#: ../vector/v.external/proj.c:319 ../vector/v.in.ogr/proj.c:389 msgid "Consider generating a new project from the input dataset using the 'project' parameter.\n" msgstr "" -#: ../raster/r.external/proj.c:348 ../raster/r.in.gdal/proj.c:347 +#: ../raster/r.external/proj.c:310 ../raster/r.in.gdal/proj.c:310 #: ../raster/r.in.lidar/projection.c:136 ../raster/r.in.pdal/projection.c:134 -#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:384 -#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:516 +#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:339 +#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:409 #, fuzzy msgid "Coordinate reference system of input dataset and current project appear to match" msgstr "Girdi veri takımı ve geçerli mevkinin projeksiyonu eşleşiyor" @@ -20820,7 +20842,7 @@ msgstr "" msgid "Region resolution shouldn't be lesser than map %s resolution. Run g.region raster=%s to set proper resolution" msgstr "" -#: ../raster/r.geomorphon/pattern.c:228 +#: ../raster/r.geomorphon/pattern.c:229 #, c-format msgid "Internal error in %s()" msgstr "" @@ -21790,8 +21812,7 @@ msgstr "" msgid "Error in %s (can't re-project GCP %i)" msgstr "" -#: ../raster/r.in.gdal/main.c:983 ../vector/v.external/proj.c:165 -#: ../vector/v.in.lidar/main.c:516 +#: ../raster/r.in.gdal/main.c:983 ../vector/v.in.lidar/main.c:516 msgid "Unable to convert input map CRS to GRASS format; cannot create new project." msgstr "" @@ -21845,16 +21866,6 @@ msgstr "" msgid "Unable to open file <%s>: %s." msgstr "" -#: ../raster/r.in.gdal/proj.c:132 ../vector/v.in.ogr/proj.c:299 -msgid "Unable to convert input map projection to GRASS format; cannot create new project." -msgstr "" - -#: ../raster/r.in.gdal/proj.c:323 -msgid "" -"\n" -"In case of no significant differences in the CRS definitions, use the -o flag to ignore them and use current project definition.\n" -msgstr "" - #: ../raster/r.in.gridatb/file_io.c:16 #, fuzzy, c-format #| msgid "Unable to open file <%s>" @@ -22216,6 +22227,13 @@ msgstr "" msgid "Unable to calculate trimmed mean without the trim option specified!" msgstr "" +#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 +#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.in.lidar/projection.c:30 +msgid "" +"Coordinate reference system of dataset does not appear to match current project.\n" +"\n" +msgstr "" + #: ../raster/r.in.lidar/projection.c:38 ../raster/r.in.pdal/projection.c:36 #: ../vector/v.in.lidar/projection.c:36 ../vector/v.in.pdal/projection.c:36 #, fuzzy @@ -25078,114 +25096,114 @@ msgstr "Arc tipi" msgid "Do not break lines (faster for single-direction bitmask encoding)" msgstr "" -#: ../raster/r.path/main.c:384 +#: ../raster/r.path/main.c:387 msgid "No start point(s) specified" msgstr "" -#: ../raster/r.path/main.c:394 +#: ../raster/r.path/main.c:397 #, c-format msgid "Reading raster values map <%s> ..." msgstr "" -#: ../raster/r.path/main.c:399 +#: ../raster/r.path/main.c:402 #, fuzzy, c-format #| msgid "Unable to open temporary file <%s>" msgid "Unable to open temporary file <%s>: %s" msgstr "<%s> geçici dosyası açılamıyor" -#: ../raster/r.path/main.c:411 ../raster/r.path/main.c:489 -#: ../raster/r.path/main.c:506 +#: ../raster/r.path/main.c:414 ../raster/r.path/main.c:492 +#: ../raster/r.path/main.c:509 msgid "Unable to write to tempfile" msgstr "" -#: ../raster/r.path/main.c:419 +#: ../raster/r.path/main.c:422 msgid "Unable to read range file" msgstr "Aralık dosyası okunamıyor" -#: ../raster/r.path/main.c:422 +#: ../raster/r.path/main.c:425 #, c-format msgid "Invalid directions map <%s>" msgstr "" -#: ../raster/r.path/main.c:427 +#: ../raster/r.path/main.c:430 msgid "Directional degrees can not be > 360" msgstr "" -#: ../raster/r.path/main.c:433 +#: ../raster/r.path/main.c:436 msgid "Directional degrees divided by 45 can not be > 8" msgstr "" -#: ../raster/r.path/main.c:438 +#: ../raster/r.path/main.c:441 #, c-format msgid "Bitmask encoded directions can not be > %d" msgstr "" -#: ../raster/r.path/main.c:445 +#: ../raster/r.path/main.c:448 msgid "Input direction format assumed to be degrees CCW from East divided by 45" msgstr "" -#: ../raster/r.path/main.c:450 +#: ../raster/r.path/main.c:453 msgid "Input direction format assumed to be bitmask encoded without Knight's move" msgstr "" -#: ../raster/r.path/main.c:456 +#: ../raster/r.path/main.c:459 msgid "Input direction format assumed to be degrees CCW from East" msgstr "" -#: ../raster/r.path/main.c:460 +#: ../raster/r.path/main.c:463 msgid "Input direction format assumed to be bitmask encoded with Knight's move" msgstr "" -#: ../raster/r.path/main.c:465 +#: ../raster/r.path/main.c:468 #, c-format msgid "Unable to detect format of input direction map <%s>" msgstr "" -#: ../raster/r.path/main.c:469 +#: ../raster/r.path/main.c:472 #, c-format msgid "Invalid directions format '%s'" msgstr "" -#: ../raster/r.path/main.c:471 +#: ../raster/r.path/main.c:474 #, c-format msgid "Reading direction map <%s> ..." msgstr "" -#: ../raster/r.path/main.c:525 +#: ../raster/r.path/main.c:528 msgid "Processing start points..." msgstr "" -#: ../raster/r.path/main.c:535 ../vector/v.buffer/main.c:410 +#: ../raster/r.path/main.c:538 ../vector/v.buffer/main.c:410 #: ../vector/v.in.ogr/main.c:881 ../vector/v.overlay/main.c:237 #: ../vector/v.voronoi/main.c:215 msgid "Unable to create temporary vector map" msgstr "" -#: ../raster/r.path/main.c:541 ../raster/r.path/main.c:557 +#: ../raster/r.path/main.c:544 ../raster/r.path/main.c:560 #, c-format msgid "No path at row %d, col %d" msgstr "" -#: ../raster/r.path/main.c:546 ../vector/v.overlay/area_area.c:134 +#: ../raster/r.path/main.c:549 ../vector/v.overlay/area_area.c:134 #: ../vector/v.overlay/line_area.c:255 msgid "Breaking lines..." msgstr "Çizgiler kırılıyor..." -#: ../raster/r.path/main.c:684 +#: ../raster/r.path/main.c:687 msgid "Unable to increase point list" msgstr "" -#: ../raster/r.path/main.c:887 +#: ../raster/r.path/main.c:890 #, c-format msgid "No path from row %d, col %d" msgstr "" -#: ../raster/r.path/main.c:901 +#: ../raster/r.path/main.c:904 #, c-format msgid "Invalid direction %d" msgstr "" -#: ../raster/r.path/main.c:999 +#: ../raster/r.path/main.c:1002 msgid "Path is leaving the current region" msgstr "" @@ -38766,39 +38784,17 @@ msgstr "" msgid "Link to vector map <%s> created." msgstr "" -#: ../vector/v.external/proj.c:35 ../vector/v.in.ogr/main.c:741 -#: ../vector/v.in.ogr/proj.c:36 +#: ../vector/v.external/proj.c:34 ../vector/v.in.ogr/main.c:741 +#: ../vector/v.in.ogr/proj.c:34 #, c-format msgid "Geometry column <%s> not found in input layer <%s>" msgstr "" -#: ../vector/v.external/proj.c:49 ../vector/v.in.ogr/proj.c:50 -msgid "Unable to convert input layer projection information to GRASS format for checking" -msgstr "" - -#: ../vector/v.external/proj.c:55 ../vector/v.external/proj.c:85 -#: ../vector/v.in.ogr/proj.c:56 ../vector/v.in.ogr/proj.c:86 -msgid "Can't get WKT parameter string" -msgstr "" - -#: ../vector/v.external/proj.c:58 ../vector/v.external/proj.c:88 -#: ../vector/v.in.ogr/proj.c:59 ../vector/v.in.ogr/proj.c:89 -#, c-format -msgid "" -"WKT definition:\n" -"%s" -msgstr "" - -#: ../vector/v.external/proj.c:69 ../vector/v.in.ogr/proj.c:70 +#: ../vector/v.external/proj.c:46 ../vector/v.in.ogr/proj.c:46 #, c-format msgid "No projection information available for layer <%s>" msgstr "" -#: ../vector/v.external/proj.c:78 ../vector/v.in.ogr/proj.c:79 -#, c-format -msgid "Projection for layer <%s> does not contain a valid CRS" -msgstr "" - #: ../vector/v.extract/extract.c:202 #, c-format msgid "No category found for area %d. Skipping." @@ -40561,16 +40557,16 @@ msgstr "" msgid "The spatial filter does not overlap with OGR layer <%s>. Nothing to import." msgstr "" -#: ../vector/v.in.ogr/proj.c:168 +#: ../vector/v.in.ogr/proj.c:85 msgid "Layer projections are unreadable" msgstr "" -#: ../vector/v.in.ogr/proj.c:184 +#: ../vector/v.in.ogr/proj.c:93 #, c-format msgid "Projection for layer <%s> is unreadable" msgstr "" -#: ../vector/v.in.ogr/proj.c:236 +#: ../vector/v.in.ogr/proj.c:113 #, c-format msgid "Projection of layer <%s> is different from projection of layer <%s>" msgstr "" @@ -48066,14 +48062,6 @@ msgstr "" msgid "Image file" msgstr "Görüntü dosyası" -#, fuzzy, c-format -#~| msgid "Unable to insert row: %s" -#~ msgid "Unable to seek: %s" -#~ msgstr "Satır girilemiyor: %s" - -#~ msgid "Use -M or -s, not both" -#~ msgstr "-M veya -s flamasını seçin, ikisini birden değil" - #~ msgid " seed is set to %d" #~ msgstr "kaynak %d ye ayarlandı" @@ -52466,6 +52454,11 @@ msgstr "Görüntü dosyası" #~ msgid "Unable to guess site_list format" #~ msgstr "Nokta_listasi biçimini tahminde hata" +#, fuzzy, c-format +#~| msgid "Unable to insert row: %s" +#~ msgid "Unable to seek: %s" +#~ msgstr "Satır girilemiyor: %s" + #, fuzzy #~ msgid "Unacceptable conditions for Designated Fill" #~ msgstr "Doku dosyası açılamıyor" @@ -52516,6 +52509,9 @@ msgstr "Görüntü dosyası" #~ msgid "Uploads values of multiple rasters at positions of vector points to the table." #~ msgstr "Vektör noktaların bulunduğu konumdaki raster harita değerlerini tabloya yükler." +#~ msgid "Use -M or -s, not both" +#~ msgstr "-M veya -s flamasını seçin, ikisini birden değil" + #, fuzzy #~ msgid "Use a random seed" #~ msgstr "Yeni raster harita için başlık" @@ -53136,10 +53132,6 @@ msgstr "Görüntü dosyası" #~ msgid "trendline width" #~ msgstr "Vektör çizgi genişliği" -#, fuzzy -#~ msgid "uri destination" -#~ msgstr "Konum" - #, fuzzy #~ msgid "validation" #~ msgstr "Mevki: %s\n" diff --git a/locale/po/grassmods_uk.po b/locale/po/grassmods_uk.po index 3cbdd324b05..df4b60a2e05 100644 --- a/locale/po/grassmods_uk.po +++ b/locale/po/grassmods_uk.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: grasslibs_uk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-07-26 01:37+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Ukrainian \n" @@ -176,7 +176,7 @@ msgstr "" #: ../general/g.proj/main.c:90 ../general/g.proj/main.c:99 #: ../general/g.proj/main.c:105 ../general/g.proj/main.c:114 #: ../general/g.proj/main.c:126 ../general/g.proj/main.c:135 -#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:244 +#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:245 #: ../general/g.region/main.c:91 ../general/g.region/main.c:97 #: ../general/g.region/main.c:102 ../general/g.region/main.c:108 #: ../general/g.region/main.c:113 ../general/g.region/main.c:118 @@ -302,13 +302,12 @@ msgstr "" #: ../db/db.connect/main.c:144 ../general/g.findfile/main.c:187 #: ../general/g.list/list.c:122 ../general/g.mapset/main.c:119 -#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:54 -#: ../general/g.proj/output.c:360 ../general/g.region/main.c:471 -#: ../general/g.version/main.c:140 ../misc/m.measure/main.c:87 -#: ../raster/r.describe/dumplist.c:38 ../raster/r.distance/report.c:211 -#: ../raster/r.distance/report.c:218 ../raster/r.distance/report.c:225 -#: ../raster/r.info/main.c:147 ../raster/r.proj/main.c:487 -#: ../raster/r.regression.line/main.c:101 +#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:351 +#: ../general/g.region/main.c:471 ../general/g.version/main.c:140 +#: ../misc/m.measure/main.c:87 ../raster/r.describe/dumplist.c:38 +#: ../raster/r.distance/report.c:211 ../raster/r.distance/report.c:218 +#: ../raster/r.distance/report.c:225 ../raster/r.info/main.c:147 +#: ../raster/r.proj/main.c:487 ../raster/r.regression.line/main.c:101 #: ../raster/r.regression.multi/main.c:197 #: ../raster/r.regression.multi/main.c:566 #: ../raster/r.stats.quantile/main.c:430 ../raster/r.stats.quantile/main.c:447 @@ -327,7 +326,7 @@ msgstr "" msgid "Failed to initialize JSON object. Out of memory?" msgstr "" -#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:277 +#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:278 #: ../general/g.region/main.c:427 ../general/g.version/main.c:153 #: ../imagery/i.group/main.c:137 ../misc/m.measure/main.c:100 #: ../raster/r.proj/main.c:270 ../raster/r.regression.line/main.c:114 @@ -481,7 +480,7 @@ msgstr "" msgid "Lists all databases for a given driver and location." msgstr "" -#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:383 +#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:374 #: ../general/g.region/main.c:990 ../general/g.version/main.c:409 #: ../imagery/i.group/main.c:301 ../raster/r.category/main.c:412 #: ../raster/r.describe/dumplist.c:71 ../raster/r.info/main.c:1000 @@ -6463,10 +6462,10 @@ msgstr "" msgid "Converts between PPM/PGM and PNG image formats." msgstr "" -#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:141 -#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:140 -#: ../vector/v.external/proj.c:173 ../vector/v.in.lidar/main.c:525 -#: ../vector/v.in.ogr/proj.c:307 +#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:129 +#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:129 +#: ../vector/v.external/proj.c:158 ../vector/v.in.lidar/main.c:525 +#: ../vector/v.in.ogr/proj.c:228 #, c-format msgid "Project <%s> created" msgstr "" @@ -6771,55 +6770,63 @@ msgstr "" msgid "Name of new project (location) to create" msgstr "" -#: ../general/g.proj/main.c:239 -msgid "plain;Human readable text output;shell;shell script style text output;json;JSON (JavaScript Object Notation);wkt;Well-known text output;proj4;PROJ.4 style text output;" +#: ../general/g.proj/main.c:240 +msgid "plain;Human readable text output;shell;shell script style text output;wkt;Well-known text output;projjson;JSON (JavaScript Object Notation) version of WKT;proj4;PROJ.4 style text output;" msgstr "" -#: ../general/g.proj/main.c:271 ../vector/v.what.rast/main.c:159 +#: ../general/g.proj/main.c:272 ../vector/v.what.rast/main.c:159 #, c-format msgid "The format option can only be used with -%c flag" msgstr "" -#: ../general/g.proj/main.c:283 +#: ../general/g.proj/main.c:284 msgid "Flag 'j' is deprecated and will be removed in a future release. Please use format=proj4 instead." msgstr "" -#: ../general/g.proj/main.c:292 +#: ../general/g.proj/main.c:293 msgid "Flag 'w' is deprecated and will be removed in a future release. Please use format=wkt instead." msgstr "" -#: ../general/g.proj/main.c:312 +#: ../general/g.proj/main.c:313 #, c-format msgid "Only one of '%s', '%s', '%s', '%s' or '%s' options may be specified" msgstr "" -#: ../general/g.proj/main.c:364 +#: ../general/g.proj/main.c:365 msgid "Projection files missing" msgstr "" -#: ../general/g.proj/main.c:392 +#: ../general/g.proj/main.c:393 #, c-format msgid "No output format specified. Define one of the options: plain, shell, json, wkt, or proj4 using the -%c flag." msgstr "" -#: ../general/g.proj/main.c:397 +#: ../general/g.proj/main.c:398 #, c-format msgid "No output format specified. Define one of the options: plain, shell, json, or proj4 using the -%c flag." msgstr "" -#: ../general/g.proj/output.c:221 +#: ../general/g.proj/output.c:54 +msgid "JSON output is not available." +msgstr "" + +#: ../general/g.proj/output.c:212 msgid "Unable to convert projection information to PROJ format" msgstr "" -#: ../general/g.proj/output.c:295 +#: ../general/g.proj/output.c:286 #, c-format msgid "Unable to create PROJ definition from srid <%s>" msgstr "" -#: ../general/g.proj/output.c:337 +#: ../general/g.proj/output.c:328 msgid "Unable to convert to WKT" msgstr "" +#: ../general/g.proj/output.c:433 +msgid "Unable to convert to PROJJSON" +msgstr "" + #: ../general/g.region/main.c:67 msgid "computational region" msgstr "" @@ -11438,10 +11445,10 @@ msgstr "" #: ../raster/r.grow.distance/main.c:392 ../raster/r.li/r.li.daemon/daemon.c:743 #: ../raster/r.mfilter/execute.c:82 ../raster/r.mfilter/execute.c:114 #: ../raster/r.mfilter/execute.c:165 ../raster/r.mfilter/getrow.c:24 -#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:786 -#: ../raster/r.path/main.c:822 ../raster/r.path/main.c:954 -#: ../raster/r.path/main.c:1073 ../raster/r.path/main.c:1103 -#: ../raster/r.path/main.c:1207 ../raster/r.thin/io.c:72 +#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:789 +#: ../raster/r.path/main.c:825 ../raster/r.path/main.c:957 +#: ../raster/r.path/main.c:1076 ../raster/r.path/main.c:1106 +#: ../raster/r.path/main.c:1210 ../raster/r.thin/io.c:72 #: ../raster/r.thin/io.c:82 ../raster3d/r3.in.v5d/v5d.c:1192 #: ../raster3d/r3.in.v5d/v5d.c:1443 ../raster3d/r3.in.v5d/v5d.c:1523 #: ../raster3d/r3.in.v5d/v5d.c:1848 ../raster3d/r3.in.v5d/v5d.c:1859 @@ -11466,9 +11473,9 @@ msgstr "" #: ../raster/r.clump/minsize.c:268 ../raster/r.clump/minsize.c:308 #: ../raster/r.clump/minsize.c:319 ../raster/r.clump/minsize.c:454 #: ../raster/r.clump/minsize.c:481 ../raster/r.clump/minsize.c:557 -#: ../raster/r.path/main.c:791 ../raster/r.path/main.c:827 -#: ../raster/r.path/main.c:962 ../raster/r.path/main.c:1078 -#: ../raster/r.path/main.c:1108 ../raster/r.path/main.c:1213 +#: ../raster/r.path/main.c:794 ../raster/r.path/main.c:830 +#: ../raster/r.path/main.c:965 ../raster/r.path/main.c:1081 +#: ../raster/r.path/main.c:1111 ../raster/r.path/main.c:1216 msgid "Unable to read from temp file" msgstr "" @@ -19763,7 +19770,7 @@ msgstr "" msgid "Starting point %d is outside the current region" msgstr "" -#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:375 +#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:378 #, c-format msgid "Starting vector map <%s> contains no points in the current region" msgstr "" @@ -19777,8 +19784,8 @@ msgid "Calculating flow directions..." msgstr "" #: ../raster/r.drain/main.c:485 ../raster/r.in.lidar/main.c:783 -#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:598 -#: ../raster/r.path/main.c:628 ../raster/r.viewshed/grass.cpp:621 +#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:601 +#: ../raster/r.path/main.c:631 ../raster/r.viewshed/grass.cpp:621 msgid "Writing output raster map..." msgstr "" @@ -20026,83 +20033,88 @@ msgstr "" msgid "Imagery group <%s> created" msgstr "" -#: ../raster/r.external/proj.c:51 ../raster/r.external/proj.c:93 -#: ../raster/r.in.gdal/proj.c:51 ../raster/r.in.gdal/proj.c:93 -#, c-format -msgid "" -"Input contains an invalid CRS. WKT definition:\n" -"%s" +#: ../raster/r.external/proj.c:36 ../raster/r.external/proj.c:63 +#: ../raster/r.external/proj.c:122 ../raster/r.in.gdal/proj.c:36 +#: ../raster/r.in.gdal/proj.c:63 ../raster/r.in.gdal/proj.c:122 +#: ../vector/v.external/proj.c:92 ../vector/v.external/proj.c:151 +#: ../vector/v.in.ogr/proj.c:162 ../vector/v.in.ogr/proj.c:221 +msgid "Can't get WKT parameter string" +msgstr "" + +#: ../raster/r.external/proj.c:56 ../raster/r.in.gdal/proj.c:56 +#: ../vector/v.external/proj.c:85 ../vector/v.in.ogr/proj.c:155 +msgid "Input contains an invalid CRS." +msgstr "" + +#: ../raster/r.external/proj.c:66 ../raster/r.in.gdal/proj.c:66 +#: ../vector/v.external/proj.c:95 ../vector/v.in.ogr/proj.c:165 +msgid "WKT definition:" msgstr "" -#: ../raster/r.external/proj.c:120 ../raster/r.in.gdal/proj.c:120 +#: ../raster/r.external/proj.c:99 ../raster/r.in.gdal/proj.c:99 +#: ../vector/v.external/proj.c:128 ../vector/v.in.ogr/proj.c:198 msgid "No projection information available" msgstr "" -#: ../raster/r.external/proj.c:133 -msgid "Unable to convert input map coordinate reference system to GRASS format; cannot create new project." +#: ../raster/r.external/proj.c:114 ../raster/r.in.gdal/proj.c:114 +#: ../vector/v.external/proj.c:143 ../vector/v.in.ogr/proj.c:213 +msgid "Unable to convert input map projection to GRASS format; cannot create new project." msgstr "" -#: ../raster/r.external/proj.c:139 ../raster/r.in.gdal/main.c:1039 -#: ../raster/r.in.gdal/proj.c:138 ../vector/v.external/proj.c:171 -#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:305 +#: ../raster/r.external/proj.c:127 ../raster/r.in.gdal/main.c:1039 +#: ../raster/r.in.gdal/proj.c:127 ../vector/v.external/proj.c:156 +#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:226 #, c-format msgid "Unable to create new project <%s>" msgstr "" -#: ../raster/r.external/proj.c:165 ../raster/r.in.gdal/proj.c:164 -#: ../vector/v.external/proj.c:197 ../vector/v.in.ogr/proj.c:331 +#: ../raster/r.external/proj.c:157 ../raster/r.in.gdal/proj.c:157 +#: ../vector/v.external/proj.c:186 ../vector/v.in.ogr/proj.c:256 msgid "Unable to convert input map projection information to GRASS format." msgstr "" -#: ../raster/r.external/proj.c:192 ../raster/r.in.gdal/proj.c:192 +#: ../raster/r.external/proj.c:238 ../raster/r.in.gdal/proj.c:238 #: ../raster/r.in.lidar/projection.c:126 -#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:228 -#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:360 +#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:267 +#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:337 msgid "Over-riding projection check" msgstr "" -#: ../raster/r.external/proj.c:200 ../raster/r.in.gdal/proj.c:200 -#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 -#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.external/proj.c:236 -#: ../vector/v.in.lidar/projection.c:30 ../vector/v.in.ogr/proj.c:368 -msgid "" -"Coordinate reference system of dataset does not appear to match current project.\n" -"\n" +#: ../raster/r.external/proj.c:244 ../raster/r.in.gdal/proj.c:244 +#: ../vector/v.external/proj.c:273 ../vector/v.in.ogr/proj.c:343 +msgid "Coordinate reference system of dataset does not appear to match current project.\n" msgstr "" -#: ../raster/r.external/proj.c:207 ../raster/r.external/proj.c:216 -#: ../raster/r.in.gdal/proj.c:207 ../raster/r.in.gdal/proj.c:216 -#: ../vector/v.external/proj.c:243 ../vector/v.external/proj.c:252 -#: ../vector/v.in.ogr/proj.c:375 ../vector/v.in.ogr/proj.c:384 -msgid "Project PROJ_INFO is:\n" +#: ../raster/r.external/proj.c:258 ../raster/r.in.gdal/proj.c:258 +#: ../vector/v.external/proj.c:287 ../vector/v.in.ogr/proj.c:357 +msgid "Dataset CRS is:\n" msgstr "" -#: ../raster/r.external/proj.c:236 ../raster/r.external/proj.c:243 -#: ../raster/r.in.gdal/proj.c:236 ../raster/r.in.gdal/proj.c:243 -#: ../vector/v.external/proj.c:272 ../vector/v.external/proj.c:279 -#: ../vector/v.in.ogr/proj.c:404 ../vector/v.in.ogr/proj.c:411 -msgid "Dataset PROJ_INFO is:\n" +#: ../raster/r.external/proj.c:272 ../raster/r.in.gdal/proj.c:272 +#: ../vector/v.external/proj.c:301 ../vector/v.in.ogr/proj.c:371 +msgid "Project CRS is:\n" msgstr "" -#: ../raster/r.external/proj.c:324 ../raster/r.in.lidar/projection.c:89 -#: ../raster/r.in.pdal/projection.c:87 ../raster3d/r3.in.lidar/projection.c:90 -#: ../vector/v.external/proj.c:360 ../vector/v.in.lidar/projection.c:87 -#: ../vector/v.in.ogr/proj.c:492 ../vector/v.in.pdal/projection.c:87 +#: ../raster/r.external/proj.c:286 ../raster/r.in.gdal/proj.c:286 +#: ../raster/r.in.lidar/projection.c:89 ../raster/r.in.pdal/projection.c:87 +#: ../raster3d/r3.in.lidar/projection.c:90 ../vector/v.external/proj.c:315 +#: ../vector/v.in.lidar/projection.c:87 ../vector/v.in.ogr/proj.c:385 +#: ../vector/v.in.pdal/projection.c:87 #, c-format msgid "" "\n" "In case of no significant differences in the coordinate reference system definitions, use the -o flag to ignore them and use current project definition.\n" msgstr "" -#: ../raster/r.external/proj.c:328 ../raster/r.in.gdal/proj.c:327 -#: ../vector/v.external/proj.c:364 ../vector/v.in.ogr/proj.c:496 +#: ../raster/r.external/proj.c:290 ../raster/r.in.gdal/proj.c:290 +#: ../vector/v.external/proj.c:319 ../vector/v.in.ogr/proj.c:389 msgid "Consider generating a new project from the input dataset using the 'project' parameter.\n" msgstr "" -#: ../raster/r.external/proj.c:348 ../raster/r.in.gdal/proj.c:347 +#: ../raster/r.external/proj.c:310 ../raster/r.in.gdal/proj.c:310 #: ../raster/r.in.lidar/projection.c:136 ../raster/r.in.pdal/projection.c:134 -#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:384 -#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:516 +#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:339 +#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:409 msgid "Coordinate reference system of input dataset and current project appear to match" msgstr "" @@ -20712,7 +20724,7 @@ msgstr "" msgid "Region resolution shouldn't be lesser than map %s resolution. Run g.region raster=%s to set proper resolution" msgstr "" -#: ../raster/r.geomorphon/pattern.c:228 +#: ../raster/r.geomorphon/pattern.c:229 #, c-format msgid "Internal error in %s()" msgstr "" @@ -21675,8 +21687,7 @@ msgstr "" msgid "Error in %s (can't re-project GCP %i)" msgstr "" -#: ../raster/r.in.gdal/main.c:983 ../vector/v.external/proj.c:165 -#: ../vector/v.in.lidar/main.c:516 +#: ../raster/r.in.gdal/main.c:983 ../vector/v.in.lidar/main.c:516 msgid "Unable to convert input map CRS to GRASS format; cannot create new project." msgstr "" @@ -21727,16 +21738,6 @@ msgstr "" msgid "Unable to open file <%s>: %s." msgstr "" -#: ../raster/r.in.gdal/proj.c:132 ../vector/v.in.ogr/proj.c:299 -msgid "Unable to convert input map projection to GRASS format; cannot create new project." -msgstr "" - -#: ../raster/r.in.gdal/proj.c:323 -msgid "" -"\n" -"In case of no significant differences in the CRS definitions, use the -o flag to ignore them and use current project definition.\n" -msgstr "" - #: ../raster/r.in.gridatb/file_io.c:16 #, c-format msgid "Unable to open file: %s" @@ -22097,6 +22098,13 @@ msgstr "" msgid "Unable to calculate trimmed mean without the trim option specified!" msgstr "" +#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 +#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.in.lidar/projection.c:30 +msgid "" +"Coordinate reference system of dataset does not appear to match current project.\n" +"\n" +msgstr "" + #: ../raster/r.in.lidar/projection.c:38 ../raster/r.in.pdal/projection.c:36 #: ../vector/v.in.lidar/projection.c:36 ../vector/v.in.pdal/projection.c:36 msgid "GRASS project PROJ_INFO is:\n" @@ -24921,113 +24929,113 @@ msgstr "" msgid "Do not break lines (faster for single-direction bitmask encoding)" msgstr "" -#: ../raster/r.path/main.c:384 +#: ../raster/r.path/main.c:387 msgid "No start point(s) specified" msgstr "" -#: ../raster/r.path/main.c:394 +#: ../raster/r.path/main.c:397 #, c-format msgid "Reading raster values map <%s> ..." msgstr "" -#: ../raster/r.path/main.c:399 +#: ../raster/r.path/main.c:402 #, c-format msgid "Unable to open temporary file <%s>: %s" msgstr "" -#: ../raster/r.path/main.c:411 ../raster/r.path/main.c:489 -#: ../raster/r.path/main.c:506 +#: ../raster/r.path/main.c:414 ../raster/r.path/main.c:492 +#: ../raster/r.path/main.c:509 msgid "Unable to write to tempfile" msgstr "" -#: ../raster/r.path/main.c:419 +#: ../raster/r.path/main.c:422 msgid "Unable to read range file" msgstr "" -#: ../raster/r.path/main.c:422 +#: ../raster/r.path/main.c:425 #, c-format msgid "Invalid directions map <%s>" msgstr "" -#: ../raster/r.path/main.c:427 +#: ../raster/r.path/main.c:430 msgid "Directional degrees can not be > 360" msgstr "" -#: ../raster/r.path/main.c:433 +#: ../raster/r.path/main.c:436 msgid "Directional degrees divided by 45 can not be > 8" msgstr "" -#: ../raster/r.path/main.c:438 +#: ../raster/r.path/main.c:441 #, c-format msgid "Bitmask encoded directions can not be > %d" msgstr "" -#: ../raster/r.path/main.c:445 +#: ../raster/r.path/main.c:448 msgid "Input direction format assumed to be degrees CCW from East divided by 45" msgstr "" -#: ../raster/r.path/main.c:450 +#: ../raster/r.path/main.c:453 msgid "Input direction format assumed to be bitmask encoded without Knight's move" msgstr "" -#: ../raster/r.path/main.c:456 +#: ../raster/r.path/main.c:459 msgid "Input direction format assumed to be degrees CCW from East" msgstr "" -#: ../raster/r.path/main.c:460 +#: ../raster/r.path/main.c:463 msgid "Input direction format assumed to be bitmask encoded with Knight's move" msgstr "" -#: ../raster/r.path/main.c:465 +#: ../raster/r.path/main.c:468 #, c-format msgid "Unable to detect format of input direction map <%s>" msgstr "" -#: ../raster/r.path/main.c:469 +#: ../raster/r.path/main.c:472 #, c-format msgid "Invalid directions format '%s'" msgstr "" -#: ../raster/r.path/main.c:471 +#: ../raster/r.path/main.c:474 #, c-format msgid "Reading direction map <%s> ..." msgstr "" -#: ../raster/r.path/main.c:525 +#: ../raster/r.path/main.c:528 msgid "Processing start points..." msgstr "" -#: ../raster/r.path/main.c:535 ../vector/v.buffer/main.c:410 +#: ../raster/r.path/main.c:538 ../vector/v.buffer/main.c:410 #: ../vector/v.in.ogr/main.c:881 ../vector/v.overlay/main.c:237 #: ../vector/v.voronoi/main.c:215 msgid "Unable to create temporary vector map" msgstr "" -#: ../raster/r.path/main.c:541 ../raster/r.path/main.c:557 +#: ../raster/r.path/main.c:544 ../raster/r.path/main.c:560 #, c-format msgid "No path at row %d, col %d" msgstr "" -#: ../raster/r.path/main.c:546 ../vector/v.overlay/area_area.c:134 +#: ../raster/r.path/main.c:549 ../vector/v.overlay/area_area.c:134 #: ../vector/v.overlay/line_area.c:255 msgid "Breaking lines..." msgstr "" -#: ../raster/r.path/main.c:684 +#: ../raster/r.path/main.c:687 msgid "Unable to increase point list" msgstr "" -#: ../raster/r.path/main.c:887 +#: ../raster/r.path/main.c:890 #, c-format msgid "No path from row %d, col %d" msgstr "" -#: ../raster/r.path/main.c:901 +#: ../raster/r.path/main.c:904 #, c-format msgid "Invalid direction %d" msgstr "" -#: ../raster/r.path/main.c:999 +#: ../raster/r.path/main.c:1002 msgid "Path is leaving the current region" msgstr "" @@ -38586,39 +38594,17 @@ msgstr "" msgid "Link to vector map <%s> created." msgstr "" -#: ../vector/v.external/proj.c:35 ../vector/v.in.ogr/main.c:741 -#: ../vector/v.in.ogr/proj.c:36 +#: ../vector/v.external/proj.c:34 ../vector/v.in.ogr/main.c:741 +#: ../vector/v.in.ogr/proj.c:34 #, c-format msgid "Geometry column <%s> not found in input layer <%s>" msgstr "" -#: ../vector/v.external/proj.c:49 ../vector/v.in.ogr/proj.c:50 -msgid "Unable to convert input layer projection information to GRASS format for checking" -msgstr "" - -#: ../vector/v.external/proj.c:55 ../vector/v.external/proj.c:85 -#: ../vector/v.in.ogr/proj.c:56 ../vector/v.in.ogr/proj.c:86 -msgid "Can't get WKT parameter string" -msgstr "" - -#: ../vector/v.external/proj.c:58 ../vector/v.external/proj.c:88 -#: ../vector/v.in.ogr/proj.c:59 ../vector/v.in.ogr/proj.c:89 -#, c-format -msgid "" -"WKT definition:\n" -"%s" -msgstr "" - -#: ../vector/v.external/proj.c:69 ../vector/v.in.ogr/proj.c:70 +#: ../vector/v.external/proj.c:46 ../vector/v.in.ogr/proj.c:46 #, c-format msgid "No projection information available for layer <%s>" msgstr "" -#: ../vector/v.external/proj.c:78 ../vector/v.in.ogr/proj.c:79 -#, c-format -msgid "Projection for layer <%s> does not contain a valid CRS" -msgstr "" - #: ../vector/v.extract/extract.c:202 #, c-format msgid "No category found for area %d. Skipping." @@ -40385,16 +40371,16 @@ msgstr "" msgid "The spatial filter does not overlap with OGR layer <%s>. Nothing to import." msgstr "" -#: ../vector/v.in.ogr/proj.c:168 +#: ../vector/v.in.ogr/proj.c:85 msgid "Layer projections are unreadable" msgstr "" -#: ../vector/v.in.ogr/proj.c:184 +#: ../vector/v.in.ogr/proj.c:93 #, c-format msgid "Projection for layer <%s> is unreadable" msgstr "" -#: ../vector/v.in.ogr/proj.c:236 +#: ../vector/v.in.ogr/proj.c:113 #, c-format msgid "Projection of layer <%s> is different from projection of layer <%s>" msgstr "" diff --git a/locale/po/grassmods_vi.po b/locale/po/grassmods_vi.po index e42be6be7da..88d52a7b184 100644 --- a/locale/po/grassmods_vi.po +++ b/locale/po/grassmods_vi.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: grassmods_vi\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-07-26 01:37+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Vietnamese \n" @@ -177,7 +177,7 @@ msgstr "" #: ../general/g.proj/main.c:90 ../general/g.proj/main.c:99 #: ../general/g.proj/main.c:105 ../general/g.proj/main.c:114 #: ../general/g.proj/main.c:126 ../general/g.proj/main.c:135 -#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:244 +#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:245 #: ../general/g.region/main.c:91 ../general/g.region/main.c:97 #: ../general/g.region/main.c:102 ../general/g.region/main.c:108 #: ../general/g.region/main.c:113 ../general/g.region/main.c:118 @@ -304,13 +304,12 @@ msgstr "" #: ../db/db.connect/main.c:144 ../general/g.findfile/main.c:187 #: ../general/g.list/list.c:122 ../general/g.mapset/main.c:119 -#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:54 -#: ../general/g.proj/output.c:360 ../general/g.region/main.c:471 -#: ../general/g.version/main.c:140 ../misc/m.measure/main.c:87 -#: ../raster/r.describe/dumplist.c:38 ../raster/r.distance/report.c:211 -#: ../raster/r.distance/report.c:218 ../raster/r.distance/report.c:225 -#: ../raster/r.info/main.c:147 ../raster/r.proj/main.c:487 -#: ../raster/r.regression.line/main.c:101 +#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:351 +#: ../general/g.region/main.c:471 ../general/g.version/main.c:140 +#: ../misc/m.measure/main.c:87 ../raster/r.describe/dumplist.c:38 +#: ../raster/r.distance/report.c:211 ../raster/r.distance/report.c:218 +#: ../raster/r.distance/report.c:225 ../raster/r.info/main.c:147 +#: ../raster/r.proj/main.c:487 ../raster/r.regression.line/main.c:101 #: ../raster/r.regression.multi/main.c:197 #: ../raster/r.regression.multi/main.c:566 #: ../raster/r.stats.quantile/main.c:430 ../raster/r.stats.quantile/main.c:447 @@ -329,7 +328,7 @@ msgstr "" msgid "Failed to initialize JSON object. Out of memory?" msgstr "" -#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:277 +#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:278 #: ../general/g.region/main.c:427 ../general/g.version/main.c:153 #: ../imagery/i.group/main.c:137 ../misc/m.measure/main.c:100 #: ../raster/r.proj/main.c:270 ../raster/r.regression.line/main.c:114 @@ -483,7 +482,7 @@ msgstr "" msgid "Lists all databases for a given driver and location." msgstr "" -#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:383 +#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:374 #: ../general/g.region/main.c:990 ../general/g.version/main.c:409 #: ../imagery/i.group/main.c:301 ../raster/r.category/main.c:412 #: ../raster/r.describe/dumplist.c:71 ../raster/r.info/main.c:1000 @@ -6433,10 +6432,10 @@ msgstr "" msgid "Converts between PPM/PGM and PNG image formats." msgstr "" -#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:141 -#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:140 -#: ../vector/v.external/proj.c:173 ../vector/v.in.lidar/main.c:525 -#: ../vector/v.in.ogr/proj.c:307 +#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:129 +#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:129 +#: ../vector/v.external/proj.c:158 ../vector/v.in.lidar/main.c:525 +#: ../vector/v.in.ogr/proj.c:228 #, c-format msgid "Project <%s> created" msgstr "" @@ -6746,55 +6745,63 @@ msgstr "" msgid "Name of new project (location) to create" msgstr "Tên của bản đồ raster hướng đầu ra" -#: ../general/g.proj/main.c:239 -msgid "plain;Human readable text output;shell;shell script style text output;json;JSON (JavaScript Object Notation);wkt;Well-known text output;proj4;PROJ.4 style text output;" +#: ../general/g.proj/main.c:240 +msgid "plain;Human readable text output;shell;shell script style text output;wkt;Well-known text output;projjson;JSON (JavaScript Object Notation) version of WKT;proj4;PROJ.4 style text output;" msgstr "" -#: ../general/g.proj/main.c:271 ../vector/v.what.rast/main.c:159 +#: ../general/g.proj/main.c:272 ../vector/v.what.rast/main.c:159 #, c-format msgid "The format option can only be used with -%c flag" msgstr "" -#: ../general/g.proj/main.c:283 +#: ../general/g.proj/main.c:284 msgid "Flag 'j' is deprecated and will be removed in a future release. Please use format=proj4 instead." msgstr "" -#: ../general/g.proj/main.c:292 +#: ../general/g.proj/main.c:293 msgid "Flag 'w' is deprecated and will be removed in a future release. Please use format=wkt instead." msgstr "" -#: ../general/g.proj/main.c:312 +#: ../general/g.proj/main.c:313 #, c-format msgid "Only one of '%s', '%s', '%s', '%s' or '%s' options may be specified" msgstr "" -#: ../general/g.proj/main.c:364 +#: ../general/g.proj/main.c:365 msgid "Projection files missing" msgstr "" -#: ../general/g.proj/main.c:392 +#: ../general/g.proj/main.c:393 #, c-format msgid "No output format specified. Define one of the options: plain, shell, json, wkt, or proj4 using the -%c flag." msgstr "" -#: ../general/g.proj/main.c:397 +#: ../general/g.proj/main.c:398 #, c-format msgid "No output format specified. Define one of the options: plain, shell, json, or proj4 using the -%c flag." msgstr "" -#: ../general/g.proj/output.c:221 +#: ../general/g.proj/output.c:54 +msgid "JSON output is not available." +msgstr "" + +#: ../general/g.proj/output.c:212 msgid "Unable to convert projection information to PROJ format" msgstr "" -#: ../general/g.proj/output.c:295 +#: ../general/g.proj/output.c:286 #, c-format msgid "Unable to create PROJ definition from srid <%s>" msgstr "" -#: ../general/g.proj/output.c:337 +#: ../general/g.proj/output.c:328 msgid "Unable to convert to WKT" msgstr "" +#: ../general/g.proj/output.c:433 +msgid "Unable to convert to PROJJSON" +msgstr "" + #: ../general/g.region/main.c:67 msgid "computational region" msgstr "" @@ -11417,10 +11424,10 @@ msgstr "" #: ../raster/r.grow.distance/main.c:392 ../raster/r.li/r.li.daemon/daemon.c:743 #: ../raster/r.mfilter/execute.c:82 ../raster/r.mfilter/execute.c:114 #: ../raster/r.mfilter/execute.c:165 ../raster/r.mfilter/getrow.c:24 -#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:786 -#: ../raster/r.path/main.c:822 ../raster/r.path/main.c:954 -#: ../raster/r.path/main.c:1073 ../raster/r.path/main.c:1103 -#: ../raster/r.path/main.c:1207 ../raster/r.thin/io.c:72 +#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:789 +#: ../raster/r.path/main.c:825 ../raster/r.path/main.c:957 +#: ../raster/r.path/main.c:1076 ../raster/r.path/main.c:1106 +#: ../raster/r.path/main.c:1210 ../raster/r.thin/io.c:72 #: ../raster/r.thin/io.c:82 ../raster3d/r3.in.v5d/v5d.c:1192 #: ../raster3d/r3.in.v5d/v5d.c:1443 ../raster3d/r3.in.v5d/v5d.c:1523 #: ../raster3d/r3.in.v5d/v5d.c:1848 ../raster3d/r3.in.v5d/v5d.c:1859 @@ -11445,9 +11452,9 @@ msgstr "" #: ../raster/r.clump/minsize.c:268 ../raster/r.clump/minsize.c:308 #: ../raster/r.clump/minsize.c:319 ../raster/r.clump/minsize.c:454 #: ../raster/r.clump/minsize.c:481 ../raster/r.clump/minsize.c:557 -#: ../raster/r.path/main.c:791 ../raster/r.path/main.c:827 -#: ../raster/r.path/main.c:962 ../raster/r.path/main.c:1078 -#: ../raster/r.path/main.c:1108 ../raster/r.path/main.c:1213 +#: ../raster/r.path/main.c:794 ../raster/r.path/main.c:830 +#: ../raster/r.path/main.c:965 ../raster/r.path/main.c:1081 +#: ../raster/r.path/main.c:1111 ../raster/r.path/main.c:1216 msgid "Unable to read from temp file" msgstr "" @@ -19756,7 +19763,7 @@ msgstr "" msgid "Starting point %d is outside the current region" msgstr "" -#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:375 +#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:378 #, c-format msgid "Starting vector map <%s> contains no points in the current region" msgstr "" @@ -19770,8 +19777,8 @@ msgid "Calculating flow directions..." msgstr "" #: ../raster/r.drain/main.c:485 ../raster/r.in.lidar/main.c:783 -#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:598 -#: ../raster/r.path/main.c:628 ../raster/r.viewshed/grass.cpp:621 +#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:601 +#: ../raster/r.path/main.c:631 ../raster/r.viewshed/grass.cpp:621 msgid "Writing output raster map..." msgstr "" @@ -20019,83 +20026,89 @@ msgstr "" msgid "Imagery group <%s> created" msgstr "" -#: ../raster/r.external/proj.c:51 ../raster/r.external/proj.c:93 -#: ../raster/r.in.gdal/proj.c:51 ../raster/r.in.gdal/proj.c:93 -#, c-format -msgid "" -"Input contains an invalid CRS. WKT definition:\n" -"%s" +#: ../raster/r.external/proj.c:36 ../raster/r.external/proj.c:63 +#: ../raster/r.external/proj.c:122 ../raster/r.in.gdal/proj.c:36 +#: ../raster/r.in.gdal/proj.c:63 ../raster/r.in.gdal/proj.c:122 +#: ../vector/v.external/proj.c:92 ../vector/v.external/proj.c:151 +#: ../vector/v.in.ogr/proj.c:162 ../vector/v.in.ogr/proj.c:221 +msgid "Can't get WKT parameter string" msgstr "" -#: ../raster/r.external/proj.c:120 ../raster/r.in.gdal/proj.c:120 +#: ../raster/r.external/proj.c:56 ../raster/r.in.gdal/proj.c:56 +#: ../vector/v.external/proj.c:85 ../vector/v.in.ogr/proj.c:155 +msgid "Input contains an invalid CRS." +msgstr "" + +#: ../raster/r.external/proj.c:66 ../raster/r.in.gdal/proj.c:66 +#: ../vector/v.external/proj.c:95 ../vector/v.in.ogr/proj.c:165 +#, fuzzy +msgid "WKT definition:" +msgstr "Vị trí: %s\n" + +#: ../raster/r.external/proj.c:99 ../raster/r.in.gdal/proj.c:99 +#: ../vector/v.external/proj.c:128 ../vector/v.in.ogr/proj.c:198 msgid "No projection information available" msgstr "" -#: ../raster/r.external/proj.c:133 -msgid "Unable to convert input map coordinate reference system to GRASS format; cannot create new project." +#: ../raster/r.external/proj.c:114 ../raster/r.in.gdal/proj.c:114 +#: ../vector/v.external/proj.c:143 ../vector/v.in.ogr/proj.c:213 +msgid "Unable to convert input map projection to GRASS format; cannot create new project." msgstr "" -#: ../raster/r.external/proj.c:139 ../raster/r.in.gdal/main.c:1039 -#: ../raster/r.in.gdal/proj.c:138 ../vector/v.external/proj.c:171 -#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:305 +#: ../raster/r.external/proj.c:127 ../raster/r.in.gdal/main.c:1039 +#: ../raster/r.in.gdal/proj.c:127 ../vector/v.external/proj.c:156 +#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:226 #, fuzzy, c-format msgid "Unable to create new project <%s>" msgstr "Tập tin đầu vào" -#: ../raster/r.external/proj.c:165 ../raster/r.in.gdal/proj.c:164 -#: ../vector/v.external/proj.c:197 ../vector/v.in.ogr/proj.c:331 +#: ../raster/r.external/proj.c:157 ../raster/r.in.gdal/proj.c:157 +#: ../vector/v.external/proj.c:186 ../vector/v.in.ogr/proj.c:256 msgid "Unable to convert input map projection information to GRASS format." msgstr "" -#: ../raster/r.external/proj.c:192 ../raster/r.in.gdal/proj.c:192 +#: ../raster/r.external/proj.c:238 ../raster/r.in.gdal/proj.c:238 #: ../raster/r.in.lidar/projection.c:126 -#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:228 -#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:360 +#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:267 +#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:337 msgid "Over-riding projection check" msgstr "" -#: ../raster/r.external/proj.c:200 ../raster/r.in.gdal/proj.c:200 -#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 -#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.external/proj.c:236 -#: ../vector/v.in.lidar/projection.c:30 ../vector/v.in.ogr/proj.c:368 -msgid "" -"Coordinate reference system of dataset does not appear to match current project.\n" -"\n" +#: ../raster/r.external/proj.c:244 ../raster/r.in.gdal/proj.c:244 +#: ../vector/v.external/proj.c:273 ../vector/v.in.ogr/proj.c:343 +msgid "Coordinate reference system of dataset does not appear to match current project.\n" msgstr "" -#: ../raster/r.external/proj.c:207 ../raster/r.external/proj.c:216 -#: ../raster/r.in.gdal/proj.c:207 ../raster/r.in.gdal/proj.c:216 -#: ../vector/v.external/proj.c:243 ../vector/v.external/proj.c:252 -#: ../vector/v.in.ogr/proj.c:375 ../vector/v.in.ogr/proj.c:384 -msgid "Project PROJ_INFO is:\n" +#: ../raster/r.external/proj.c:258 ../raster/r.in.gdal/proj.c:258 +#: ../vector/v.external/proj.c:287 ../vector/v.in.ogr/proj.c:357 +msgid "Dataset CRS is:\n" msgstr "" -#: ../raster/r.external/proj.c:236 ../raster/r.external/proj.c:243 -#: ../raster/r.in.gdal/proj.c:236 ../raster/r.in.gdal/proj.c:243 -#: ../vector/v.external/proj.c:272 ../vector/v.external/proj.c:279 -#: ../vector/v.in.ogr/proj.c:404 ../vector/v.in.ogr/proj.c:411 -msgid "Dataset PROJ_INFO is:\n" +#: ../raster/r.external/proj.c:272 ../raster/r.in.gdal/proj.c:272 +#: ../vector/v.external/proj.c:301 ../vector/v.in.ogr/proj.c:371 +msgid "Project CRS is:\n" msgstr "" -#: ../raster/r.external/proj.c:324 ../raster/r.in.lidar/projection.c:89 -#: ../raster/r.in.pdal/projection.c:87 ../raster3d/r3.in.lidar/projection.c:90 -#: ../vector/v.external/proj.c:360 ../vector/v.in.lidar/projection.c:87 -#: ../vector/v.in.ogr/proj.c:492 ../vector/v.in.pdal/projection.c:87 +#: ../raster/r.external/proj.c:286 ../raster/r.in.gdal/proj.c:286 +#: ../raster/r.in.lidar/projection.c:89 ../raster/r.in.pdal/projection.c:87 +#: ../raster3d/r3.in.lidar/projection.c:90 ../vector/v.external/proj.c:315 +#: ../vector/v.in.lidar/projection.c:87 ../vector/v.in.ogr/proj.c:385 +#: ../vector/v.in.pdal/projection.c:87 #, c-format msgid "" "\n" "In case of no significant differences in the coordinate reference system definitions, use the -o flag to ignore them and use current project definition.\n" msgstr "" -#: ../raster/r.external/proj.c:328 ../raster/r.in.gdal/proj.c:327 -#: ../vector/v.external/proj.c:364 ../vector/v.in.ogr/proj.c:496 +#: ../raster/r.external/proj.c:290 ../raster/r.in.gdal/proj.c:290 +#: ../vector/v.external/proj.c:319 ../vector/v.in.ogr/proj.c:389 msgid "Consider generating a new project from the input dataset using the 'project' parameter.\n" msgstr "" -#: ../raster/r.external/proj.c:348 ../raster/r.in.gdal/proj.c:347 +#: ../raster/r.external/proj.c:310 ../raster/r.in.gdal/proj.c:310 #: ../raster/r.in.lidar/projection.c:136 ../raster/r.in.pdal/projection.c:134 -#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:384 -#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:516 +#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:339 +#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:409 msgid "Coordinate reference system of input dataset and current project appear to match" msgstr "" @@ -20702,7 +20715,7 @@ msgstr "" msgid "Region resolution shouldn't be lesser than map %s resolution. Run g.region raster=%s to set proper resolution" msgstr "" -#: ../raster/r.geomorphon/pattern.c:228 +#: ../raster/r.geomorphon/pattern.c:229 #, c-format msgid "Internal error in %s()" msgstr "" @@ -21669,8 +21682,7 @@ msgstr "" msgid "Error in %s (can't re-project GCP %i)" msgstr "" -#: ../raster/r.in.gdal/main.c:983 ../vector/v.external/proj.c:165 -#: ../vector/v.in.lidar/main.c:516 +#: ../raster/r.in.gdal/main.c:983 ../vector/v.in.lidar/main.c:516 msgid "Unable to convert input map CRS to GRASS format; cannot create new project." msgstr "" @@ -21721,16 +21733,6 @@ msgstr "" msgid "Unable to open file <%s>: %s." msgstr "" -#: ../raster/r.in.gdal/proj.c:132 ../vector/v.in.ogr/proj.c:299 -msgid "Unable to convert input map projection to GRASS format; cannot create new project." -msgstr "" - -#: ../raster/r.in.gdal/proj.c:323 -msgid "" -"\n" -"In case of no significant differences in the CRS definitions, use the -o flag to ignore them and use current project definition.\n" -msgstr "" - #: ../raster/r.in.gridatb/file_io.c:16 #, fuzzy, c-format msgid "Unable to open file: %s" @@ -22091,6 +22093,13 @@ msgstr "" msgid "Unable to calculate trimmed mean without the trim option specified!" msgstr "" +#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 +#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.in.lidar/projection.c:30 +msgid "" +"Coordinate reference system of dataset does not appear to match current project.\n" +"\n" +msgstr "" + #: ../raster/r.in.lidar/projection.c:38 ../raster/r.in.pdal/projection.c:36 #: ../vector/v.in.lidar/projection.c:36 ../vector/v.in.pdal/projection.c:36 msgid "GRASS project PROJ_INFO is:\n" @@ -24919,113 +24928,113 @@ msgstr "đọc bản đồ vùng vec-tơ" msgid "Do not break lines (faster for single-direction bitmask encoding)" msgstr "" -#: ../raster/r.path/main.c:384 +#: ../raster/r.path/main.c:387 msgid "No start point(s) specified" msgstr "" -#: ../raster/r.path/main.c:394 +#: ../raster/r.path/main.c:397 #, c-format msgid "Reading raster values map <%s> ..." msgstr "" -#: ../raster/r.path/main.c:399 +#: ../raster/r.path/main.c:402 #, fuzzy, c-format msgid "Unable to open temporary file <%s>: %s" msgstr "Không thể mở tập tin đầu ra <%s>." -#: ../raster/r.path/main.c:411 ../raster/r.path/main.c:489 -#: ../raster/r.path/main.c:506 +#: ../raster/r.path/main.c:414 ../raster/r.path/main.c:492 +#: ../raster/r.path/main.c:509 msgid "Unable to write to tempfile" msgstr "" -#: ../raster/r.path/main.c:419 +#: ../raster/r.path/main.c:422 msgid "Unable to read range file" msgstr "" -#: ../raster/r.path/main.c:422 +#: ../raster/r.path/main.c:425 #, c-format msgid "Invalid directions map <%s>" msgstr "" -#: ../raster/r.path/main.c:427 +#: ../raster/r.path/main.c:430 msgid "Directional degrees can not be > 360" msgstr "" -#: ../raster/r.path/main.c:433 +#: ../raster/r.path/main.c:436 msgid "Directional degrees divided by 45 can not be > 8" msgstr "" -#: ../raster/r.path/main.c:438 +#: ../raster/r.path/main.c:441 #, c-format msgid "Bitmask encoded directions can not be > %d" msgstr "" -#: ../raster/r.path/main.c:445 +#: ../raster/r.path/main.c:448 msgid "Input direction format assumed to be degrees CCW from East divided by 45" msgstr "" -#: ../raster/r.path/main.c:450 +#: ../raster/r.path/main.c:453 msgid "Input direction format assumed to be bitmask encoded without Knight's move" msgstr "" -#: ../raster/r.path/main.c:456 +#: ../raster/r.path/main.c:459 msgid "Input direction format assumed to be degrees CCW from East" msgstr "" -#: ../raster/r.path/main.c:460 +#: ../raster/r.path/main.c:463 msgid "Input direction format assumed to be bitmask encoded with Knight's move" msgstr "" -#: ../raster/r.path/main.c:465 +#: ../raster/r.path/main.c:468 #, c-format msgid "Unable to detect format of input direction map <%s>" msgstr "" -#: ../raster/r.path/main.c:469 +#: ../raster/r.path/main.c:472 #, c-format msgid "Invalid directions format '%s'" msgstr "" -#: ../raster/r.path/main.c:471 +#: ../raster/r.path/main.c:474 #, c-format msgid "Reading direction map <%s> ..." msgstr "" -#: ../raster/r.path/main.c:525 +#: ../raster/r.path/main.c:528 msgid "Processing start points..." msgstr "" -#: ../raster/r.path/main.c:535 ../vector/v.buffer/main.c:410 +#: ../raster/r.path/main.c:538 ../vector/v.buffer/main.c:410 #: ../vector/v.in.ogr/main.c:881 ../vector/v.overlay/main.c:237 #: ../vector/v.voronoi/main.c:215 msgid "Unable to create temporary vector map" msgstr "" -#: ../raster/r.path/main.c:541 ../raster/r.path/main.c:557 +#: ../raster/r.path/main.c:544 ../raster/r.path/main.c:560 #, c-format msgid "No path at row %d, col %d" msgstr "" -#: ../raster/r.path/main.c:546 ../vector/v.overlay/area_area.c:134 +#: ../raster/r.path/main.c:549 ../vector/v.overlay/area_area.c:134 #: ../vector/v.overlay/line_area.c:255 msgid "Breaking lines..." msgstr "" -#: ../raster/r.path/main.c:684 +#: ../raster/r.path/main.c:687 msgid "Unable to increase point list" msgstr "" -#: ../raster/r.path/main.c:887 +#: ../raster/r.path/main.c:890 #, c-format msgid "No path from row %d, col %d" msgstr "" -#: ../raster/r.path/main.c:901 +#: ../raster/r.path/main.c:904 #, c-format msgid "Invalid direction %d" msgstr "" -#: ../raster/r.path/main.c:999 +#: ../raster/r.path/main.c:1002 msgid "Path is leaving the current region" msgstr "" @@ -38504,39 +38513,17 @@ msgstr "" msgid "Link to vector map <%s> created." msgstr "" -#: ../vector/v.external/proj.c:35 ../vector/v.in.ogr/main.c:741 -#: ../vector/v.in.ogr/proj.c:36 +#: ../vector/v.external/proj.c:34 ../vector/v.in.ogr/main.c:741 +#: ../vector/v.in.ogr/proj.c:34 #, c-format msgid "Geometry column <%s> not found in input layer <%s>" msgstr "" -#: ../vector/v.external/proj.c:49 ../vector/v.in.ogr/proj.c:50 -msgid "Unable to convert input layer projection information to GRASS format for checking" -msgstr "" - -#: ../vector/v.external/proj.c:55 ../vector/v.external/proj.c:85 -#: ../vector/v.in.ogr/proj.c:56 ../vector/v.in.ogr/proj.c:86 -msgid "Can't get WKT parameter string" -msgstr "" - -#: ../vector/v.external/proj.c:58 ../vector/v.external/proj.c:88 -#: ../vector/v.in.ogr/proj.c:59 ../vector/v.in.ogr/proj.c:89 -#, c-format -msgid "" -"WKT definition:\n" -"%s" -msgstr "" - -#: ../vector/v.external/proj.c:69 ../vector/v.in.ogr/proj.c:70 +#: ../vector/v.external/proj.c:46 ../vector/v.in.ogr/proj.c:46 #, c-format msgid "No projection information available for layer <%s>" msgstr "" -#: ../vector/v.external/proj.c:78 ../vector/v.in.ogr/proj.c:79 -#, c-format -msgid "Projection for layer <%s> does not contain a valid CRS" -msgstr "" - #: ../vector/v.extract/extract.c:202 #, c-format msgid "No category found for area %d. Skipping." @@ -40293,16 +40280,16 @@ msgstr "" msgid "The spatial filter does not overlap with OGR layer <%s>. Nothing to import." msgstr "" -#: ../vector/v.in.ogr/proj.c:168 +#: ../vector/v.in.ogr/proj.c:85 msgid "Layer projections are unreadable" msgstr "" -#: ../vector/v.in.ogr/proj.c:184 +#: ../vector/v.in.ogr/proj.c:93 #, c-format msgid "Projection for layer <%s> is unreadable" msgstr "" -#: ../vector/v.in.ogr/proj.c:236 +#: ../vector/v.in.ogr/proj.c:113 #, c-format msgid "Projection of layer <%s> is different from projection of layer <%s>" msgstr "" @@ -47717,10 +47704,6 @@ msgstr "" msgid "Image file" msgstr "" -#, fuzzy, c-format -#~ msgid "Unable to seek: %s" -#~ msgstr "Tập tin đầu vào" - #~ msgid "" #~ "\n" #~ "%d classes, %.2f%% points stable\n" @@ -49946,6 +49929,10 @@ msgstr "" #~ msgid "Type of thematic display" #~ msgstr "Kiểu trình bày chủ đề" +#, fuzzy, c-format +#~ msgid "Unable to seek: %s" +#~ msgstr "Tập tin đầu vào" + #, fuzzy #~ msgid "Units for output areas" #~ msgstr "Tiền tố dùng cho (các) bản đồ raster đầu ra" @@ -50183,10 +50170,6 @@ msgstr "" #~ msgid "time series" #~ msgstr "địa điểm" -#, fuzzy -#~ msgid "uri destination" -#~ msgstr "Vị trí: %s\n" - #, fuzzy #~ msgid "validation" #~ msgstr "Vị trí: %s\n" diff --git a/locale/po/grassmods_zh.po b/locale/po/grassmods_zh.po index 753859a8bcc..19cb924d3ac 100644 --- a/locale/po/grassmods_zh.po +++ b/locale/po/grassmods_zh.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: grassmods_zh\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-07-26 01:37+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Chinese (Simplified) \n" @@ -176,7 +176,7 @@ msgstr "列出给出表的所有字段。" #: ../general/g.proj/main.c:90 ../general/g.proj/main.c:99 #: ../general/g.proj/main.c:105 ../general/g.proj/main.c:114 #: ../general/g.proj/main.c:126 ../general/g.proj/main.c:135 -#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:244 +#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:245 #: ../general/g.region/main.c:91 ../general/g.region/main.c:97 #: ../general/g.region/main.c:102 ../general/g.region/main.c:108 #: ../general/g.region/main.c:113 ../general/g.region/main.c:118 @@ -304,13 +304,12 @@ msgstr "" #: ../db/db.connect/main.c:144 ../general/g.findfile/main.c:187 #: ../general/g.list/list.c:122 ../general/g.mapset/main.c:119 -#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:54 -#: ../general/g.proj/output.c:360 ../general/g.region/main.c:471 -#: ../general/g.version/main.c:140 ../misc/m.measure/main.c:87 -#: ../raster/r.describe/dumplist.c:38 ../raster/r.distance/report.c:211 -#: ../raster/r.distance/report.c:218 ../raster/r.distance/report.c:225 -#: ../raster/r.info/main.c:147 ../raster/r.proj/main.c:487 -#: ../raster/r.regression.line/main.c:101 +#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:351 +#: ../general/g.region/main.c:471 ../general/g.version/main.c:140 +#: ../misc/m.measure/main.c:87 ../raster/r.describe/dumplist.c:38 +#: ../raster/r.distance/report.c:211 ../raster/r.distance/report.c:218 +#: ../raster/r.distance/report.c:225 ../raster/r.info/main.c:147 +#: ../raster/r.proj/main.c:487 ../raster/r.regression.line/main.c:101 #: ../raster/r.regression.multi/main.c:197 #: ../raster/r.regression.multi/main.c:566 #: ../raster/r.stats.quantile/main.c:430 ../raster/r.stats.quantile/main.c:447 @@ -329,7 +328,7 @@ msgstr "" msgid "Failed to initialize JSON object. Out of memory?" msgstr "" -#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:277 +#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:278 #: ../general/g.region/main.c:427 ../general/g.version/main.c:153 #: ../imagery/i.group/main.c:137 ../misc/m.measure/main.c:100 #: ../raster/r.proj/main.c:270 ../raster/r.regression.line/main.c:114 @@ -483,7 +482,7 @@ msgstr "" msgid "Lists all databases for a given driver and location." msgstr "" -#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:383 +#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:374 #: ../general/g.region/main.c:990 ../general/g.version/main.c:409 #: ../imagery/i.group/main.c:301 ../raster/r.category/main.c:412 #: ../raster/r.describe/dumplist.c:71 ../raster/r.info/main.c:1000 @@ -6441,10 +6440,10 @@ msgstr "" msgid "Converts between PPM/PGM and PNG image formats." msgstr "" -#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:141 -#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:140 -#: ../vector/v.external/proj.c:173 ../vector/v.in.lidar/main.c:525 -#: ../vector/v.in.ogr/proj.c:307 +#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:129 +#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:129 +#: ../vector/v.external/proj.c:158 ../vector/v.in.lidar/main.c:525 +#: ../vector/v.in.ogr/proj.c:228 #, fuzzy, c-format msgid "Project <%s> created" msgstr "未找到3D栅格图<%s>" @@ -6755,55 +6754,63 @@ msgstr "" msgid "Name of new project (location) to create" msgstr "将要创建的新区域的名称" -#: ../general/g.proj/main.c:239 -msgid "plain;Human readable text output;shell;shell script style text output;json;JSON (JavaScript Object Notation);wkt;Well-known text output;proj4;PROJ.4 style text output;" +#: ../general/g.proj/main.c:240 +msgid "plain;Human readable text output;shell;shell script style text output;wkt;Well-known text output;projjson;JSON (JavaScript Object Notation) version of WKT;proj4;PROJ.4 style text output;" msgstr "" -#: ../general/g.proj/main.c:271 ../vector/v.what.rast/main.c:159 +#: ../general/g.proj/main.c:272 ../vector/v.what.rast/main.c:159 #, c-format msgid "The format option can only be used with -%c flag" msgstr "" -#: ../general/g.proj/main.c:283 +#: ../general/g.proj/main.c:284 msgid "Flag 'j' is deprecated and will be removed in a future release. Please use format=proj4 instead." msgstr "" -#: ../general/g.proj/main.c:292 +#: ../general/g.proj/main.c:293 msgid "Flag 'w' is deprecated and will be removed in a future release. Please use format=wkt instead." msgstr "" -#: ../general/g.proj/main.c:312 +#: ../general/g.proj/main.c:313 #, c-format msgid "Only one of '%s', '%s', '%s', '%s' or '%s' options may be specified" msgstr "" -#: ../general/g.proj/main.c:364 +#: ../general/g.proj/main.c:365 msgid "Projection files missing" msgstr "" -#: ../general/g.proj/main.c:392 +#: ../general/g.proj/main.c:393 #, c-format msgid "No output format specified. Define one of the options: plain, shell, json, wkt, or proj4 using the -%c flag." msgstr "" -#: ../general/g.proj/main.c:397 +#: ../general/g.proj/main.c:398 #, c-format msgid "No output format specified. Define one of the options: plain, shell, json, or proj4 using the -%c flag." msgstr "" -#: ../general/g.proj/output.c:221 +#: ../general/g.proj/output.c:54 +msgid "JSON output is not available." +msgstr "" + +#: ../general/g.proj/output.c:212 msgid "Unable to convert projection information to PROJ format" msgstr "" -#: ../general/g.proj/output.c:295 +#: ../general/g.proj/output.c:286 #, c-format msgid "Unable to create PROJ definition from srid <%s>" msgstr "" -#: ../general/g.proj/output.c:337 +#: ../general/g.proj/output.c:328 msgid "Unable to convert to WKT" msgstr "" +#: ../general/g.proj/output.c:433 +msgid "Unable to convert to PROJJSON" +msgstr "" + #: ../general/g.region/main.c:67 msgid "computational region" msgstr "" @@ -11446,10 +11453,10 @@ msgstr "" #: ../raster/r.grow.distance/main.c:392 ../raster/r.li/r.li.daemon/daemon.c:743 #: ../raster/r.mfilter/execute.c:82 ../raster/r.mfilter/execute.c:114 #: ../raster/r.mfilter/execute.c:165 ../raster/r.mfilter/getrow.c:24 -#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:786 -#: ../raster/r.path/main.c:822 ../raster/r.path/main.c:954 -#: ../raster/r.path/main.c:1073 ../raster/r.path/main.c:1103 -#: ../raster/r.path/main.c:1207 ../raster/r.thin/io.c:72 +#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:789 +#: ../raster/r.path/main.c:825 ../raster/r.path/main.c:957 +#: ../raster/r.path/main.c:1076 ../raster/r.path/main.c:1106 +#: ../raster/r.path/main.c:1210 ../raster/r.thin/io.c:72 #: ../raster/r.thin/io.c:82 ../raster3d/r3.in.v5d/v5d.c:1192 #: ../raster3d/r3.in.v5d/v5d.c:1443 ../raster3d/r3.in.v5d/v5d.c:1523 #: ../raster3d/r3.in.v5d/v5d.c:1848 ../raster3d/r3.in.v5d/v5d.c:1859 @@ -11474,9 +11481,9 @@ msgstr "" #: ../raster/r.clump/minsize.c:268 ../raster/r.clump/minsize.c:308 #: ../raster/r.clump/minsize.c:319 ../raster/r.clump/minsize.c:454 #: ../raster/r.clump/minsize.c:481 ../raster/r.clump/minsize.c:557 -#: ../raster/r.path/main.c:791 ../raster/r.path/main.c:827 -#: ../raster/r.path/main.c:962 ../raster/r.path/main.c:1078 -#: ../raster/r.path/main.c:1108 ../raster/r.path/main.c:1213 +#: ../raster/r.path/main.c:794 ../raster/r.path/main.c:830 +#: ../raster/r.path/main.c:965 ../raster/r.path/main.c:1081 +#: ../raster/r.path/main.c:1111 ../raster/r.path/main.c:1216 msgid "Unable to read from temp file" msgstr "" @@ -19805,7 +19812,7 @@ msgstr "只需指定 -c, -a 和 -n 标记中的一个" msgid "Starting point %d is outside the current region" msgstr "起点 %d 在当前范围之外" -#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:375 +#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:378 #, c-format msgid "Starting vector map <%s> contains no points in the current region" msgstr "" @@ -19819,8 +19826,8 @@ msgid "Calculating flow directions..." msgstr "" #: ../raster/r.drain/main.c:485 ../raster/r.in.lidar/main.c:783 -#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:598 -#: ../raster/r.path/main.c:628 ../raster/r.viewshed/grass.cpp:621 +#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:601 +#: ../raster/r.path/main.c:631 ../raster/r.viewshed/grass.cpp:621 msgid "Writing output raster map..." msgstr "" @@ -20068,84 +20075,92 @@ msgstr "" msgid "Imagery group <%s> created" msgstr "" -#: ../raster/r.external/proj.c:51 ../raster/r.external/proj.c:93 -#: ../raster/r.in.gdal/proj.c:51 ../raster/r.in.gdal/proj.c:93 -#, c-format -msgid "" -"Input contains an invalid CRS. WKT definition:\n" -"%s" +#: ../raster/r.external/proj.c:36 ../raster/r.external/proj.c:63 +#: ../raster/r.external/proj.c:122 ../raster/r.in.gdal/proj.c:36 +#: ../raster/r.in.gdal/proj.c:63 ../raster/r.in.gdal/proj.c:122 +#: ../vector/v.external/proj.c:92 ../vector/v.external/proj.c:151 +#: ../vector/v.in.ogr/proj.c:162 ../vector/v.in.ogr/proj.c:221 +msgid "Can't get WKT parameter string" +msgstr "" + +#: ../raster/r.external/proj.c:56 ../raster/r.in.gdal/proj.c:56 +#: ../vector/v.external/proj.c:85 ../vector/v.in.ogr/proj.c:155 +msgid "Input contains an invalid CRS." msgstr "" -#: ../raster/r.external/proj.c:120 ../raster/r.in.gdal/proj.c:120 +#: ../raster/r.external/proj.c:66 ../raster/r.in.gdal/proj.c:66 +#: ../vector/v.external/proj.c:95 ../vector/v.in.ogr/proj.c:165 +#, fuzzy +#| msgid "Transect definition" +msgid "WKT definition:" +msgstr "横断线的定义" + +#: ../raster/r.external/proj.c:99 ../raster/r.in.gdal/proj.c:99 +#: ../vector/v.external/proj.c:128 ../vector/v.in.ogr/proj.c:198 msgid "No projection information available" msgstr "" -#: ../raster/r.external/proj.c:133 +#: ../raster/r.external/proj.c:114 ../raster/r.in.gdal/proj.c:114 +#: ../vector/v.external/proj.c:143 ../vector/v.in.ogr/proj.c:213 #, fuzzy -msgid "Unable to convert input map coordinate reference system to GRASS format; cannot create new project." +msgid "Unable to convert input map projection to GRASS format; cannot create new project." msgstr "不能将输入地图的投影转换为 GRASS 格式,无法创建新的区域。" -#: ../raster/r.external/proj.c:139 ../raster/r.in.gdal/main.c:1039 -#: ../raster/r.in.gdal/proj.c:138 ../vector/v.external/proj.c:171 -#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:305 +#: ../raster/r.external/proj.c:127 ../raster/r.in.gdal/main.c:1039 +#: ../raster/r.in.gdal/proj.c:127 ../vector/v.external/proj.c:156 +#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:226 #, fuzzy, c-format msgid "Unable to create new project <%s>" msgstr "无法创建表 <%s>" -#: ../raster/r.external/proj.c:165 ../raster/r.in.gdal/proj.c:164 -#: ../vector/v.external/proj.c:197 ../vector/v.in.ogr/proj.c:331 +#: ../raster/r.external/proj.c:157 ../raster/r.in.gdal/proj.c:157 +#: ../vector/v.external/proj.c:186 ../vector/v.in.ogr/proj.c:256 msgid "Unable to convert input map projection information to GRASS format." msgstr "" -#: ../raster/r.external/proj.c:192 ../raster/r.in.gdal/proj.c:192 +#: ../raster/r.external/proj.c:238 ../raster/r.in.gdal/proj.c:238 #: ../raster/r.in.lidar/projection.c:126 -#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:228 -#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:360 +#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:267 +#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:337 msgid "Over-riding projection check" msgstr "" -#: ../raster/r.external/proj.c:200 ../raster/r.in.gdal/proj.c:200 -#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 -#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.external/proj.c:236 -#: ../vector/v.in.lidar/projection.c:30 ../vector/v.in.ogr/proj.c:368 -msgid "" -"Coordinate reference system of dataset does not appear to match current project.\n" -"\n" -msgstr "" +#: ../raster/r.external/proj.c:244 ../raster/r.in.gdal/proj.c:244 +#: ../vector/v.external/proj.c:273 ../vector/v.in.ogr/proj.c:343 +#, fuzzy +msgid "Coordinate reference system of dataset does not appear to match current project.\n" +msgstr "使用地图坐标而不是 xyz 坐标" -#: ../raster/r.external/proj.c:207 ../raster/r.external/proj.c:216 -#: ../raster/r.in.gdal/proj.c:207 ../raster/r.in.gdal/proj.c:216 -#: ../vector/v.external/proj.c:243 ../vector/v.external/proj.c:252 -#: ../vector/v.in.ogr/proj.c:375 ../vector/v.in.ogr/proj.c:384 -msgid "Project PROJ_INFO is:\n" +#: ../raster/r.external/proj.c:258 ../raster/r.in.gdal/proj.c:258 +#: ../vector/v.external/proj.c:287 ../vector/v.in.ogr/proj.c:357 +msgid "Dataset CRS is:\n" msgstr "" -#: ../raster/r.external/proj.c:236 ../raster/r.external/proj.c:243 -#: ../raster/r.in.gdal/proj.c:236 ../raster/r.in.gdal/proj.c:243 -#: ../vector/v.external/proj.c:272 ../vector/v.external/proj.c:279 -#: ../vector/v.in.ogr/proj.c:404 ../vector/v.in.ogr/proj.c:411 -msgid "Dataset PROJ_INFO is:\n" +#: ../raster/r.external/proj.c:272 ../raster/r.in.gdal/proj.c:272 +#: ../vector/v.external/proj.c:301 ../vector/v.in.ogr/proj.c:371 +msgid "Project CRS is:\n" msgstr "" -#: ../raster/r.external/proj.c:324 ../raster/r.in.lidar/projection.c:89 -#: ../raster/r.in.pdal/projection.c:87 ../raster3d/r3.in.lidar/projection.c:90 -#: ../vector/v.external/proj.c:360 ../vector/v.in.lidar/projection.c:87 -#: ../vector/v.in.ogr/proj.c:492 ../vector/v.in.pdal/projection.c:87 +#: ../raster/r.external/proj.c:286 ../raster/r.in.gdal/proj.c:286 +#: ../raster/r.in.lidar/projection.c:89 ../raster/r.in.pdal/projection.c:87 +#: ../raster3d/r3.in.lidar/projection.c:90 ../vector/v.external/proj.c:315 +#: ../vector/v.in.lidar/projection.c:87 ../vector/v.in.ogr/proj.c:385 +#: ../vector/v.in.pdal/projection.c:87 #, c-format msgid "" "\n" "In case of no significant differences in the coordinate reference system definitions, use the -o flag to ignore them and use current project definition.\n" msgstr "" -#: ../raster/r.external/proj.c:328 ../raster/r.in.gdal/proj.c:327 -#: ../vector/v.external/proj.c:364 ../vector/v.in.ogr/proj.c:496 +#: ../raster/r.external/proj.c:290 ../raster/r.in.gdal/proj.c:290 +#: ../vector/v.external/proj.c:319 ../vector/v.in.ogr/proj.c:389 msgid "Consider generating a new project from the input dataset using the 'project' parameter.\n" msgstr "" -#: ../raster/r.external/proj.c:348 ../raster/r.in.gdal/proj.c:347 +#: ../raster/r.external/proj.c:310 ../raster/r.in.gdal/proj.c:310 #: ../raster/r.in.lidar/projection.c:136 ../raster/r.in.pdal/projection.c:134 -#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:384 -#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:516 +#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:339 +#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:409 msgid "Coordinate reference system of input dataset and current project appear to match" msgstr "" @@ -20755,7 +20770,7 @@ msgstr "" msgid "Region resolution shouldn't be lesser than map %s resolution. Run g.region raster=%s to set proper resolution" msgstr "" -#: ../raster/r.geomorphon/pattern.c:228 +#: ../raster/r.geomorphon/pattern.c:229 #, c-format msgid "Internal error in %s()" msgstr "" @@ -21724,8 +21739,7 @@ msgstr "" msgid "Error in %s (can't re-project GCP %i)" msgstr "" -#: ../raster/r.in.gdal/main.c:983 ../vector/v.external/proj.c:165 -#: ../vector/v.in.lidar/main.c:516 +#: ../raster/r.in.gdal/main.c:983 ../vector/v.in.lidar/main.c:516 #, fuzzy msgid "Unable to convert input map CRS to GRASS format; cannot create new project." msgstr "不能将输入地图的投影转换为 GRASS 格式,无法创建新的区域。" @@ -21777,17 +21791,6 @@ msgstr "" msgid "Unable to open file <%s>: %s." msgstr "" -#: ../raster/r.in.gdal/proj.c:132 ../vector/v.in.ogr/proj.c:299 -#, fuzzy -msgid "Unable to convert input map projection to GRASS format; cannot create new project." -msgstr "不能将输入地图的投影转换为 GRASS 格式,无法创建新的区域。" - -#: ../raster/r.in.gdal/proj.c:323 -msgid "" -"\n" -"In case of no significant differences in the CRS definitions, use the -o flag to ignore them and use current project definition.\n" -msgstr "" - #: ../raster/r.in.gridatb/file_io.c:16 #, fuzzy, c-format #| msgid "Unable to open input file <%s>" @@ -22149,6 +22152,13 @@ msgstr "" msgid "Unable to calculate trimmed mean without the trim option specified!" msgstr "" +#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 +#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.in.lidar/projection.c:30 +msgid "" +"Coordinate reference system of dataset does not appear to match current project.\n" +"\n" +msgstr "" + #: ../raster/r.in.lidar/projection.c:38 ../raster/r.in.pdal/projection.c:36 #: ../vector/v.in.lidar/projection.c:36 ../vector/v.in.pdal/projection.c:36 msgid "GRASS project PROJ_INFO is:\n" @@ -24996,113 +25006,113 @@ msgstr "打印3D的设置" msgid "Do not break lines (faster for single-direction bitmask encoding)" msgstr "" -#: ../raster/r.path/main.c:384 +#: ../raster/r.path/main.c:387 msgid "No start point(s) specified" msgstr "" -#: ../raster/r.path/main.c:394 +#: ../raster/r.path/main.c:397 #, c-format msgid "Reading raster values map <%s> ..." msgstr "" -#: ../raster/r.path/main.c:399 +#: ../raster/r.path/main.c:402 #, fuzzy, c-format msgid "Unable to open temporary file <%s>: %s" msgstr "无法打开输入文件<%s>" -#: ../raster/r.path/main.c:411 ../raster/r.path/main.c:489 -#: ../raster/r.path/main.c:506 +#: ../raster/r.path/main.c:414 ../raster/r.path/main.c:492 +#: ../raster/r.path/main.c:509 msgid "Unable to write to tempfile" msgstr "" -#: ../raster/r.path/main.c:419 +#: ../raster/r.path/main.c:422 msgid "Unable to read range file" msgstr "" -#: ../raster/r.path/main.c:422 +#: ../raster/r.path/main.c:425 #, c-format msgid "Invalid directions map <%s>" msgstr "" -#: ../raster/r.path/main.c:427 +#: ../raster/r.path/main.c:430 msgid "Directional degrees can not be > 360" msgstr "" -#: ../raster/r.path/main.c:433 +#: ../raster/r.path/main.c:436 msgid "Directional degrees divided by 45 can not be > 8" msgstr "" -#: ../raster/r.path/main.c:438 +#: ../raster/r.path/main.c:441 #, c-format msgid "Bitmask encoded directions can not be > %d" msgstr "" -#: ../raster/r.path/main.c:445 +#: ../raster/r.path/main.c:448 msgid "Input direction format assumed to be degrees CCW from East divided by 45" msgstr "" -#: ../raster/r.path/main.c:450 +#: ../raster/r.path/main.c:453 msgid "Input direction format assumed to be bitmask encoded without Knight's move" msgstr "" -#: ../raster/r.path/main.c:456 +#: ../raster/r.path/main.c:459 msgid "Input direction format assumed to be degrees CCW from East" msgstr "" -#: ../raster/r.path/main.c:460 +#: ../raster/r.path/main.c:463 msgid "Input direction format assumed to be bitmask encoded with Knight's move" msgstr "" -#: ../raster/r.path/main.c:465 +#: ../raster/r.path/main.c:468 #, c-format msgid "Unable to detect format of input direction map <%s>" msgstr "" -#: ../raster/r.path/main.c:469 +#: ../raster/r.path/main.c:472 #, c-format msgid "Invalid directions format '%s'" msgstr "" -#: ../raster/r.path/main.c:471 +#: ../raster/r.path/main.c:474 #, c-format msgid "Reading direction map <%s> ..." msgstr "" -#: ../raster/r.path/main.c:525 +#: ../raster/r.path/main.c:528 msgid "Processing start points..." msgstr "" -#: ../raster/r.path/main.c:535 ../vector/v.buffer/main.c:410 +#: ../raster/r.path/main.c:538 ../vector/v.buffer/main.c:410 #: ../vector/v.in.ogr/main.c:881 ../vector/v.overlay/main.c:237 #: ../vector/v.voronoi/main.c:215 msgid "Unable to create temporary vector map" msgstr "" -#: ../raster/r.path/main.c:541 ../raster/r.path/main.c:557 +#: ../raster/r.path/main.c:544 ../raster/r.path/main.c:560 #, c-format msgid "No path at row %d, col %d" msgstr "" -#: ../raster/r.path/main.c:546 ../vector/v.overlay/area_area.c:134 +#: ../raster/r.path/main.c:549 ../vector/v.overlay/area_area.c:134 #: ../vector/v.overlay/line_area.c:255 msgid "Breaking lines..." msgstr "" -#: ../raster/r.path/main.c:684 +#: ../raster/r.path/main.c:687 msgid "Unable to increase point list" msgstr "" -#: ../raster/r.path/main.c:887 +#: ../raster/r.path/main.c:890 #, c-format msgid "No path from row %d, col %d" msgstr "" -#: ../raster/r.path/main.c:901 +#: ../raster/r.path/main.c:904 #, c-format msgid "Invalid direction %d" msgstr "" -#: ../raster/r.path/main.c:999 +#: ../raster/r.path/main.c:1002 msgid "Path is leaving the current region" msgstr "" @@ -38621,39 +38631,17 @@ msgstr "" msgid "Link to vector map <%s> created." msgstr "" -#: ../vector/v.external/proj.c:35 ../vector/v.in.ogr/main.c:741 -#: ../vector/v.in.ogr/proj.c:36 +#: ../vector/v.external/proj.c:34 ../vector/v.in.ogr/main.c:741 +#: ../vector/v.in.ogr/proj.c:34 #, c-format msgid "Geometry column <%s> not found in input layer <%s>" msgstr "" -#: ../vector/v.external/proj.c:49 ../vector/v.in.ogr/proj.c:50 -msgid "Unable to convert input layer projection information to GRASS format for checking" -msgstr "" - -#: ../vector/v.external/proj.c:55 ../vector/v.external/proj.c:85 -#: ../vector/v.in.ogr/proj.c:56 ../vector/v.in.ogr/proj.c:86 -msgid "Can't get WKT parameter string" -msgstr "" - -#: ../vector/v.external/proj.c:58 ../vector/v.external/proj.c:88 -#: ../vector/v.in.ogr/proj.c:59 ../vector/v.in.ogr/proj.c:89 -#, c-format -msgid "" -"WKT definition:\n" -"%s" -msgstr "" - -#: ../vector/v.external/proj.c:69 ../vector/v.in.ogr/proj.c:70 +#: ../vector/v.external/proj.c:46 ../vector/v.in.ogr/proj.c:46 #, c-format msgid "No projection information available for layer <%s>" msgstr "" -#: ../vector/v.external/proj.c:78 ../vector/v.in.ogr/proj.c:79 -#, c-format -msgid "Projection for layer <%s> does not contain a valid CRS" -msgstr "" - #: ../vector/v.extract/extract.c:202 #, c-format msgid "No category found for area %d. Skipping." @@ -40413,16 +40401,16 @@ msgstr "" msgid "The spatial filter does not overlap with OGR layer <%s>. Nothing to import." msgstr "" -#: ../vector/v.in.ogr/proj.c:168 +#: ../vector/v.in.ogr/proj.c:85 msgid "Layer projections are unreadable" msgstr "" -#: ../vector/v.in.ogr/proj.c:184 +#: ../vector/v.in.ogr/proj.c:93 #, c-format msgid "Projection for layer <%s> is unreadable" msgstr "" -#: ../vector/v.in.ogr/proj.c:236 +#: ../vector/v.in.ogr/proj.c:113 #, c-format msgid "Projection of layer <%s> is different from projection of layer <%s>" msgstr "" @@ -47852,18 +47840,6 @@ msgstr "" msgid "Image file" msgstr "" -#, fuzzy, c-format -#~| msgid "Unable to create table: %s" -#~ msgid "Unable to seek: %s" -#~ msgstr "无法创建表 <%s>" - -#~ msgid "Print the stats in shell script style" -#~ msgstr "以shell脚本的样式输出统计值" - -#, fuzzy, c-format -#~ msgid "Only one of -%c, -%c, -%c, -%c or -%c flags may be specified" -#~ msgstr "必须指定'from_table'或'select'选项。" - #, fuzzy #~ msgid "%d features skipped, only points are accepted" #~ msgstr "导入的整数值" @@ -50406,6 +50382,10 @@ msgstr "" #~ msgid "Only 'terrain' points output vector map" #~ msgstr "起始点矢量图" +#, fuzzy, c-format +#~ msgid "Only one of -%c, -%c, -%c, -%c or -%c flags may be specified" +#~ msgstr "必须指定'from_table'或'select'选项。" + #, fuzzy #~ msgid "Only print selected polygons" #~ msgstr "仅打印像元数" @@ -50793,6 +50773,9 @@ msgstr "" #~ msgid "Print the request URL and exit" #~ msgstr "打印表并退出" +#~ msgid "Print the stats in shell script style" +#~ msgstr "以shell脚本的样式输出统计值" + #, fuzzy #~ msgid "Print the threshold value in shell script style" #~ msgstr "以shell脚本的样式输出统计值" @@ -51324,6 +51307,15 @@ msgstr "" #~ msgid "Unable To create table: %s" #~ msgstr "无法创建文件 [%s]" +#, fuzzy +#~ msgid "Unable to convert input map coordinate reference system to GRASS format; cannot create new project." +#~ msgstr "不能将输入地图的投影转换为 GRASS 格式,无法创建新的区域。" + +#, fuzzy, c-format +#~| msgid "Unable to create table: %s" +#~ msgid "Unable to seek: %s" +#~ msgstr "无法创建表 <%s>" + #, fuzzy #~ msgid "Units for output areas" #~ msgstr "输出栅格图的名称" diff --git a/locale/po/grassmods_zh_CN.po b/locale/po/grassmods_zh_CN.po index a376141bff9..1315010b6db 100644 --- a/locale/po/grassmods_zh_CN.po +++ b/locale/po/grassmods_zh_CN.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: grasslibs_zh_CN\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-06-21 12:47+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2017-01-25 08:23+0000\n" "Last-Translator: \n" "Language-Team: Chinese (China) (https://www.transifex.com/grass-gis/teams/45198/zh_CN/)\n" @@ -18,27 +18,27 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ../db/db.columns/main.c:40 ../db/db.copy/main.c:104 +#: ../db/db.columns/main.c:47 ../db/db.copy/main.c:104 #: ../db/db.describe/main.c:65 ../db/db.select/main.c:52 #, c-format msgid "Table <%s> not found in database <%s> using driver <%s>" msgstr "" -#: ../db/db.columns/main.c:47 ../db/db.createdb/main.c:38 +#: ../db/db.columns/main.c:54 ../db/db.createdb/main.c:38 #: ../db/db.databases/main.c:47 ../db/db.describe/main.c:71 #: ../db/db.dropdb/main.c:39 ../db/db.execute/main.c:68 #: ../db/db.select/main.c:74 ../db/db.tables/main.c:45 #: ../display/d.vect.thematic/main.c:294 ../display/d.vect/opt.c:147 #: ../doc/examples/vector/v.example/main.c:130 -#: ../raster/r.stream.extract/close.c:176 ../vector/v.db.connect/main.c:216 -#: ../vector/v.db.connect/main.c:285 ../vector/v.edit/select.c:502 +#: ../raster/r.stream.extract/close.c:176 ../vector/v.db.connect/main.c:341 +#: ../vector/v.db.connect/main.c:484 ../vector/v.edit/select.c:505 #: ../vector/v.out.svg/main.c:152 ../vector/v.out.vtk/writeVTK.c:640 #: ../vector/v.profile/main.c:434 ../vector/v.profile/main.c:600 #, c-format msgid "Unable to start driver <%s>" msgstr "" -#: ../db/db.columns/main.c:52 ../db/db.describe/main.c:76 +#: ../db/db.columns/main.c:59 ../db/db.describe/main.c:76 #: ../db/db.execute/main.c:74 ../db/db.select/main.c:80 #: ../db/db.tables/main.c:50 ../display/d.vect.thematic/main.c:299 #: ../display/d.vect/opt.c:152 @@ -46,9 +46,9 @@ msgstr "" msgid "Unable to open database <%s>" msgstr "" -#: ../db/db.columns/main.c:58 ../db/db.describe/main.c:82 +#: ../db/db.columns/main.c:65 ../db/db.describe/main.c:82 #: ../doc/examples/vector/v.example/main.c:143 -#: ../scripts/db.univar/db.univar.py:123 ../vector/v.db.connect/main.c:229 +#: ../scripts/db.univar/db.univar.py:129 ../vector/v.db.connect/main.c:354 #: ../vector/v.extract/main.c:233 ../vector/v.in.ascii/main.c:447 #: ../vector/v.info/print.c:229 ../vector/v.out.ogr/main.c:722 #: ../vector/v.out.postgis/table.c:41 ../vector/v.out.svg/main.c:165 @@ -61,7 +61,41 @@ msgstr "" msgid "Unable to describe table <%s>" msgstr "" -#: ../db/db.columns/main.c:94 ../db/db.connect/main.c:42 +#: ../db/db.columns/main.c:73 ../db/db.describe/main.c:54 +#: ../db/db.describe/main.c:59 ../general/g.list/list.c:89 +#: ../general/g.mapset/main.c:175 ../imagery/i.group/main.c:124 +#: ../raster/r.category/main.c:143 ../raster/r.describe/dumplist.c:48 +#: ../raster/r.distance/report.c:63 ../raster/r.proj/main.c:345 +#: ../raster/r.regression.multi/main.c:203 +#: ../raster/r.stats.quantile/main.c:382 ../raster/r.stats.quantile/main.c:439 +#: ../raster/r.univar/stats.c:96 ../raster/r.univar/stats.c:396 +#: ../raster/r.volume/main.c:177 ../raster/r.what.color/main.c:246 +#: ../raster/r.what/main.c:280 ../vector/v.category/main.c:264 +#: ../vector/v.category/main.c:333 ../vector/v.class/main.c:223 +#: ../vector/v.class/main.c:264 ../vector/v.class/main.c:271 +#: ../vector/v.db.connect/main.c:152 ../vector/v.distance/main.c:310 +#: ../vector/v.info/print.c:867 ../vector/v.vect.stats/main.c:284 +#: ../vector/v.what.rast/main.c:144 ../vector/v.what/main.c:226 +#: ../vector/v.what/what.c:510 ../vector/v.what/what.c:654 +#: ../vector/v.what/what.c:707 ../vector/v.what/what.c:900 +#: ../vector/v.what/what.c:1039 ../vector/v.what/what.c:1160 +msgid "Failed to initialize JSON array. Out of memory?" +msgstr "" + +#: ../db/db.columns/main.c:98 ../db/db.connect/main.c:243 +#: ../general/g.findfile/main.c:36 ../general/g.list/list.c:140 +#: ../general/g.mapset/main.c:38 ../general/g.mapsets/list.c:34 +#: ../misc/m.measure/main.c:182 ../raster/r.distance/report.c:138 +#: ../raster/r.regression.line/main.c:269 +#: ../raster/r.regression.multi/main.c:696 +#: ../raster/r.stats.quantile/main.c:472 ../raster/r.volume/main.c:448 +#: ../raster3d/r3.info/main.c:993 ../vector/v.class/main.c:379 +#: ../vector/v.db.connect/main.c:434 ../vector/v.vect.stats/main.c:863 +#: ../vector/v.what.rast/main.c:694 ../vector/v.what/main.c:321 +msgid "Failed to serialize JSON to pretty format." +msgstr "" + +#: ../db/db.columns/main.c:133 ../db/db.connect/main.c:48 #: ../db/db.copy/main.c:34 ../db/db.createdb/main.c:66 #: ../db/db.databases/main.c:94 ../db/db.describe/main.c:185 #: ../db/db.drivers/main.c:68 ../db/db.dropdb/main.c:67 @@ -84,13 +118,13 @@ msgstr "" #: ../locale/scriptstrings/v.db.renamecolumn_to_translate.c:4 #: ../locale/scriptstrings/v.db.update_to_translate.c:4 #: ../locale/scriptstrings/v.what.vect_to_translate.c:4 -#: ../vector/v.db.connect/main.c:53 ../vector/v.db.select/main.c:99 +#: ../vector/v.db.connect/main.c:61 ../vector/v.db.select/main.c:99 #: ../vector/v.distance/main.c:127 ../vector/v.in.db/main.c:53 -#: ../vector/v.to.db/main.c:39 ../vector/v.vect.stats/main.c:130 +#: ../vector/v.to.db/main.c:39 ../vector/v.vect.stats/main.c:138 msgid "database" msgstr "" -#: ../db/db.columns/main.c:95 ../db/db.connect/main.c:43 +#: ../db/db.columns/main.c:134 ../db/db.connect/main.c:49 #: ../db/db.copy/main.c:35 ../db/db.createdb/main.c:67 #: ../db/db.databases/main.c:95 ../db/db.describe/main.c:187 #: ../db/db.dropdb/main.c:68 ../db/db.execute/main.c:135 @@ -114,60 +148,45 @@ msgstr "" #: ../locale/scriptstrings/v.db.update_to_translate.c:3 #: ../locale/scriptstrings/v.what.strds_to_translate.c:7 #: ../locale/scriptstrings/v.what.vect_to_translate.c:7 -#: ../vector/v.class/main.c:46 ../vector/v.db.connect/main.c:52 +#: ../vector/v.class/main.c:55 ../vector/v.db.connect/main.c:60 #: ../vector/v.db.select/main.c:98 ../vector/v.distance/main.c:128 #: ../vector/v.to.db/main.c:38 ../vector/v.univar/main.c:97 -#: ../vector/v.vect.stats/main.c:129 ../vector/v.what.rast/main.c:75 +#: ../vector/v.vect.stats/main.c:137 ../vector/v.what.rast/main.c:82 #: ../vector/v.what.rast3/main.c:70 msgid "attribute table" msgstr "" -#: ../db/db.columns/main.c:96 +#: ../db/db.columns/main.c:135 msgid "List all columns for a given table." msgstr "" -#: ../db/db.connect/main.c:44 ../db/db.drivers/main.c:69 -#: ../db/db.login/main.c:40 -msgid "connection settings" -msgstr "" - -#: ../db/db.connect/main.c:46 -msgid "Prints/sets general DB connection for current mapset." -msgstr "" - -#: ../db/db.connect/main.c:50 ../temporal/t.connect/main.c:42 -msgid "Print current connection parameters and exit" -msgstr "" - -#: ../db/db.connect/main.c:51 -msgid "Substitute variables in database settings" -msgstr "" - -#: ../db/db.connect/main.c:52 ../db/db.connect/main.c:58 +#: ../db/db.columns/main.c:138 ../db/db.connect/main.c:57 +#: ../db/db.connect/main.c:66 ../db/db.connect/main.c:118 #: ../db/db.describe/main.c:181 ../db/db.login/main.c:90 #: ../display/d.mon/main.c:118 ../display/d.mon/main.c:124 -#: ../display/d.mon/main.c:130 ../general/g.list/main.c:102 -#: ../general/g.list/main.c:114 ../general/g.list/main.c:136 -#: ../general/g.list/main.c:142 ../general/g.list/main.c:147 -#: ../general/g.list/main.c:152 ../general/g.mapset/main.c:89 -#: ../general/g.mapset/main.c:101 ../general/g.mapset/main.c:107 -#: ../general/g.mapsets/main.c:111 ../general/g.mapsets/main.c:115 -#: ../general/g.mapsets/main.c:121 ../general/g.mapsets/main.c:127 -#: ../general/g.proj/main.c:85 ../general/g.proj/main.c:90 -#: ../general/g.proj/main.c:98 ../general/g.proj/main.c:104 -#: ../general/g.proj/main.c:112 ../general/g.proj/main.c:124 -#: ../general/g.proj/main.c:132 ../general/g.proj/main.c:188 -#: ../general/g.proj/main.c:241 ../general/g.region/main.c:91 -#: ../general/g.region/main.c:97 ../general/g.region/main.c:102 -#: ../general/g.region/main.c:108 ../general/g.region/main.c:113 -#: ../general/g.region/main.c:118 ../general/g.region/main.c:124 -#: ../general/g.region/main.c:132 ../general/g.region/main.c:137 -#: ../general/g.region/main.c:143 ../general/g.region/main.c:148 -#: ../general/g.region/main.c:154 ../general/g.region/main.c:389 -#: ../general/g.version/main.c:130 ../imagery/i.group/main.c:91 -#: ../imagery/i.group/main.c:102 ../imagery/i.group/main.c:107 -#: ../imagery/i.group/main.c:115 ../imagery/i.signatures/main.c:122 -#: ../imagery/i.signatures/main.c:128 ../imagery/i.signatures/main.c:160 +#: ../display/d.mon/main.c:130 ../general/g.findfile/main.c:95 +#: ../general/g.list/main.c:104 ../general/g.list/main.c:116 +#: ../general/g.list/main.c:146 ../general/g.list/main.c:152 +#: ../general/g.list/main.c:162 ../general/g.list/main.c:171 +#: ../general/g.mapset/main.c:90 ../general/g.mapset/main.c:102 +#: ../general/g.mapset/main.c:108 ../general/g.mapsets/main.c:111 +#: ../general/g.mapsets/main.c:115 ../general/g.mapsets/main.c:121 +#: ../general/g.mapsets/main.c:127 ../general/g.proj/main.c:85 +#: ../general/g.proj/main.c:90 ../general/g.proj/main.c:99 +#: ../general/g.proj/main.c:105 ../general/g.proj/main.c:114 +#: ../general/g.proj/main.c:126 ../general/g.proj/main.c:135 +#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:245 +#: ../general/g.region/main.c:91 ../general/g.region/main.c:97 +#: ../general/g.region/main.c:102 ../general/g.region/main.c:108 +#: ../general/g.region/main.c:113 ../general/g.region/main.c:118 +#: ../general/g.region/main.c:124 ../general/g.region/main.c:132 +#: ../general/g.region/main.c:137 ../general/g.region/main.c:143 +#: ../general/g.region/main.c:151 ../general/g.region/main.c:157 +#: ../general/g.region/main.c:392 ../general/g.version/main.c:130 +#: ../imagery/i.group/main.c:91 ../imagery/i.group/main.c:102 +#: ../imagery/i.group/main.c:107 ../imagery/i.group/main.c:115 +#: ../imagery/i.signatures/main.c:122 ../imagery/i.signatures/main.c:128 +#: ../imagery/i.signatures/main.c:160 #: ../locale/scriptstrings/g.extension_to_translate.c:17 #: ../locale/scriptstrings/g.extension_to_translate.c:19 #: ../locale/scriptstrings/g.extension_to_translate.c:21 @@ -175,27 +194,29 @@ msgstr "" #: ../locale/scriptstrings/r.unpack_to_translate.c:12 #: ../locale/scriptstrings/t.rast.colors_to_translate.c:18 #: ../locale/scriptstrings/v.unpack_to_translate.c:13 -#: ../raster/r.category/main.c:116 ../raster/r.colors.out/raster3d_main.c:61 +#: ../misc/m.measure/main.c:70 ../raster/r.category/main.c:106 +#: ../raster/r.colors.out/raster3d_main.c:61 #: ../raster/r.colors.out/raster_main.c:60 ../raster/r.colors/edit_colors.c:164 #: ../raster/r.colors/edit_colors.c:172 ../raster/r.describe/main.c:73 #: ../raster/r.external.out/main.c:272 ../raster/r.external.out/main.c:283 #: ../raster/r.external/main.c:97 ../raster/r.external/main.c:136 #: ../raster/r.in.gdal/main.c:238 ../raster/r.in.gdal/main.c:272 #: ../raster/r.info/main.c:115 ../raster/r.object.geometry/main.c:95 -#: ../raster/r.out.gdal/main.c:142 ../raster/r.profile/main.c:110 +#: ../raster/r.out.gdal/main.c:142 ../raster/r.profile/main.c:118 #: ../raster/r.proj/main.c:208 ../raster/r.proj/main.c:221 -#: ../raster/r.proj/main.c:233 ../raster/r.proj/main.c:241 -#: ../raster/r.stats/main.c:155 ../raster/r.sunmask/main.c:233 -#: ../raster/r.sunmask/main.c:239 ../raster/r.univar/r.univar_main.c:114 -#: ../raster/r.univar/r3.univar_main.c:70 ../raster/r.what/main.c:134 +#: ../raster/r.proj/main.c:233 ../raster/r.proj/main.c:242 +#: ../raster/r.stats/main.c:160 ../raster/r.sunmask/main.c:233 +#: ../raster/r.sunmask/main.c:239 ../raster/r.univar/r.univar_main.c:127 +#: ../raster/r.univar/r3.univar_main.c:89 ../raster/r.what/main.c:134 #: ../raster/r.what/main.c:142 ../raster/r.what/main.c:145 #: ../raster/r.what/main.c:159 ../raster/r.what/main.c:164 #: ../raster/r.what/main.c:169 ../raster/r.what/main.c:175 -#: ../raster/r.what/main.c:185 ../temporal/t.connect/main.c:43 -#: ../vector/v.category/main.c:169 ../vector/v.colors.out/main.c:71 +#: ../raster/r.what/main.c:185 ../raster3d/r3.info/main.c:101 +#: ../temporal/t.connect/main.c:43 ../vector/v.category/main.c:169 +#: ../vector/v.class/main.c:106 ../vector/v.colors.out/main.c:71 #: ../vector/v.colors/main.c:132 ../vector/v.colors/main.c:140 -#: ../vector/v.db.connect/main.c:83 ../vector/v.db.connect/main.c:88 -#: ../vector/v.db.connect/main.c:96 ../vector/v.db.connect/main.c:102 +#: ../vector/v.db.connect/main.c:92 ../vector/v.db.connect/main.c:105 +#: ../vector/v.db.connect/main.c:115 ../vector/v.db.connect/main.c:121 #: ../vector/v.distance/main.c:247 ../vector/v.external.out/args.c:68 #: ../vector/v.external.out/args.c:81 ../vector/v.external.out/args.c:87 #: ../vector/v.external/args.c:60 ../vector/v.external/args.c:67 @@ -206,25 +227,53 @@ msgstr "" #: ../vector/v.info/parse.c:53 ../vector/v.to.db/parse.c:118 #: ../vector/v.to.db/parse.c:125 ../vector/v.to.db/parse.c:130 #: ../vector/v.to.db/parse.c:136 ../vector/v.to.db/parse.c:141 -#: ../vector/v.to.db/parse.c:147 ../vector/v.univar/main.c:145 -#: ../vector/v.vect.stats/main.c:229 ../vector/v.vect.stats/main.c:236 -#: ../vector/v.what/main.c:94 ../vector/v.what/main.c:99 -#: ../vector/v.what/main.c:104 ../vector/v.what/main.c:109 -#: ../vector/v.what/main.c:115 +#: ../vector/v.to.db/parse.c:147 ../vector/v.univar/main.c:152 +#: ../vector/v.vect.stats/main.c:238 ../vector/v.vect.stats/main.c:251 +#: ../vector/v.what.rast/main.c:112 ../vector/v.what/main.c:100 +#: ../vector/v.what/main.c:105 ../vector/v.what/main.c:111 +#: ../vector/v.what/main.c:118 ../vector/v.what/main.c:126 +#: ../vector/v.what/main.c:134 ../vector/v.what/main.c:142 msgid "Print" msgstr "" -#: ../db/db.connect/main.c:57 -msgid "Print current connection parameters using shell style and exit" +#: ../db/db.connect/main.c:50 ../db/db.drivers/main.c:69 +#: ../db/db.login/main.c:40 +msgid "connection settings" +msgstr "" + +#: ../db/db.connect/main.c:52 +msgid "Prints/sets general DB connection for current mapset." +msgstr "" + +#: ../db/db.connect/main.c:56 ../temporal/t.connect/main.c:42 +msgid "Print current connection parameters and exit" +msgstr "" + +#: ../db/db.connect/main.c:61 +msgid "Print current connection parameters using shell style and exit [deprecated]" msgstr "" -#: ../db/db.connect/main.c:63 ../temporal/t.connect/main.c:48 +#: ../db/db.connect/main.c:64 ../general/g.proj/main.c:94 +#: ../general/g.region/main.c:149 ../general/g.version/main.c:120 +#: ../imagery/i.group/main.c:113 +#: ../locale/scriptstrings/db.univar_to_translate.c:11 +#: ../locale/scriptstrings/v.db.univar_to_translate.c:11 +#: ../misc/m.measure/main.c:76 ../raster/r.proj/main.c:240 +#: ../raster/r.regression.line/main.c:83 +#: ../raster/r.regression.multi/main.c:179 +#: ../raster/r.univar/r.univar_main.c:103 +#: ../raster/r.univar/r3.univar_main.c:65 ../vector/v.univar/main.c:131 +#: ../vector/v.what/main.c:124 +msgid "This flag is deprecated and will be removed in a future release. Use format=shell instead." +msgstr "" + +#: ../db/db.connect/main.c:71 ../temporal/t.connect/main.c:48 msgid "Check connection parameters, set if uninitialized, and exit" msgstr "" -#: ../db/db.connect/main.c:64 ../db/db.connect/main.c:70 -#: ../db/db.connect/main.c:82 ../db/db.connect/main.c:91 -#: ../db/db.connect/main.c:94 ../db/db.connect/main.c:103 +#: ../db/db.connect/main.c:72 ../db/db.connect/main.c:78 +#: ../db/db.connect/main.c:90 ../db/db.connect/main.c:99 +#: ../db/db.connect/main.c:102 ../db/db.connect/main.c:111 #: ../general/g.gisenv/main.c:66 ../general/g.gisenv/main.c:74 #: ../general/g.gisenv/main.c:84 ../temporal/t.connect/main.c:49 #: ../temporal/t.connect/main.c:55 ../temporal/t.connect/main.c:61 @@ -232,23 +281,80 @@ msgstr "" msgid "Set" msgstr "" -#: ../db/db.connect/main.c:68 ../temporal/t.connect/main.c:53 +#: ../db/db.connect/main.c:76 ../temporal/t.connect/main.c:53 msgid "Set from default settings and exit" msgstr "" -#: ../db/db.connect/main.c:69 +#: ../db/db.connect/main.c:77 msgid "Overwrite current settings if already initialized" msgstr "" -#: ../db/db.connect/main.c:101 +#: ../db/db.connect/main.c:109 msgid "Default group of database users to which select privilege is granted" msgstr "" -#: ../db/db.connect/main.c:151 ../db/db.tables/main.c:41 +#: ../db/db.connect/main.c:115 ../general/g.region/main.c:389 +#: ../misc/m.measure/main.c:67 ../raster3d/r3.info/main.c:98 +#: ../vector/v.what/main.c:97 +msgid "plain;Plain text output;shell;shell script style output;json;JSON (JavaScript Object Notation);" +msgstr "" + +#: ../db/db.connect/main.c:144 ../general/g.findfile/main.c:187 +#: ../general/g.list/list.c:122 ../general/g.mapset/main.c:119 +#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:351 +#: ../general/g.region/main.c:471 ../general/g.version/main.c:140 +#: ../misc/m.measure/main.c:87 ../raster/r.describe/dumplist.c:38 +#: ../raster/r.distance/report.c:211 ../raster/r.distance/report.c:218 +#: ../raster/r.distance/report.c:225 ../raster/r.info/main.c:147 +#: ../raster/r.proj/main.c:487 ../raster/r.regression.line/main.c:101 +#: ../raster/r.regression.multi/main.c:197 +#: ../raster/r.regression.multi/main.c:566 +#: ../raster/r.stats.quantile/main.c:430 ../raster/r.stats.quantile/main.c:447 +#: ../raster/r.univar/stats.c:104 ../raster/r.univar/stats.c:148 +#: ../raster/r.univar/stats.c:439 ../raster/r.volume/main.c:409 +#: ../raster/r.what.color/main.c:52 ../raster3d/r3.info/main.c:153 +#: ../vector/v.category/main.c:942 ../vector/v.class/main.c:257 +#: ../vector/v.class/main.c:348 ../vector/v.db.connect/main.c:306 +#: ../vector/v.db.connect/main.c:399 ../vector/v.distance/main.c:1578 +#: ../vector/v.info/print.c:825 ../vector/v.info/print.c:861 +#: ../vector/v.univar/main.c:630 ../vector/v.vect.stats/main.c:800 +#: ../vector/v.what.rast/main.c:628 ../vector/v.what/what.c:202 +#: ../vector/v.what/what.c:273 ../vector/v.what/what.c:441 +#: ../vector/v.what/what.c:541 ../vector/v.what/what.c:682 +#: ../vector/v.what/what.c:730 ../vector/v.what/what.c:935 +msgid "Failed to initialize JSON object. Out of memory?" +msgstr "" + +#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:278 +#: ../general/g.region/main.c:427 ../general/g.version/main.c:153 +#: ../imagery/i.group/main.c:137 ../misc/m.measure/main.c:100 +#: ../raster/r.proj/main.c:270 ../raster/r.regression.line/main.c:114 +#: ../raster/r.regression.multi/main.c:213 +#: ../raster/r.univar/r.univar_main.c:220 +#: ../raster/r.univar/r3.univar_main.c:176 +#: ../scripts/db.univar/db.univar.py:122 +#: ../scripts/v.db.univar/v.db.univar.py:99 ../vector/v.univar/main.c:177 +#: ../vector/v.what/main.c:195 +msgid "Flag 'g' is deprecated and will be removed in a future release. Please use format=shell instead." +msgstr "" + +#: ../db/db.connect/main.c:160 ../misc/m.measure/main.c:103 +#: ../raster/r.regression.line/main.c:117 +#: ../raster/r.regression.multi/main.c:216 ../vector/v.db.connect/main.c:182 +#: ../vector/v.univar/main.c:180 +msgid "The -g flag cannot be used with format=json. Please select only one output format." +msgstr "" + +#: ../db/db.connect/main.c:169 +msgid "The -p flag is required when using the format option." +msgstr "" + +#: ../db/db.connect/main.c:236 ../db/db.tables/main.c:41 +#: ../scripts/db.test/db.test.py:45 msgid "Database connection not defined. Run db.connect." msgstr "" -#: ../db/db.connect/main.c:171 ../db/db.connect/main.c:198 +#: ../db/db.connect/main.c:269 ../db/db.connect/main.c:296 #: ../temporal/t.connect/main.c:133 #, c-format msgid "" @@ -257,19 +363,19 @@ msgid "" "database: %s" msgstr "" -#: ../db/db.connect/main.c:177 +#: ../db/db.connect/main.c:275 msgid "DB settings already defined, nothing to do" msgstr "" -#: ../db/db.connect/main.c:183 +#: ../db/db.connect/main.c:281 msgid "Default driver is not set" msgstr "" -#: ../db/db.connect/main.c:186 +#: ../db/db.connect/main.c:284 msgid "Default database is not set" msgstr "" -#: ../db/db.connect/main.c:222 +#: ../db/db.connect/main.c:320 msgid "Unable to set default database connection" msgstr "" @@ -373,30 +479,19 @@ msgstr "" msgid "Lists all databases for a given driver and location." msgstr "" -#: ../db/db.describe/main.c:54 ../db/db.describe/main.c:59 -#: ../general/g.mapset/main.c:174 ../imagery/i.group/main.c:124 -#: ../raster/r.category/main.c:131 ../raster/r.describe/dumplist.c:47 -#: ../raster/r.proj/main.c:343 ../raster/r.univar/stats.c:96 -#: ../raster/r.univar/stats.c:335 ../raster/r.what.color/main.c:246 -#: ../raster/r.what/main.c:280 ../vector/v.category/main.c:253 -#: ../vector/v.category/main.c:318 ../vector/v.distance/main.c:310 -#: ../vector/v.info/print.c:866 -msgid "Failed to initialize JSON array. Out of memory?" -msgstr "" - -#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:382 -#: ../general/g.region/main.c:975 ../general/g.version/main.c:411 -#: ../imagery/i.group/main.c:301 ../raster/r.category/main.c:389 -#: ../raster/r.describe/dumplist.c:69 ../raster/r.info/main.c:997 -#: ../raster/r.mask.status/main.c:111 ../raster/r.object.geometry/main.c:401 -#: ../raster/r.profile/main.c:276 ../raster/r.proj/main.c:368 -#: ../raster/r.proj/main.c:543 ../raster/r.report/prt_json.c:200 -#: ../raster/r.stats/main.c:408 ../raster/r.univar/stats.c:431 -#: ../raster/r.what.color/main.c:290 ../raster/r.what/main.c:619 -#: ../vector/v.category/main.c:305 ../vector/v.category/main.c:952 +#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:374 +#: ../general/g.region/main.c:990 ../general/g.version/main.c:409 +#: ../imagery/i.group/main.c:301 ../raster/r.category/main.c:412 +#: ../raster/r.describe/dumplist.c:71 ../raster/r.info/main.c:1000 +#: ../raster/r.mask.status/main.c:111 ../raster/r.object.geometry/main.c:402 +#: ../raster/r.profile/main.c:320 ../raster/r.proj/main.c:370 +#: ../raster/r.proj/main.c:545 ../raster/r.report/prt_json.c:203 +#: ../raster/r.stats/main.c:427 ../raster/r.univar/stats.c:493 +#: ../raster/r.what.color/main.c:290 ../raster/r.what/main.c:620 +#: ../vector/v.category/main.c:320 ../vector/v.category/main.c:989 #: ../vector/v.distance/main.c:1799 ../vector/v.info/main.c:106 -#: ../vector/v.info/print.c:291 ../vector/v.info/print.c:907 -#: ../vector/v.to.db/report.c:500 ../vector/v.univar/main.c:797 +#: ../vector/v.info/print.c:292 ../vector/v.info/print.c:908 +#: ../vector/v.to.db/report.c:515 ../vector/v.univar/main.c:821 msgid "Failed to initialize pretty JSON string." msgstr "" @@ -464,12 +559,12 @@ msgid "Name of file containing SQL statement(s)" msgstr "" #: ../db/db.execute/main.c:149 ../db/db.select/main.c:206 -#: ../general/g.proj/main.c:153 ../general/g.proj/main.c:171 +#: ../general/g.proj/main.c:156 ../general/g.proj/main.c:174 #: ../locale/scriptstrings/m.proj_to_translate.c:8 #: ../raster/r.in.ascii/main.c:78 ../raster/r.reclass/main.c:67 #: ../raster/r.recode/main.c:60 ../raster3d/r3.in.ascii/main.c:87 #: ../vector/v.edit/args.c:94 ../vector/v.segment/main.c:81 -#: ../vector/v.what/main.c:77 +#: ../vector/v.what/main.c:79 msgid "'-' for standard input" msgstr "" @@ -517,7 +612,7 @@ msgstr "" #: ../raster/r.in.bin/main.c:307 ../raster/r.in.bin/main.c:334 #: ../raster/r.in.bin/main.c:342 ../raster/r.in.bin/main.c:351 #: ../raster/r.in.bin/main.c:412 ../raster/r.in.bin/main.c:424 -#: ../raster/r.out.mpeg/main.c:135 ../raster/r.resamp.bspline/main.c:111 +#: ../raster/r.out.mpeg/main.c:136 ../raster/r.resamp.bspline/main.c:111 #: ../raster/r.resamp.bspline/main.c:119 ../raster/r.resamp.bspline/main.c:125 #: ../raster/r.resamp.bspline/main.c:136 ../raster/r.resamp.bspline/main.c:141 #: ../raster/r.resamp.rst/main.c:211 ../raster/r.resamp.rst/main.c:218 @@ -530,8 +625,8 @@ msgstr "" #: ../raster/r.viewshed/main.cpp:499 ../raster/r.viewshed/main.cpp:512 #: ../raster/r.walk/main.c:314 ../raster/r.walk/main.c:324 #: ../raster/r.walk/main.c:334 ../vector/v.colors.out/main.c:68 -#: ../vector/v.colors.out/main.c:79 ../vector/v.db.connect/main.c:65 -#: ../vector/v.db.connect/main.c:71 ../vector/v.external.out/args.c:23 +#: ../vector/v.colors.out/main.c:79 ../vector/v.db.connect/main.c:73 +#: ../vector/v.db.connect/main.c:79 ../vector/v.external.out/args.c:23 #: ../vector/v.external.out/args.c:38 ../vector/v.external.out/args.c:51 #: ../vector/v.external.out/args.c:57 ../vector/v.lidar.correction/main.c:103 #: ../vector/v.lidar.correction/main.c:112 @@ -585,26 +680,19 @@ msgid "The password was stored in file (%s%cdblogin)" msgstr "" #: ../db/db.select/main.c:104 -#, c-format -msgid "Test %s." +msgid "Test failed." msgstr "" #: ../db/db.select/main.c:104 -#: ../imagery/i.ortho.photo/i.ortho.rectify/report.c:10 -#: ../imagery/i.rectify/report.c:10 -msgid "failed" -msgstr "" - -#: ../db/db.select/main.c:104 -msgid "succeeded" +msgid "Test succeeded." msgstr "" #: ../db/db.select/main.c:140 ../raster/r.object.geometry/main.c:118 -#: ../raster/r.quantile/main.c:346 ../raster/r.regression.line/main.c:77 -#: ../raster/r.regression.multi/main.c:171 -#: ../raster/r.stats.quantile/main.c:368 ../raster/r.stats/main.c:235 -#: ../raster/r.univar/r.univar_main.c:180 -#: ../raster/r.univar/r3.univar_main.c:133 ../raster/r.what/main.c:193 +#: ../raster/r.quantile/main.c:346 ../raster/r.regression.line/main.c:92 +#: ../raster/r.regression.multi/main.c:188 +#: ../raster/r.stats.quantile/main.c:375 ../raster/r.stats/main.c:240 +#: ../raster/r.univar/r.univar_main.c:193 +#: ../raster/r.univar/r3.univar_main.c:149 ../raster/r.what/main.c:193 #: ../vector/v.db.select/main.c:182 #, c-format msgid "Unable to open file <%s> for writing" @@ -643,8 +731,8 @@ msgstr "" #: ../db/db.select/main.c:239 ../locale/scriptstrings/i.oif_to_translate.c:5 #: ../locale/scriptstrings/r.out.xyz_to_translate.c:7 -#: ../raster/r.quantile/main.c:331 ../raster/r.stats.quantile/main.c:605 -#: ../raster/r.stats/main.c:121 ../raster/r.univar/r.univar_main.c:78 +#: ../raster/r.quantile/main.c:331 ../raster/r.stats.quantile/main.c:684 +#: ../raster/r.stats/main.c:122 ../raster/r.univar/r.univar_main.c:78 #: ../raster/r.univar/r3.univar_main.c:42 ../raster/r.what/main.c:139 #: ../vector/v.db.select/main.c:150 msgid "Name for output file (if omitted or \"-\" output to stdout)" @@ -922,8 +1010,8 @@ msgstr "" msgid "Unable to connect to MySQL embedded server: " msgstr "" -#: ../db/drivers/mysql/describe.c:30 ../db/drivers/sqlite/describe.c:89 -#: ../db/drivers/sqlite/select.c:93 +#: ../db/drivers/mysql/describe.c:30 ../db/drivers/sqlite/describe.c:88 +#: ../db/drivers/sqlite/select.c:92 msgid "Unable to describe table:" msgstr "" @@ -955,7 +1043,7 @@ msgstr "" #: ../db/drivers/mysql/fetch.c:33 ../db/drivers/mysql/fetch.c:263 #: ../db/drivers/ogr/fetch.c:55 ../db/drivers/ogr/fetch.c:192 -#: ../db/drivers/postgres/fetch.c:33 ../db/drivers/sqlite/fetch.c:253 +#: ../db/drivers/postgres/fetch.c:33 ../db/drivers/sqlite/fetch.c:251 msgid "Cursor not found" msgstr "" @@ -983,7 +1071,7 @@ msgstr "" msgid "Unable to scan datetime:" msgstr "" -#: ../db/drivers/mysql/index.c:53 ../db/drivers/sqlite/index.c:75 +#: ../db/drivers/mysql/index.c:53 ../db/drivers/sqlite/index.c:74 msgid "Unable to create index:" msgstr "" @@ -1033,12 +1121,12 @@ msgstr "" msgid "Unable to set handle" msgstr "" -#: ../db/drivers/odbc/table.c:155 +#: ../db/drivers/odbc/table.c:154 #, c-format msgid "Table %s doesn't exist" msgstr "" -#: ../db/drivers/odbc/table.c:171 +#: ../db/drivers/odbc/table.c:170 #, c-format msgid "Table %s isn't 'TABLE' or 'VIEW' but %s" msgstr "" @@ -1078,26 +1166,25 @@ msgstr "" msgid "Unknown type" msgstr "" -#: ../db/drivers/ogr/execute.c:58 ../vector/v.out.ogr/main.c:670 +#: ../db/drivers/ogr/execute.c:63 ../vector/v.out.ogr/main.c:670 #, c-format msgid "OGR layer <%s> not found" msgstr "" -#: ../db/drivers/ogr/execute.c:71 ../scripts/db.univar/db.univar.py:131 -#: ../scripts/v.db.renamecolumn/v.db.renamecolumn.py:104 +#: ../db/drivers/ogr/execute.c:77 ../scripts/db.univar/db.univar.py:137 #: ../vector/v.colors.out/make_colors.c:42 ../vector/v.colors/scan_attr.c:34 -#: ../vector/v.db.connect/main.c:292 ../vector/v.distance/main.c:574 -#: ../vector/v.distance/main.c:616 ../vector/v.in.db/main.c:188 +#: ../vector/v.db.connect/main.c:491 ../vector/v.distance/main.c:574 +#: ../vector/v.distance/main.c:616 ../vector/v.in.db/main.c:195 #: ../vector/v.neighbors/main.c:234 ../vector/v.out.lidar/main.c:114 #: ../vector/v.out.lidar/main.c:154 ../vector/v.reclass/main.c:145 #: ../vector/v.to.3d/trans2.c:63 ../vector/v.to.3d/trans3.c:66 -#: ../vector/v.transform/trans_digit.c:116 ../vector/v.univar/main.c:385 -#: ../vector/v.vect.stats/main.c:446 +#: ../vector/v.transform/trans_digit.c:116 ../vector/v.univar/main.c:405 +#: ../vector/v.vect.stats/main.c:485 #, c-format, python-format msgid "Column <%s> not found in table <%s>" msgstr "" -#: ../db/drivers/ogr/execute.c:113 +#: ../db/drivers/ogr/execute.c:120 #, c-format msgid "\tOGR failed to write feature fid=%lld to layer <%s>" msgstr "" @@ -1110,7 +1197,7 @@ msgstr "" msgid "DB_LAST not supported" msgstr "" -#: ../db/drivers/ogr/listtab.c:49 ../db/drivers/sqlite/listtab.c:75 +#: ../db/drivers/ogr/listtab.c:49 ../db/drivers/sqlite/listtab.c:74 msgid "Unable to db_alloc_string_array()" msgstr "" @@ -1124,7 +1211,7 @@ msgid "Unknown column type (%s)" msgstr "" #: ../db/drivers/postgres/create_table.c:102 -#: ../db/drivers/sqlite/create_table.c:120 +#: ../db/drivers/sqlite/create_table.c:119 msgid "Unable to create table:" msgstr "" @@ -1168,11 +1255,11 @@ msgstr "" msgid "Unable to 'COMMIT' transaction" msgstr "" -#: ../db/drivers/postgres/fetch.c:128 ../db/drivers/sqlite/fetch.c:167 +#: ../db/drivers/postgres/fetch.c:128 ../db/drivers/sqlite/fetch.c:166 msgid "Unable to scan date:" msgstr "" -#: ../db/drivers/postgres/fetch.c:145 ../db/drivers/sqlite/fetch.c:182 +#: ../db/drivers/postgres/fetch.c:145 ../db/drivers/sqlite/fetch.c:181 msgid "Unable to scan time:" msgstr "" @@ -1197,7 +1284,7 @@ msgstr "" #: ../vector/v.extract/copy_tab.c:121 ../vector/v.mkgrid/main.c:368 #: ../vector/v.mkgrid/main.c:429 ../vector/v.overlay/main.c:621 #: ../vector/v.patch/main.c:387 ../vector/v.random/main.c:302 -#: ../vector/v.select/copy_tabs.c:84 +#: ../vector/v.select/copy_tabs.c:85 msgid "Unable to create index" msgstr "" @@ -1214,15 +1301,16 @@ msgid "Unable to select from Postgres:" msgstr "" #: ../db/drivers/postgres/listdb.c:85 ../db/drivers/postgres/listtab.c:90 -#: ../db/drivers/sqlite/listdb.c:135 ../imagery/i.smap/multialloc.c:113 -#: ../raster/r.li/r.li.daemon/list.c:47 ../raster/r.stream.extract/bseg.c:41 -#: ../raster/r.stream.extract/cseg.c:41 ../raster/r.stream.extract/dseg.c:41 -#: ../raster/r.stream.extract/seg.c:41 ../raster/r.sun/main.c:874 -#: ../raster/r.sun/main.c:884 ../raster/r.sun/main.c:895 -#: ../raster/r.sun/main.c:905 ../raster/r.sun/main.c:915 -#: ../raster/r.sun/main.c:925 ../raster/r.sun/main.c:935 -#: ../raster/r.sun/main.c:946 ../raster/r.sun/main.c:956 -#: ../raster/r.to.rast3/main.c:243 ../raster/r.watershed/seg/bseg_open.c:43 +#: ../db/drivers/sqlite/listdb.c:135 ../imagery/i.smap/multialloc.c:112 +#: ../raster/r.li/r.li.daemon/list.c:32 ../raster/r.li/r.li.daemon/list.c:35 +#: ../raster/r.stream.extract/bseg.c:41 ../raster/r.stream.extract/cseg.c:41 +#: ../raster/r.stream.extract/dseg.c:41 ../raster/r.stream.extract/seg.c:41 +#: ../raster/r.sun/main.c:874 ../raster/r.sun/main.c:884 +#: ../raster/r.sun/main.c:895 ../raster/r.sun/main.c:905 +#: ../raster/r.sun/main.c:915 ../raster/r.sun/main.c:925 +#: ../raster/r.sun/main.c:935 ../raster/r.sun/main.c:946 +#: ../raster/r.sun/main.c:956 ../raster/r.to.rast3/main.c:243 +#: ../raster/r.watershed/seg/bseg_open.c:43 #: ../raster/r.watershed/seg/cseg_open.c:43 #: ../raster/r.watershed/seg/dseg_open.c:43 #: ../raster/r.watershed/seg/sseg_open.c:42 ../raster3d/r3.to.rast/main.c:357 @@ -1251,8 +1339,9 @@ msgstr "" #: ../vector/v.net.connectivity/main.c:183 #: ../vector/v.net.connectivity/main.c:199 ../vector/v.net.distance/main.c:228 #: ../vector/v.net.flow/main.c:229 ../vector/v.net.timetable/main.c:384 -#: ../vector/v.net.timetable/main.c:393 ../vector/v.profile/processors.c:30 -#: ../vector/v.surf.rst/main.c:891 ../vector/v.vol.rst/user1.c:435 +#: ../vector/v.net.timetable/main.c:393 ../vector/v.net/main.c:112 +#: ../vector/v.profile/processors.c:30 ../vector/v.surf.rst/main.c:891 +#: ../vector/v.vol.rst/user1.c:433 msgid "Out of memory" msgstr "" @@ -1284,9 +1373,9 @@ msgstr "" msgid "Unable to execute():" msgstr "" -#: ../db/drivers/sqlite/create_table.c:138 ../db/drivers/sqlite/describe.c:76 -#: ../db/drivers/sqlite/describe.c:127 ../db/drivers/sqlite/execute.c:65 -#: ../db/drivers/sqlite/index.c:93 ../db/drivers/sqlite/select.c:78 +#: ../db/drivers/sqlite/create_table.c:137 ../db/drivers/sqlite/describe.c:75 +#: ../db/drivers/sqlite/describe.c:125 ../db/drivers/sqlite/execute.c:64 +#: ../db/drivers/sqlite/index.c:92 ../db/drivers/sqlite/select.c:77 msgid "Error in sqlite3_step():" msgstr "" @@ -1337,53 +1426,53 @@ msgstr "" msgid "Database <%s> not found" msgstr "" -#: ../db/drivers/sqlite/describe.c:59 ../db/drivers/sqlite/execute.c:50 -#: ../db/drivers/sqlite/select.c:61 +#: ../db/drivers/sqlite/describe.c:58 ../db/drivers/sqlite/execute.c:49 +#: ../db/drivers/sqlite/select.c:60 msgid "Error in sqlite3_prepare():" msgstr "" -#: ../db/drivers/sqlite/describe.c:190 +#: ../db/drivers/sqlite/describe.c:188 #, c-format msgid "SQLite driver: column '%s', SQLite type %d is not supported" msgstr "" -#: ../db/drivers/sqlite/execute.c:78 +#: ../db/drivers/sqlite/execute.c:77 msgid "Error in sqlite3_finalize():" msgstr "" -#: ../db/drivers/sqlite/execute.c:104 +#: ../db/drivers/sqlite/execute.c:102 msgid "'BEGIN' transaction failed:" msgstr "" -#: ../db/drivers/sqlite/execute.c:130 +#: ../db/drivers/sqlite/execute.c:127 msgid "'COMMIT' transaction failed:" msgstr "" -#: ../db/drivers/sqlite/fetch.c:69 +#: ../db/drivers/sqlite/fetch.c:68 msgid "Unable to fetch:" msgstr "" -#: ../db/drivers/sqlite/fetch.c:84 +#: ../db/drivers/sqlite/fetch.c:83 msgid "DB_PREVIOUS is not supported" msgstr "" -#: ../db/drivers/sqlite/fetch.c:90 +#: ../db/drivers/sqlite/fetch.c:89 msgid "DB_LAST is not supported" msgstr "" -#: ../db/drivers/sqlite/fetch.c:194 +#: ../db/drivers/sqlite/fetch.c:193 msgid "Unable to scan timestamp:" msgstr "" -#: ../db/drivers/sqlite/fetch.c:209 +#: ../db/drivers/sqlite/fetch.c:208 msgid "SQLite driver: parsing of interval values not implemented; assuming seconds" msgstr "" -#: ../db/drivers/sqlite/fetch.c:213 +#: ../db/drivers/sqlite/fetch.c:212 msgid "Unable to scan interval:" msgstr "" -#: ../db/drivers/sqlite/fetch.c:273 +#: ../db/drivers/sqlite/fetch.c:271 msgid "Unable to get number of rows:" msgstr "" @@ -1397,7 +1486,7 @@ msgstr "" msgid "SQLite database connection '%s' is still busy" msgstr "" -#: ../db/drivers/sqlite/listtab.c:48 ../db/drivers/sqlite/listtab.c:63 +#: ../db/drivers/sqlite/listtab.c:47 ../db/drivers/sqlite/listtab.c:62 msgid "Unable to list tables:" msgstr "" @@ -1439,7 +1528,7 @@ msgstr "" #: ../display/d.vect.thematic/main.c:88 ../display/d.vect/main.c:72 #: ../display/d.where/main.c:44 ../general/g.cairocomp/main.c:200 #: ../general/g.mkfontcap/main.c:64 ../general/g.pnmcomp/main.c:282 -#: ../general/g.ppmtopng/main.c:115 +#: ../general/g.ppmtopng/main.c:116 #: ../locale/scriptstrings/d.background_to_translate.c:2 #: ../locale/scriptstrings/d.correlate_to_translate.c:2 #: ../locale/scriptstrings/d.frame_to_translate.c:2 @@ -1657,7 +1746,7 @@ msgstr "" #: ../display/d.colorlist/main.c:35 ../display/d.font/main.c:46 #: ../display/d.fontlist/main.c:46 ../general/g.gisenv/main.c:43 -#: ../general/g.mapset/main.c:70 ../general/g.mapsets/main.c:87 +#: ../general/g.mapset/main.c:71 ../general/g.mapsets/main.c:87 #: ../general/g.region/main.c:66 ../temporal/t.connect/main.c:35 msgid "settings" msgstr "" @@ -1724,10 +1813,10 @@ msgstr "" #: ../misc/m.nviz.image/main.c:51 ../misc/m.nviz.script/main.c:69 #: ../raster/r.basins.fill/main.c:52 ../raster/r.buffer/main.c:65 #: ../raster/r.buildvrt/main.c:76 ../raster/r.carve/main.c:70 -#: ../raster/r.category/main.c:58 ../raster/r.circle/main.c:49 +#: ../raster/r.category/main.c:59 ../raster/r.circle/main.c:49 #: ../raster/r.clump/main.c:58 ../raster/r.coin/main.c:65 #: ../raster/r.colors.out/raster_main.c:45 ../raster/r.colors/edit_colors.c:83 -#: ../raster/r.composite/main.c:70 ../raster/r.compress/main.c:67 +#: ../raster/r.composite/main.c:70 ../raster/r.compress/main.c:70 #: ../raster/r.contour/main.c:87 ../raster/r.cost/main.c:162 #: ../raster/r.covar/main.c:48 ../raster/r.cross/main.c:64 #: ../raster/r.describe/main.c:53 ../raster/r.distance/main.c:34 @@ -1755,24 +1844,24 @@ msgstr "" #: ../raster/r.li/r.li.pielou/pielou.c:46 ../raster/r.li/r.li.renyi/renyi.c:47 #: ../raster/r.li/r.li.richness/richness.c:42 #: ../raster/r.li/r.li.shannon/shannon.c:46 ../raster/r.li/r.li.shape/main.c:48 -#: ../raster/r.li/r.li.simpson/simpson.c:46 ../raster/r.mapcalc/main.c:70 +#: ../raster/r.li/r.li.simpson/simpson.c:46 ../raster/r.mapcalc/main.c:74 #: ../raster/r.mask.status/main.c:35 ../raster/r.mfilter/main.c:65 #: ../raster/r.mode/main.c:53 ../raster/r.neighbors/main.c:181 #: ../raster/r.null/main.c:58 ../raster/r.object.geometry/main.c:76 -#: ../raster/r.out.ascii/main.c:53 ../raster/r.out.bin/main.c:298 +#: ../raster/r.out.ascii/main.c:54 ../raster/r.out.bin/main.c:298 #: ../raster/r.out.gdal/main.c:135 ../raster/r.out.gridatb/main.c:66 -#: ../raster/r.out.mat/main.c:62 ../raster/r.out.mpeg/main.c:103 +#: ../raster/r.out.mat/main.c:62 ../raster/r.out.mpeg/main.c:104 #: ../raster/r.out.png/main.c:110 ../raster/r.out.pov/main.c:111 #: ../raster/r.out.ppm/main.c:52 ../raster/r.out.ppm3/main.c:57 #: ../raster/r.out.vrml/main.c:44 ../raster/r.out.vtk/main.c:59 #: ../raster/r.param.scale/interface.c:52 ../raster/r.patch/main.c:68 -#: ../raster/r.path/main.c:149 ../raster/r.profile/main.c:55 +#: ../raster/r.path/main.c:150 ../raster/r.profile/main.c:57 #: ../raster/r.proj/main.c:151 ../raster/r.quant/main.c:48 #: ../raster/r.quantile/main.c:297 ../raster/r.random.cells/main.c:49 #: ../raster/r.random.surface/main.c:56 ../raster/r.random/main.c:53 #: ../raster/r.reclass/main.c:51 ../raster/r.recode/main.c:47 -#: ../raster/r.region/main.c:45 ../raster/r.regression.line/main.c:45 -#: ../raster/r.regression.multi/main.c:129 ../raster/r.relief/main.c:104 +#: ../raster/r.region/main.c:45 ../raster/r.regression.line/main.c:51 +#: ../raster/r.regression.multi/main.c:137 ../raster/r.relief/main.c:104 #: ../raster/r.report/main.c:67 ../raster/r.resamp.bspline/main.c:77 #: ../raster/r.resamp.filter/main.c:422 ../raster/r.resamp.interp/main.c:85 #: ../raster/r.resamp.rst/main.c:144 ../raster/r.resamp.stats/main.c:262 @@ -1784,8 +1873,8 @@ msgstr "" #: ../raster/r.smooth.edgepreserve/main.c:46 #: ../raster/r.solute.transport/main.c:228 ../raster/r.spread/main.c:102 #: ../raster/r.spreadpath/main.c:77 ../raster/r.statistics/main.c:53 -#: ../raster/r.stats.quantile/main.c:565 ../raster/r.stats.zonal/main.c:104 -#: ../raster/r.stats/main.c:109 ../raster/r.stream.extract/main.c:76 +#: ../raster/r.stats.quantile/main.c:644 ../raster/r.stats.zonal/main.c:104 +#: ../raster/r.stats/main.c:110 ../raster/r.stream.extract/main.c:76 #: ../raster/r.sun/main.c:241 ../raster/r.sunhours/main.c:70 #: ../raster/r.sunmask/main.c:118 ../raster/r.support.stats/main.c:35 #: ../raster/r.support/main.c:54 ../raster/r.surf.area/main.c:75 @@ -1797,14 +1886,14 @@ msgstr "" #: ../raster/r.to.rast3/main.c:197 ../raster/r.to.rast3elev/main.c:375 #: ../raster/r.to.vect/main.c:77 ../raster/r.topidx/main.c:37 #: ../raster/r.topmodel/main.c:48 ../raster/r.transect/main.c:102 -#: ../raster/r.univar/r.univar_main.c:152 ../raster/r.uslek/main.c:52 +#: ../raster/r.univar/r.univar_main.c:165 ../raster/r.uslek/main.c:52 #: ../raster/r.usler/main.c:52 ../raster/r.viewshed/main.cpp:103 -#: ../raster/r.volume/main.c:80 ../raster/r.walk/main.c:212 +#: ../raster/r.volume/main.c:87 ../raster/r.walk/main.c:212 #: ../raster/r.water.outlet/main.c:58 ../raster/r.watershed/front/main.c:75 #: ../raster/r.what.color/main.c:190 ../raster/r.what/main.c:111 #: ../raster3d/r3.cross.rast/main.c:231 ../raster3d/r3.to.rast/main.c:259 #: ../vector/v.neighbors/main.c:121 ../vector/v.sample/main.c:75 -#: ../vector/v.to.rast/main.c:47 ../vector/v.what.rast/main.c:72 +#: ../vector/v.to.rast/main.c:47 ../vector/v.what.rast/main.c:79 #: ../vector/v.what.rast3/main.c:67 ../visualization/ximgview/main.c:289 msgid "raster" msgstr "" @@ -1976,10 +2065,10 @@ msgstr "" #: ../raster/r.contour/main.c:90 ../raster/r.random/main.c:55 #: ../vector/v.buffer/main.c:217 ../vector/v.build.polylines/main.c:113 #: ../vector/v.build/main.c:36 ../vector/v.category/main.c:98 -#: ../vector/v.class/main.c:44 ../vector/v.clean/main.c:50 +#: ../vector/v.class/main.c:53 ../vector/v.clean/main.c:50 #: ../vector/v.clean/test/topocheck.c:41 ../vector/v.cluster/main.c:82 #: ../vector/v.colors.out/main.c:48 ../vector/v.colors/main.c:57 -#: ../vector/v.db.connect/main.c:51 ../vector/v.db.select/main.c:97 +#: ../vector/v.db.connect/main.c:59 ../vector/v.db.select/main.c:97 #: ../vector/v.decimate/main.c:116 ../vector/v.delaunay/main.c:85 #: ../vector/v.distance/main.c:125 ../vector/v.drape/main.c:55 #: ../vector/v.edit/main.c:55 ../vector/v.external.out/main.c:42 @@ -1990,7 +2079,7 @@ msgstr "" #: ../vector/v.in.dxf/main.c:62 ../vector/v.in.lidar/main.c:134 #: ../vector/v.in.ogr/main.c:210 ../vector/v.in.pdal/main.cpp:129 #: ../vector/v.in.region/main.c:40 ../vector/v.info/main.c:42 -#: ../vector/v.info/print.c:690 ../vector/v.kcv/main.c:53 +#: ../vector/v.info/print.c:691 ../vector/v.kcv/main.c:53 #: ../vector/v.kernel/main.c:106 ../vector/v.label.sa/main.c:38 #: ../vector/v.label/main.c:59 ../vector/v.lidar.correction/main.c:70 #: ../vector/v.lidar.edgedetection/main.c:75 @@ -2025,9 +2114,9 @@ msgstr "" #: ../vector/v.to.points/main.c:52 ../vector/v.to.rast/main.c:45 #: ../vector/v.to.rast3/main.c:48 ../vector/v.transform/main.c:71 #: ../vector/v.type/main.c:38 ../vector/v.univar/main.c:94 -#: ../vector/v.vect.stats/main.c:128 ../vector/v.vol.rst/main.c:218 -#: ../vector/v.voronoi/main.c:118 ../vector/v.what.rast/main.c:70 -#: ../vector/v.what.rast3/main.c:65 ../vector/v.what/main.c:61 +#: ../vector/v.vect.stats/main.c:136 ../vector/v.vol.rst/main.c:218 +#: ../vector/v.voronoi/main.c:118 ../vector/v.what.rast/main.c:77 +#: ../vector/v.what.rast3/main.c:65 ../vector/v.what/main.c:63 #: ../visualization/ximgview/main.c:290 msgid "vector" msgstr "" @@ -2049,11 +2138,11 @@ msgid "No graphics device selected" msgstr "" #: ../display/d.extract/main.c:96 ../doc/examples/vector/v.example/main.c:76 -#: ../general/g.region/main.c:554 ../misc/m.nviz.image/vector.c:83 +#: ../general/g.region/main.c:569 ../misc/m.nviz.image/vector.c:83 #: ../raster/r.carve/main.c:153 ../raster/r.cost/main.c:357 -#: ../raster/r.walk/main.c:460 ../scripts/r.mask/r.mask.py:174 -#: ../scripts/v.db.univar/v.db.univar.py:79 -#: ../scripts/v.dissolve/v.dissolve.py:585 ../scripts/v.pack/v.pack.py:62 +#: ../raster/r.walk/main.c:460 ../scripts/r.mask/r.mask.py:173 +#: ../scripts/v.db.univar/v.db.univar.py:80 +#: ../scripts/v.dissolve/v.dissolve.py:578 ../scripts/v.pack/v.pack.py:62 #: ../scripts/v.report/v.report.py:85 ../vector/v.clean/test/topocheck.c:62 #: ../vector/v.colors/main.c:252 ../vector/v.edit/main.c:161 #: ../vector/v.lidar.correction/main.c:158 @@ -2066,28 +2155,28 @@ msgstr "" #: ../vector/v.lrs/v.lrs.where/main.c:135 ../vector/v.outlier/main.c:176 #: ../vector/v.profile/main.c:371 ../vector/v.profile/main.c:375 #: ../vector/v.surf.bspline/main.c:260 ../vector/v.surf.bspline/main.c:336 -#: ../vector/v.vect.stats/main.c:280 ../vector/v.vect.stats/main.c:288 +#: ../vector/v.vect.stats/main.c:319 ../vector/v.vect.stats/main.c:327 #, c-format, python-format msgid "Vector map <%s> not found" msgstr "" #: ../display/d.extract/main.c:101 ../display/d.path/main.c:190 #: ../display/d.vect.chart/main.c:244 -#: ../doc/examples/vector/v.example/main.c:88 ../general/g.region/main.c:564 +#: ../doc/examples/vector/v.example/main.c:88 ../general/g.region/main.c:579 #: ../general/manage/lister/vector.c:32 ../misc/m.nviz.image/vector.c:301 #: ../raster/r.carve/main.c:157 ../raster/r.cost/main.c:599 #: ../raster/r.cost/main.c:666 ../raster/r.drain/main.c:277 -#: ../raster/r.path/main.c:320 ../raster/r.random/support.c:66 +#: ../raster/r.path/main.c:321 ../raster/r.random/support.c:66 #: ../raster/r.region/main.c:172 ../raster/r.sim/simlib/observation_points.c:42 #: ../raster/r.walk/main.c:760 ../raster/r.walk/main.c:827 #: ../raster/r.what/main.c:265 ../raster3d/r3.flow/main.c:398 #: ../vector/v.buffer/main.c:332 ../vector/v.build.polylines/main.c:152 #: ../vector/v.build/main.c:120 ../vector/v.build/main.c:130 -#: ../vector/v.class/main.c:98 ../vector/v.clean/main.c:291 +#: ../vector/v.class/main.c:145 ../vector/v.clean/main.c:291 #: ../vector/v.clean/test/topocheck.c:66 ../vector/v.clean/test/topocheck.c:86 #: ../vector/v.cluster/main.c:140 ../vector/v.colors.out/make_colors.c:23 #: ../vector/v.colors.out/scan_cats.c:19 ../vector/v.colors/main.c:276 -#: ../vector/v.db.connect/main.c:148 ../vector/v.db.select/main.c:268 +#: ../vector/v.db.connect/main.c:221 ../vector/v.db.select/main.c:268 #: ../vector/v.decimate/main.c:267 ../vector/v.delaunay/main.c:120 #: ../vector/v.distance/main.c:398 ../vector/v.distance/main.c:421 #: ../vector/v.drape/main.c:141 ../vector/v.edit/main.c:176 @@ -2130,16 +2219,16 @@ msgstr "" #: ../vector/v.reclass/main.c:113 ../vector/v.rectify/main.c:152 #: ../vector/v.sample/main.c:120 ../vector/v.segment/main.c:107 #: ../vector/v.select/main.c:118 ../vector/v.split/main.c:171 -#: ../vector/v.support/main.c:132 ../vector/v.surf.idw/read_sites.c:30 +#: ../vector/v.support/main.c:132 ../vector/v.surf.idw/read_sites.c:29 #: ../vector/v.surf.rst/main.c:575 ../vector/v.surf.rst/main.c:697 #: ../vector/v.to.3d/main.c:71 ../vector/v.to.db/main.c:75 #: ../vector/v.to.points/main.c:152 ../vector/v.to.rast/support.c:97 #: ../vector/v.to.rast/support.c:267 ../vector/v.to.rast/support.c:495 #: ../vector/v.to.rast/vect2rast.c:39 ../vector/v.to.rast3/main.c:74 #: ../vector/v.transform/main.c:207 ../vector/v.type/main.c:128 -#: ../vector/v.univar/main.c:173 ../vector/v.vect.stats/main.c:284 -#: ../vector/v.vect.stats/main.c:296 ../vector/v.vol.rst/main.c:547 -#: ../vector/v.voronoi/main.c:193 ../vector/v.what.rast/main.c:130 +#: ../vector/v.univar/main.c:193 ../vector/v.vect.stats/main.c:323 +#: ../vector/v.vect.stats/main.c:335 ../vector/v.vol.rst/main.c:547 +#: ../vector/v.voronoi/main.c:193 ../vector/v.what.rast/main.c:171 #: ../vector/v.what.rast3/main.c:115 #, c-format msgid "Unable to open vector map <%s>" @@ -2148,10 +2237,10 @@ msgstr "" #: ../display/d.extract/main.c:104 ../doc/examples/vector/v.example/main.c:101 #: ../raster/r.carve/vect.c:30 ../raster/r.contour/main.c:155 #: ../raster/r.drain/main.c:204 ../raster/r.flow/flow_io.c:181 -#: ../raster/r.path/main.c:260 ../raster/r.random/random.c:58 +#: ../raster/r.path/main.c:261 ../raster/r.random/random.c:58 #: ../raster/r.resamp.bspline/main.c:484 ../raster/r.sim/simlib/output.c:54 #: ../raster/r.sim/simlib/output.c:61 ../raster/r.stream.extract/close.c:38 -#: ../raster/r.to.vect/main.c:170 ../raster/r.volume/main.c:166 +#: ../raster/r.to.vect/main.c:170 ../raster/r.volume/main.c:232 #: ../raster3d/r3.flow/main.c:383 ../scripts/v.what.strds/v.what.strds.py:229 #: ../vector/v.buffer/main.c:401 ../vector/v.build.polylines/main.c:157 #: ../vector/v.build/main.c:156 ../vector/v.clean/main.c:296 @@ -2162,7 +2251,7 @@ msgstr "" #: ../vector/v.external/main.c:178 ../vector/v.extract/main.c:409 #: ../vector/v.extrude/main.c:194 ../vector/v.fill.holes/main.c:88 #: ../vector/v.generalize/main.c:335 ../vector/v.hull/main.c:122 -#: ../vector/v.in.ascii/main.c:252 ../vector/v.in.db/main.c:150 +#: ../vector/v.in.ascii/main.c:252 ../vector/v.in.db/main.c:157 #: ../vector/v.in.dxf/main.c:143 ../vector/v.in.lidar/main.c:566 #: ../vector/v.in.ogr/main.c:870 ../vector/v.in.pdal/main.cpp:441 #: ../vector/v.in.region/main.c:75 ../vector/v.kernel/main.c:345 @@ -2257,7 +2346,7 @@ msgstr "" #: ../display/d.geodesic/main.c:46 ../display/d.rhumbline/main.c:43 #: ../locale/scriptstrings/r.grow_to_translate.c:3 ../misc/m.cogo/main.c:216 -#: ../misc/m.measure/main.c:47 ../raster/r.distance/main.c:35 +#: ../misc/m.measure/main.c:54 ../raster/r.distance/main.c:35 #: ../raster/r.grow.distance/main.c:146 ../vector/v.distance/main.c:126 msgid "distance" msgstr "" @@ -2324,8 +2413,8 @@ msgstr "" #: ../display/d.graph/do_graph.c:105 ../display/d.graph/do_graph.c:350 #: ../display/d.graph/do_graph.c:365 ../display/d.graph/main.c:103 -#: ../display/d.labels/color.c:65 ../display/d.legend.vect/draw.c:201 -#: ../display/d.legend.vect/draw.c:212 ../display/d.rast/display.c:25 +#: ../display/d.labels/color.c:65 ../display/d.legend.vect/draw.c:202 +#: ../display/d.legend.vect/draw.c:213 ../display/d.rast/display.c:25 #: ../raster/r.out.png/main.c:174 #, c-format msgid "[%s]: No such color" @@ -2411,8 +2500,8 @@ msgstr "" #: ../display/d.grid/main.c:93 ../display/d.grid/main.c:98 #: ../display/d.grid/main.c:104 ../display/d.grid/main.c:110 #: ../raster/r.colors.out/raster3d_main.c:64 -#: ../raster/r.colors.out/raster_main.c:63 ../raster/r.what.color/main.c:218 -#: ../vector/v.colors.out/main.c:74 +#: ../raster/r.colors.out/raster_main.c:63 ../raster/r.profile/main.c:123 +#: ../raster/r.what.color/main.c:218 ../vector/v.colors.out/main.c:74 msgid "Color" msgstr "" @@ -2542,12 +2631,12 @@ msgid "Unable to set up lat/long projection parameters" msgstr "" #: ../display/d.grid/plot.c:625 ../display/d.where/main.c:159 -#: ../general/g.region/printwindow.c:338 ../general/g.region/printwindow.c:639 -#: ../general/g.region/printwindow.c:752 ../ps/ps.map/do_geogrid.c:288 +#: ../general/g.region/printwindow.c:362 ../general/g.region/printwindow.c:663 +#: ../general/g.region/printwindow.c:777 ../ps/ps.map/do_geogrid.c:288 #: ../raster/r.horizon/main.c:599 ../raster/r.in.gdal/main.c:1146 -#: ../raster/r.latlong/main.c:115 ../raster/r.proj/main.c:464 -#: ../raster/r.proj/main.c:569 ../raster/r.proj/main.c:615 -#: ../raster/r.proj/main.c:698 ../raster/r.sun/main.c:819 +#: ../raster/r.latlong/main.c:115 ../raster/r.proj/main.c:466 +#: ../raster/r.proj/main.c:571 ../raster/r.proj/main.c:617 +#: ../raster/r.proj/main.c:700 ../raster/r.sun/main.c:819 #: ../raster/r.sunhours/main.c:237 ../raster/r.sunmask/g_solposition.c:125 #: ../vector/v.proj/main.c:361 msgid "Unable to initialize coordinate transformation" @@ -2582,6 +2671,12 @@ msgstr "" msgid "Respect NULL values while drawing" msgstr "" +#: ../display/d.histogram/bar.c:129 ../display/d.histogram/bar.c:385 +#: ../display/d.histogram/pie.c:131 +#, c-format +msgid "Tic name <%s> is too long" +msgstr "" + #: ../display/d.histogram/main.c:81 msgid "histogram" msgstr "" @@ -2605,15 +2700,15 @@ msgstr "" #: ../raster/r.mfilter/main.c:67 ../raster/r.mode/main.c:54 #: ../raster/r.neighbors/main.c:183 ../raster/r.object.geometry/main.c:77 #: ../raster/r.quant/main.c:49 ../raster/r.quantile/main.c:299 -#: ../raster/r.regression.line/main.c:46 -#: ../raster/r.regression.multi/main.c:130 ../raster/r.report/main.c:68 -#: ../raster/r.statistics/main.c:54 ../raster/r.stats.quantile/main.c:566 -#: ../raster/r.stats.zonal/main.c:105 ../raster/r.stats/main.c:110 +#: ../raster/r.regression.line/main.c:52 +#: ../raster/r.regression.multi/main.c:138 ../raster/r.report/main.c:68 +#: ../raster/r.statistics/main.c:54 ../raster/r.stats.quantile/main.c:645 +#: ../raster/r.stats.zonal/main.c:105 ../raster/r.stats/main.c:111 #: ../raster/r.support.stats/main.c:36 ../raster/r.surf.area/main.c:77 -#: ../raster/r.texture/main.c:99 ../raster/r.univar/r.univar_main.c:153 -#: ../raster/r.univar/r3.univar_main.c:103 ../raster3d/r3.in.lidar/main.c:162 +#: ../raster/r.texture/main.c:99 ../raster/r.univar/r.univar_main.c:166 +#: ../raster/r.univar/r3.univar_main.c:119 ../raster3d/r3.in.lidar/main.c:162 #: ../raster3d/r3.neighbors/main.c:207 ../raster3d/r3.stats/main.c:48 -#: ../vector/v.class/main.c:47 ../vector/v.kcv/main.c:54 +#: ../vector/v.class/main.c:56 ../vector/v.kcv/main.c:54 #: ../vector/v.neighbors/main.c:120 ../vector/v.normal/main.c:71 #: ../vector/v.outlier/main.c:69 ../vector/v.perturb/main.c:64 #: ../vector/v.qcount/main.c:60 ../vector/v.random/main.c:100 @@ -2673,11 +2768,6 @@ msgstr "" msgid "Range information for <%s> not available" msgstr "" -#: ../display/d.histogram/pie.c:131 -#, c-format -msgid "Tic name <%s> is too long" -msgstr "" - #: ../display/d.info/main.c:36 msgid "Displays information about the active display monitor." msgstr "" @@ -2758,14 +2848,14 @@ msgstr "" msgid "Unable to open label file <%s>" msgstr "" -#: ../display/d.legend.vect/draw.c:77 ../display/d.legend.vect/main.c:266 +#: ../display/d.legend.vect/draw.c:78 ../display/d.legend.vect/main.c:266 #: ../display/d.linegraph/main.c:409 ../display/d.linegraph/main.c:427 #: ../display/d.linegraph/main.c:726 ../display/d.text/main.c:368 #: ../display/d.where/main.c:168 ../general/g.cairocomp/main.c:46 #: ../imagery/i.group/main.c:169 ../raster/r.buildvrt/main.c:125 #: ../raster/r.in.mat/main.c:126 ../raster/r.in.xyz/main.c:586 -#: ../raster/r.mapcalc/main.c:48 ../raster/r.series.accumulate/main.c:222 -#: ../raster/r.series/main.c:257 ../raster/r.support/main.c:209 +#: ../raster/r.mapcalc/main.c:51 ../raster/r.series.accumulate/main.c:222 +#: ../raster/r.series/main.c:252 ../raster/r.support/main.c:209 #: ../raster/r.topmodel/file_io.c:28 ../raster/r.topmodel/file_io.c:136 #: ../raster/r.topmodel/file_io.c:161 ../raster3d/r3.support/main.c:169 #: ../vector/v.lrs/v.lrs.segment/main.c:131 ../vector/v.net.path/path.c:48 @@ -2774,11 +2864,11 @@ msgstr "" msgid "Unable to open input file <%s>" msgstr "" -#: ../display/d.legend.vect/draw.c:185 +#: ../display/d.legend.vect/draw.c:186 msgid "Cannot read symbol" msgstr "" -#: ../display/d.legend.vect/draw.c:246 +#: ../display/d.legend.vect/draw.c:247 msgid "Invalid value for color type in legend file. Use one of 'lf' or 'ps'." msgstr "" @@ -3175,7 +3265,7 @@ msgstr "" #: ../locale/scriptstrings/t.rast.colors_to_translate.c:22 #: ../locale/scriptstrings/t.rast.colors_to_translate.c:24 #: ../locale/scriptstrings/t.rast.colors_to_translate.c:26 -#: ../raster/r.category/main.c:86 ../raster/r.category/main.c:93 +#: ../raster/r.category/main.c:87 ../raster/r.category/main.c:94 #: ../raster/r.colors/edit_colors.c:110 ../raster/r.colors/edit_colors.c:116 #: ../raster/r.colors/edit_colors.c:122 ../raster/r.colors/edit_colors.c:129 #: ../raster/r.colors/edit_colors.c:138 ../raster/r.colors/edit_colors.c:147 @@ -3498,7 +3588,7 @@ msgid "File <%s> already exists and will be overwritten" msgstr "" #: ../display/d.mon/start.c:55 ../misc/m.nviz.image/main.c:77 -#: ../raster/r.proj/main.c:286 ../vector/v.external/main.c:136 +#: ../raster/r.proj/main.c:288 ../vector/v.external/main.c:136 #: ../vector/v.proj/main.c:163 #, c-format msgid "option <%s>: <%s> exists. To overwrite, use the --overwrite flag" @@ -3568,9 +3658,9 @@ msgstr "" #: ../general/g.pnmcomp/main.c:260 ../imagery/i.atcorr/6s.cpp:54 #: ../imagery/i.ortho.photo/i.ortho.transform/main.c:413 #: ../misc/m.nviz.script/main.c:198 ../misc/m.transform/main.c:273 -#: ../raster/r.category/main.c:215 ../raster/r.horizon/main.c:430 -#: ../raster/r.in.lidar/main.c:670 ../raster/r.out.ascii/main.c:152 -#: ../raster/r.out.ppm3/main.c:134 ../raster/r.profile/main.c:190 +#: ../raster/r.category/main.c:239 ../raster/r.horizon/main.c:430 +#: ../raster/r.in.lidar/main.c:670 ../raster/r.out.ascii/main.c:159 +#: ../raster/r.out.ppm3/main.c:134 ../raster/r.profile/main.c:224 #: ../raster/r.recode/main.c:89 ../raster3d/r3.out.vtk/main.c:422 #: ../vector/v.edit/main.c:82 ../vector/v.net/main.c:99 #: ../vector/v.out.ascii/main.c:129 ../vector/v.out.vtk/main.c:172 @@ -3838,7 +3928,7 @@ msgstr "" msgid "Unable to read FP range for %s" msgstr "" -#: ../display/d.profile/main.c:194 ../raster/r.profile/main.c:56 +#: ../display/d.profile/main.c:194 ../raster/r.profile/main.c:58 #: ../raster/r.transect/main.c:103 ../raster3d/r3.cross.rast/main.c:230 #: ../vector/v.profile/main.c:156 msgid "profile" @@ -3856,7 +3946,7 @@ msgstr "" msgid "Raster map to be profiled" msgstr "" -#: ../display/d.profile/main.c:206 ../raster/r.profile/main.c:72 +#: ../display/d.profile/main.c:206 ../raster/r.profile/main.c:74 msgid "Profile coordinate pairs" msgstr "" @@ -3936,7 +4026,7 @@ msgstr "" msgid "Overlays cell category values on a raster map displayed in the active graphics frame." msgstr "" -#: ../display/d.rast.num/main.c:103 ../raster/r.out.ascii/main.c:74 +#: ../display/d.rast.num/main.c:103 ../raster/r.out.ascii/main.c:78 #: ../raster/r.out.vtk/parameters.c:97 ../raster3d/r3.out.vtk/parameters.c:107 #: ../vector/v.out.ascii/args.c:75 msgid "Number of significant digits (floating point only)" @@ -3949,8 +4039,8 @@ msgstr "" #. GTC Count of window rows #. GTC Count of raster rows #. GTC Count of window rows -#: ../display/d.rast.num/main.c:211 ../raster/r.thin/io.c:106 -#: ../raster/r.thin/io.c:177 ../raster/r.thin/io.c:186 +#: ../display/d.rast.num/main.c:211 ../raster/r.thin/io.c:110 +#: ../raster/r.thin/io.c:186 ../raster/r.thin/io.c:195 #: ../vector/v.kernel/main.c:304 ../vector/v.surf.idw/main.c:248 #, c-format msgid "%d row" @@ -4009,7 +4099,7 @@ msgstr "" #: ../locale/scriptstrings/t.vect.univar_to_translate.c:6 #: ../locale/scriptstrings/t.vect.univar_to_translate.c:7 #: ../locale/scriptstrings/v.report_to_translate.c:5 -#: ../raster/r.category/main.c:67 ../raster/r.category/main.c:76 +#: ../raster/r.category/main.c:68 ../raster/r.category/main.c:77 #: ../raster/r.in.lidar/main.c:197 ../raster/r.in.lidar/main.c:213 #: ../raster/r.in.lidar/main.c:266 ../raster/r.in.lidar/main.c:276 #: ../raster/r.in.lidar/main.c:344 ../raster/r.in.pdal/main.cpp:198 @@ -4071,10 +4161,10 @@ msgstr "" #: ../vector/v.to.3d/args.c:25 ../vector/v.to.db/parse.c:43 #: ../vector/v.to.points/main.c:66 ../vector/v.to.points/main.c:70 #: ../vector/v.to.rast/main.c:59 ../vector/v.to.rast/main.c:62 -#: ../vector/v.to.rast/main.c:65 ../vector/v.vect.stats/main.c:152 -#: ../vector/v.vect.stats/main.c:157 ../vector/v.vect.stats/main.c:162 -#: ../vector/v.vect.stats/main.c:169 ../vector/v.vect.stats/main.c:174 -#: ../vector/v.vect.stats/main.c:179 ../vector/v.vect.stats/main.c:185 +#: ../vector/v.to.rast/main.c:65 ../vector/v.vect.stats/main.c:160 +#: ../vector/v.vect.stats/main.c:165 ../vector/v.vect.stats/main.c:170 +#: ../vector/v.vect.stats/main.c:177 ../vector/v.vect.stats/main.c:182 +#: ../vector/v.vect.stats/main.c:187 ../vector/v.vect.stats/main.c:193 msgid "Selection" msgstr "" @@ -4109,7 +4199,7 @@ msgstr "" msgid "Redraws the content of currently selected monitor." msgstr "" -#: ../display/d.redraw/main.c:49 ../scripts/d.frame/d.frame.py:282 +#: ../display/d.redraw/main.c:49 ../scripts/d.frame/d.frame.py:283 #: ../scripts/d.out.file/d.out.file.py:58 ../scripts/d.to.rast/d.to.rast.py:44 #: ../scripts/d.what.rast/d.what.rast.py:44 #: ../scripts/d.what.vect/d.what.vect.py:44 @@ -4331,13 +4421,13 @@ msgstr "" #: ../display/d.vect/shape.c:41 ../doc/examples/vector/v.example/main.c:110 #: ../vector/v.buffer/main.c:422 ../vector/v.colors/read_rgb.c:23 #: ../vector/v.colors/scan_attr.c:24 ../vector/v.colors/write_rgb.c:20 -#: ../vector/v.distance/main.c:590 ../vector/v.edit/select.c:496 -#: ../vector/v.extrude/main.c:223 ../vector/v.generalize/misc.c:167 +#: ../vector/v.distance/main.c:590 ../vector/v.edit/select.c:499 +#: ../vector/v.extrude/main.c:223 ../vector/v.generalize/misc.c:168 #: ../vector/v.neighbors/main.c:219 ../vector/v.overlay/main.c:422 #: ../vector/v.surf.bspline/crosscorr.c:123 ../vector/v.to.rast/support.c:101 #: ../vector/v.to.rast/support.c:271 ../vector/v.to.rast/support.c:499 -#: ../vector/v.univar/main.c:251 ../vector/v.vect.stats/main.c:345 -#: ../vector/v.vect.stats/main.c:422 ../vector/v.what.rast/main.c:137 +#: ../vector/v.univar/main.c:271 ../vector/v.vect.stats/main.c:384 +#: ../vector/v.vect.stats/main.c:461 ../vector/v.what.rast/main.c:178 #: ../vector/v.what.rast3/main.c:121 #, c-format msgid "Database connection not defined for layer %d" @@ -4346,22 +4436,22 @@ msgstr "" #: ../display/d.vect.chart/plot.c:39 ../display/d.vect.thematic/plot1.c:114 #: ../display/d.vect/attr.c:45 ../display/d.vect/shape.c:47 #: ../doc/examples/vector/v.example/main.c:138 -#: ../misc/m.nviz.image/vector.c:314 ../ps/ps.map/catval.c:53 -#: ../ps/ps.map/catval.c:115 ../ps/ps.map/catval.c:182 +#: ../misc/m.nviz.image/vector.c:314 ../ps/ps.map/catval.c:52 +#: ../ps/ps.map/catval.c:113 ../ps/ps.map/catval.c:179 #: ../raster/r.contour/main.c:170 ../raster/r.random/random.c:67 -#: ../raster/r.to.vect/main.c:200 ../raster/r.volume/main.c:256 +#: ../raster/r.to.vect/main.c:200 ../raster/r.volume/main.c:322 #: ../raster3d/r3.flow/main.c:46 ../vector/v.buffer/main.c:427 -#: ../vector/v.class/main.c:113 ../vector/v.colors.out/make_colors.c:36 +#: ../vector/v.class/main.c:160 ../vector/v.colors.out/make_colors.c:36 #: ../vector/v.colors/read_rgb.c:27 ../vector/v.colors/scan_attr.c:28 -#: ../vector/v.colors/write_rgb.c:24 ../vector/v.db.connect/main.c:224 -#: ../vector/v.db.connect/main.c:334 ../vector/v.db.select/main.c:282 +#: ../vector/v.colors/write_rgb.c:24 ../vector/v.db.connect/main.c:349 +#: ../vector/v.db.connect/main.c:533 ../vector/v.db.select/main.c:282 #: ../vector/v.distance/main.c:562 ../vector/v.distance/main.c:595 #: ../vector/v.distance/main.c:646 ../vector/v.distance/main.c:1395 -#: ../vector/v.distance/main.c:1415 ../vector/v.edit/select.c:509 +#: ../vector/v.distance/main.c:1415 ../vector/v.edit/select.c:512 #: ../vector/v.extract/extract.c:276 ../vector/v.extract/main.c:226 #: ../vector/v.extract/main.c:324 ../vector/v.extrude/main.c:228 -#: ../vector/v.in.ascii/main.c:359 ../vector/v.in.db/main.c:162 -#: ../vector/v.in.db/main.c:308 ../vector/v.in.dxf/write_vect.c:211 +#: ../vector/v.in.ascii/main.c:359 ../vector/v.in.db/main.c:169 +#: ../vector/v.in.db/main.c:315 ../vector/v.in.dxf/write_vect.c:214 #: ../vector/v.in.ogr/main.c:1167 ../vector/v.in.ogr/main.c:1216 #: ../vector/v.info/print.c:221 ../vector/v.kcv/main.c:126 #: ../vector/v.label.sa/labels.c:78 ../vector/v.label/main.c:277 @@ -4380,23 +4470,23 @@ msgstr "" #: ../vector/v.patch/main.c:450 ../vector/v.profile/main.c:440 #: ../vector/v.profile/main.c:605 ../vector/v.random/main.c:243 #: ../vector/v.random/main.c:273 ../vector/v.reclass/main.c:133 -#: ../vector/v.sample/main.c:175 ../vector/v.select/copy_tabs.c:79 +#: ../vector/v.sample/main.c:175 ../vector/v.select/copy_tabs.c:80 #: ../vector/v.surf.bspline/crosscorr.c:132 ../vector/v.surf.bspline/main.c:389 -#: ../vector/v.surf.idw/read_sites.c:59 ../vector/v.surf.rst/main.c:640 +#: ../vector/v.surf.idw/read_sites.c:58 ../vector/v.surf.rst/main.c:640 #: ../vector/v.to.3d/trans2.c:55 ../vector/v.to.3d/trans3.c:58 #: ../vector/v.to.db/query.c:91 ../vector/v.to.db/update.c:53 #: ../vector/v.to.points/main.c:198 ../vector/v.to.rast/support.c:105 #: ../vector/v.to.rast/support.c:277 ../vector/v.to.rast/support.c:506 #: ../vector/v.to.rast/vect2rast.c:58 ../vector/v.to.rast3/main.c:86 #: ../vector/v.transform/trans_digit.c:41 ../vector/v.vol.rst/main.c:588 -#: ../vector/v.vol.rst/user1.c:96 ../vector/v.what.rast/main.c:143 +#: ../vector/v.vol.rst/user1.c:95 ../vector/v.what.rast/main.c:184 #: ../vector/v.what.rast3/main.c:126 #, c-format msgid "Unable to open database <%s> by driver <%s>" msgstr "" #: ../display/d.vect.chart/plot.c:84 ../display/d.vect/attr.c:111 -#: ../vector/v.in.db/main.c:229 +#: ../vector/v.in.db/main.c:236 #, c-format msgid "Unable to open select cursor: '%s'" msgstr "" @@ -4412,7 +4502,7 @@ msgstr "" #: ../display/d.vect/lines.c:136 ../display/d.vect/topo.c:52 #: ../display/d.vect/vert.c:27 ../display/d.vect/zcoor.c:38 #: ../raster/r.cost/main.c:615 ../raster/r.cost/main.c:679 -#: ../raster/r.drain/main.c:294 ../raster/r.path/main.c:338 +#: ../raster/r.drain/main.c:294 ../raster/r.path/main.c:339 #: ../raster/r.to.vect/main.c:300 ../raster/r.walk/main.c:776 #: ../raster/r.walk/main.c:840 ../vector/v.colors.out/scan_cats.c:31 #: ../vector/v.colors/scan_cats.c:24 ../vector/v.colors/scan_z.c:38 @@ -4420,7 +4510,7 @@ msgstr "" #: ../vector/v.label.sa/labels.c:140 ../vector/v.label/main.c:292 #: ../vector/v.out.lidar/main.c:731 ../vector/v.perturb/main.c:200 #: ../vector/v.to.3d/trans2.c:84 ../vector/v.to.3d/trans3.c:86 -#: ../vector/v.vol.rst/user1.c:138 ../vector/v.what.rast/main.c:215 +#: ../vector/v.vol.rst/user1.c:137 ../vector/v.what.rast/main.c:256 msgid "Unable to read vector map" msgstr "" @@ -4479,31 +4569,31 @@ msgstr "" msgid "Classes" msgstr "" -#: ../display/d.vect.thematic/main.c:120 ../vector/v.class/main.c:67 +#: ../display/d.vect.thematic/main.c:120 ../vector/v.class/main.c:76 msgid "Algorithm to use for classification" msgstr "" -#: ../display/d.vect.thematic/main.c:123 ../vector/v.class/main.c:75 +#: ../display/d.vect.thematic/main.c:123 ../vector/v.class/main.c:84 msgid "quantiles" msgstr "" -#: ../display/d.vect.thematic/main.c:123 ../vector/v.class/main.c:75 +#: ../display/d.vect.thematic/main.c:123 ../vector/v.class/main.c:84 msgid "simple intervals" msgstr "" -#: ../display/d.vect.thematic/main.c:123 ../vector/v.class/main.c:75 +#: ../display/d.vect.thematic/main.c:123 ../vector/v.class/main.c:84 msgid "standard deviations" msgstr "" -#: ../display/d.vect.thematic/main.c:124 ../vector/v.class/main.c:76 +#: ../display/d.vect.thematic/main.c:124 ../vector/v.class/main.c:85 msgid "discontinuities" msgstr "" -#: ../display/d.vect.thematic/main.c:124 ../vector/v.class/main.c:76 +#: ../display/d.vect.thematic/main.c:124 ../vector/v.class/main.c:85 msgid "equiprobable (normal distribution)" msgstr "" -#: ../display/d.vect.thematic/main.c:133 ../vector/v.class/main.c:84 +#: ../display/d.vect.thematic/main.c:133 ../vector/v.class/main.c:94 msgid "Number of classes to define" msgstr "" @@ -4593,7 +4683,7 @@ msgid "'layer' must be > 0" msgstr "" #: ../display/d.vect.thematic/main.c:290 ../display/d.vect/opt.c:143 -#: ../vector/v.db.connect/main.c:174 +#: ../vector/v.db.connect/main.c:253 msgid "Database connection not defined" msgstr "" @@ -4653,12 +4743,12 @@ msgstr "" msgid "Classification of %s into %i classes\n" msgstr "" -#: ../display/d.vect.thematic/main.c:517 ../vector/v.class/main.c:195 +#: ../display/d.vect.thematic/main.c:517 ../vector/v.class/main.c:297 #, c-format msgid "Using algorithm: *** %s ***\n" msgstr "" -#: ../display/d.vect.thematic/main.c:518 ../vector/v.class/main.c:196 +#: ../display/d.vect.thematic/main.c:518 ../vector/v.class/main.c:299 #, c-format msgid "Mean: %f\tStandard deviation = %f\n" msgstr "" @@ -4668,7 +4758,7 @@ msgstr "" msgid "Last chi2 = %f\n" msgstr "" -#: ../display/d.vect.thematic/main.c:524 ../vector/v.class/main.c:203 +#: ../display/d.vect.thematic/main.c:524 ../vector/v.class/main.c:306 #, c-format msgid "Stdev multiplied by %.4f to define step\n" msgstr "" @@ -4741,6 +4831,12 @@ msgstr "" msgid "Topology level required for drawing centroids for OGR layers" msgstr "" +#: ../display/d.vect/legend.c:18 ../display/d.vect/main.c:367 +#: ../imagery/i.ortho.photo/i.ortho.rectify/main.c:290 +#, c-format +msgid "Map name <%s> is too long" +msgstr "" + #: ../display/d.vect/lines.c:114 msgid "Unable to display features by id, topology not available. Please try to rebuild topology using v.build or v.build.all." msgstr "" @@ -4935,31 +5031,31 @@ msgstr "" msgid "Region size is greater than maxreg, nothing displayed" msgstr "" -#: ../display/d.vect/main.c:373 +#: ../display/d.vect/main.c:376 #, c-format msgid "The -%c flag and <%s> option cannot be used together, the -%c flag will be ignored!" msgstr "" -#: ../display/d.vect/main.c:398 ../display/d.vect/main.c:404 +#: ../display/d.vect/main.c:401 ../display/d.vect/main.c:407 #, c-format msgid "Option <%s> must be > 0" msgstr "" -#: ../display/d.vect/main.c:409 +#: ../display/d.vect/main.c:412 #, c-format msgid "%d error in cat option" msgid_plural "%d errors in cat option" msgstr[0] "" -#: ../display/d.vect/main.c:426 +#: ../display/d.vect/main.c:429 msgid "Plotting..." msgstr "" -#: ../display/d.vect/main.c:438 +#: ../display/d.vect/main.c:441 msgid "The bounding box of the map is outside the current region, nothing drawn" msgstr "" -#: ../display/d.vect/main.c:510 +#: ../display/d.vect/main.c:513 msgid "Rendering failed" msgstr "" @@ -5043,7 +5139,7 @@ msgstr "" #: ../raster/r.random.cells/main.c:50 ../raster/r.random/main.c:54 #: ../vector/v.drape/main.c:57 ../vector/v.extrude/main.c:68 #: ../vector/v.kcv/main.c:57 ../vector/v.random/main.c:99 -#: ../vector/v.sample/main.c:74 ../vector/v.what.rast/main.c:71 +#: ../vector/v.sample/main.c:74 ../vector/v.what.rast/main.c:78 #: ../vector/v.what.rast3/main.c:66 msgid "sampling" msgstr "" @@ -5051,8 +5147,8 @@ msgstr "" #: ../display/d.where/main.c:46 #: ../locale/scriptstrings/v.what.strds_to_translate.c:5 #: ../locale/scriptstrings/v.what.vect_to_translate.c:5 -#: ../raster/r.what/main.c:113 ../vector/v.what.rast/main.c:73 -#: ../vector/v.what.rast3/main.c:68 ../vector/v.what/main.c:63 +#: ../raster/r.what/main.c:113 ../vector/v.what.rast/main.c:80 +#: ../vector/v.what.rast3/main.c:68 ../vector/v.what/main.c:65 msgid "position" msgstr "" @@ -5062,8 +5158,8 @@ msgstr "" #: ../locale/scriptstrings/v.what.strds_to_translate.c:6 #: ../locale/scriptstrings/v.what.vect_to_translate.c:6 #: ../raster/r.what.color/main.c:191 ../raster/r.what/main.c:112 -#: ../vector/v.what.rast/main.c:74 ../vector/v.what.rast3/main.c:69 -#: ../vector/v.what/main.c:62 +#: ../vector/v.what.rast/main.c:81 ../vector/v.what.rast3/main.c:69 +#: ../vector/v.what/main.c:64 msgid "querying" msgstr "" @@ -5136,25 +5232,25 @@ msgstr "" msgid "My first raster module" msgstr "" -#: ../doc/examples/raster/r.example/main.c:105 ../general/g.region/main.c:499 -#: ../general/g.region/main.c:885 ../general/g.region/main.c:894 +#: ../doc/examples/raster/r.example/main.c:105 ../general/g.region/main.c:512 +#: ../general/g.region/main.c:900 ../general/g.region/main.c:909 #: ../imagery/i.gensig/parse.c:38 ../imagery/i.gensigset/parse.c:45 #: ../imagery/i.ortho.photo/i.ortho.elev/main.c:219 ../imagery/i.pca/main.c:132 #: ../imagery/i.segment/parse_args.c:202 ../imagery/i.svm.train/main.c:260 #: ../misc/m.nviz.image/surface.c:51 ../misc/m.nviz.image/surface.c:107 #: ../raster/r.buffer/main.c:110 ../raster/r.carve/main.c:160 -#: ../raster/r.category/main.c:161 ../raster/r.category/main.c:181 +#: ../raster/r.category/main.c:185 ../raster/r.category/main.c:205 #: ../raster/r.coin/main.c:119 ../raster/r.coin/main.c:121 -#: ../raster/r.colors/edit_colors.c:506 ../raster/r.compress/main.c:124 -#: ../raster/r.compress/main.c:318 ../raster/r.cost/main.c:364 +#: ../raster/r.colors/edit_colors.c:506 ../raster/r.compress/main.c:127 +#: ../raster/r.compress/main.c:333 ../raster/r.cost/main.c:364 #: ../raster/r.cost/main.c:391 ../raster/r.cost/main.c:711 -#: ../raster/r.cross/main.c:101 ../raster/r.distance/parse.c:70 -#: ../raster/r.distance/parse.c:79 ../raster/r.fill.stats/main.c:1026 +#: ../raster/r.cross/main.c:101 ../raster/r.distance/parse.c:76 +#: ../raster/r.distance/parse.c:85 ../raster/r.fill.stats/main.c:1026 #: ../raster/r.flow/flow_io.c:67 ../raster/r.flow/flow_io.c:245 #: ../raster/r.geomorphon/memory.c:47 ../raster/r.info/main.c:140 #: ../raster/r.kappa/main.c:173 ../raster/r.kappa/stats.c:33 -#: ../raster/r.kappa/stats.c:40 ../raster/r.mapcalc/map.c:514 -#: ../raster/r.mapcalc/map.c:812 ../raster/r.mapcalc/map3.c:712 +#: ../raster/r.kappa/stats.c:40 ../raster/r.mapcalc/map.c:513 +#: ../raster/r.mapcalc/map.c:817 ../raster/r.mapcalc/map3.c:720 #: ../raster/r.null/main.c:129 ../raster/r.reclass/main.c:80 #: ../raster/r.report/parse.c:276 ../raster/r.ros/main.c:362 #: ../raster/r.ros/main.c:373 ../raster/r.ros/main.c:377 @@ -5174,14 +5270,14 @@ msgstr "" #: ../raster/r.stream.extract/main.c:173 ../raster/r.stream.extract/main.c:178 #: ../raster/r.terraflow/main.cpp:207 ../raster/r.terraflow/main.cpp:354 #: ../raster/r.terraflow/main.cpp:390 ../raster/r.tile/main.c:84 -#: ../raster/r.univar/r.univar_main.c:304 ../raster/r.walk/main.c:467 +#: ../raster/r.univar/r.univar_main.c:356 ../raster/r.walk/main.c:467 #: ../raster/r.walk/main.c:495 ../raster/r.walk/main.c:500 #: ../raster/r.walk/main.c:872 ../scripts/d.correlate/d.correlate.py:46 -#: ../scripts/d.polar/d.polar.py:57 ../scripts/d.rast.leg/d.rast.leg.py:95 +#: ../scripts/d.polar/d.polar.py:58 ../scripts/d.rast.leg/d.rast.leg.py:95 #: ../scripts/d.rast.leg/d.rast.leg.py:99 #: ../scripts/r.buffer.lowmem/r.buffer.lowmem.py:85 -#: ../scripts/r.fillnulls/r.fillnulls.py:152 ../scripts/r.grow/r.grow.py:117 -#: ../scripts/r.mask/r.mask.py:152 ../scripts/r.pack/r.pack.py:72 +#: ../scripts/r.fillnulls/r.fillnulls.py:152 ../scripts/r.grow/r.grow.py:120 +#: ../scripts/r.mask/r.mask.py:151 ../scripts/r.pack/r.pack.py:74 #: ../scripts/r.reclass.area/r.reclass.area.py:101 #: ../scripts/r.reclass.area/r.reclass.area.py:222 ../scripts/r.rgb/r.rgb.py:55 #: ../scripts/v.rast.stats/v.rast.stats.py:154 ../vector/v.colors/main.c:317 @@ -5215,55 +5311,59 @@ msgstr "" msgid "Unable to copy attribute table to vector map <%s>" msgstr "" -#: ../general/g.access/exp_perms.c:11 ../general/g.access/exp_perms.c:29 -msgid "have" -msgstr "" - -#: ../general/g.access/exp_perms.c:12 -msgid "read " +#: ../general/g.access/exp_perms.c:7 +#, c-format +msgid "Cannot explain access permissions for mapset <%s>" msgstr "" -#: ../general/g.access/exp_perms.c:15 -msgid "Everyone" +#: ../general/g.access/exp_perms.c:10 +#, c-format +msgid "Everyone will have access to mapset <%s>" msgstr "" -#: ../general/g.access/exp_perms.c:16 -msgid "has" +#: ../general/g.access/exp_perms.c:11 +#, c-format +msgid "Everyone now has access to mapset <%s>" msgstr "" -#: ../general/g.access/exp_perms.c:19 -msgid "Only users in your group" +#: ../general/g.access/exp_perms.c:14 +#, c-format +msgid "Only users in your group will have access to mapset <%s>" msgstr "" -#: ../general/g.access/exp_perms.c:22 -msgid "Only users outside your group" +#: ../general/g.access/exp_perms.c:16 +#, c-format +msgid "Only users in your group now have access to mapset <%s>" msgstr "" -#: ../general/g.access/exp_perms.c:25 -msgid "Only you" +#: ../general/g.access/exp_perms.c:20 +#, c-format +msgid "Only users outside your group will have access to mapset <%s>" msgstr "" -#: ../general/g.access/exp_perms.c:31 +#: ../general/g.access/exp_perms.c:22 #, c-format -msgid "%s %s %s %saccess to mapset %s" +msgid "Only users outside your group now have access to mapset <%s>" msgstr "" -#: ../general/g.access/exp_perms.c:32 -msgid "now" +#: ../general/g.access/exp_perms.c:26 +#, c-format +msgid "Only you will have access to mapset <%s>" msgstr "" -#: ../general/g.access/exp_perms.c:32 -msgid "will" +#: ../general/g.access/exp_perms.c:27 +#, c-format +msgid "Only you now have access to mapset <%s>" msgstr "" #: ../general/g.access/main.c:39 ../general/g.cairocomp/main.c:199 #: ../general/g.copy/main.c:41 ../general/g.dirseps/main.c:33 #: ../general/g.filename/main.c:40 ../general/g.findetc/main.c:27 -#: ../general/g.findfile/main.c:39 ../general/g.gisenv/main.c:42 -#: ../general/g.gui/main.c:38 ../general/g.list/main.c:62 -#: ../general/g.mapset/main.c:69 ../general/g.mapsets/main.c:86 +#: ../general/g.findfile/main.c:61 ../general/g.gisenv/main.c:42 +#: ../general/g.gui/main.c:38 ../general/g.list/main.c:64 +#: ../general/g.mapset/main.c:70 ../general/g.mapsets/main.c:86 #: ../general/g.message/main.c:37 ../general/g.mkfontcap/main.c:63 -#: ../general/g.pnmcomp/main.c:281 ../general/g.ppmtopng/main.c:114 +#: ../general/g.pnmcomp/main.c:281 ../general/g.ppmtopng/main.c:115 #: ../general/g.proj/main.c:71 ../general/g.region/main.c:65 #: ../general/g.remove/main.c:69 ../general/g.rename/main.c:44 #: ../general/g.setproj/main.c:77 ../general/g.tempfile/main.c:38 @@ -5281,8 +5381,8 @@ msgstr "" #: ../general/g.access/main.c:40 ../general/g.copy/main.c:42 #: ../general/g.dirseps/main.c:34 ../general/g.filename/main.c:41 -#: ../general/g.findetc/main.c:28 ../general/g.findfile/main.c:40 -#: ../general/g.list/main.c:63 ../general/g.remove/main.c:70 +#: ../general/g.findetc/main.c:28 ../general/g.findfile/main.c:62 +#: ../general/g.list/main.c:65 ../general/g.remove/main.c:70 #: ../general/g.rename/main.c:45 ../imagery/i.group/main.c:64 #: ../imagery/i.target/main.c:45 #: ../locale/scriptstrings/t.create_to_translate.c:3 @@ -5294,7 +5394,7 @@ msgstr "" #: ../locale/scriptstrings/t.rename_to_translate.c:3 #: ../locale/scriptstrings/t.unregister_to_translate.c:3 #: ../locale/scriptstrings/t.vect.list_to_translate.c:3 -#: ../raster/r.compress/main.c:68 ../raster/r.null/main.c:59 +#: ../raster/r.compress/main.c:71 ../raster/r.null/main.c:59 #: ../raster3d/r3.null/main.c:171 msgid "map management" msgstr "" @@ -5335,7 +5435,7 @@ msgstr "" msgid "Unable to change mapset permissions" msgstr "" -#: ../general/g.cairocomp/main.c:49 ../scripts/r3.in.xyz/r3.in.xyz.py:212 +#: ../general/g.cairocomp/main.c:49 ../scripts/r3.in.xyz/r3.in.xyz.py:213 #: ../scripts/v.in.lines/v.in.lines.py:63 #, c-format, python-format msgid "Unable to read input file <%s>" @@ -5471,7 +5571,7 @@ msgid "Errors occurred during copying. See the warning messages above for detail msgstr "" #: ../general/g.dirseps/main.c:35 ../general/g.filename/main.c:42 -#: ../general/g.findetc/main.c:29 ../general/g.findfile/main.c:41 +#: ../general/g.findetc/main.c:29 ../general/g.findfile/main.c:63 #: ../general/g.gisenv/main.c:45 ../general/g.message/main.c:39 #: ../general/g.tempfile/main.c:40 msgid "scripts" @@ -5485,7 +5585,7 @@ msgstr "" msgid "Prints GRASS data base file names." msgstr "" -#: ../general/g.filename/main.c:51 ../general/g.findfile/main.c:53 +#: ../general/g.filename/main.c:51 ../general/g.findfile/main.c:75 msgid "Name of an element" msgstr "" @@ -5509,43 +5609,68 @@ msgstr "" msgid "List of available elements:" msgstr "" -#: ../general/g.findfile/main.c:42 +#: ../general/g.findfile/main.c:64 msgid "Searches for GRASS data base files and sets variables for the shell." msgstr "" -#: ../general/g.findfile/main.c:59 +#: ../general/g.findfile/main.c:81 msgid "Name of an existing map" msgstr "" -#: ../general/g.findfile/main.c:65 +#: ../general/g.findfile/main.c:87 msgid "Name of a mapset (default: search path)" msgstr "" -#: ../general/g.findfile/main.c:66 +#: ../general/g.findfile/main.c:88 msgid "'.' for current mapset" msgstr "" -#: ../general/g.findfile/main.c:70 +#: ../general/g.findfile/main.c:93 +msgid "shell;shell script style output;json;JSON (JavaScript Object Notation);" +msgstr "" + +#: ../general/g.findfile/main.c:99 msgid "Do not add quotes" msgstr "" -#: ../general/g.findfile/main.c:74 +#: ../general/g.findfile/main.c:100 +msgid "Ignored when format is set to JSON" +msgstr "" + +#: ../general/g.findfile/main.c:104 msgid "List available elements and exit" msgstr "" -#: ../general/g.findfile/main.c:98 +#: ../general/g.findfile/main.c:109 +msgid "Return code 0 when file found, 1 otherwise" +msgstr "" + +#: ../general/g.findfile/main.c:111 ../raster/r.mask.status/main.c:61 +msgid "Behave like the test utility, 0 for true, 1 for false, no output" +msgstr "" + +#: ../general/g.findfile/main.c:125 +#, c-format +msgid "-%c flag cannot be used with format=json" +msgstr "" + +#: ../general/g.findfile/main.c:145 #, c-format msgid "Parameter 'file' contains reference to <%s> mapset, but mapset parameter <%s> does not correspond" msgstr "" -#: ../general/g.findfile/main.c:111 +#: ../general/g.findfile/main.c:158 #: ../imagery/i.ortho.photo/i.ortho.photo/menu.c:90 -#: ../raster/r.out.mpeg/main.c:150 ../raster/r.path/main.c:240 -#: ../raster/r.path/main.c:247 ../raster/r.path/main.c:253 +#: ../raster/r.out.mpeg/main.c:151 ../raster/r.path/main.c:241 +#: ../raster/r.path/main.c:248 ../raster/r.path/main.c:254 #, c-format msgid "Name <%s> is too long" msgstr "" +#: ../general/g.findfile/main.c:243 +msgid "In the next major release, g.findfile will no longer return exit code 1 when a file is not found. Please use the -t flag instead to get the error code." +msgstr "" + #: ../general/g.gisenv/main.c:44 msgid "variables" msgstr "" @@ -5699,223 +5824,244 @@ msgstr "" msgid "Launching <%s> GUI in the background, please wait..." msgstr "" -#: ../general/g.list/list.c:123 ../general/g.region/main.c:532 +#: ../general/g.list/list.c:168 ../general/g.region/main.c:545 #, c-format msgid "Unable to read header of 3D raster map <%s@%s>" msgstr "" -#: ../general/g.list/list.c:132 +#: ../general/g.list/list.c:177 #, c-format msgid "Unable to open vector map <%s@%s> on topological level" msgstr "" -#: ../general/g.list/main.c:64 ../locale/scriptstrings/t.list_to_translate.c:4 +#: ../general/g.list/main.c:66 ../locale/scriptstrings/t.list_to_translate.c:4 #: ../locale/scriptstrings/t.rast.list_to_translate.c:5 #: ../locale/scriptstrings/t.rast3d.list_to_translate.c:4 #: ../locale/scriptstrings/t.vect.list_to_translate.c:5 msgid "list" msgstr "" -#: ../general/g.list/main.c:65 +#: ../general/g.list/main.c:67 #: ../locale/scriptstrings/g.search.modules_to_translate.c:4 msgid "search" msgstr "" -#: ../general/g.list/main.c:67 +#: ../general/g.list/main.c:69 msgid "Lists available GRASS data base files of the user-specified data type optionally using the search pattern." msgstr "" -#: ../general/g.list/main.c:83 +#: ../general/g.list/main.c:85 msgid "Map name search pattern (default: all)" msgstr "" -#: ../general/g.list/main.c:84 ../general/g.list/main.c:92 -#: ../general/g.list/main.c:119 ../general/g.list/main.c:125 -#: ../general/g.list/main.c:131 ../general/g.remove/main.c:99 +#: ../general/g.list/main.c:86 ../general/g.list/main.c:94 +#: ../general/g.list/main.c:129 ../general/g.list/main.c:135 +#: ../general/g.list/main.c:141 ../general/g.remove/main.c:99 #: ../general/g.remove/main.c:105 ../general/g.remove/main.c:111 #: ../general/g.remove/main.c:116 ../general/g.remove/main.c:122 #: ../general/g.remove/main.c:128 msgid "Pattern" msgstr "" -#: ../general/g.list/main.c:91 +#: ../general/g.list/main.c:93 msgid "Map name exclusion pattern (default: none)" msgstr "" -#: ../general/g.list/main.c:97 +#: ../general/g.list/main.c:99 msgid "Name of mapset to list (default: current search path)" msgstr "" -#: ../general/g.list/main.c:99 +#: ../general/g.list/main.c:101 msgid "'.' for current mapset; '*' for all mapsets in location" msgstr "" -#: ../general/g.list/main.c:106 +#: ../general/g.list/main.c:108 msgid "Name of saved region for map search (default: not restricted)" msgstr "" -#: ../general/g.list/main.c:108 +#: ../general/g.list/main.c:110 msgid "'.' for current region; '*' for default region" msgstr "" -#: ../general/g.list/main.c:112 +#: ../general/g.list/main.c:114 #: ../locale/scriptstrings/d.out.file_to_translate.c:5 #: ../raster/r.topmodel/main.c:69 msgid "Name for output file" msgstr "" -#: ../general/g.list/main.c:113 ../vector/v.out.ascii/args.c:33 +#: ../general/g.list/main.c:115 ../vector/v.out.ascii/args.c:33 msgid "If not given or '-' then standard output" msgstr "" -#: ../general/g.list/main.c:118 ../general/g.remove/main.c:115 +#: ../general/g.list/main.c:122 ../general/g.version/main.c:127 +#: ../imagery/i.group/main.c:88 ../raster/r.info/main.c:112 +#: ../raster/r.proj/main.c:205 ../vector/v.info/parse.c:48 +#: ../vector/v.univar/main.c:149 +msgid "plain;Human readable text output;shell;shell script style text output;json;JSON (JavaScript Object Notation);" +msgstr "" + +#: ../general/g.list/main.c:128 ../general/g.remove/main.c:115 msgid "Ignore case" msgstr "" -#: ../general/g.list/main.c:124 ../general/g.remove/main.c:121 +#: ../general/g.list/main.c:134 ../general/g.remove/main.c:121 msgid "Use basic regular expressions instead of wildcards" msgstr "" -#: ../general/g.list/main.c:130 ../general/g.remove/main.c:127 +#: ../general/g.list/main.c:140 ../general/g.remove/main.c:127 msgid "Use extended regular expressions instead of wildcards" msgstr "" -#: ../general/g.list/main.c:135 +#: ../general/g.list/main.c:145 msgid "Print data types" msgstr "" -#: ../general/g.list/main.c:141 +#: ../general/g.list/main.c:151 msgid "Print fully-qualified map names (including mapsets)" msgstr "" -#: ../general/g.list/main.c:146 -msgid "Pretty printing in human readable format" +#: ../general/g.list/main.c:157 +msgid "Pretty printing in human readable format [deprecated]" msgstr "" -#: ../general/g.list/main.c:151 -msgid "Verbose listing (also list map titles)" +#: ../general/g.list/main.c:159 +msgid "This flag is deprecated and will be removed in a future release. The plain format will become the default. Use format=\"plain\" to set it explicitly in a script." +msgstr "" + +#: ../general/g.list/main.c:166 +msgid "Verbose listing (also list map titles) [deprecated]" +msgstr "" + +#: ../general/g.list/main.c:168 +msgid "This flag is deprecated and will be removed in a future release. Use the type-specific tool to obtain metadata, such as r.info and v.info." +msgstr "" + +#: ../general/g.list/main.c:189 +msgid "Flag 'p' is deprecated and will be removed in a future release where plain will be the default format. Use format=\"plain\" to set plain format for scripting." +msgstr "" + +#: ../general/g.list/main.c:195 +msgid "Flag 'f' is deprecated and will be removed in a future release." +msgstr "" + +#: ../general/g.list/main.c:203 +#, c-format +msgid "Cannot use the -p or -f flag with format=%s." +msgstr "" + +#: ../general/g.list/main.c:213 +#, c-format +msgid "Cannot use the -m or -t flag with format=%s." msgstr "" -#: ../general/g.list/main.c:185 ../general/g.list/main.c:213 +#: ../general/g.list/main.c:255 ../general/g.list/main.c:283 #: ../general/g.remove/main.c:177 ../general/g.remove/main.c:201 #, c-format msgid "Unable to compile pattern <%s>" msgstr "" -#: ../general/g.list/main.c:271 +#: ../general/g.list/main.c:341 #, c-format msgid "Mapset <%s> does not exist" msgstr "" -#: ../general/g.mapset/main.c:37 ../general/g.mapsets/list.c:34 -msgid "Failed to serialize JSON to pretty format." -msgstr "" - -#: ../general/g.mapset/main.c:71 ../general/g.mapsets/main.c:88 +#: ../general/g.mapset/main.c:72 ../general/g.mapsets/main.c:88 msgid "project" msgstr "" -#: ../general/g.mapset/main.c:72 +#: ../general/g.mapset/main.c:73 msgid "Changes or reports current mapset." msgstr "" -#: ../general/g.mapset/main.c:73 +#: ../general/g.mapset/main.c:74 msgid "Optionally, creates new mapset or lists available mapsets in given project (location)." msgstr "" -#: ../general/g.mapset/main.c:78 +#: ../general/g.mapset/main.c:79 msgid "Name of mapset where to switch" msgstr "" -#: ../general/g.mapset/main.c:79 ../general/g.mapset/main.c:83 -#: ../general/g.mapset/main.c:86 +#: ../general/g.mapset/main.c:80 ../general/g.mapset/main.c:84 +#: ../general/g.mapset/main.c:87 msgid "Mapset" msgstr "" -#: ../general/g.mapset/main.c:93 +#: ../general/g.mapset/main.c:94 msgid "Create mapset if it doesn't exist" msgstr "" -#: ../general/g.mapset/main.c:95 ../general/g.proj/main.c:231 +#: ../general/g.mapset/main.c:96 ../general/g.proj/main.c:234 #: ../locale/scriptstrings/r.mask_to_translate.c:20 msgid "Create" msgstr "" -#: ../general/g.mapset/main.c:100 +#: ../general/g.mapset/main.c:101 msgid "List available mapsets and exit" msgstr "" -#: ../general/g.mapset/main.c:106 +#: ../general/g.mapset/main.c:107 msgid "Print current mapset and exit" msgstr "" -#: ../general/g.mapset/main.c:118 ../general/g.mapsets/list.c:13 -#: ../general/g.proj/output.c:54 ../general/g.proj/output.c:360 -#: ../general/g.region/main.c:460 ../general/g.version/main.c:140 -#: ../raster/r.describe/dumplist.c:37 ../raster/r.info/main.c:147 -#: ../raster/r.proj/main.c:485 ../raster/r.univar/stats.c:104 -#: ../raster/r.univar/stats.c:163 ../raster/r.univar/stats.c:353 -#: ../raster/r.what.color/main.c:52 ../vector/v.category/main.c:246 -#: ../vector/v.category/main.c:913 ../vector/v.distance/main.c:1578 -#: ../vector/v.info/print.c:824 ../vector/v.info/print.c:860 -#: ../vector/v.univar/main.c:609 -msgid "Failed to initialize JSON object. Out of memory?" -msgstr "" - -#: ../general/g.mapset/main.c:214 +#: ../general/g.mapset/main.c:215 #, c-format msgid "<%s> is already the current mapset" msgstr "" -#: ../general/g.mapset/main.c:223 +#: ../general/g.mapset/main.c:224 #, c-format msgid "You don't have permission to use the mapset <%s>" msgstr "" -#: ../general/g.mapset/main.c:231 +#: ../general/g.mapset/main.c:232 #, c-format msgid "Unable to create new mapset <%s>" msgstr "" -#: ../general/g.mapset/main.c:236 +#: ../general/g.mapset/main.c:237 #, c-format msgid "Mapset <%s> does not exist. Use -c flag to create it." msgstr "" -#: ../general/g.mapset/main.c:246 +#: ../general/g.mapset/main.c:247 msgid "Unable to read GIS_LOCK environment variable" msgstr "" -#: ../general/g.mapset/main.c:262 +#: ../general/g.mapset/main.c:263 #, c-format msgid "Lock file of mapset <%s> cannot be checked" msgstr "" -#: ../general/g.mapset/main.c:265 +#: ../general/g.mapset/main.c:266 #, c-format msgid "There appears to be an active GRASS session in selected mapset <%s>" msgstr "" -#: ../general/g.mapset/main.c:272 +#: ../general/g.mapset/main.c:273 msgid "Cleaning up temporary files..." msgstr "" -#: ../general/g.mapset/main.c:289 +#: ../general/g.mapset/main.c:284 +#, c-format +msgid "Failed to remove old lock file <%s>: %s" +msgstr "" + +#: ../general/g.mapset/main.c:293 msgid "Mapset switched." msgstr "" -#: ../general/g.mapset/main.c:292 +#: ../general/g.mapset/main.c:296 msgid "Mapset switched. Your shell continues to use the history for the old mapset" msgstr "" -#: ../general/g.mapset/main.c:296 +#: ../general/g.mapset/main.c:300 #, c-format msgid "" "You can switch the history by commands:\n" "history -S; history -L %s/.history; setenv histfile=%s/.history" msgstr "" -#: ../general/g.mapset/main.c:302 +#: ../general/g.mapset/main.c:306 #, c-format msgid "Your current mapset is <%s>" msgstr "" @@ -6172,11 +6318,16 @@ msgstr "" msgid "Unknown option parameter \"%s\" at line %d\n" msgstr "" -#: ../general/g.parser/revoke.c:66 +#: ../general/g.parser/revoke.c:42 +#, c-format +msgid "Option key <%s> is too long" +msgstr "" + +#: ../general/g.parser/revoke.c:68 msgid "G_spawn() failed" msgstr "" -#: ../general/g.parser/revoke.c:74 +#: ../general/g.parser/revoke.c:76 msgid "execl() failed" msgstr "" @@ -6207,7 +6358,7 @@ msgstr "" #: ../general/g.pnmcomp/main.c:97 ../scripts/v.db.update/v.db.update.py:93 #: ../scripts/v.in.geonames/v.in.geonames.py:54 -#: ../scripts/v.unpack/v.unpack.py:71 +#: ../scripts/v.unpack/v.unpack.py:72 #, c-format, python-format msgid "File <%s> not found" msgstr "" @@ -6254,33 +6405,33 @@ msgstr "" msgid "Unable to open input file %s" msgstr "" -#: ../general/g.ppmtopng/main.c:38 +#: ../general/g.ppmtopng/main.c:38 ../general/g.ppmtopng/main.c:41 #, c-format msgid "Invalid input file %s" msgstr "" -#: ../general/g.ppmtopng/main.c:71 ../general/g.ppmtopng/main.c:75 +#: ../general/g.ppmtopng/main.c:72 ../general/g.ppmtopng/main.c:76 #: ../raster/r.in.png/main.c:282 ../raster/r.in.png/main.c:286 msgid "Unable to allocate PNG structure" msgstr "" -#: ../general/g.ppmtopng/main.c:78 +#: ../general/g.ppmtopng/main.c:79 msgid "Error writing PNG file" msgstr "" -#: ../general/g.ppmtopng/main.c:82 +#: ../general/g.ppmtopng/main.c:83 #, c-format msgid "Unable to open output file %s" msgstr "" -#: ../general/g.ppmtopng/main.c:116 +#: ../general/g.ppmtopng/main.c:117 msgid "Converts between PPM/PGM and PNG image formats." msgstr "" -#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:141 -#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:140 -#: ../vector/v.external/proj.c:173 ../vector/v.in.lidar/main.c:525 -#: ../vector/v.in.ogr/proj.c:307 +#: ../general/g.proj/create.c:16 ../raster/r.external/proj.c:129 +#: ../raster/r.in.gdal/main.c:1045 ../raster/r.in.gdal/proj.c:129 +#: ../vector/v.external/proj.c:158 ../vector/v.in.lidar/main.c:525 +#: ../vector/v.in.ogr/proj.c:228 #, c-format msgid "Project <%s> created" msgstr "" @@ -6476,179 +6627,179 @@ msgid "Print projection information" msgstr "" #: ../general/g.proj/main.c:92 -msgid "[DEPRECATED] Print projection information in shell script style. This flag is obsolete and will be removed in a future release. Use format=shell instead." +msgid "Print projection information in shell script style [deprecated]" msgstr "" -#: ../general/g.proj/main.c:100 +#: ../general/g.proj/main.c:101 msgid "Verify datum information and print transformation parameters" msgstr "" -#: ../general/g.proj/main.c:106 -msgid "[DEPRECATED] Print projection information in PROJ.4 format. This flag is obsolete and will be removed in a future release. Use format=proj4 instead." +#: ../general/g.proj/main.c:107 +msgid "Print projection information in PROJ.4 format [deprecated]" +msgstr "" + +#: ../general/g.proj/main.c:109 +msgid "This flag is deprecated and will be removed in a future release. Use format=proj4 instead." msgstr "" -#: ../general/g.proj/main.c:114 +#: ../general/g.proj/main.c:116 msgid "Print 'flat' output with no linebreaks (applies to WKT and PROJ.4 output)" msgstr "" -#: ../general/g.proj/main.c:118 +#: ../general/g.proj/main.c:120 msgid "Print 'flat' output with no linebreaks (applies to PROJ.4 output)" msgstr "" -#: ../general/g.proj/main.c:126 -msgid "[DEPRECATED] Print projection information in WKT format. This flag is obsolete and will be removed in a future release. Use format=wkt instead." +#: ../general/g.proj/main.c:128 +msgid "Print projection information in WKT format [deprecated]" +msgstr "" + +#: ../general/g.proj/main.c:130 +msgid "This flag is deprecated and will be removed in a future release. Use format=wkt instead." msgstr "" -#: ../general/g.proj/main.c:134 +#: ../general/g.proj/main.c:137 msgid "Use ESRI-style format (applies to WKT output only)" msgstr "" -#: ../general/g.proj/main.c:141 ../general/g.proj/main.c:150 -#: ../general/g.proj/main.c:160 ../general/g.proj/main.c:169 -#: ../general/g.proj/main.c:179 +#: ../general/g.proj/main.c:144 ../general/g.proj/main.c:153 +#: ../general/g.proj/main.c:163 ../general/g.proj/main.c:172 +#: ../general/g.proj/main.c:182 msgid "Specification" msgstr "" -#: ../general/g.proj/main.c:142 +#: ../general/g.proj/main.c:145 msgid "Name of georeferenced data file to read projection information from" msgstr "" -#: ../general/g.proj/main.c:151 +#: ../general/g.proj/main.c:154 msgid "Name of ASCII file containing a WKT projection description" msgstr "" -#: ../general/g.proj/main.c:161 +#: ../general/g.proj/main.c:164 msgid "Spatial reference ID with authority name and code" msgstr "" -#: ../general/g.proj/main.c:162 +#: ../general/g.proj/main.c:165 msgid "E.g. EPSG:4326 or urn:ogc:def:crs:EPSG::4326" msgstr "" -#: ../general/g.proj/main.c:170 +#: ../general/g.proj/main.c:173 msgid "PROJ.4 projection description" msgstr "" -#: ../general/g.proj/main.c:180 +#: ../general/g.proj/main.c:183 #: ../locale/scriptstrings/v.import_to_translate.c:21 msgid "EPSG projection code" msgstr "" -#: ../general/g.proj/main.c:190 +#: ../general/g.proj/main.c:193 msgid "List codes for given authority, e.g. EPSG, and exit" msgstr "" -#: ../general/g.proj/main.c:197 ../general/g.proj/main.c:210 -#: ../general/g.proj/main.c:216 +#: ../general/g.proj/main.c:200 ../general/g.proj/main.c:213 +#: ../general/g.proj/main.c:219 msgid "Datum" msgstr "" -#: ../general/g.proj/main.c:199 +#: ../general/g.proj/main.c:202 msgid "Datum (overrides any datum specified in input co-ordinate system)" msgstr "" -#: ../general/g.proj/main.c:201 +#: ../general/g.proj/main.c:204 msgid "Accepts standard GRASS datum codes, or \"list\" to list and exit" msgstr "" -#: ../general/g.proj/main.c:211 +#: ../general/g.proj/main.c:214 #: ../locale/scriptstrings/v.import_to_translate.c:23 msgid "Index number of datum transform parameters" msgstr "" -#: ../general/g.proj/main.c:212 +#: ../general/g.proj/main.c:215 msgid "\"0\" for unspecified or \"-1\" to list and exit" msgstr "" -#: ../general/g.proj/main.c:218 +#: ../general/g.proj/main.c:221 msgid "Force override of datum transformation information in input co-ordinate system" msgstr "" -#: ../general/g.proj/main.c:223 ../raster/r.null/main.c:75 +#: ../general/g.proj/main.c:226 ../raster/r.null/main.c:75 #: ../raster/r.null/main.c:83 msgid "Modify" msgstr "" -#: ../general/g.proj/main.c:224 +#: ../general/g.proj/main.c:227 msgid "Modify current project's projection files" msgstr "" -#: ../general/g.proj/main.c:232 +#: ../general/g.proj/main.c:235 msgid "Name of new project (location) to create" msgstr "" -#: ../general/g.proj/main.c:236 -msgid "plain;Human readable text output;shell;shell script style text output;json;JSON (JavaScript Object Notation);wkt;Well-known text output;proj4;PROJ.4 style text output;" +#: ../general/g.proj/main.c:240 +msgid "plain;Human readable text output;shell;shell script style text output;wkt;Well-known text output;projjson;JSON (JavaScript Object Notation) version of WKT;proj4;PROJ.4 style text output;" msgstr "" -#: ../general/g.proj/main.c:266 +#: ../general/g.proj/main.c:272 ../vector/v.what.rast/main.c:159 #, c-format msgid "The format option can only be used with -%c flag" msgstr "" -#: ../general/g.proj/main.c:271 ../general/g.version/main.c:153 -#: ../imagery/i.group/main.c:137 ../raster/r.proj/main.c:268 -#: ../vector/v.category/main.c:230 -msgid "Flag 'g' is deprecated and will be removed in a future release. Please use format=shell instead." -msgstr "" - -#: ../general/g.proj/main.c:276 +#: ../general/g.proj/main.c:284 msgid "Flag 'j' is deprecated and will be removed in a future release. Please use format=proj4 instead." msgstr "" -#: ../general/g.proj/main.c:281 +#: ../general/g.proj/main.c:293 msgid "Flag 'w' is deprecated and will be removed in a future release. Please use format=wkt instead." msgstr "" -#: ../general/g.proj/main.c:301 +#: ../general/g.proj/main.c:313 #, c-format msgid "Only one of '%s', '%s', '%s', '%s' or '%s' options may be specified" msgstr "" -#: ../general/g.proj/main.c:353 +#: ../general/g.proj/main.c:365 msgid "Projection files missing" msgstr "" -#: ../general/g.proj/main.c:372 -#, c-format -msgid "Only one of -%c, -%c, -%c, -%c, -%c or -%c flags may be specified" -msgstr "" - -#: ../general/g.proj/main.c:377 -#, c-format -msgid "Only one of -%c, -%c, -%c, -%c or -%c flags may be specified" -msgstr "" - -#: ../general/g.proj/main.c:401 +#: ../general/g.proj/main.c:393 #, c-format msgid "No output format specified. Define one of the options: plain, shell, json, wkt, or proj4 using the -%c flag." msgstr "" -#: ../general/g.proj/main.c:406 +#: ../general/g.proj/main.c:398 #, c-format msgid "No output format specified. Define one of the options: plain, shell, json, or proj4 using the -%c flag." msgstr "" -#: ../general/g.proj/output.c:221 +#: ../general/g.proj/output.c:54 +msgid "JSON output is not available." +msgstr "" + +#: ../general/g.proj/output.c:212 msgid "Unable to convert projection information to PROJ format" msgstr "" -#: ../general/g.proj/output.c:295 +#: ../general/g.proj/output.c:286 #, c-format msgid "Unable to create PROJ definition from srid <%s>" msgstr "" -#: ../general/g.proj/output.c:337 +#: ../general/g.proj/output.c:328 msgid "Unable to convert to WKT" msgstr "" +#: ../general/g.proj/output.c:433 +msgid "Unable to convert to PROJJSON" +msgstr "" + #: ../general/g.region/main.c:67 msgid "computational region" msgstr "" #: ../general/g.region/main.c:68 #: ../locale/scriptstrings/t.info_to_translate.c:4 ../raster/r.info/main.c:82 -#: ../raster3d/r3.info/main.c:80 ../vector/v.info/main.c:45 +#: ../raster3d/r3.info/main.c:88 ../vector/v.info/main.c:45 msgid "extent" msgstr "" @@ -6665,8 +6816,8 @@ msgid "Set from default region" msgstr "" #: ../general/g.region/main.c:79 ../general/g.region/main.c:86 -#: ../general/g.region/main.c:177 ../general/g.region/main.c:184 -#: ../general/g.region/main.c:193 ../general/g.region/main.c:201 +#: ../general/g.region/main.c:180 ../general/g.region/main.c:187 +#: ../general/g.region/main.c:196 ../general/g.region/main.c:204 #: ../raster/r.region/main.c:56 ../raster/r.region/main.c:61 #: ../raster/r.region/main.c:68 ../raster/r.region/main.c:83 #: ../raster/r.region/main.c:90 ../raster/r.region/main.c:97 @@ -6726,27 +6877,25 @@ msgstr "" msgid "Print the maximum bounding box in lat/long on WGS84" msgstr "" -#: ../general/g.region/main.c:147 -#: ../locale/scriptstrings/i.oif_to_translate.c:6 -#: ../locale/scriptstrings/t.info_to_translate.c:9 -#: ../raster/r.regression.line/main.c:69 -#: ../raster/r.regression.multi/main.c:163 -msgid "Print in shell script style" +#: ../general/g.region/main.c:147 ../imagery/i.group/main.c:111 +#: ../raster/r.regression.line/main.c:81 +#: ../raster/r.regression.multi/main.c:177 +msgid "Print in shell script style [deprecated]" msgstr "" -#: ../general/g.region/main.c:153 -msgid "Print in shell script style, but in one line (flat)" +#: ../general/g.region/main.c:155 +msgid "Print in one line (flat) in shell script style (ignores format parameter)" msgstr "" -#: ../general/g.region/main.c:159 +#: ../general/g.region/main.c:162 msgid "Align region to resolution (default = align to bounds, works only for 2D resolution)" msgstr "" -#: ../general/g.region/main.c:161 ../general/g.region/main.c:210 -#: ../general/g.region/main.c:219 ../general/g.region/main.c:228 -#: ../general/g.region/main.c:237 ../general/g.region/main.c:246 -#: ../general/g.region/main.c:255 ../general/g.region/main.c:348 -#: ../general/g.region/main.c:359 ../general/g.region/main.c:371 +#: ../general/g.region/main.c:164 ../general/g.region/main.c:213 +#: ../general/g.region/main.c:222 ../general/g.region/main.c:231 +#: ../general/g.region/main.c:240 ../general/g.region/main.c:249 +#: ../general/g.region/main.c:258 ../general/g.region/main.c:351 +#: ../general/g.region/main.c:362 ../general/g.region/main.c:374 #: ../raster/r.in.bin/main.c:312 ../raster/r.in.bin/main.c:367 #: ../raster/r.in.bin/main.c:375 ../raster/r.in.bin/main.c:383 #: ../raster/r.in.bin/main.c:391 ../raster/r.in.bin/main.c:398 @@ -6760,140 +6909,141 @@ msgstr "" msgid "Bounds" msgstr "" -#: ../general/g.region/main.c:165 +#: ../general/g.region/main.c:168 msgid "Do not update the current region" msgstr "" -#: ../general/g.region/main.c:166 ../general/g.region/main.c:171 -#: ../general/g.region/main.c:382 ../vector/v.label/main.c:89 +#: ../general/g.region/main.c:169 ../general/g.region/main.c:174 +#: ../general/g.region/main.c:385 ../vector/v.label/main.c:89 #: ../vector/v.label/main.c:94 ../vector/v.label/main.c:169 #: ../vector/v.label/main.c:182 msgid "Effects" msgstr "" -#: ../general/g.region/main.c:170 +#: ../general/g.region/main.c:173 msgid "Force update of the current region" msgstr "" -#: ../general/g.region/main.c:176 +#: ../general/g.region/main.c:179 msgid "Set current region from named region" msgstr "" -#: ../general/g.region/main.c:183 +#: ../general/g.region/main.c:186 msgid "Set region to match raster map(s)" msgstr "" -#: ../general/g.region/main.c:191 +#: ../general/g.region/main.c:194 msgid "Set region to match 3D raster map(s) (both 2D and 3D values)" msgstr "" -#: ../general/g.region/main.c:199 +#: ../general/g.region/main.c:202 msgid "Set region to match vector map(s)" msgstr "" -#: ../general/g.region/main.c:209 ../raster/r.region/main.c:105 +#: ../general/g.region/main.c:212 ../raster/r.region/main.c:105 msgid "Value for the northern edge" msgstr "" -#: ../general/g.region/main.c:218 ../raster/r.region/main.c:114 +#: ../general/g.region/main.c:221 ../raster/r.region/main.c:114 msgid "Value for the southern edge" msgstr "" -#: ../general/g.region/main.c:227 ../raster/r.region/main.c:123 +#: ../general/g.region/main.c:230 ../raster/r.region/main.c:123 msgid "Value for the eastern edge" msgstr "" -#: ../general/g.region/main.c:236 ../raster/r.region/main.c:132 +#: ../general/g.region/main.c:239 ../raster/r.region/main.c:132 msgid "Value for the western edge" msgstr "" -#: ../general/g.region/main.c:245 +#: ../general/g.region/main.c:248 msgid "Value for the top edge" msgstr "" -#: ../general/g.region/main.c:254 +#: ../general/g.region/main.c:257 msgid "Value for the bottom edge" msgstr "" -#: ../general/g.region/main.c:263 +#: ../general/g.region/main.c:266 msgid "Number of rows in the new region" msgstr "" -#: ../general/g.region/main.c:264 ../general/g.region/main.c:273 -#: ../general/g.region/main.c:282 ../general/g.region/main.c:292 -#: ../general/g.region/main.c:301 ../general/g.region/main.c:310 -#: ../general/g.region/main.c:319 ../general/g.region/main.c:328 -#: ../general/g.region/main.c:337 +#: ../general/g.region/main.c:267 ../general/g.region/main.c:276 +#: ../general/g.region/main.c:285 ../general/g.region/main.c:295 +#: ../general/g.region/main.c:304 ../general/g.region/main.c:313 +#: ../general/g.region/main.c:322 ../general/g.region/main.c:331 +#: ../general/g.region/main.c:340 msgid "Resolution" msgstr "" -#: ../general/g.region/main.c:272 +#: ../general/g.region/main.c:275 msgid "Number of columns in the new region" msgstr "" -#: ../general/g.region/main.c:281 +#: ../general/g.region/main.c:284 msgid "2D grid resolution (north-south and east-west)" msgstr "" -#: ../general/g.region/main.c:291 +#: ../general/g.region/main.c:294 msgid "3D grid resolution (north-south, east-west and top-bottom)" msgstr "" -#: ../general/g.region/main.c:300 +#: ../general/g.region/main.c:303 msgid "North-south 2D grid resolution" msgstr "" -#: ../general/g.region/main.c:309 +#: ../general/g.region/main.c:312 msgid "East-west 2D grid resolution" msgstr "" -#: ../general/g.region/main.c:318 +#: ../general/g.region/main.c:321 msgid "North-south 3D grid resolution" msgstr "" -#: ../general/g.region/main.c:327 +#: ../general/g.region/main.c:330 msgid "East-west 3D grid resolution" msgstr "" -#: ../general/g.region/main.c:336 +#: ../general/g.region/main.c:339 msgid "Top-bottom 3D grid resolution" msgstr "" -#: ../general/g.region/main.c:346 +#: ../general/g.region/main.c:349 msgid "Shrink region until it meets non-NULL data from this raster map" msgstr "" -#: ../general/g.region/main.c:357 +#: ../general/g.region/main.c:360 msgid "Adjust region cells to cleanly align with this raster map" msgstr "" -#: ../general/g.region/main.c:368 +#: ../general/g.region/main.c:371 msgid "Number of cells to add to each side of the current region extent" msgstr "" -#: ../general/g.region/main.c:370 +#: ../general/g.region/main.c:373 msgid "A negative number shrinks the current region extent" msgstr "" -#: ../general/g.region/main.c:380 +#: ../general/g.region/main.c:383 msgid "Save current region settings in named region file" msgstr "" -#: ../general/g.region/main.c:386 -msgid "plain;Plain text output;shell;shell script style output;json;JSON (JavaScript Object Notation);" -msgstr "" - -#: ../general/g.region/main.c:483 ../scripts/r.in.wms/r.in.wms.py:225 +#: ../general/g.region/main.c:494 ../scripts/r.in.wms/r.in.wms.py:225 #, c-format, python-format msgid "Region <%s> not found" msgstr "" -#: ../general/g.region/main.c:529 ../raster/r.colors/edit_colors.c:515 -#: ../raster/r.univar/r3.univar_main.c:156 -#: ../raster/r.univar/r3.univar_main.c:194 ../raster3d/r3.cross.rast/main.c:246 +#: ../general/g.region/main.c:509 +#, c-format +msgid "Raster map name too long: <%s>" +msgstr "" + +#: ../general/g.region/main.c:542 ../raster/r.colors/edit_colors.c:515 +#: ../raster/r.univar/r3.univar_main.c:210 +#: ../raster/r.univar/r3.univar_main.c:248 ../raster3d/r3.cross.rast/main.c:246 #: ../raster3d/r3.flow/main.c:87 ../raster3d/r3.mask/main.c:53 #: ../raster3d/r3.neighbors/main.c:225 ../raster3d/r3.null/main.c:93 -#: ../raster3d/r3.out.ascii/main.c:327 ../raster3d/r3.out.bin/main.c:312 +#: ../raster3d/r3.out.ascii/main.c:328 ../raster3d/r3.out.bin/main.c:312 #: ../raster3d/r3.out.netcdf/main.c:579 ../raster3d/r3.out.v5d/main.c:307 #: ../raster3d/r3.out.vtk/main.c:138 ../raster3d/r3.retile/main.c:114 #: ../raster3d/r3.stats/main.c:95 ../raster3d/r3.support/main.c:135 @@ -6903,61 +7053,66 @@ msgstr "" msgid "3D raster map <%s> not found" msgstr "" -#: ../general/g.region/main.c:574 +#: ../general/g.region/main.c:566 +#, c-format +msgid "Vector map name too long: <%s>" +msgstr "" + +#: ../general/g.region/main.c:589 msgid "Unable to get map bounding box" msgstr "" -#: ../general/g.region/main.c:908 +#: ../general/g.region/main.c:923 #, c-format msgid "'%s' option not used with <%s> because a coordinate would become invalid" msgstr "" -#: ../general/g.region/main.c:918 ../general/g.region/main.c:928 -#: ../general/g.region/main.c:938 +#: ../general/g.region/main.c:933 ../general/g.region/main.c:943 +#: ../general/g.region/main.c:953 #, c-format msgid "'%s' option not used with <%s> because <%s> would become minor than <%s>" msgstr "" -#: ../general/g.region/main.c:950 +#: ../general/g.region/main.c:965 #, c-format msgid "Unable to set region <%s>" msgstr "" -#: ../general/g.region/main.c:955 +#: ../general/g.region/main.c:970 msgid "Unable to update current region" msgstr "" -#: ../general/g.region/main.c:963 +#: ../general/g.region/main.c:978 msgid "Unable to change default region. The current mapset is not ." msgstr "" -#: ../general/g.region/main.c:990 ../raster/r.in.lidar/main.c:540 +#: ../general/g.region/main.c:1005 ../raster/r.in.lidar/main.c:540 #: ../raster/r.in.pdal/main.cpp:646 #, c-format msgid "Invalid input <%s=%s>" msgstr "" -#: ../general/g.region/printwindow.c:320 ../general/g.region/printwindow.c:621 -#: ../general/g.region/printwindow.c:701 ../raster/r.sun/main.c:803 +#: ../general/g.region/printwindow.c:344 ../general/g.region/printwindow.c:645 +#: ../general/g.region/printwindow.c:726 ../raster/r.sun/main.c:803 msgid "Can't get projection info of current project" msgstr "" -#: ../general/g.region/printwindow.c:324 ../general/g.region/printwindow.c:625 -#: ../general/g.region/printwindow.c:710 ../raster/r.sun/main.c:806 +#: ../general/g.region/printwindow.c:348 ../general/g.region/printwindow.c:649 +#: ../general/g.region/printwindow.c:735 ../raster/r.sun/main.c:806 msgid "Can't get projection units of current project" msgstr "" -#: ../general/g.region/printwindow.c:328 ../general/g.region/printwindow.c:629 -#: ../general/g.region/printwindow.c:714 ../raster/r.sun/main.c:810 +#: ../general/g.region/printwindow.c:352 ../general/g.region/printwindow.c:653 +#: ../general/g.region/printwindow.c:739 ../raster/r.sun/main.c:810 msgid "Can't get projection key values of current project" msgstr "" -#: ../general/g.region/printwindow.c:353 ../general/g.region/printwindow.c:365 #: ../general/g.region/printwindow.c:377 ../general/g.region/printwindow.c:389 -#: ../general/g.region/printwindow.c:403 ../general/g.region/printwindow.c:649 -#: ../general/g.region/printwindow.c:762 ../general/g.region/printwindow.c:777 -#: ../general/g.region/printwindow.c:797 ../general/g.region/printwindow.c:818 -#: ../general/g.region/printwindow.c:836 ../raster/r.latlong/main.c:134 +#: ../general/g.region/printwindow.c:401 ../general/g.region/printwindow.c:413 +#: ../general/g.region/printwindow.c:427 ../general/g.region/printwindow.c:673 +#: ../general/g.region/printwindow.c:787 ../general/g.region/printwindow.c:802 +#: ../general/g.region/printwindow.c:822 ../general/g.region/printwindow.c:843 +#: ../general/g.region/printwindow.c:861 ../raster/r.latlong/main.c:134 #: ../raster/r.sun/main.c:1900 ../raster/r.sunhours/main.c:306 #: ../raster/r.sunhours/main.c:404 ../raster/r.sunmask/g_solposition.c:133 #: ../vector/v.proj/main.c:427 ../vector/v.proj/main.c:440 @@ -6967,23 +7122,23 @@ msgstr "" msgid "Error in %s (projection of input coordinate pair)" msgstr "" -#: ../general/g.region/printwindow.c:488 +#: ../general/g.region/printwindow.c:512 msgid "You are already in Lat/Long. Use the -p flag instead." msgstr "" -#: ../general/g.region/printwindow.c:491 +#: ../general/g.region/printwindow.c:515 msgid "You are in a simple XY project, projection to Lat/Lon is not possible. Use the -p flag instead." msgstr "" -#: ../general/g.region/printwindow.c:728 +#: ../general/g.region/printwindow.c:753 msgid "WGS84 output not possible as this project does not contain datum transformation parameters. Try running g.setproj." msgstr "" -#: ../general/g.region/printwindow.c:741 +#: ../general/g.region/printwindow.c:766 msgid "Unable to update lat/long projection parameters" msgstr "" -#: ../general/g.region/printwindow.c:901 +#: ../general/g.region/printwindow.c:926 msgid "Lat/Long calculations are not possible from a simple XY system" msgstr "" @@ -7368,7 +7523,7 @@ msgid "license" msgstr "" #: ../general/g.version/main.c:80 -msgid "Displays GRASS GIS version info." +msgid "Displays GRASS version info." msgstr "" #: ../general/g.version/main.c:82 @@ -7409,52 +7564,42 @@ msgstr "" msgid "Print info in shell script style (including Git reference commit) [deprecated]" msgstr "" -#: ../general/g.version/main.c:120 ../imagery/i.group/main.c:113 -msgid "This flag is deprecated and will be removed in a future release. Use format=shell instead." -msgstr "" - #: ../general/g.version/main.c:122 msgid "Shell" msgstr "" -#: ../general/g.version/main.c:127 ../imagery/i.group/main.c:88 -#: ../raster/r.info/main.c:112 ../raster/r.proj/main.c:205 -#: ../vector/v.category/main.c:166 ../vector/v.info/parse.c:48 -msgid "plain;Human readable text output;shell;shell script style text output;json;JSON (JavaScript Object Notation);" -msgstr "" - #: ../general/g.version/main.c:157 ../imagery/i.group/main.c:141 msgid "Cannot use the -g flag with format=json; please select only one option." msgstr "" -#: ../general/g.version/main.c:268 +#: ../general/g.version/main.c:267 #, c-format msgid "Cannot determine GRASS libgis version and date number. The GRASS build might be broken. Report this to developers or packagers.\n" msgstr "" -#: ../general/g.version/main.c:281 -msgid "GRASS GIS libgis version and date number don't have the expected format. Trying to print the original strings..." +#: ../general/g.version/main.c:279 +msgid "GRASS libgis version and date number don't have the expected format. Trying to print the original strings..." msgstr "" -#: ../general/g.version/main.c:284 +#: ../general/g.version/main.c:282 #, c-format msgid "GIS_H_VERSION=\"%s\"" msgstr "" -#: ../general/g.version/main.c:285 +#: ../general/g.version/main.c:283 #, c-format msgid "GIS_H_DATE=\"%s\"" msgstr "" -#: ../general/g.version/main.c:347 +#: ../general/g.version/main.c:345 msgid "GRASS not compiled with GDAL/OGR support" msgstr "" -#: ../general/g.version/main.c:372 +#: ../general/g.version/main.c:370 msgid "GRASS not compiled with GEOS support" msgstr "" -#: ../general/g.version/main.c:398 +#: ../general/g.version/main.c:396 msgid "GRASS not compiled with SQLite support" msgstr "" @@ -7503,7 +7648,7 @@ msgstr "" #: ../imagery/i.albedo/main.c:97 ../imagery/i.aster.toar/main.c:99 #: ../imagery/i.atcorr/main.cpp:468 ../imagery/i.landsat.toar/main.c:73 -#: ../imagery/i.landsat.toar/main.c:578 ../imagery/i.modis.qc/main.c:169 +#: ../imagery/i.modis.qc/main.c:169 msgid "reflectance" msgstr "" @@ -7585,7 +7730,7 @@ msgid "radiometric conversion" msgstr "" #: ../imagery/i.aster.toar/main.c:98 ../imagery/i.atcorr/main.cpp:467 -#: ../imagery/i.landsat.toar/main.c:72 ../imagery/i.landsat.toar/main.c:576 +#: ../imagery/i.landsat.toar/main.c:72 msgid "radiance" msgstr "" @@ -7660,12 +7805,12 @@ msgstr "" msgid "Unknown atmospheric model!" msgstr "" -#: ../imagery/i.atcorr/computations.cpp:178 +#: ../imagery/i.atcorr/computations.cpp:177 msgid "Check aerosol measurements or plane altitude" msgstr "" -#: ../imagery/i.atcorr/computations.cpp:454 -#: ../imagery/i.atcorr/computations.cpp:1020 +#: ../imagery/i.atcorr/computations.cpp:453 +#: ../imagery/i.atcorr/computations.cpp:1019 msgid "Position of the plane layer could not be determined" msgstr "" @@ -7828,7 +7973,7 @@ msgstr "" #: ../imagery/i.atcorr/main.cpp:626 ../imagery/i.landsat.acca/algorithm.c:387 #: ../imagery/i.landsat.acca/main.c:56 ../imagery/i.landsat.acca/tools.c:125 #: ../imagery/i.landsat.toar/main.c:401 ../imagery/i.landsat.toar/main.c:542 -#: ../raster/r.mapcalc/map3.c:515 ../raster/r.random/random.c:40 +#: ../raster/r.mapcalc/map3.c:519 ../raster/r.random/random.c:40 #: ../raster/r.random/random.c:43 #, c-format msgid "Unable to open raster map <%s>" @@ -7838,7 +7983,7 @@ msgstr "" #: ../imagery/i.landsat.acca/algorithm.c:236 #: ../imagery/i.landsat.acca/algorithm.c:395 #: ../imagery/i.landsat.acca/tools.c:135 ../imagery/i.landsat.toar/main.c:566 -#: ../raster/r.mapcalc/map3.c:607 ../raster/r.sunhours/main.c:335 +#: ../raster/r.mapcalc/map3.c:611 ../raster/r.sunhours/main.c:335 #: ../raster/r.sunhours/main.c:346 ../raster/r.sunhours/main.c:357 #, c-format msgid "Unable to create raster map <%s>" @@ -7953,17 +8098,17 @@ msgstr "" msgid "none" msgstr "" -#: ../imagery/i.cca/main.c:227 +#: ../imagery/i.cca/main.c:238 #, c-format msgid "The output cell map <%s.%d> has values outside the 0-255 range." msgstr "" -#: ../imagery/i.cca/transform.c:22 -msgid "Unable to allocate cell buffers." +#: ../imagery/i.cca/transform.c:24 +msgid "Unable to allocate DCELL buffers." msgstr "" -#: ../imagery/i.cca/transform.c:56 -msgid "Transform completed.\n" +#: ../imagery/i.cca/transform.c:68 +msgid "Canonical transform completed." msgstr "" #: ../imagery/i.cluster/checkpt.c:15 @@ -7991,7 +8136,7 @@ msgstr "" #: ../imagery/i.segment/main.c:39 ../imagery/i.signatures/main.c:106 #: ../imagery/i.smap/main.c:38 ../imagery/i.svm.predict/main.c:52 #: ../imagery/i.svm.train/main.c:55 ../raster/r.kappa/main.c:70 -#: ../vector/v.class/main.c:45 +#: ../vector/v.class/main.c:54 msgid "classification" msgstr "" @@ -8335,12 +8480,12 @@ msgstr "" msgid " stddev" msgstr "" -#: ../imagery/i.cluster/print3.c:15 +#: ../imagery/i.cluster/print3.c:14 #, c-format msgid "%sinitial means for each band%s%s" msgstr "" -#: ../imagery/i.cluster/print3.c:19 +#: ../imagery/i.cluster/print3.c:18 #, c-format msgid "class %-3d " msgstr "" @@ -8521,29 +8666,29 @@ msgstr "" msgid "Dry/Wet pixels coordinates are in image projection, not row/col" msgstr "" -#: ../imagery/i.eb.hsebal01/main.c:204 +#: ../imagery/i.eb.hsebal01/main.c:207 msgid "Automatic mode selected" msgstr "" -#: ../imagery/i.eb.hsebal01/main.c:214 +#: ../imagery/i.eb.hsebal01/main.c:227 msgid "Manual wet/dry pixels in image coordinates" msgstr "" -#: ../imagery/i.eb.hsebal01/main.c:215 +#: ../imagery/i.eb.hsebal01/main.c:228 #, c-format msgid "Wet Pixel=> x:%f y:%f" msgstr "" -#: ../imagery/i.eb.hsebal01/main.c:216 +#: ../imagery/i.eb.hsebal01/main.c:229 #, c-format msgid "Dry Pixel=> x:%f y:%f" msgstr "" -#: ../imagery/i.eb.hsebal01/main.c:220 +#: ../imagery/i.eb.hsebal01/main.c:234 msgid "Either auto-mode either wet/dry pixels coordinates should be provided!" msgstr "" -#: ../imagery/i.eb.hsebal01/main.c:226 +#: ../imagery/i.eb.hsebal01/main.c:240 #, c-format msgid "<%s> is an illegal name" msgstr "" @@ -9009,11 +9154,11 @@ msgstr "" msgid "Subsignature %d only contains %.0f pixels" msgstr "" -#: ../imagery/i.gensigset/subcluster.c:529 +#: ../imagery/i.gensigset/subcluster.c:537 msgid "Unreliable clustering. Try a smaller initial number of clusters" msgstr "" -#: ../imagery/i.gensigset/subcluster.c:539 +#: ../imagery/i.gensigset/subcluster.c:547 #, c-format msgid "Removed a singular subsignature number %d (%d remain)" msgstr "" @@ -9054,10 +9199,6 @@ msgstr "" msgid "List subgroups from specified group" msgstr "" -#: ../imagery/i.group/main.c:111 -msgid "Print in shell script style [deprecated]" -msgstr "" - #: ../imagery/i.group/main.c:195 msgid "No input raster map(s) specified" msgstr "" @@ -9077,7 +9218,7 @@ msgid "Removing raster maps from group <%s>..." msgstr "" #: ../imagery/i.group/main.c:225 -#: ../imagery/i.ortho.photo/i.ortho.rectify/main.c:178 +#: ../imagery/i.ortho.photo/i.ortho.rectify/main.c:182 #: ../imagery/i.pca/main.c:141 ../imagery/i.rectify/main.c:189 #, c-format msgid "Group <%s> not found" @@ -9226,7 +9367,7 @@ msgid "Starting Inverse FFT..." msgstr "" #: ../imagery/i.ifft/main.c:208 ../raster/r.composite/main.c:186 -#: ../raster/r.drain/main.c:537 ../raster/r.random.cells/indep.c:139 +#: ../raster/r.drain/main.c:541 ../raster/r.random.cells/indep.c:139 #: ../raster/r.random.surface/save.c:97 #, c-format msgid "Writing raster map <%s>..." @@ -9648,13 +9789,19 @@ msgstr "" msgid "Raster map <%s> exists. Skipping." msgstr "" -#: ../imagery/i.landsat.toar/main.c:575 +#: ../imagery/i.landsat.toar/main.c:576 #, c-format -msgid "Writing %s of <%s> to <%s>..." +msgid "Writing radiance of <%s> to <%s>..." msgstr "" -#: ../imagery/i.landsat.toar/main.c:577 -msgid "temperature" +#: ../imagery/i.landsat.toar/main.c:578 +#, c-format +msgid "Writing temperature of <%s> to <%s>..." +msgstr "" + +#: ../imagery/i.landsat.toar/main.c:579 +#, c-format +msgid "Writing reflectance of <%s> to <%s>..." msgstr "" #: ../imagery/i.maxlik/invert.c:28 @@ -10552,113 +10699,126 @@ msgid "Enable panorama camera correction" msgstr "" #: ../imagery/i.ortho.photo/i.ortho.rectify/main.c:149 -#: ../imagery/i.rectify/main.c:151 ../raster/r.proj/main.c:279 +#: ../imagery/i.rectify/main.c:151 ../raster/r.proj/main.c:281 #: ../raster/r.statistics/main.c:118 ../raster/r.stats.zonal/main.c:168 -#: ../vector/v.neighbors/main.c:193 ../vector/v.vect.stats/main.c:318 +#: ../vector/v.neighbors/main.c:193 ../vector/v.vect.stats/main.c:357 #, c-format msgid "<%s=%s> unknown %s" msgstr "" -#: ../imagery/i.ortho.photo/i.ortho.rectify/main.c:183 +#: ../imagery/i.ortho.photo/i.ortho.rectify/main.c:156 +#: ../imagery/i.rectify/main.c:158 ../imagery/i.target/main.c:83 +#: ../vector/v.rectify/main.c:130 +#, c-format +msgid "Group name <%s> is too long" +msgstr "" + +#: ../imagery/i.ortho.photo/i.ortho.rectify/main.c:159 +#: ../imagery/i.rectify/main.c:162 +#, c-format +msgid "Extension <%s> is too long" +msgstr "" + +#: ../imagery/i.ortho.photo/i.ortho.rectify/main.c:187 #, c-format msgid "Project (location): %s" msgstr "" -#: ../imagery/i.ortho.photo/i.ortho.rectify/main.c:184 +#: ../imagery/i.ortho.photo/i.ortho.rectify/main.c:188 #: ../imagery/i.rectify/main.c:195 #, c-format msgid "Mapset: %s" msgstr "" -#: ../imagery/i.ortho.photo/i.ortho.rectify/main.c:185 +#: ../imagery/i.ortho.photo/i.ortho.rectify/main.c:189 #: ../imagery/i.rectify/main.c:196 #, c-format msgid "Could not read REF file for group <%s>" msgstr "" -#: ../imagery/i.ortho.photo/i.ortho.rectify/main.c:190 +#: ../imagery/i.ortho.photo/i.ortho.rectify/main.c:194 #: ../imagery/i.rectify/main.c:201 #, c-format msgid "Group <%s> contains no raster maps; run i.group" msgstr "" -#: ../imagery/i.ortho.photo/i.ortho.rectify/main.c:243 +#: ../imagery/i.ortho.photo/i.ortho.rectify/main.c:247 #: ../imagery/i.ortho.photo/i.ortho.transform/main.c:531 #, c-format msgid "No camera reference file selected for group <%s>" msgstr "" -#: ../imagery/i.ortho.photo/i.ortho.rectify/main.c:247 +#: ../imagery/i.ortho.photo/i.ortho.rectify/main.c:251 #: ../imagery/i.ortho.photo/i.ortho.transform/main.c:535 #, c-format msgid "Bad format in camera file for group <%s>" msgstr "" -#: ../imagery/i.ortho.photo/i.ortho.rectify/main.c:254 +#: ../imagery/i.ortho.photo/i.ortho.rectify/main.c:258 #: ../imagery/i.ortho.photo/i.ortho.transform/main.c:542 #, c-format msgid "Bad format in initial exposure station file for group <%s>" msgstr "" -#: ../imagery/i.ortho.photo/i.ortho.rectify/main.c:288 +#: ../imagery/i.ortho.photo/i.ortho.rectify/main.c:295 #: ../imagery/i.rectify/main.c:275 #, c-format msgid "Extension <%s> is illegal" msgstr "" -#: ../imagery/i.ortho.photo/i.ortho.rectify/main.c:291 -#: ../imagery/i.ortho.photo/i.ortho.rectify/main.c:300 +#: ../imagery/i.ortho.photo/i.ortho.rectify/main.c:298 +#: ../imagery/i.ortho.photo/i.ortho.rectify/main.c:307 #: ../imagery/i.rectify/main.c:278 msgid "The following raster map already exists in" msgstr "" -#: ../imagery/i.ortho.photo/i.ortho.rectify/main.c:292 -#: ../imagery/i.ortho.photo/i.ortho.rectify/main.c:301 +#: ../imagery/i.ortho.photo/i.ortho.rectify/main.c:299 +#: ../imagery/i.ortho.photo/i.ortho.rectify/main.c:308 #, c-format msgid "target project (location) %s, mapset %s:" msgstr "" -#: ../imagery/i.ortho.photo/i.ortho.rectify/main.c:295 -#: ../imagery/i.ortho.photo/i.ortho.rectify/main.c:304 +#: ../imagery/i.ortho.photo/i.ortho.rectify/main.c:302 +#: ../imagery/i.ortho.photo/i.ortho.rectify/main.c:311 #: ../imagery/i.rectify/main.c:282 msgid "Orthorectification cancelled." msgstr "" -#: ../imagery/i.ortho.photo/i.ortho.rectify/main.c:319 +#: ../imagery/i.ortho.photo/i.ortho.rectify/main.c:326 #: ../imagery/i.rectify/main.c:297 msgid "Target resolution must be > 0, ignored" msgstr "" -#: ../imagery/i.ortho.photo/i.ortho.rectify/main.c:326 +#: ../imagery/i.ortho.photo/i.ortho.rectify/main.c:333 #: ../imagery/i.rectify/main.c:304 #, c-format msgid "Using region: N=%f S=%f, E=%f W=%f" msgstr "" -#: ../imagery/i.ortho.photo/i.ortho.rectify/main.c:335 +#: ../imagery/i.ortho.photo/i.ortho.rectify/main.c:342 #, c-format msgid "No target elevation model selected for group <%s>" msgstr "" -#: ../imagery/i.ortho.photo/i.ortho.rectify/main.c:395 +#: ../imagery/i.ortho.photo/i.ortho.rectify/main.c:402 #: ../imagery/i.rectify/main.c:326 #, c-format msgid "Input raster map <%s> does not exist in group <%s>." msgstr "" -#: ../imagery/i.ortho.photo/i.ortho.rectify/main.c:397 +#: ../imagery/i.ortho.photo/i.ortho.rectify/main.c:404 #: ../imagery/i.rectify/main.c:328 msgid "Try:" msgstr "" -#: ../imagery/i.ortho.photo/i.ortho.rectify/main.c:402 +#: ../imagery/i.ortho.photo/i.ortho.rectify/main.c:409 #: ../imagery/i.rectify/main.c:333 msgid "Exit!" msgstr "" #: ../imagery/i.ortho.photo/i.ortho.rectify/readcell.c:66 #: ../imagery/i.rectify/readcell.c:55 ../raster/r.proj/readcell.c:59 -#: ../raster/r.proj/readcell.c:128 ../raster/r.stats.quantile/main.c:475 +#: ../raster/r.proj/readcell.c:128 ../raster/r.stats.quantile/main.c:553 #: ../raster/r.stats.zonal/main.c:492 msgid "Unable to open temporary file" msgstr "" @@ -10720,6 +10880,11 @@ msgstr "" msgid "complete" msgstr "" +#: ../imagery/i.ortho.photo/i.ortho.rectify/report.c:10 +#: ../imagery/i.rectify/report.c:10 +msgid "failed" +msgstr "" + #: ../imagery/i.ortho.photo/i.ortho.rectify/report.c:20 #: ../imagery/i.rectify/report.c:20 #, c-format @@ -10766,23 +10931,27 @@ msgstr "" #: ../imagery/i.ortho.photo/i.ortho.rectify/target.c:36 #: ../imagery/i.ortho.photo/i.ortho.transform/main.c:117 #: ../imagery/i.rectify/target.c:35 ../raster/r.in.gdal/main.c:1154 -#: ../raster/r.proj/main.c:330 ../vector/v.rectify/target.c:44 +#: ../raster/r.proj/main.c:332 ../vector/v.rectify/target.c:44 msgid "not found" msgstr "" #: ../imagery/i.ortho.photo/i.ortho.rectify/target.c:36 #: ../imagery/i.ortho.photo/i.ortho.transform/main.c:117 #: ../imagery/i.rectify/target.c:35 ../raster/r.in.gdal/main.c:1154 -#: ../raster/r.proj/main.c:329 ../vector/v.rectify/target.c:44 +#: ../raster/r.proj/main.c:331 ../vector/v.rectify/target.c:44 msgid "permission denied" msgstr "" -#: ../imagery/i.ortho.photo/i.ortho.rectify/target.c:39 +#: ../imagery/i.ortho.photo/i.ortho.rectify/target.c:40 #: ../imagery/i.ortho.photo/i.ortho.transform/main.c:120 #: ../imagery/i.rectify/target.c:38 msgid "Please run i.target for group " msgstr "" +#: ../imagery/i.ortho.photo/i.ortho.rectify/target.c:42 +msgid "Internal error: error message too long" +msgstr "" + #: ../imagery/i.ortho.photo/i.ortho.target/main.c:51 msgid "Select or modify the imagery group target." msgstr "" @@ -11111,16 +11280,6 @@ msgstr "" msgid "Use thin plate spline" msgstr "" -#: ../imagery/i.rectify/main.c:158 ../vector/v.rectify/main.c:130 -#, c-format -msgid "Group name <%s> is too long" -msgstr "" - -#: ../imagery/i.rectify/main.c:162 -#, c-format -msgid "Extension <%s> is too long" -msgstr "" - #: ../imagery/i.rectify/main.c:183 ../vector/v.rectify/main.c:147 #, c-format msgid "Invalid order (%d); please enter 1 to %d" @@ -11184,55 +11343,106 @@ msgstr "" msgid "Name for output raster map (saturation)" msgstr "" -#: ../imagery/i.segment/cluster.c:68 +#: ../imagery/i.segment/cluster.c:71 #, c-format msgid "%d-band clustering with threshold %g" msgstr "" -#: ../imagery/i.segment/cluster.c:124 ../raster/r.clump/clump.c:216 -#: ../raster/r.clump/clump.c:478 ../raster/r.clump/minsize.c:372 +#: ../imagery/i.segment/cluster.c:127 ../raster/r.clump/clump.c:225 +#: ../raster/r.clump/clump.c:487 ../raster/r.clump/minsize.c:398 msgid "Unable to open temp file" msgstr "" -#: ../imagery/i.segment/cluster.c:138 +#: ../imagery/i.segment/cluster.c:141 msgid "Assigning initial region IDs..." msgstr "" -#: ../imagery/i.segment/cluster.c:353 ../imagery/i.segment/cluster.c:421 +#: ../imagery/i.segment/cluster.c:356 ../imagery/i.segment/cluster.c:424 #: ../imagery/i.segment/region_growing.c:81 msgid "Too many objects: integer overflow" msgstr "" -#: ../imagery/i.segment/cluster.c:372 ../imagery/i.segment/cluster.c:386 -#: ../raster/r.clump/clump.c:119 ../raster/r.clump/clump.c:348 -#: ../raster/r.clump/clump.c:362 ../raster/r.clump/clump.c:652 -#: ../raster/r.clump/clump.c:666 ../raster/r.clump/minsize.c:163 -#: ../raster/r.clump/minsize.c:390 +#: ../imagery/i.segment/cluster.c:375 ../imagery/i.segment/cluster.c:389 +#: ../raster/r.clump/clump.c:124 ../raster/r.clump/clump.c:357 +#: ../raster/r.clump/clump.c:371 ../raster/r.clump/clump.c:661 +#: ../raster/r.clump/clump.c:675 ../raster/r.clump/minsize.c:174 +#: ../raster/r.clump/minsize.c:416 msgid "Unable to write to temp file" msgstr "" -#: ../imagery/i.segment/cluster.c:395 ../raster/r.clump/clump.c:53 +#: ../imagery/i.segment/cluster.c:398 ../raster/r.clump/clump.c:53 #: ../vector/v.cluster/main.c:398 ../vector/v.cluster/main.c:608 #: ../vector/v.cluster/main.c:967 msgid "Generating renumbering scheme..." msgstr "" -#: ../imagery/i.segment/cluster.c:434 +#: ../imagery/i.segment/cluster.c:429 ../raster/r.clump/clump.c:99 +#: ../raster/r.clump/clump.c:120 ../raster/r.clump/clump.c:151 +#: ../raster/r.clump/minsize.c:155 ../raster/r.clump/minsize.c:170 +#: ../raster/r.clump/minsize.c:264 ../raster/r.clump/minsize.c:302 +#: ../raster/r.clump/minsize.c:315 ../raster/r.clump/minsize.c:444 +#: ../raster/r.clump/minsize.c:477 ../raster/r.clump/minsize.c:549 +#: ../raster/r.compress/main.c:170 ../raster/r.compress/main.c:202 +#: ../raster/r.drain/filldir.c:113 ../raster/r.drain/main.c:515 +#: ../raster/r.drain/main.c:638 ../raster/r.drain/main.c:714 +#: ../raster/r.drain/resolve.c:111 ../raster/r.drain/resolve.c:127 +#: ../raster/r.drain/resolve.c:146 ../raster/r.drain/resolve.c:154 +#: ../raster/r.drain/resolve.c:177 ../raster/r.drain/resolve.c:192 +#: ../raster/r.drain/resolve.c:200 ../raster/r.drain/resolve.c:223 +#: ../raster/r.drain/tinf.c:422 ../raster/r.fill.dir/dopolys.c:58 +#: ../raster/r.fill.dir/dopolys.c:100 ../raster/r.fill.dir/filldir.c:148 +#: ../raster/r.fill.dir/filldir.c:156 ../raster/r.fill.dir/filldir.c:163 +#: ../raster/r.fill.dir/filldir.c:177 ../raster/r.fill.dir/filldir.c:190 +#: ../raster/r.fill.dir/main.c:258 ../raster/r.fill.dir/main.c:268 +#: ../raster/r.fill.dir/ppupdate.c:59 ../raster/r.fill.dir/ppupdate.c:212 +#: ../raster/r.fill.dir/ppupdate.c:231 ../raster/r.fill.dir/resolve.c:112 +#: ../raster/r.fill.dir/resolve.c:130 ../raster/r.fill.dir/resolve.c:152 +#: ../raster/r.fill.dir/resolve.c:160 ../raster/r.fill.dir/resolve.c:183 +#: ../raster/r.fill.dir/resolve.c:202 ../raster/r.fill.dir/resolve.c:210 +#: ../raster/r.fill.dir/resolve.c:233 ../raster/r.fill.dir/tinf.c:406 +#: ../raster/r.fill.dir/wtrshed.c:108 ../raster/r.fill.dir/wtrshed.c:117 +#: ../raster/r.fill.dir/wtrshed.c:140 ../raster/r.fill.dir/wtrshed.c:166 +#: ../raster/r.fill.dir/wtrshed.c:176 ../raster/r.fill.dir/wtrshed.c:201 +#: ../raster/r.fill.dir/wtrshed.c:210 ../raster/r.fill.dir/wtrshed.c:234 +#: ../raster/r.fill.dir/wtrshed.c:259 ../raster/r.fill.dir/wtrshed.c:269 +#: ../raster/r.grow.distance/main.c:392 ../raster/r.li/r.li.daemon/daemon.c:743 +#: ../raster/r.mfilter/execute.c:82 ../raster/r.mfilter/execute.c:114 +#: ../raster/r.mfilter/execute.c:165 ../raster/r.mfilter/getrow.c:24 +#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:789 +#: ../raster/r.path/main.c:825 ../raster/r.path/main.c:957 +#: ../raster/r.path/main.c:1076 ../raster/r.path/main.c:1106 +#: ../raster/r.path/main.c:1210 ../raster/r.thin/io.c:72 +#: ../raster/r.thin/io.c:82 ../raster3d/r3.in.v5d/v5d.c:1192 +#: ../raster3d/r3.in.v5d/v5d.c:1443 ../raster3d/r3.in.v5d/v5d.c:1523 +#: ../raster3d/r3.in.v5d/v5d.c:1848 ../raster3d/r3.in.v5d/v5d.c:1859 +#: ../raster3d/r3.in.v5d/v5d.c:1954 ../raster3d/r3.in.v5d/v5d.c:2111 +#: ../raster3d/r3.in.v5d/v5d.c:2220 ../raster3d/r3.in.v5d/v5d.c:2337 +#: ../raster3d/r3.in.v5d/v5d.c:2456 ../raster3d/r3.in.v5d/v5d.c:2463 +#: ../raster3d/r3.out.v5d/v5d.c:1194 ../raster3d/r3.out.v5d/v5d.c:1444 +#: ../raster3d/r3.out.v5d/v5d.c:1841 ../raster3d/r3.out.v5d/v5d.c:1852 +#: ../raster3d/r3.out.v5d/v5d.c:1948 ../raster3d/r3.out.v5d/v5d.c:2106 +#: ../raster3d/r3.out.v5d/v5d.c:2215 ../raster3d/r3.out.v5d/v5d.c:2451 +#: ../raster3d/r3.out.v5d/v5d.c:2458 +#, c-format +msgid "File read/write operation failed: %s (%d)" +msgstr "" + +#: ../imagery/i.segment/cluster.c:441 msgid "Assigning final region IDs..." msgstr "" -#: ../imagery/i.segment/cluster.c:440 ../raster/r.clump/clump.c:101 -#: ../raster/r.clump/clump.c:154 ../raster/r.clump/minsize.c:152 -#: ../raster/r.clump/minsize.c:252 ../raster/r.clump/minsize.c:287 -#: ../raster/r.clump/minsize.c:293 ../raster/r.clump/minsize.c:424 -#: ../raster/r.clump/minsize.c:447 ../raster/r.clump/minsize.c:519 -#: ../raster/r.path/main.c:780 ../raster/r.path/main.c:811 -#: ../raster/r.path/main.c:941 ../raster/r.path/main.c:1051 -#: ../raster/r.path/main.c:1077 ../raster/r.path/main.c:1176 +#: ../imagery/i.segment/cluster.c:447 ../raster/r.clump/clump.c:103 +#: ../raster/r.clump/clump.c:163 ../raster/r.clump/minsize.c:159 +#: ../raster/r.clump/minsize.c:268 ../raster/r.clump/minsize.c:308 +#: ../raster/r.clump/minsize.c:319 ../raster/r.clump/minsize.c:454 +#: ../raster/r.clump/minsize.c:481 ../raster/r.clump/minsize.c:557 +#: ../raster/r.path/main.c:794 ../raster/r.path/main.c:830 +#: ../raster/r.path/main.c:965 ../raster/r.path/main.c:1081 +#: ../raster/r.path/main.c:1111 ../raster/r.path/main.c:1216 msgid "Unable to read from temp file" msgstr "" -#: ../imagery/i.segment/cluster.c:464 +#: ../imagery/i.segment/cluster.c:471 #, c-format msgid "Found %d clumps" msgstr "" @@ -11345,7 +11555,7 @@ msgstr "" #: ../imagery/i.segment/open_files.c:61 ../imagery/i.segment/open_files.c:233 #: ../imagery/i.segment/open_files.c:241 -#: ../imagery/i.segment/write_output.c:117 ../raster/r.clump/clump.c:453 +#: ../imagery/i.segment/write_output.c:117 ../raster/r.clump/clump.c:462 #, c-format msgid "No min/max found in raster map <%s>" msgstr "" @@ -11653,16 +11863,11 @@ msgid "Region size is %d, should be %d" msgstr "" #: ../imagery/i.segment/region_growing.c:1385 -#, c-format -msgid "Candidate flag is already %s" -msgstr "" - -#: ../imagery/i.segment/region_growing.c:1386 -msgid "set" +msgid "Candidate flag is already set" msgstr "" #: ../imagery/i.segment/region_growing.c:1386 -msgid "unset" +msgid "Candidate flag is already unset" msgstr "" #: ../imagery/i.segment/region_growing.c:1629 @@ -11805,8 +12010,8 @@ msgstr "" msgid "prediction" msgstr "" -#: ../imagery/i.svm.predict/main.c:54 ../raster/r.regression.line/main.c:47 -#: ../raster/r.regression.multi/main.c:131 +#: ../imagery/i.svm.predict/main.c:54 ../raster/r.regression.line/main.c:53 +#: ../raster/r.regression.multi/main.c:139 msgid "regression" msgstr "" @@ -12118,18 +12323,18 @@ msgstr "" msgid "Group must exist in the current mapset" msgstr "" -#: ../imagery/i.target/main.c:89 ../imagery/i.target/main.c:107 -#: ../imagery/i.target/main.c:117 +#: ../imagery/i.target/main.c:91 ../imagery/i.target/main.c:109 +#: ../imagery/i.target/main.c:119 #, c-format msgid "Group <%s> targeted for location [%s], mapset [%s]" msgstr "" -#: ../imagery/i.target/main.c:92 +#: ../imagery/i.target/main.c:94 #, c-format msgid "Group <%s> has no target" msgstr "" -#: ../imagery/i.target/main.c:101 +#: ../imagery/i.target/main.c:103 msgid "" "Use either the Current Mapset and Location Flag (-c)\n" " OR\n" @@ -12627,13 +12832,13 @@ msgstr "" #: ../locale/scriptstrings/v.pack_to_translate.c:3 #: ../raster/r.colors.out/raster3d_main.c:48 #: ../raster/r.colors.out/raster_main.c:47 ../raster/r.external.out/main.c:235 -#: ../raster/r.out.ascii/main.c:54 ../raster/r.out.bin/main.c:299 +#: ../raster/r.out.ascii/main.c:55 ../raster/r.out.bin/main.c:299 #: ../raster/r.out.gdal/main.c:136 ../raster/r.out.gridatb/main.c:67 -#: ../raster/r.out.mat/main.c:63 ../raster/r.out.mpeg/main.c:104 +#: ../raster/r.out.mat/main.c:63 ../raster/r.out.mpeg/main.c:105 #: ../raster/r.out.png/main.c:111 ../raster/r.out.pov/main.c:112 #: ../raster/r.out.ppm/main.c:53 ../raster/r.out.ppm3/main.c:58 #: ../raster/r.out.vrml/main.c:45 ../raster/r.out.vtk/main.c:60 -#: ../raster3d/r3.out.ascii/main.c:303 ../raster3d/r3.out.bin/main.c:218 +#: ../raster3d/r3.out.ascii/main.c:304 ../raster3d/r3.out.bin/main.c:218 #: ../raster3d/r3.out.netcdf/main.c:565 ../raster3d/r3.out.v5d/main.c:284 #: ../raster3d/r3.out.vtk/main.c:375 ../vector/v.colors.out/main.c:50 #: ../vector/v.db.select/main.c:101 ../vector/v.external.out/main.c:43 @@ -12648,13 +12853,13 @@ msgstr "" #: ../locale/scriptstrings/db.out.ogr_to_translate.c:4 #: ../locale/scriptstrings/r.out.xyz_to_translate.c:4 #: ../locale/scriptstrings/t.rast.out.vtk_to_translate.c:4 -#: ../raster/r.external.out/main.c:236 ../raster/r.out.ascii/main.c:55 +#: ../raster/r.external.out/main.c:236 ../raster/r.out.ascii/main.c:56 #: ../raster/r.out.bin/main.c:300 ../raster/r.out.gdal/main.c:137 #: ../raster/r.out.gridatb/main.c:68 ../raster/r.out.mat/main.c:64 -#: ../raster/r.out.mpeg/main.c:105 ../raster/r.out.png/main.c:112 +#: ../raster/r.out.mpeg/main.c:106 ../raster/r.out.png/main.c:112 #: ../raster/r.out.pov/main.c:113 ../raster/r.out.ppm/main.c:54 #: ../raster/r.out.ppm3/main.c:59 ../raster/r.out.vrml/main.c:46 -#: ../raster/r.out.vtk/main.c:61 ../raster3d/r3.out.ascii/main.c:304 +#: ../raster/r.out.vtk/main.c:61 ../raster3d/r3.out.ascii/main.c:305 #: ../raster3d/r3.out.netcdf/main.c:566 ../raster3d/r3.out.v5d/main.c:285 #: ../raster3d/r3.out.vtk/main.c:376 ../vector/v.external.out/main.c:44 #: ../vector/v.out.ascii/main.c:50 ../vector/v.out.dxf/main.c:56 @@ -12965,7 +13170,7 @@ msgstr "" #: ../locale/scriptstrings/db.univar_to_translate.c:6 #: ../locale/scriptstrings/t.rast.univar_to_translate.c:8 #: ../locale/scriptstrings/v.db.univar_to_translate.c:6 -#: ../raster/r.univar/r.univar_main.c:89 ../raster/r.univar/r3.univar_main.c:52 +#: ../raster/r.univar/r.univar_main.c:89 ../raster/r.univar/r3.univar_main.c:53 #: ../vector/v.univar/main.c:125 msgid "Percentile to calculate (requires extended statistics flag)" msgstr "" @@ -12982,7 +13187,7 @@ msgstr "" #: ../locale/scriptstrings/db.univar_to_translate.c:10 #: ../locale/scriptstrings/v.db.univar_to_translate.c:10 -msgid "Print stats in shell script style" +msgid "Print stats in shell script style [deprecated]" msgstr "" #: ../locale/scriptstrings/g.download.location_to_translate.c:1 @@ -13082,15 +13287,15 @@ msgid "Specific branch to fetch addon from (only used when fetching from git)" msgstr "" #: ../locale/scriptstrings/g.extension_to_translate.c:16 -msgid "List available extensions in the official GRASS GIS Addons repository" +msgid "List available extensions in the official GRASS Addons repository" msgstr "" #: ../locale/scriptstrings/g.extension_to_translate.c:18 -msgid "List available extensions in the official GRASS GIS Addons repository including module description" +msgid "List available extensions in the official GRASS Addons repository including module description" msgstr "" #: ../locale/scriptstrings/g.extension_to_translate.c:20 -msgid "List available extensions in the official GRASS GIS Addons repository (shell script style)" +msgid "List available extensions in the official GRASS Addons repository (shell script style)" msgstr "" #: ../locale/scriptstrings/g.extension_to_translate.c:22 @@ -13318,6 +13523,11 @@ msgstr "" msgid "multispectral" msgstr "" +#: ../locale/scriptstrings/i.oif_to_translate.c:6 +#: ../locale/scriptstrings/t.info_to_translate.c:9 +msgid "Print in shell script style" +msgstr "" + #: ../locale/scriptstrings/i.pansharpen_to_translate.c:1 msgid "Image fusion algorithms to sharpen multispectral with high-res panchromatic channels" msgstr "" @@ -13435,7 +13645,7 @@ msgid "Converts coordinates from one projection to another (cs2cs frontend)." msgstr "" #: ../locale/scriptstrings/m.proj_to_translate.c:2 ../misc/m.cogo/main.c:215 -#: ../misc/m.measure/main.c:45 ../misc/m.nviz.image/main.c:48 +#: ../misc/m.measure/main.c:52 ../misc/m.nviz.image/main.c:48 #: ../misc/m.nviz.script/main.c:67 ../misc/m.transform/main.c:312 msgid "miscellaneous" msgstr "" @@ -13577,7 +13787,7 @@ msgstr "" #: ../raster/r.basins.fill/main.c:53 ../raster/r.carve/main.c:71 #: ../raster/r.drain/main.c:111 ../raster/r.fill.dir/main.c:88 #: ../raster/r.flow/main.c:415 ../raster/r.gwflow/main.c:223 -#: ../raster/r.lake/main.c:153 ../raster/r.path/main.c:150 +#: ../raster/r.lake/main.c:153 ../raster/r.path/main.c:151 #: ../raster/r.sim/r.sim.sediment/main.c:113 #: ../raster/r.sim/r.sim.water/main.c:113 #: ../raster/r.solute.transport/main.c:229 ../raster/r.stream.extract/main.c:77 @@ -13590,7 +13800,7 @@ msgid "hydrology" msgstr "" #: ../locale/scriptstrings/r.drain_to_translate.c:4 ../raster/r.cost/main.c:163 -#: ../raster/r.drain/main.c:112 ../raster/r.path/main.c:151 +#: ../raster/r.drain/main.c:112 ../raster/r.path/main.c:152 #: ../raster/r.walk/main.c:213 msgid "cost surface" msgstr "" @@ -13628,7 +13838,7 @@ msgstr "" #: ../locale/scriptstrings/r.drain_to_translate.c:12 #: ../raster/r.cost/main.c:220 ../raster/r.drain/main.c:139 -#: ../raster/r.path/main.c:192 ../raster/r.walk/main.c:275 +#: ../raster/r.path/main.c:193 ../raster/r.walk/main.c:275 msgid "Coordinates of starting point(s) (E,N)" msgstr "" @@ -13637,19 +13847,19 @@ msgstr "" #: ../raster/r.cost/main.c:203 ../raster/r.cost/main.c:215 #: ../raster/r.cost/main.c:221 ../raster/r.cost/main.c:263 #: ../raster/r.drain/main.c:140 ../raster/r.drain/main.c:147 -#: ../raster/r.path/main.c:193 ../raster/r.path/main.c:199 +#: ../raster/r.path/main.c:194 ../raster/r.path/main.c:200 #: ../raster/r.walk/main.c:258 ../raster/r.walk/main.c:270 #: ../raster/r.walk/main.c:276 ../raster/r.walk/main.c:349 msgid "Start" msgstr "" #: ../locale/scriptstrings/r.drain_to_translate.c:14 -#: ../raster/r.drain/main.c:145 ../raster/r.path/main.c:198 +#: ../raster/r.drain/main.c:145 ../raster/r.path/main.c:199 msgid "Name of starting vector points map(s)" msgstr "" #: ../locale/scriptstrings/r.drain_to_translate.c:16 -#: ../raster/r.drain/main.c:151 ../raster/r.path/main.c:215 +#: ../raster/r.drain/main.c:151 ../raster/r.path/main.c:216 msgid "Copy input cell values on output" msgstr "" @@ -13657,18 +13867,18 @@ msgstr "" #: ../locale/scriptstrings/r.drain_to_translate.c:19 #: ../locale/scriptstrings/r.drain_to_translate.c:21 #: ../raster/r.drain/main.c:152 ../raster/r.drain/main.c:157 -#: ../raster/r.drain/main.c:162 ../raster/r.path/main.c:216 -#: ../raster/r.path/main.c:221 ../raster/r.path/main.c:226 +#: ../raster/r.drain/main.c:162 ../raster/r.path/main.c:217 +#: ../raster/r.path/main.c:222 ../raster/r.path/main.c:227 msgid "Path settings" msgstr "" #: ../locale/scriptstrings/r.drain_to_translate.c:18 -#: ../raster/r.drain/main.c:156 ../raster/r.path/main.c:220 +#: ../raster/r.drain/main.c:156 ../raster/r.path/main.c:221 msgid "Accumulate input values along the path" msgstr "" #: ../locale/scriptstrings/r.drain_to_translate.c:20 -#: ../raster/r.drain/main.c:161 ../raster/r.path/main.c:225 +#: ../raster/r.drain/main.c:161 ../raster/r.path/main.c:226 msgid "Count cell numbers along the path" msgstr "" @@ -14066,7 +14276,7 @@ msgstr "" #: ../locale/scriptstrings/t.rast3d.algebra_to_translate.c:3 #: ../locale/scriptstrings/t.rast3d.mapcalc_to_translate.c:3 #: ../locale/scriptstrings/t.vect.algebra_to_translate.c:3 -#: ../raster/r.mapcalc/main.c:71 ../raster/r.mfilter/main.c:66 +#: ../raster/r.mapcalc/main.c:75 ../raster/r.mfilter/main.c:66 #: ../raster/r.mode/main.c:55 ../raster/r.neighbors/main.c:182 #: ../raster/r.quantile/main.c:298 ../raster/r.texture/main.c:98 #: ../raster3d/r3.neighbors/main.c:205 ../vector/v.neighbors/main.c:119 @@ -14127,7 +14337,7 @@ msgid "Random" msgstr "" #: ../locale/scriptstrings/r.mapcalc.simple_to_translate.c:20 -#: ../raster/r.mapcalc/main.c:112 ../raster/r.random/main.c:100 +#: ../raster/r.mapcalc/main.c:116 ../raster/r.random/main.c:100 #: ../vector/v.perturb/main.c:109 msgid "Generate random seed (result is non-deterministic)" msgstr "" @@ -14223,7 +14433,7 @@ msgstr "" #: ../raster/r.in.pdal/main.cpp:94 ../raster/r.in.xyz/main.c:156 #: ../raster/r.to.rast3/main.c:198 ../raster/r.to.rast3elev/main.c:376 #: ../raster/r.to.vect/main.c:78 ../raster3d/r3.in.ascii/main.c:362 -#: ../raster3d/r3.in.lidar/main.c:163 ../raster3d/r3.out.ascii/main.c:306 +#: ../raster3d/r3.in.lidar/main.c:163 ../raster3d/r3.out.ascii/main.c:307 #: ../raster3d/r3.to.rast/main.c:258 ../vector/v.to.rast/main.c:46 #: ../vector/v.to.rast3/main.c:49 msgid "conversion" @@ -14234,7 +14444,7 @@ msgid "Include no data values" msgstr "" #: ../locale/scriptstrings/r.pack_to_translate.c:1 -msgid "Exports a raster map as GRASS GIS specific archive file" +msgid "Exports a raster map as GRASS specific archive file" msgstr "" #: ../locale/scriptstrings/r.pack_to_translate.c:4 @@ -14426,7 +14636,7 @@ msgid "Output field separator" msgstr "" #: ../locale/scriptstrings/r.unpack_to_translate.c:1 -msgid "Imports a GRASS GIS specific raster archive file (packed with r.pack) as a raster map" +msgid "Imports a GRASS specific raster archive file (packed with r.pack) as a raster map" msgstr "" #: ../locale/scriptstrings/r.unpack_to_translate.c:5 @@ -14445,6 +14655,7 @@ msgstr "" #: ../ps/ps.map/main.c:109 ../ps/ps.map/main.c:131 ../raster/r.kappa/main.c:90 #: ../raster/r.kappa/main.c:98 ../raster/r.kappa/main.c:101 #: ../raster/r.kappa/main.c:117 ../raster/r.univar/r.univar_main.c:79 +#: ../raster/r.univar/r3.univar_main.c:43 msgid "Output settings" msgstr "" @@ -14481,14 +14692,14 @@ msgstr "" #: ../misc/m.nviz.image/main.c:53 ../misc/m.nviz.script/main.c:70 #: ../raster/r.colors.out/raster3d_main.c:46 #: ../raster/r.colors/edit_colors.c:78 ../raster/r.to.rast3elev/main.c:377 -#: ../raster/r.univar/r3.univar_main.c:102 ../raster3d/r3.cross.rast/main.c:229 +#: ../raster/r.univar/r3.univar_main.c:118 ../raster3d/r3.cross.rast/main.c:229 #: ../raster3d/r3.flow/main.c:175 ../raster3d/r3.flow/test_main.c:42 #: ../raster3d/r3.gradient/main.c:44 ../raster3d/r3.gwflow/main.c:166 #: ../raster3d/r3.in.ascii/main.c:359 ../raster3d/r3.in.bin/main.c:265 #: ../raster3d/r3.in.lidar/main.c:159 ../raster3d/r3.in.v5d/main.c:172 -#: ../raster3d/r3.info/main.c:77 ../raster3d/r3.mask/main.c:131 +#: ../raster3d/r3.info/main.c:85 ../raster3d/r3.mask/main.c:131 #: ../raster3d/r3.mkdspf/main.c:81 ../raster3d/r3.neighbors/main.c:204 -#: ../raster3d/r3.null/main.c:170 ../raster3d/r3.out.ascii/main.c:302 +#: ../raster3d/r3.null/main.c:170 ../raster3d/r3.out.ascii/main.c:303 #: ../raster3d/r3.out.bin/main.c:217 ../raster3d/r3.out.netcdf/main.c:564 #: ../raster3d/r3.out.v5d/main.c:283 ../raster3d/r3.out.vtk/main.c:374 #: ../raster3d/r3.retile/main.c:96 ../raster3d/r3.stats/main.c:47 @@ -14508,10 +14719,10 @@ msgstr "" #: ../raster3d/r3.cross.rast/main.c:232 ../raster3d/r3.flow/main.c:177 #: ../raster3d/r3.gradient/main.c:46 ../raster3d/r3.gwflow/main.c:168 #: ../raster3d/r3.in.ascii/main.c:361 ../raster3d/r3.in.bin/main.c:267 -#: ../raster3d/r3.in.v5d/main.c:174 ../raster3d/r3.info/main.c:79 +#: ../raster3d/r3.in.v5d/main.c:174 ../raster3d/r3.info/main.c:87 #: ../raster3d/r3.mask/main.c:135 ../raster3d/r3.mkdspf/main.c:83 #: ../raster3d/r3.neighbors/main.c:206 ../raster3d/r3.null/main.c:174 -#: ../raster3d/r3.out.ascii/main.c:305 ../raster3d/r3.out.bin/main.c:219 +#: ../raster3d/r3.out.ascii/main.c:306 ../raster3d/r3.out.bin/main.c:219 #: ../raster3d/r3.out.netcdf/main.c:568 ../raster3d/r3.out.v5d/main.c:286 #: ../raster3d/r3.out.vtk/main.c:377 ../raster3d/r3.retile/main.c:98 #: ../raster3d/r3.stats/main.c:49 ../raster3d/r3.support/main.c:50 @@ -14817,7 +15028,7 @@ msgstr "" #: ../locale/scriptstrings/t.upgrade_to_translate.c:3 #: ../raster/r.describe/main.c:54 ../raster/r.info/main.c:81 #: ../raster/r.region/main.c:46 ../raster/r.support/main.c:55 -#: ../raster/r.timestamp/main.c:38 ../raster3d/r3.info/main.c:78 +#: ../raster/r.timestamp/main.c:38 ../raster3d/r3.info/main.c:86 #: ../raster3d/r3.support/main.c:49 ../raster3d/r3.timestamp/main.c:44 #: ../temporal/t.connect/main.c:36 ../vector/v.info/main.c:43 #: ../vector/v.support/main.c:39 ../vector/v.timestamp/main.c:36 @@ -14874,14 +15085,19 @@ msgstr "" #: ../locale/scriptstrings/t.vect.univar_to_translate.c:9 #: ../locale/scriptstrings/t.vect.univar_to_translate.c:12 #: ../raster/r.kappa/main.c:107 ../raster/r.kappa/main.c:112 -#: ../raster/r.report/parse.c:66 ../raster/r.report/parse.c:74 -#: ../raster/r.report/parse.c:82 ../raster/r.report/parse.c:105 -#: ../raster/r.report/parse.c:108 ../raster/r.report/parse.c:113 -#: ../raster/r.report/parse.c:118 ../raster/r.report/parse.c:123 -#: ../raster/r.stats.quantile/main.c:609 ../raster/r.stats/main.c:125 -#: ../raster/r.stats/main.c:129 ../raster/r.stats/main.c:152 -#: ../raster/r.univar/r.univar_main.c:95 ../raster/r.univar/r.univar_main.c:100 -#: ../raster/r.univar/r.univar_main.c:111 +#: ../raster/r.profile/main.c:127 ../raster/r.report/parse.c:66 +#: ../raster/r.report/parse.c:74 ../raster/r.report/parse.c:82 +#: ../raster/r.report/parse.c:105 ../raster/r.report/parse.c:108 +#: ../raster/r.report/parse.c:113 ../raster/r.report/parse.c:118 +#: ../raster/r.report/parse.c:123 ../raster/r.stats.quantile/main.c:688 +#: ../raster/r.stats/main.c:126 ../raster/r.stats/main.c:130 +#: ../raster/r.stats/main.c:153 ../raster/r.univar/r.univar_main.c:96 +#: ../raster/r.univar/r.univar_main.c:105 +#: ../raster/r.univar/r.univar_main.c:119 +#: ../raster/r.univar/r3.univar_main.c:58 +#: ../raster/r.univar/r3.univar_main.c:67 +#: ../raster/r.univar/r3.univar_main.c:81 ../raster/r.volume/main.c:121 +#: ../vector/v.category/main.c:173 msgid "Formatting" msgstr "" @@ -15642,7 +15858,7 @@ msgstr "" #: ../raster/r.series/main.c:156 ../raster/r.sim/r.sim.sediment/main.c:119 #: ../raster/r.sim/r.sim.water/main.c:118 ../raster/r.slope.aspect/main.c:171 #: ../raster/r.smooth.edgepreserve/main.c:49 ../raster/r.sun/main.c:245 -#: ../raster/r.texture/main.c:101 ../raster/r.univar/r.univar_main.c:156 +#: ../raster/r.texture/main.c:101 ../raster/r.univar/r.univar_main.c:169 #: ../vector/v.surf.rst/main.c:153 msgid "parallel" msgstr "" @@ -15655,8 +15871,8 @@ msgstr "" #: ../locale/scriptstrings/t.rast.univar_to_translate.c:14 #: ../locale/scriptstrings/t.rast3d.univar_to_translate.c:13 #: ../locale/scriptstrings/t.vect.univar_to_translate.c:10 -#: ../raster/r.univar/r.univar_main.c:104 -#: ../raster/r.univar/r3.univar_main.c:62 ../vector/v.univar/main.c:133 +#: ../raster/r.univar/r.univar_main.c:109 +#: ../raster/r.univar/r3.univar_main.c:71 ../vector/v.univar/main.c:136 msgid "Calculate extended statistics" msgstr "" @@ -15989,7 +16205,7 @@ msgid "select" msgstr "" #: ../locale/scriptstrings/t.vect.export_to_translate.c:1 -msgid "Exports a space time vector dataset as GRASS GIS specific archive file." +msgid "Exports a space time vector dataset as GRASS specific archive file." msgstr "" #: ../locale/scriptstrings/t.vect.export_to_translate.c:6 @@ -16021,7 +16237,7 @@ msgid "Register empty maps" msgstr "" #: ../locale/scriptstrings/t.vect.import_to_translate.c:1 -msgid "Imports a space time vector dataset from a GRASS GIS specific archive file." +msgid "Imports a space time vector dataset from a GRASS specific archive file." msgstr "" #: ../locale/scriptstrings/t.vect.import_to_translate.c:12 @@ -16073,7 +16289,7 @@ msgid "Adds missing centroids to closed boundaries." msgstr "" #: ../locale/scriptstrings/v.centroids_to_translate.c:3 -#: ../vector/v.category/main.c:834 +#: ../vector/v.category/main.c:857 msgid "centroid" msgstr "" @@ -16081,8 +16297,8 @@ msgstr "" #: ../locale/scriptstrings/v.clip_to_translate.c:4 #: ../locale/scriptstrings/v.dissolve_to_translate.c:4 #: ../locale/scriptstrings/v.to.lines_to_translate.c:4 -#: ../misc/m.measure/main.c:48 ../vector/v.buffer/main.c:219 -#: ../vector/v.category/main.c:840 ../vector/v.in.ascii/main.c:71 +#: ../misc/m.measure/main.c:55 ../vector/v.buffer/main.c:219 +#: ../vector/v.category/main.c:863 ../vector/v.in.ascii/main.c:71 #: ../vector/v.to.db/main.c:40 ../vector/v.type/main.c:41 msgid "area" msgstr "" @@ -16331,7 +16547,7 @@ msgstr "" #: ../locale/scriptstrings/v.in.lines_to_translate.c:4 #: ../locale/scriptstrings/v.to.lines_to_translate.c:5 #: ../vector/v.buffer/main.c:222 ../vector/v.build.polylines/main.c:116 -#: ../vector/v.category/main.c:823 ../vector/v.edit/main.c:58 +#: ../vector/v.category/main.c:846 ../vector/v.edit/main.c:58 #: ../vector/v.in.ascii/main.c:72 ../vector/v.parallel/main.c:51 #: ../vector/v.to.points/main.c:55 ../vector/v.type/main.c:42 msgid "line" @@ -16485,7 +16701,7 @@ msgstr "" #: ../locale/scriptstrings/v.in.lines_to_translate.c:5 #: ../locale/scriptstrings/v.to.lines_to_translate.c:6 -#: ../vector/v.category/main.c:818 ../vector/v.edit/main.c:60 +#: ../vector/v.category/main.c:841 ../vector/v.edit/main.c:60 #: ../vector/v.in.ascii/main.c:73 ../vector/v.segment/main.c:64 #: ../vector/v.to.points/main.c:58 ../vector/v.type/main.c:43 msgid "point" @@ -16584,7 +16800,7 @@ msgid "Restrict fetch to features which touch the current region" msgstr "" #: ../locale/scriptstrings/v.pack_to_translate.c:1 -msgid "Exports a vector map as GRASS GIS specific archive file" +msgid "Exports a vector map as GRASS specific archive file" msgstr "" #: ../locale/scriptstrings/v.pack_to_translate.c:5 @@ -16596,16 +16812,16 @@ msgid "Calculates univariate statistics from a raster map based on a vector map msgstr "" #: ../locale/scriptstrings/v.rast.stats_to_translate.c:5 -#: ../raster/r.resamp.stats/main.c:264 ../raster/r.univar/r.univar_main.c:154 -#: ../raster/r.univar/r3.univar_main.c:104 ../vector/v.univar/main.c:96 -#: ../vector/v.vect.stats/main.c:131 +#: ../raster/r.resamp.stats/main.c:264 ../raster/r.univar/r.univar_main.c:167 +#: ../raster/r.univar/r3.univar_main.c:120 ../vector/v.univar/main.c:96 +#: ../vector/v.vect.stats/main.c:139 msgid "univariate statistics" msgstr "" #: ../locale/scriptstrings/v.rast.stats_to_translate.c:6 -#: ../raster/r.statistics/main.c:55 ../raster/r.stats.quantile/main.c:567 -#: ../raster/r.stats.zonal/main.c:106 ../raster/r.univar/r.univar_main.c:155 -#: ../vector/v.vect.stats/main.c:132 +#: ../raster/r.statistics/main.c:55 ../raster/r.stats.quantile/main.c:646 +#: ../raster/r.stats.zonal/main.c:106 ../raster/r.univar/r.univar_main.c:168 +#: ../vector/v.vect.stats/main.c:140 msgid "zonal statistics" msgstr "" @@ -16668,7 +16884,7 @@ msgid "Method used for point interpolation" msgstr "" #: ../locale/scriptstrings/v.unpack_to_translate.c:1 -msgid "Imports a GRASS GIS specific vector archive file (packed with v.pack) as a vector map" +msgid "Imports a GRASS specific vector archive file (packed with v.pack) as a vector map" msgstr "" #: ../locale/scriptstrings/v.unpack_to_translate.c:6 @@ -16696,12 +16912,12 @@ msgid "Uploads vector values at positions of vector points to the table." msgstr "" #: ../locale/scriptstrings/v.what.vect_to_translate.c:8 -#: ../vector/v.what.rast/main.c:82 ../vector/v.what.rast3/main.c:77 +#: ../vector/v.what.rast/main.c:89 ../vector/v.what.rast3/main.c:77 msgid "Name of vector points map for which to edit attributes" msgstr "" #: ../locale/scriptstrings/v.what.vect_to_translate.c:11 -#: ../vector/v.what.rast/main.c:98 ../vector/v.what.rast3/main.c:88 +#: ../vector/v.what.rast/main.c:105 ../vector/v.what.rast3/main.c:88 msgid "Name of attribute column to be updated with the query result" msgstr "" @@ -16785,31 +17001,31 @@ msgstr "" msgid "Input parse error on line %lu" msgstr "" -#: ../misc/m.measure/main.c:44 +#: ../misc/m.measure/main.c:51 msgid "Measures the lengths and areas of features." msgstr "" -#: ../misc/m.measure/main.c:46 +#: ../misc/m.measure/main.c:53 msgid "measurement" msgstr "" -#: ../misc/m.measure/main.c:55 +#: ../misc/m.measure/main.c:62 msgid "Units" msgstr "" -#: ../misc/m.measure/main.c:56 +#: ../misc/m.measure/main.c:63 msgid "Default: project map units" msgstr "" -#: ../misc/m.measure/main.c:60 -msgid "Shell script style" +#: ../misc/m.measure/main.c:74 +msgid "Shell script style [deprecated]" msgstr "" -#: ../misc/m.measure/main.c:101 +#: ../misc/m.measure/main.c:147 msgid "Length:" msgstr "" -#: ../misc/m.measure/main.c:111 +#: ../misc/m.measure/main.c:166 msgid "Area:" msgstr "" @@ -17477,30 +17693,30 @@ msgstr "" msgid "Target east,north coordinates to local x,y" msgstr "" -#: ../ps/ps.map/catval.c:48 ../ps/ps.map/catval.c:110 ../ps/ps.map/catval.c:177 -#: ../vector/v.class/main.c:107 ../vector/v.label.sa/labels.c:75 -#: ../vector/v.label/main.c:273 ../vector/v.vol.rst/user1.c:92 +#: ../ps/ps.map/catval.c:47 ../ps/ps.map/catval.c:108 ../ps/ps.map/catval.c:174 +#: ../vector/v.class/main.c:154 ../vector/v.label.sa/labels.c:75 +#: ../vector/v.label/main.c:273 ../vector/v.vol.rst/user1.c:91 msgid "Unable to get layer info for vector map" msgstr "" -#: ../ps/ps.map/catval.c:63 +#: ../ps/ps.map/catval.c:62 msgid "Column type not supported (must be string)" msgstr "" -#: ../ps/ps.map/catval.c:66 ../ps/ps.map/catval.c:132 ../ps/ps.map/catval.c:200 -#: ../vector/v.class/main.c:128 ../vector/v.normal/main.c:132 +#: ../ps/ps.map/catval.c:65 ../ps/ps.map/catval.c:130 ../ps/ps.map/catval.c:197 +#: ../vector/v.class/main.c:175 ../vector/v.normal/main.c:132 #: ../vector/v.out.lidar/main.c:131 ../vector/v.out.lidar/main.c:165 #: ../vector/v.sample/main.c:149 ../vector/v.surf.bspline/main.c:402 #: ../vector/v.surf.idw/read_sites.c:71 ../vector/v.to.rast3/main.c:98 -#: ../vector/v.univar/main.c:397 ../vector/v.vol.rst/user1.c:109 +#: ../vector/v.univar/main.c:417 ../vector/v.vol.rst/user1.c:108 msgid "Unable to select data from table" msgstr "" -#: ../ps/ps.map/catval.c:129 +#: ../ps/ps.map/catval.c:127 msgid "Size column type must be numeric" msgstr "" -#: ../ps/ps.map/catval.c:197 +#: ../ps/ps.map/catval.c:194 msgid "Rotation column type must be numeric" msgstr "" @@ -17686,7 +17902,7 @@ msgstr "" #: ../ps/ps.map/main.c:208 ../ps/ps.map/main.c:227 #: ../vector/v.to.db/parse.c:157 ../vector/v.to.db/parse.c:160 -#: ../vector/v.univar/main.c:154 +#: ../vector/v.univar/main.c:161 #, c-format msgid "" "Required parameter <%s> not set:\n" @@ -17761,8 +17977,8 @@ msgstr "" msgid "Can't create temporary PostScript mask file." msgstr "" -#: ../ps/ps.map/ps_raster.c:101 ../raster/r.grow.distance/main.c:325 -#: ../raster/r.out.mpeg/main.c:294 ../raster/r.series.accumulate/main.c:249 +#: ../ps/ps.map/ps_raster.c:102 ../raster/r.grow.distance/main.c:325 +#: ../raster/r.out.mpeg/main.c:295 ../raster/r.series.accumulate/main.c:249 #: ../raster/r.series.accumulate/main.c:274 #: ../raster/r.series.accumulate/main.c:285 #: ../raster/r.series.accumulate/main.c:293 @@ -17771,7 +17987,7 @@ msgstr "" msgid "Reading raster map <%s>..." msgstr "" -#: ../ps/ps.map/ps_raster.c:104 +#: ../ps/ps.map/ps_raster.c:106 #, c-format msgid "Reading raster maps in group <%s>..." msgstr "" @@ -18013,7 +18229,7 @@ msgstr "" msgid "%s: %s - illegal distance specification" msgstr "" -#: ../raster/r.buffer/read_map.c:51 ../raster/r.flow/flow_io.c:92 +#: ../raster/r.buffer/read_map.c:52 ../raster/r.flow/flow_io.c:92 #: ../raster/r.flow/flow_io.c:110 #, c-format msgid "Reading input raster map <%s>..." @@ -18082,17 +18298,16 @@ msgid "Name of input raster files" msgstr "" #: ../raster/r.buildvrt/main.c:108 ../raster/r.external/main.c:183 -#: ../raster/r.mapcalc/main.c:134 ../raster/r.series.accumulate/main.c:207 +#: ../raster/r.mapcalc/main.c:139 ../raster/r.series.accumulate/main.c:207 #: ../raster/r.series.interp/main.c:132 ../raster/r.series.interp/main.c:136 #: ../raster/r.series.interp/main.c:148 ../raster/r.series.interp/main.c:152 -#: ../raster/r.series/main.c:235 ../vector/v.colors/main.c:222 +#: ../vector/v.colors/main.c:222 #, c-format msgid "%s= and %s= are mutually exclusive" msgstr "" #: ../raster/r.buildvrt/main.c:112 ../raster/r.series.accumulate/main.c:211 #: ../raster/r.series.interp/main.c:140 ../raster/r.series.interp/main.c:156 -#: ../raster/r.series/main.c:239 #, c-format msgid "Please specify %s= or %s=" msgstr "" @@ -18112,7 +18327,7 @@ msgid "Input map <%s@%s> is all NULL, skipping" msgstr "" #: ../raster/r.buildvrt/main.c:175 ../raster/r.series.accumulate/main.c:256 -#: ../raster/r.series/main.c:330 +#: ../raster/r.series/main.c:325 msgid "No raster map name found in input file" msgstr "" @@ -18121,7 +18336,7 @@ msgid "Only one raster map name found in input file" msgstr "" #: ../raster/r.buildvrt/main.c:186 ../raster/r.series.accumulate/main.c:266 -#: ../raster/r.series/main.c:342 ../raster/r.stats/main.c:303 +#: ../raster/r.series/main.c:337 ../raster/r.stats/main.c:319 msgid "Raster map not found" msgstr "" @@ -18219,91 +18434,103 @@ msgstr "" msgid "Reading <%s> in <%s>" msgstr "" -#: ../raster/r.category/main.c:59 ../vector/v.category/main.c:99 +#: ../raster/r.category/main.c:60 ../vector/v.category/main.c:99 #: ../vector/v.to.db/main.c:43 msgid "category" msgstr "" -#: ../raster/r.category/main.c:60 +#: ../raster/r.category/main.c:61 msgid "Manages category values and labels associated with user-specified raster map layers." msgstr "" -#: ../raster/r.category/main.c:74 +#: ../raster/r.category/main.c:75 msgid "Comma separated value list" msgstr "" -#: ../raster/r.category/main.c:75 +#: ../raster/r.category/main.c:76 msgid "Example: 1.4,3.8,13" msgstr "" -#: ../raster/r.category/main.c:85 ../raster/r.support/main.c:123 +#: ../raster/r.category/main.c:86 ../raster/r.support/main.c:123 #: ../raster3d/r3.support/main.c:110 msgid "Raster map from which to copy category table" msgstr "" -#: ../raster/r.category/main.c:92 +#: ../raster/r.category/main.c:93 msgid "File containing category label rules (or \"-\" to read from stdin)" msgstr "" #: ../raster/r.category/main.c:100 -msgid "Default label or format string for dynamic labeling" +msgid "Output format ('plain', 'json')" msgstr "" #: ../raster/r.category/main.c:102 +msgid "When the value is not 'plain' or 'json', the value is used as a default label or format string for dynamic labeling. This usage is deprecated and will be removed in a future release. Use parameter 'label_format' instead." +msgstr "" + +#: ../raster/r.category/main.c:113 +msgid "Default label or format string for dynamic labeling" +msgstr "" + +#: ../raster/r.category/main.c:115 msgid "Used when no explicit label exists for the category" msgstr "" -#: ../raster/r.category/main.c:110 +#: ../raster/r.category/main.c:123 msgid "Dynamic label coefficients" msgstr "" -#: ../raster/r.category/main.c:112 +#: ../raster/r.category/main.c:125 msgid "Two pairs of category multiplier and offsets, for $1 and $2" msgstr "" -#: ../raster/r.category/main.c:122 +#: ../raster/r.category/main.c:131 msgid "Color format for output values or none." msgstr "" -#: ../raster/r.category/main.c:171 ../raster/r.support/main.c:174 +#: ../raster/r.category/main.c:157 +msgid "The usage of 'format' for dynamic labeling is deprecated and will be removed in a future release. Please use the 'label_format' parameter instead." +msgstr "" + +#: ../raster/r.category/main.c:195 ../raster/r.support/main.c:174 #, c-format msgid "Raster map <%s> not found in current mapset" msgstr "" -#: ../raster/r.category/main.c:190 ../raster/r.category/main.c:283 -#: ../raster/r.mapcalc/map.c:231 ../raster/r.mapcalc/map3.c:189 +#: ../raster/r.category/main.c:214 ../raster/r.category/main.c:307 +#: ../raster/r.mapcalc/map.c:232 ../raster/r.mapcalc/map3.c:193 #: ../raster/r.report/parse.c:297 #, c-format msgid "Unable to read category file of raster map <%s@%s>" msgstr "" -#: ../raster/r.category/main.c:194 +#: ../raster/r.category/main.c:218 #, c-format msgid "Category table for <%s> set from <%s>" msgstr "" -#: ../raster/r.category/main.c:261 +#: ../raster/r.category/main.c:285 #, c-format msgid "" "Incorrect format of input rules. Is the first column numeric? Or check separators. Invalid line is:\n" "%s" msgstr "" -#: ../raster/r.category/main.c:321 +#: ../raster/r.category/main.c:344 #, c-format msgid "Unable to read category file of raster map <%s> in <%s>" msgstr "" -#: ../raster/r.category/main.c:327 +#: ../raster/r.category/main.c:350 #, c-format msgid "Unable to read colors for input map %s" msgstr "" -#: ../raster/r.category/main.c:344 +#: ../raster/r.category/main.c:367 msgid "The map is floating point! Ignoring cats list, using values list" msgstr "" -#: ../raster/r.category/main.c:366 +#: ../raster/r.category/main.c:389 msgid "Parameter 'values' is required for floating point map!" msgstr "" @@ -18358,35 +18585,16 @@ msgstr "" msgid "Pass 2 of 2..." msgstr "" -#: ../raster/r.clump/clump.c:98 ../raster/r.clump/clump.c:116 -#: ../raster/r.fill.dir/filldir.c:149 ../raster/r.fill.dir/filldir.c:155 -#: ../raster/r.fill.dir/filldir.c:160 ../raster/r.fill.dir/filldir.c:182 -#: ../raster/r.fill.dir/filldir.c:185 ../raster/r.fill.dir/wtrshed.c:107 -#: ../raster/r.fill.dir/wtrshed.c:113 ../raster/r.fill.dir/wtrshed.c:133 -#: ../raster/r.fill.dir/wtrshed.c:155 ../raster/r.fill.dir/wtrshed.c:161 -#: ../raster/r.fill.dir/wtrshed.c:183 ../raster/r.fill.dir/wtrshed.c:189 -#: ../raster/r.fill.dir/wtrshed.c:210 ../raster/r.fill.dir/wtrshed.c:231 -#: ../raster/r.fill.dir/wtrshed.c:237 ../raster/r.thin/io.c:71 -#: ../raster/r.thin/io.c:79 ../raster3d/r3.in.v5d/v5d.c:1191 -#: ../raster3d/r3.in.v5d/v5d.c:1440 ../raster3d/r3.in.v5d/v5d.c:1518 -#: ../raster3d/r3.in.v5d/v5d.c:1841 ../raster3d/r3.in.v5d/v5d.c:1850 -#: ../raster3d/r3.in.v5d/v5d.c:1943 ../raster3d/r3.in.v5d/v5d.c:2098 -#: ../raster3d/r3.in.v5d/v5d.c:2205 ../raster3d/r3.in.v5d/v5d.c:2321 -#: ../raster3d/r3.in.v5d/v5d.c:2438 ../raster3d/r3.in.v5d/v5d.c:2443 -#, c-format -msgid "Unable to seek: %s" -msgstr "" - -#: ../raster/r.clump/clump.c:128 +#: ../raster/r.clump/clump.c:133 #, c-format msgid "%d initial clumps" msgstr "" -#: ../raster/r.clump/clump.c:238 ../raster/r.clump/clump.c:493 +#: ../raster/r.clump/clump.c:247 ../raster/r.clump/clump.c:502 msgid "Pass 1 of 2..." msgstr "" -#: ../raster/r.clump/clump.c:429 +#: ../raster/r.clump/clump.c:438 #, c-format msgid "%d-band clumping with threshold %g" msgstr "" @@ -18396,7 +18604,7 @@ msgid "reclass" msgstr "" #: ../raster/r.clump/main.c:61 ../raster/r.object.geometry/main.c:79 -#: ../raster/r.volume/main.c:82 +#: ../raster/r.volume/main.c:89 msgid "clumps" msgstr "" @@ -18458,20 +18666,20 @@ msgid "%d clump." msgid_plural "%d clumps." msgstr[0] "" -#: ../raster/r.clump/minsize.c:356 +#: ../raster/r.clump/minsize.c:382 msgid "Minimum size must be larger than 1" msgstr "" -#: ../raster/r.clump/minsize.c:367 +#: ../raster/r.clump/minsize.c:393 msgid "Loading input ..." msgstr "" -#: ../raster/r.clump/minsize.c:418 +#: ../raster/r.clump/minsize.c:448 #, c-format msgid "Merging clumps smaller than %d cells..." msgstr "" -#: ../raster/r.clump/minsize.c:510 +#: ../raster/r.clump/minsize.c:544 #, c-format msgid "Renumbering remaining %d clumps..." msgstr "" @@ -18556,7 +18764,7 @@ msgid "Exports the color table associated with a raster map." msgstr "" #: ../raster/r.colors.out/raster_main.c:75 ../raster/r.colors/edit_colors.c:510 -#: ../raster/r.fill.dir/main.c:155 ../raster/r.grow.distance/main.c:481 +#: ../raster/r.fill.dir/main.c:171 ../raster/r.grow.distance/main.c:485 #: ../vector/v.colors/main.c:321 #, c-format msgid "Unable to read color table for raster map <%s>" @@ -18789,130 +18997,130 @@ msgstr "" msgid "Creating color table for output raster map..." msgstr "" -#: ../raster/r.compress/main.c:69 +#: ../raster/r.compress/main.c:72 msgid "compression" msgstr "" -#: ../raster/r.compress/main.c:70 +#: ../raster/r.compress/main.c:73 msgid "Compresses and decompresses raster maps." msgstr "" -#: ../raster/r.compress/main.c:73 +#: ../raster/r.compress/main.c:76 msgid "Name of existing raster map(s)" msgstr "" -#: ../raster/r.compress/main.c:77 +#: ../raster/r.compress/main.c:80 msgid "Uncompress the map" msgstr "" -#: ../raster/r.compress/main.c:82 +#: ../raster/r.compress/main.c:85 msgid "Print compression information and data type of input map(s)" msgstr "" -#: ../raster/r.compress/main.c:87 +#: ../raster/r.compress/main.c:90 msgid "Print compression information in shell script style" msgstr "" -#: ../raster/r.compress/main.c:128 ../raster/r.compress/main.c:322 +#: ../raster/r.compress/main.c:131 ../raster/r.compress/main.c:337 #, c-format msgid "Raster map <%s> is not in the current mapset" msgstr "" -#: ../raster/r.compress/main.c:132 +#: ../raster/r.compress/main.c:135 #, c-format msgid "<%s> is a reclass file of map <%s> in mapset <%s> - can't uncompress" msgstr "" -#: ../raster/r.compress/main.c:134 +#: ../raster/r.compress/main.c:137 #, c-format msgid "<%s> is a reclass file of map <%s> in mapset <%s> - can't compress" msgstr "" -#: ../raster/r.compress/main.c:140 +#: ../raster/r.compress/main.c:143 #, c-format msgid "<%s> is a GDAL-linked map - can't (un)compress" msgstr "" -#: ../raster/r.compress/main.c:144 +#: ../raster/r.compress/main.c:147 #, c-format msgid "<%s> is a virtual raster map - can't (un)compress" msgstr "" -#: ../raster/r.compress/main.c:218 +#: ../raster/r.compress/main.c:233 #, c-format msgid "DONE: uncompressed file is %lu %s (%.2f%%) smaller" msgstr "" -#: ../raster/r.compress/main.c:219 +#: ../raster/r.compress/main.c:234 #, c-format msgid "DONE: compressed file is %lu %s (%.2f%%) smaller" msgstr "" -#: ../raster/r.compress/main.c:224 +#: ../raster/r.compress/main.c:239 #, c-format msgid "DONE: uncompressed file is %lu %s (%.2f%%) larger" msgstr "" -#: ../raster/r.compress/main.c:225 +#: ../raster/r.compress/main.c:240 #, c-format msgid "DONE: compressed file is %lu %s (%.2f%%) larger" msgstr "" -#: ../raster/r.compress/main.c:229 +#: ../raster/r.compress/main.c:244 msgid "same size" msgstr "" -#: ../raster/r.compress/main.c:255 +#: ../raster/r.compress/main.c:270 #, c-format msgid "<%s> already uncompressed" msgstr "" -#: ../raster/r.compress/main.c:258 +#: ../raster/r.compress/main.c:273 #, c-format msgid "Uncompressing <%s>" msgstr "" -#: ../raster/r.compress/main.c:266 +#: ../raster/r.compress/main.c:281 #, c-format msgid "Re-compressing <%s> with method %s..." msgstr "" -#: ../raster/r.compress/main.c:269 +#: ../raster/r.compress/main.c:284 #, c-format msgid "Compressing <%s> with method %s..." msgstr "" -#: ../raster/r.compress/main.c:326 +#: ../raster/r.compress/main.c:341 #, c-format msgid "<%s> is a GDAL-linked map" msgstr "" -#: ../raster/r.compress/main.c:330 +#: ../raster/r.compress/main.c:345 #, c-format msgid "<%s> is a virtual raster map" msgstr "" -#: ../raster/r.compress/main.c:334 +#: ../raster/r.compress/main.c:349 #, c-format msgid "<%s> is a reclass file of map <%s> in mapset <%s>" msgstr "" -#: ../raster/r.compress/main.c:355 +#: ../raster/r.compress/main.c:370 #, c-format msgid "<%s> is uncompressed (method %i: %s). Data type: %s" msgstr "" -#: ../raster/r.compress/main.c:365 +#: ../raster/r.compress/main.c:380 #, c-format msgid "<%s> is compressed (method %i: %s). Data type: %s" msgstr "" -#: ../raster/r.compress/main.c:375 +#: ../raster/r.compress/main.c:390 #, c-format msgid "<%s> has a compressed NULL file" msgstr "" -#: ../raster/r.compress/main.c:378 +#: ../raster/r.compress/main.c:393 #, c-format msgid "<%s> has an uncompressed NULL file" msgstr "" @@ -18929,11 +19137,11 @@ msgid "%d crossing found" msgid_plural "%d crossings found" msgstr[0] "" -#: ../raster/r.contour/cont.c:265 +#: ../raster/r.contour/cont.c:268 msgid "Illegal edge number" msgstr "" -#: ../raster/r.contour/cont.c:372 +#: ../raster/r.contour/cont.c:375 msgid "Edge number out of range" msgstr "" @@ -18955,7 +19163,7 @@ msgstr "" msgid "Either <%s> or <%s> option must be specified" msgstr "" -#: ../raster/r.contour/main.c:149 ../raster/r.stats/main.c:352 +#: ../raster/r.contour/main.c:149 ../raster/r.stats/main.c:371 #, c-format msgid "Unable to read fp range of raster map <%s>" msgstr "" @@ -18973,8 +19181,8 @@ msgid "Unable to create table: '%s'" msgstr "" #: ../raster/r.contour/main.c:187 ../raster3d/r3.flow/main.c:68 -#: ../vector/v.in.ascii/main.c:548 ../vector/v.in.dxf/write_vect.c:242 -#: ../vector/v.in.lidar/attributes.c:139 ../vector/v.in.ogr/main.c:1390 +#: ../vector/v.in.ascii/main.c:548 ../vector/v.in.dxf/write_vect.c:245 +#: ../vector/v.in.lidar/attributes.c:139 ../vector/v.in.ogr/main.c:1392 #: ../vector/v.reclass/main.c:322 ../vector/v.to.points/main.c:219 #, c-format msgid "Unable to create index for table <%s>, key <%s>" @@ -18984,12 +19192,12 @@ msgstr "" #: ../raster/r.stream.extract/close.c:201 ../raster/r.to.vect/main.c:249 #: ../raster3d/r3.flow/main.c:73 ../vector/v.decimate/copy_tab.c:121 #: ../vector/v.distance/main.c:1484 ../vector/v.extract/copy_tab.c:126 -#: ../vector/v.in.ascii/main.c:435 ../vector/v.in.dxf/write_vect.c:239 +#: ../vector/v.in.ascii/main.c:435 ../vector/v.in.dxf/write_vect.c:242 #: ../vector/v.in.lidar/attributes.c:144 ../vector/v.in.ogr/main.c:1180 #: ../vector/v.mkgrid/main.c:372 ../vector/v.mkgrid/main.c:433 #: ../vector/v.overlay/main.c:625 ../vector/v.patch/main.c:391 #: ../vector/v.random/main.c:307 ../vector/v.reclass/main.c:327 -#: ../vector/v.sample/main.c:196 ../vector/v.select/copy_tabs.c:87 +#: ../vector/v.sample/main.c:196 ../vector/v.select/copy_tabs.c:88 #: ../vector/v.to.points/main.c:224 #, c-format msgid "Unable to grant privileges on table <%s>" @@ -19002,7 +19210,7 @@ msgid "Writing attributes..." msgstr "" #: ../raster/r.contour/main.c:215 ../raster3d/r3.flow/flowline.c:61 -#: ../vector/v.overlay/area_area.c:423 ../vector/v.overlay/line_area.c:452 +#: ../vector/v.overlay/area_area.c:434 ../vector/v.overlay/line_area.c:452 #: ../vector/v.to.points/write.c:59 #, c-format msgid "Unable to insert new record: '%s'" @@ -19237,7 +19445,7 @@ msgid "Initializing directional output..." msgstr "" #: ../raster/r.cost/main.c:601 ../raster/r.drain/main.c:280 -#: ../raster/r.path/main.c:323 ../raster/r.walk/main.c:762 +#: ../raster/r.path/main.c:324 ../raster/r.walk/main.c:762 #, c-format msgid "Reading vector map <%s> with start points..." msgstr "" @@ -19461,24 +19669,24 @@ msgstr "" msgid "Sort by distance in descending order" msgstr "" -#: ../raster/r.distance/parse.c:54 +#: ../raster/r.distance/parse.c:60 msgid "Include category labels in the output" msgstr "" -#: ../raster/r.distance/parse.c:58 +#: ../raster/r.distance/parse.c:64 msgid "Report zero distance if rasters are overlapping" msgstr "" -#: ../raster/r.distance/parse.c:62 +#: ../raster/r.distance/parse.c:68 msgid "Report null objects as *" msgstr "" -#: ../raster/r.distance/parse.c:72 ../raster/r.distance/parse.c:81 +#: ../raster/r.distance/parse.c:78 ../raster/r.distance/parse.c:87 #, c-format msgid "Raster map <%s> is not CELL" msgstr "" -#: ../raster/r.distance/report.c:56 +#: ../raster/r.distance/report.c:58 #: ../scripts/i.colors.enhance/i.colors.enhance.py:149 #: ../scripts/i.colors.enhance/i.colors.enhance.py:177 #: ../scripts/i.colors.enhance/i.colors.enhance.py:187 @@ -19508,12 +19716,12 @@ msgstr "" msgid "Specify just one of the -c, -a and -n flags" msgstr "" -#: ../raster/r.drain/main.c:246 ../raster/r.path/main.c:292 +#: ../raster/r.drain/main.c:246 ../raster/r.path/main.c:293 #, c-format msgid "Starting point %d is outside the current region" msgstr "" -#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:374 +#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:378 #, c-format msgid "Starting vector map <%s> contains no points in the current region" msgstr "" @@ -19527,12 +19735,12 @@ msgid "Calculating flow directions..." msgstr "" #: ../raster/r.drain/main.c:485 ../raster/r.in.lidar/main.c:783 -#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:593 -#: ../raster/r.path/main.c:623 ../raster/r.viewshed/grass.cpp:621 +#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:601 +#: ../raster/r.path/main.c:631 ../raster/r.viewshed/grass.cpp:621 msgid "Writing output raster map..." msgstr "" -#: ../raster/r.drain/main.c:708 +#: ../raster/r.drain/main.c:721 #, c-format msgid "direction read: %lf, neighbour found: %i" msgstr "" @@ -19776,83 +19984,88 @@ msgstr "" msgid "Imagery group <%s> created" msgstr "" -#: ../raster/r.external/proj.c:51 ../raster/r.external/proj.c:93 -#: ../raster/r.in.gdal/proj.c:51 ../raster/r.in.gdal/proj.c:93 -#, c-format -msgid "" -"Input contains an invalid SRS. WKT definition:\n" -"%s" +#: ../raster/r.external/proj.c:36 ../raster/r.external/proj.c:63 +#: ../raster/r.external/proj.c:122 ../raster/r.in.gdal/proj.c:36 +#: ../raster/r.in.gdal/proj.c:63 ../raster/r.in.gdal/proj.c:122 +#: ../vector/v.external/proj.c:92 ../vector/v.external/proj.c:151 +#: ../vector/v.in.ogr/proj.c:162 ../vector/v.in.ogr/proj.c:221 +msgid "Can't get WKT parameter string" +msgstr "" + +#: ../raster/r.external/proj.c:56 ../raster/r.in.gdal/proj.c:56 +#: ../vector/v.external/proj.c:85 ../vector/v.in.ogr/proj.c:155 +msgid "Input contains an invalid CRS." +msgstr "" + +#: ../raster/r.external/proj.c:66 ../raster/r.in.gdal/proj.c:66 +#: ../vector/v.external/proj.c:95 ../vector/v.in.ogr/proj.c:165 +msgid "WKT definition:" msgstr "" -#: ../raster/r.external/proj.c:120 ../raster/r.in.gdal/proj.c:120 +#: ../raster/r.external/proj.c:99 ../raster/r.in.gdal/proj.c:99 +#: ../vector/v.external/proj.c:128 ../vector/v.in.ogr/proj.c:198 msgid "No projection information available" msgstr "" -#: ../raster/r.external/proj.c:133 -msgid "Unable to convert input map coordinate reference system to GRASS format; cannot create new project." +#: ../raster/r.external/proj.c:114 ../raster/r.in.gdal/proj.c:114 +#: ../vector/v.external/proj.c:143 ../vector/v.in.ogr/proj.c:213 +msgid "Unable to convert input map projection to GRASS format; cannot create new project." msgstr "" -#: ../raster/r.external/proj.c:139 ../raster/r.in.gdal/main.c:1039 -#: ../raster/r.in.gdal/proj.c:138 ../vector/v.external/proj.c:171 -#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:305 +#: ../raster/r.external/proj.c:127 ../raster/r.in.gdal/main.c:1039 +#: ../raster/r.in.gdal/proj.c:127 ../vector/v.external/proj.c:156 +#: ../vector/v.in.lidar/main.c:522 ../vector/v.in.ogr/proj.c:226 #, c-format msgid "Unable to create new project <%s>" msgstr "" -#: ../raster/r.external/proj.c:165 ../raster/r.in.gdal/proj.c:164 -#: ../vector/v.external/proj.c:197 ../vector/v.in.ogr/proj.c:331 +#: ../raster/r.external/proj.c:157 ../raster/r.in.gdal/proj.c:157 +#: ../vector/v.external/proj.c:186 ../vector/v.in.ogr/proj.c:256 msgid "Unable to convert input map projection information to GRASS format." msgstr "" -#: ../raster/r.external/proj.c:192 ../raster/r.in.gdal/proj.c:192 +#: ../raster/r.external/proj.c:238 ../raster/r.in.gdal/proj.c:238 #: ../raster/r.in.lidar/projection.c:126 -#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:228 -#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:360 +#: ../raster3d/r3.in.lidar/projection.c:127 ../vector/v.external/proj.c:267 +#: ../vector/v.in.lidar/projection.c:124 ../vector/v.in.ogr/proj.c:337 msgid "Over-riding projection check" msgstr "" -#: ../raster/r.external/proj.c:200 ../raster/r.in.gdal/proj.c:200 -#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 -#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.external/proj.c:236 -#: ../vector/v.in.lidar/projection.c:30 ../vector/v.in.ogr/proj.c:368 -msgid "" -"Coordinate reference system of dataset does not appear to match current project.\n" -"\n" +#: ../raster/r.external/proj.c:244 ../raster/r.in.gdal/proj.c:244 +#: ../vector/v.external/proj.c:273 ../vector/v.in.ogr/proj.c:343 +msgid "Coordinate reference system of dataset does not appear to match current project.\n" msgstr "" -#: ../raster/r.external/proj.c:207 ../raster/r.external/proj.c:216 -#: ../raster/r.in.gdal/proj.c:207 ../raster/r.in.gdal/proj.c:216 -#: ../vector/v.external/proj.c:243 ../vector/v.external/proj.c:252 -#: ../vector/v.in.ogr/proj.c:375 ../vector/v.in.ogr/proj.c:384 -msgid "Project PROJ_INFO is:\n" +#: ../raster/r.external/proj.c:258 ../raster/r.in.gdal/proj.c:258 +#: ../vector/v.external/proj.c:287 ../vector/v.in.ogr/proj.c:357 +msgid "Dataset CRS is:\n" msgstr "" -#: ../raster/r.external/proj.c:236 ../raster/r.external/proj.c:243 -#: ../raster/r.in.gdal/proj.c:236 ../raster/r.in.gdal/proj.c:243 -#: ../vector/v.external/proj.c:272 ../vector/v.external/proj.c:279 -#: ../vector/v.in.ogr/proj.c:404 ../vector/v.in.ogr/proj.c:411 -msgid "Dataset PROJ_INFO is:\n" +#: ../raster/r.external/proj.c:272 ../raster/r.in.gdal/proj.c:272 +#: ../vector/v.external/proj.c:301 ../vector/v.in.ogr/proj.c:371 +msgid "Project CRS is:\n" msgstr "" -#: ../raster/r.external/proj.c:324 ../raster/r.in.lidar/projection.c:89 -#: ../raster/r.in.pdal/projection.c:87 ../raster3d/r3.in.lidar/projection.c:90 -#: ../vector/v.external/proj.c:360 ../vector/v.in.lidar/projection.c:87 -#: ../vector/v.in.ogr/proj.c:492 ../vector/v.in.pdal/projection.c:87 +#: ../raster/r.external/proj.c:286 ../raster/r.in.gdal/proj.c:286 +#: ../raster/r.in.lidar/projection.c:89 ../raster/r.in.pdal/projection.c:87 +#: ../raster3d/r3.in.lidar/projection.c:90 ../vector/v.external/proj.c:315 +#: ../vector/v.in.lidar/projection.c:87 ../vector/v.in.ogr/proj.c:385 +#: ../vector/v.in.pdal/projection.c:87 #, c-format msgid "" "\n" "In case of no significant differences in the coordinate reference system definitions, use the -o flag to ignore them and use current project definition.\n" msgstr "" -#: ../raster/r.external/proj.c:328 ../raster/r.in.gdal/proj.c:327 -#: ../vector/v.external/proj.c:364 ../vector/v.in.ogr/proj.c:496 +#: ../raster/r.external/proj.c:290 ../raster/r.in.gdal/proj.c:290 +#: ../vector/v.external/proj.c:319 ../vector/v.in.ogr/proj.c:389 msgid "Consider generating a new project from the input dataset using the 'project' parameter.\n" msgstr "" -#: ../raster/r.external/proj.c:348 ../raster/r.in.gdal/proj.c:347 +#: ../raster/r.external/proj.c:310 ../raster/r.in.gdal/proj.c:310 #: ../raster/r.in.lidar/projection.c:136 ../raster/r.in.pdal/projection.c:134 -#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:384 -#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:516 +#: ../raster3d/r3.in.lidar/projection.c:137 ../vector/v.external/proj.c:339 +#: ../vector/v.in.lidar/projection.c:134 ../vector/v.in.ogr/proj.c:409 msgid "Coordinate reference system of input dataset and current project appear to match" msgstr "" @@ -19869,40 +20082,40 @@ msgid "Applying vertical flip" msgstr "" #: ../raster/r.external/window.c:94 ../raster/r.in.gdal/main.c:1089 -#: ../vector/v.in.ogr/main.c:1981 +#: ../vector/v.in.ogr/main.c:1983 msgid "Default region for this project updated" msgstr "" #: ../raster/r.external/window.c:97 ../raster/r.in.gdal/main.c:1092 -#: ../vector/v.in.ogr/main.c:1984 +#: ../vector/v.in.ogr/main.c:1986 msgid "Region for the current mapset updated" msgstr "" -#: ../raster/r.fill.dir/dopolys.c:59 ../raster/r.fill.dir/main.c:252 -#: ../raster/r.fill.dir/main.c:269 ../raster/r.fill.dir/main.c:274 -#: ../raster/r.fill.dir/ppupdate.c:211 ../raster/r.fill.dir/ppupdate.c:214 -#: ../raster/r.fill.dir/resolve.c:113 ../raster/r.fill.dir/wtrshed.c:109 -#: ../raster/r.fill.dir/wtrshed.c:115 ../raster/r.fill.dir/wtrshed.c:157 -#: ../raster/r.fill.dir/wtrshed.c:163 ../raster/r.fill.dir/wtrshed.c:185 -#: ../raster/r.fill.dir/wtrshed.c:191 ../raster/r.fill.dir/wtrshed.c:233 -#: ../raster/r.fill.dir/wtrshed.c:239 ../raster/r.grow.distance/main.c:393 -#: ../raster/r.grow.distance/main.c:396 ../raster/r.grow.distance/main.c:399 -#: ../raster/r.grow.distance/main.c:402 +#: ../raster/r.fill.dir/dopolys.c:63 ../raster/r.fill.dir/main.c:275 +#: ../raster/r.fill.dir/main.c:292 ../raster/r.fill.dir/main.c:297 +#: ../raster/r.fill.dir/ppupdate.c:217 ../raster/r.fill.dir/ppupdate.c:220 +#: ../raster/r.fill.dir/resolve.c:117 ../raster/r.fill.dir/wtrshed.c:112 +#: ../raster/r.fill.dir/wtrshed.c:121 ../raster/r.fill.dir/wtrshed.c:170 +#: ../raster/r.fill.dir/wtrshed.c:180 ../raster/r.fill.dir/wtrshed.c:205 +#: ../raster/r.fill.dir/wtrshed.c:214 ../raster/r.fill.dir/wtrshed.c:263 +#: ../raster/r.fill.dir/wtrshed.c:273 ../raster/r.grow.distance/main.c:397 +#: ../raster/r.grow.distance/main.c:400 ../raster/r.grow.distance/main.c:403 +#: ../raster/r.grow.distance/main.c:406 #, c-format msgid "File reading error in %s() %d:%s" msgstr "" -#: ../raster/r.fill.dir/dopolys.c:88 +#: ../raster/r.fill.dir/dopolys.c:94 #, c-format msgid "Found %d unresolved area" msgid_plural "Found %d unresolved areas" msgstr[0] "" -#: ../raster/r.fill.dir/dopolys.c:102 ../raster/r.fill.dir/filldir.c:163 -#: ../raster/r.fill.dir/filldir.c:192 ../raster/r.fill.dir/main.c:198 -#: ../raster/r.fill.dir/ppupdate.c:225 ../raster/r.fill.dir/resolve.c:126 -#: ../raster/r.fill.dir/resolve.c:167 ../raster/r.fill.dir/resolve.c:205 -#: ../raster/r.fill.dir/wtrshed.c:135 ../raster/r.fill.dir/wtrshed.c:212 +#: ../raster/r.fill.dir/dopolys.c:112 ../raster/r.fill.dir/filldir.c:167 +#: ../raster/r.fill.dir/filldir.c:198 ../raster/r.fill.dir/main.c:214 +#: ../raster/r.fill.dir/ppupdate.c:235 ../raster/r.fill.dir/resolve.c:134 +#: ../raster/r.fill.dir/resolve.c:187 ../raster/r.fill.dir/resolve.c:237 +#: ../raster/r.fill.dir/wtrshed.c:144 ../raster/r.fill.dir/wtrshed.c:238 #: ../raster/r.grow.distance/main.c:360 ../raster/r.grow.distance/main.c:363 #: ../raster/r.grow.distance/main.c:366 ../raster/r.grow.distance/main.c:369 #, c-format @@ -19950,42 +20163,62 @@ msgstr "" msgid "The '%c' flag requires '%s'to be specified" msgstr "" -#: ../raster/r.fill.dir/main.c:150 +#: ../raster/r.fill.dir/main.c:136 +#, c-format +msgid "Input map name <%s> is too long" +msgstr "" + +#: ../raster/r.fill.dir/main.c:141 +#, c-format +msgid "Output map name <%s> is too long" +msgstr "" + +#: ../raster/r.fill.dir/main.c:146 +#, c-format +msgid "Direction map name <%s> is too long" +msgstr "" + +#: ../raster/r.fill.dir/main.c:152 +#, c-format +msgid "Areas map name <%s> is too long" +msgstr "" + +#: ../raster/r.fill.dir/main.c:166 msgid "Direction map is D8 resolution, i.e. 45 degrees" msgstr "" -#: ../raster/r.fill.dir/main.c:193 +#: ../raster/r.fill.dir/main.c:209 msgid "Reading input elevation raster map..." msgstr "" -#: ../raster/r.fill.dir/main.c:205 +#: ../raster/r.fill.dir/main.c:221 msgid "Filling sinks..." msgstr "" -#: ../raster/r.fill.dir/main.c:209 +#: ../raster/r.fill.dir/main.c:225 msgid "Determining flow directions for ambiguous cases..." msgstr "" -#: ../raster/r.fill.dir/main.c:223 +#: ../raster/r.fill.dir/main.c:239 msgid "Repeat to get the final directions..." msgstr "" -#: ../raster/r.fill.dir/main.c:265 ../raster/r.grow.distance/main.c:382 +#: ../raster/r.fill.dir/main.c:288 ../raster/r.grow.distance/main.c:382 #: ../raster/r.stream.extract/close.c:254 msgid "Writing output raster maps..." msgstr "" -#: ../raster/r.fill.dir/ppupdate.c:156 +#: ../raster/r.fill.dir/ppupdate.c:159 #, c-format msgid "Unexpected NULL pointer in %s" msgstr "" -#: ../raster/r.fill.dir/resolve.c:140 +#: ../raster/r.fill.dir/resolve.c:148 #, c-format msgid "Downward pass %d" msgstr "" -#: ../raster/r.fill.dir/resolve.c:178 +#: ../raster/r.fill.dir/resolve.c:198 #, c-format msgid "Upward pass %d" msgstr "" @@ -20439,7 +20672,7 @@ msgstr "" msgid "Region resolution shouldn't be lesser than map %s resolution. Run g.region raster=%s to set proper resolution" msgstr "" -#: ../raster/r.geomorphon/pattern.c:224 +#: ../raster/r.geomorphon/pattern.c:229 #, c-format msgid "Internal error in %s()" msgstr "" @@ -20510,7 +20743,7 @@ msgstr "" msgid "Output distance in meters for lat/lon is only possible with '%s=%s'" msgstr "" -#: ../raster/r.grow.distance/main.c:297 +#: ../raster/r.grow.distance/main.c:297 ../raster/r.thin/io.c:127 #, c-format msgid "Unable to create temporary file <%s>" msgstr "" @@ -20623,23 +20856,44 @@ msgstr "" msgid "The cholesky solver dos not work with sparse matrices. You may choose a full filled quadratic matrix, flag -f." msgstr "" -#: ../raster/r.gwflow/main.c:308 +#: ../raster/r.gwflow/main.c:288 +msgid "Failed to initialize geometry data" +msgstr "" + +#: ../raster/r.gwflow/main.c:295 +msgid "Failed to allocate LES callback" +msgstr "" + +#: ../raster/r.gwflow/main.c:304 +msgid "Failed to allocate gwflow data structure" +msgstr "" + +#: ../raster/r.gwflow/main.c:318 #, c-format msgid "Calculation time: %g" msgstr "" -#: ../raster/r.gwflow/main.c:395 +#: ../raster/r.gwflow/main.c:385 ../raster/r.gwflow/main.c:419 +#: ../raster/r.gwflow/main.c:585 ../raster3d/r3.gwflow/main.c:298 +msgid "Unable to create and solve the linear equation system" +msgstr "" + +#: ../raster/r.gwflow/main.c:408 #, c-format msgid "Calculation of unconfined groundwater flow loop %i" msgstr "" -#: ../raster/r.gwflow/main.c:418 +#: ../raster/r.gwflow/main.c:434 #, c-format msgid "Maximum difference between this and last increment: %g" msgstr "" -#: ../raster/r.gwflow/main.c:563 ../raster3d/r3.gwflow/main.c:286 -msgid "Unable to create and solve the linear equation system" +#: ../raster/r.gwflow/main.c:472 +msgid "Failed to compute gradient field" +msgstr "" + +#: ../raster/r.gwflow/main.c:557 +msgid "Unable to create the linear equation system" msgstr "" #: ../raster/r.his/main.c:72 @@ -20741,7 +20995,7 @@ msgstr "" msgid "Sampling distance step coefficient (0.5-1.5)" msgstr "" -#: ../raster/r.horizon/main.c:314 ../raster/r.profile/main.c:67 +#: ../raster/r.horizon/main.c:314 ../raster/r.profile/main.c:69 msgid "Name of file for output (use output=- for stdout)" msgstr "" @@ -20838,7 +21092,7 @@ msgid "OOPS: cols changed from %d to %d" msgstr "" #: ../raster/r.horizon/main.c:761 ../raster/r.horizon/main.c:776 -#: ../raster/r.proj/main.c:633 ../raster/r.proj/main.c:739 +#: ../raster/r.proj/main.c:635 ../raster/r.proj/main.c:741 #, c-format msgid "Error in %s" msgstr "" @@ -20985,7 +21239,7 @@ msgstr "" #: ../raster/r.in.bin/main.c:115 ../raster/r.in.bin/main.c:117 #: ../raster/r.in.bin/main.c:119 ../raster/r.in.bin/main.c:121 #: ../raster/r.in.bin/main.c:647 ../raster/r.in.gridatb/file_io.c:21 -#: ../raster/r.in.gridatb/file_io.c:27 ../raster/r.in.gridatb/file_io.c:61 +#: ../raster/r.in.gridatb/file_io.c:29 ../raster/r.in.gridatb/file_io.c:63 #: ../raster/r.in.mat/main.c:133 ../raster/r.in.mat/main.c:155 #: ../raster/r.in.mat/main.c:175 ../raster/r.in.mat/main.c:177 #: ../raster/r.in.mat/main.c:183 ../raster/r.in.mat/main.c:189 @@ -21104,7 +21358,7 @@ msgstr "" #: ../raster/r.in.bin/main.c:451 ../raster/r.in.bin/main.c:457 #: ../raster/r.neighbors/main.c:307 ../raster/r.out.bin/main.c:390 -#: ../raster/r.stats.quantile/main.c:638 +#: ../raster/r.stats.quantile/main.c:734 #, c-format msgid "-%c and %s= are mutually exclusive" msgstr "" @@ -21228,8 +21482,8 @@ msgstr "" #: ../raster/r.in.gdal/main.c:225 ../raster/r.in.pdal/main.cpp:258 #: ../raster/r.in.pdal/main.cpp:272 ../raster/r.in.pdal/main.cpp:402 #: ../vector/v.in.pdal/main.cpp:221 ../vector/v.in.pdal/main.cpp:230 -#: ../vector/v.in.pdal/main.cpp:243 ../vector/v.info/print.c:742 -#: ../vector/v.info/print.c:746 +#: ../vector/v.in.pdal/main.cpp:243 ../vector/v.info/print.c:743 +#: ../vector/v.info/print.c:747 msgid "Projection" msgstr "" @@ -21381,8 +21635,7 @@ msgstr "" msgid "Error in %s (can't re-project GCP %i)" msgstr "" -#: ../raster/r.in.gdal/main.c:983 ../vector/v.external/proj.c:165 -#: ../vector/v.in.lidar/main.c:516 +#: ../raster/r.in.gdal/main.c:983 ../vector/v.in.lidar/main.c:516 msgid "Unable to convert input map CRS to GRASS format; cannot create new project." msgstr "" @@ -21433,30 +21686,25 @@ msgstr "" msgid "Unable to open file <%s>: %s." msgstr "" -#: ../raster/r.in.gdal/proj.c:132 ../vector/v.in.ogr/proj.c:299 -msgid "Unable to convert input map projection to GRASS format; cannot create new project." -msgstr "" - -#: ../raster/r.in.gdal/proj.c:323 -msgid "" -"\n" -"In case of no significant differences in the CRS definitions, use the -o flag to ignore them and use current project definition.\n" -msgstr "" - #: ../raster/r.in.gridatb/file_io.c:16 #, c-format msgid "Unable to open file: %s" msgstr "" -#: ../raster/r.in.gridatb/file_io.c:40 +#: ../raster/r.in.gridatb/file_io.c:24 +#, c-format +msgid "Unexpected end of file while reading %s" +msgstr "" + +#: ../raster/r.in.gridatb/file_io.c:42 msgid "Setting window header failed" msgstr "" -#: ../raster/r.in.gridatb/file_io.c:43 +#: ../raster/r.in.gridatb/file_io.c:45 msgid "Rows changed" msgstr "" -#: ../raster/r.in.gridatb/file_io.c:46 +#: ../raster/r.in.gridatb/file_io.c:48 msgid "Cols changed" msgstr "" @@ -21798,6 +22046,13 @@ msgstr "" msgid "Unable to calculate trimmed mean without the trim option specified!" msgstr "" +#: ../raster/r.in.lidar/projection.c:32 ../raster/r.in.pdal/projection.c:30 +#: ../raster3d/r3.in.lidar/projection.c:33 ../vector/v.in.lidar/projection.c:30 +msgid "" +"Coordinate reference system of dataset does not appear to match current project.\n" +"\n" +msgstr "" + #: ../raster/r.in.lidar/projection.c:38 ../raster/r.in.pdal/projection.c:36 #: ../vector/v.in.lidar/projection.c:36 ../vector/v.in.pdal/projection.c:36 msgid "GRASS project PROJ_INFO is:\n" @@ -22420,7 +22675,7 @@ msgstr "" msgid "Print raster array information" msgstr "" -#: ../raster/r.info/main.c:94 +#: ../raster/r.info/main.c:94 ../raster3d/r3.info/main.c:109 msgid "Print range" msgstr "" @@ -22428,7 +22683,7 @@ msgstr "" msgid "Print stats" msgstr "" -#: ../raster/r.info/main.c:106 ../raster3d/r3.info/main.c:96 +#: ../raster/r.info/main.c:106 msgid "Print raster history instead of info" msgstr "" @@ -22436,22 +22691,22 @@ msgstr "" msgid "The output format for flags -g, -r, -s, and -e currently defaults to 'shell', but this will change to 'plain' in a future release. To avoid unexpected behaviour, specify the format explicitly." msgstr "" -#: ../raster/r.info/main.c:403 ../raster/r.info/main.c:1021 -#: ../raster3d/r3.info/main.c:140 ../raster3d/r3.info/main.c:147 -#: ../raster3d/r3.info/main.c:152 ../raster3d/r3.info/main.c:157 -#: ../raster3d/r3.info/main.c:164 ../raster3d/r3.info/main.c:169 -#: ../raster3d/r3.info/main.c:175 ../raster3d/r3.info/main.c:186 -#: ../raster3d/r3.info/main.c:192 ../raster3d/r3.info/main.c:207 -#: ../raster3d/r3.info/main.c:215 ../raster3d/r3.info/main.c:221 -#: ../raster3d/r3.info/main.c:226 ../raster3d/r3.info/main.c:231 -#: ../raster3d/r3.info/main.c:237 ../raster3d/r3.info/main.c:248 -#: ../raster3d/r3.info/main.c:254 ../raster3d/r3.info/main.c:260 -#: ../raster3d/r3.info/main.c:276 ../raster3d/r3.info/main.c:283 -#: ../raster3d/r3.info/main.c:290 ../raster3d/r3.info/main.c:298 -#: ../raster3d/r3.info/main.c:307 ../raster3d/r3.info/main.c:316 -#: ../raster3d/r3.info/main.c:325 ../raster3d/r3.info/main.c:345 -#: ../raster3d/r3.info/main.c:356 ../raster3d/r3.info/main.c:362 -#: ../raster3d/r3.info/main.c:371 ../raster3d/r3.info/main.c:385 +#: ../raster/r.info/main.c:403 ../raster/r.info/main.c:1024 +#: ../raster3d/r3.info/main.c:193 ../raster3d/r3.info/main.c:200 +#: ../raster3d/r3.info/main.c:205 ../raster3d/r3.info/main.c:210 +#: ../raster3d/r3.info/main.c:217 ../raster3d/r3.info/main.c:222 +#: ../raster3d/r3.info/main.c:228 ../raster3d/r3.info/main.c:239 +#: ../raster3d/r3.info/main.c:245 ../raster3d/r3.info/main.c:261 +#: ../raster3d/r3.info/main.c:270 ../raster3d/r3.info/main.c:276 +#: ../raster3d/r3.info/main.c:281 ../raster3d/r3.info/main.c:286 +#: ../raster3d/r3.info/main.c:293 ../raster3d/r3.info/main.c:304 +#: ../raster3d/r3.info/main.c:310 ../raster3d/r3.info/main.c:316 +#: ../raster3d/r3.info/main.c:332 ../raster3d/r3.info/main.c:339 +#: ../raster3d/r3.info/main.c:346 ../raster3d/r3.info/main.c:354 +#: ../raster3d/r3.info/main.c:364 ../raster3d/r3.info/main.c:374 +#: ../raster3d/r3.info/main.c:384 ../raster3d/r3.info/main.c:405 +#: ../raster3d/r3.info/main.c:416 ../raster3d/r3.info/main.c:422 +#: ../raster3d/r3.info/main.c:431 ../raster3d/r3.info/main.c:446 msgid "Cannot allocate memory for string" msgstr "" @@ -22528,6 +22783,14 @@ msgstr "" msgid "Problem reading r.stats output" msgstr "" +#: ../raster/r.kappa/stats.c:66 +msgid "Failed to remove file" +msgstr "" + +#: ../raster/r.kappa/stats.c:68 +msgid "error running r.stats" +msgstr "" + #: ../raster/r.lake/main.c:154 ../raster/r.ros/main.c:211 #: ../raster/r.spread/main.c:105 msgid "hazard" @@ -22870,57 +23133,62 @@ msgstr "" msgid "Calculates Simpson's diversity index on a raster map" msgstr "" -#: ../raster/r.mapcalc/evaluate.c:141 ../raster/r.mapcalc/evaluate.c:278 -#: ../raster/r.mapcalc/map.c:421 ../raster/r.mapcalc/map3.c:350 +#: ../raster/r.mapcalc/evaluate.c:188 ../raster/r.mapcalc/evaluate.c:350 +#: ../raster/r.mapcalc/map.c:421 ../raster/r.mapcalc/map3.c:354 #, c-format msgid "Unknown type: %d" msgstr "" -#: ../raster/r.mapcalc/evaluate.c:187 +#: ../raster/r.mapcalc/evaluate.c:239 #, c-format msgid "Invalid type: %d" msgstr "" -#: ../raster/r.mapcalc/evaluate.c:224 +#: ../raster/r.mapcalc/evaluate.c:296 #, c-format msgid "Too few arguments for function '%s'" msgstr "" -#: ../raster/r.mapcalc/evaluate.c:228 +#: ../raster/r.mapcalc/evaluate.c:300 #, c-format msgid "Too many arguments for function '%s'" msgstr "" -#: ../raster/r.mapcalc/evaluate.c:232 +#: ../raster/r.mapcalc/evaluate.c:304 #, c-format msgid "Invalid argument type for function '%s'" msgstr "" -#: ../raster/r.mapcalc/evaluate.c:236 +#: ../raster/r.mapcalc/evaluate.c:308 #, c-format msgid "Invalid return type for function '%s'" msgstr "" -#: ../raster/r.mapcalc/evaluate.c:240 +#: ../raster/r.mapcalc/evaluate.c:312 #, c-format msgid "Unknown type for function '%s'" msgstr "" -#: ../raster/r.mapcalc/evaluate.c:243 +#: ../raster/r.mapcalc/evaluate.c:315 #, c-format msgid "Number of arguments for function '%s'" msgstr "" -#: ../raster/r.mapcalc/evaluate.c:247 +#: ../raster/r.mapcalc/evaluate.c:319 #, c-format msgid "Unknown error for function '%s'" msgstr "" -#: ../raster/r.mapcalc/evaluate.c:323 +#: ../raster/r.mapcalc/evaluate.c:400 #, c-format msgid "output map <%s> exists. To overwrite, use the --overwrite flag" msgstr "" +#: ../raster/r.mapcalc/evaluate.c:452 +#, c-format +msgid "The number of rows is less than the number of threads. Set the number of threads to be the same as the rows = %d." +msgstr "" + #: ../raster/r.mapcalc/expression.c:205 #, c-format msgid "Undefined variable '%s'" @@ -22956,11 +23224,11 @@ msgstr "" msgid "Internal error for function %s()" msgstr "" -#: ../raster/r.mapcalc/expression.c:354 ../raster/r.mapcalc/map.c:282 -#: ../raster/r.mapcalc/map.c:490 ../raster/r.mapcalc/map.c:531 -#: ../raster/r.mapcalc/map.c:628 ../raster/r.mapcalc/map3.c:236 -#: ../raster/r.mapcalc/map3.c:422 ../raster/r.mapcalc/map3.c:467 -#: ../raster/r.mapcalc/map3.c:563 +#: ../raster/r.mapcalc/expression.c:354 ../raster/r.mapcalc/map.c:283 +#: ../raster/r.mapcalc/map.c:489 ../raster/r.mapcalc/map.c:530 +#: ../raster/r.mapcalc/map.c:633 ../raster/r.mapcalc/map3.c:240 +#: ../raster/r.mapcalc/map3.c:426 ../raster/r.mapcalc/map3.c:471 +#: ../raster/r.mapcalc/map3.c:567 #, c-format msgid "Invalid map modifier: '%c'" msgstr "" @@ -22980,78 +23248,95 @@ msgstr "" msgid "Known functions:" msgstr "" -#: ../raster/r.mapcalc/main.c:72 +#: ../raster/r.mapcalc/main.c:76 msgid "Raster map calculator." msgstr "" -#: ../raster/r.mapcalc/main.c:79 +#: ../raster/r.mapcalc/main.c:83 msgid "Expression to evaluate" msgstr "" -#: ../raster/r.mapcalc/main.c:80 ../raster/r.mapcalc/main.c:105 +#: ../raster/r.mapcalc/main.c:84 ../raster/r.mapcalc/main.c:109 msgid "Expression" msgstr "" -#: ../raster/r.mapcalc/main.c:88 +#: ../raster/r.mapcalc/main.c:92 msgid "The computational region that should be used." msgstr "" -#: ../raster/r.mapcalc/main.c:94 +#: ../raster/r.mapcalc/main.c:98 msgid "current uses the current region of the mapset" msgstr "" -#: ../raster/r.mapcalc/main.c:95 +#: ../raster/r.mapcalc/main.c:99 msgid "intersect computes the intersection region between all input maps and uses the smallest resolution" msgstr "" -#: ../raster/r.mapcalc/main.c:97 +#: ../raster/r.mapcalc/main.c:101 msgid "union computes the union extent of all map regions and uses the smallest resolution" msgstr "" -#: ../raster/r.mapcalc/main.c:104 +#: ../raster/r.mapcalc/main.c:108 msgid "File containing expression(s) to evaluate" msgstr "" -#: ../raster/r.mapcalc/main.c:116 +#: ../raster/r.mapcalc/main.c:120 msgid "List input and output maps" msgstr "" -#: ../raster/r.mapcalc/main.c:138 +#: ../raster/r.mapcalc/main.c:143 #, c-format msgid "%s= and -%c are mutually exclusive" msgstr "" -#: ../raster/r.mapcalc/main.c:149 +#: ../raster/r.mapcalc/main.c:154 msgid "parse error" msgstr "" -#: ../raster/r.mapcalc/main.c:188 +#: ../raster/r.mapcalc/main.c:201 +msgid "r3.mapcalc does not support parallel execution." +msgstr "" + +#: ../raster/r.mapcalc/main.c:207 +msgid "Parallel execution is not supported for random seed." +msgstr "" + +#: ../raster/r.mapcalc/main.c:215 ../raster/r.mfilter/main.c:127 +#: ../raster/r.neighbors/main.c:304 ../raster/r.patch/main.c:108 +#: ../raster/r.resamp.filter/main.c:488 ../raster/r.resamp.interp/main.c:126 +#: ../raster/r.series/main.c:225 ../raster/r.slope.aspect/main.c:303 +#: ../raster/r.texture/main.c:318 ../raster/r.univar/r.univar_main.c:247 +#, c-format +msgid "<%d> is not valid number of nprocs." +msgstr "" + +#: ../raster/r.mapcalc/main.c:227 msgid "Floating point error(s) occurred in the calculation" msgstr "" -#: ../raster/r.mapcalc/map.c:222 ../raster/r.mapcalc/map3.c:180 +#: ../raster/r.mapcalc/map.c:223 ../raster/r.mapcalc/map3.c:184 #, c-format msgid "Unable to read color file for raster map <%s@%s>" msgstr "" -#: ../raster/r.mapcalc/map.c:235 ../raster/r.mapcalc/map3.c:193 +#: ../raster/r.mapcalc/map.c:236 ../raster/r.mapcalc/map3.c:197 #, c-format msgid "Unable to create btree for raster map <%s@%s>" msgstr "" -#: ../raster/r.mapcalc/map3.c:127 ../raster/r.mapcalc/map3.c:141 -#: ../raster/r.mapcalc/map3.c:155 ../raster/r.out.bin/main.c:70 +#: ../raster/r.mapcalc/map3.c:131 ../raster/r.mapcalc/map3.c:145 +#: ../raster/r.mapcalc/map3.c:159 ../raster/r.out.bin/main.c:70 #: ../raster/r.out.bin/main.c:79 ../raster/r.out.bin/main.c:491 #: ../raster3d/r3.out.bin/main.c:121 msgid "Error writing data" msgstr "" -#: ../raster/r.mapcalc/map3.c:369 +#: ../raster/r.mapcalc/map3.c:373 #, c-format msgid "Unable to close raster map <%s@%s>" msgstr "" -#: ../raster/r.mapcalc/map3.c:631 +#: ../raster/r.mapcalc/map3.c:639 msgid "Unable to close output raster map" msgstr "" @@ -23076,10 +23361,6 @@ msgstr "" msgid "Return code 0 when mask present, 1 otherwise" msgstr "" -#: ../raster/r.mask.status/main.c:61 -msgid "Behave like the test utility, 0 for true, 1 for false, no output" -msgstr "" - #: ../raster/r.mask.status/main.c:152 #, c-format msgid "Mask is active" @@ -23156,7 +23437,7 @@ msgstr "" msgid "Illegal filter file format" msgstr "" -#: ../raster/r.mfilter/getrow.c:23 +#: ../raster/r.mfilter/getrow.c:36 msgid "Error reading temporary file" msgstr "" @@ -23186,15 +23467,6 @@ msgstr "" msgid "Apply filter only to null data values" msgstr "" -#: ../raster/r.mfilter/main.c:127 ../raster/r.neighbors/main.c:304 -#: ../raster/r.patch/main.c:108 ../raster/r.resamp.filter/main.c:488 -#: ../raster/r.resamp.interp/main.c:126 ../raster/r.series/main.c:222 -#: ../raster/r.slope.aspect/main.c:303 ../raster/r.texture/main.c:318 -#: ../raster/r.univar/r.univar_main.c:196 -#, c-format -msgid "<%d> is not valid number of nprocs." -msgstr "" - #: ../raster/r.mfilter/main.c:144 msgid "Raster map too small for the size of the filter" msgstr "" @@ -23487,64 +23759,60 @@ msgstr "" msgid "Writing output" msgstr "" -#: ../raster/r.out.ascii/main.c:58 +#: ../raster/r.out.ascii/main.c:62 msgid "Converts a raster map layer into a GRASS ASCII text file." msgstr "" -#: ../raster/r.out.ascii/main.c:67 +#: ../raster/r.out.ascii/main.c:71 msgid "Name for output ASCII grid map (use out=- for stdout)" msgstr "" -#: ../raster/r.out.ascii/main.c:80 +#: ../raster/r.out.ascii/main.c:84 msgid "Number of values printed before wrapping a line (only SURFER or MODFLOW format)" msgstr "" -#: ../raster/r.out.ascii/main.c:86 +#: ../raster/r.out.ascii/main.c:90 msgid "String to represent null cell (GRASS grid only)" msgstr "" -#: ../raster/r.out.ascii/main.c:90 ../raster3d/r3.out.ascii/main.c:97 +#: ../raster/r.out.ascii/main.c:94 ../raster3d/r3.out.ascii/main.c:98 msgid "Suppress printing of header information" msgstr "" -#: ../raster/r.out.ascii/main.c:94 +#: ../raster/r.out.ascii/main.c:98 msgid "Write SURFER (Golden Software) ASCII grid" msgstr "" -#: ../raster/r.out.ascii/main.c:98 +#: ../raster/r.out.ascii/main.c:102 msgid "Write MODFLOW (USGS) ASCII array" msgstr "" -#: ../raster/r.out.ascii/main.c:102 +#: ../raster/r.out.ascii/main.c:106 +msgid "Write LISFLOOD (EU) ASCII array" +msgstr "" + +#: ../raster/r.out.ascii/main.c:110 msgid "Force output of integer values" msgstr "" -#: ../raster/r.out.ascii/main.c:109 +#: ../raster/r.out.ascii/main.c:117 msgid "Failed to interpret dp as an integer" msgstr "" -#: ../raster/r.out.ascii/main.c:111 ../raster3d/r3.out.vtk/main.c:393 +#: ../raster/r.out.ascii/main.c:119 ../raster3d/r3.out.vtk/main.c:393 msgid "dp has to be from 0 to 20" msgstr "" -#: ../raster/r.out.ascii/main.c:117 +#: ../raster/r.out.ascii/main.c:125 msgid "Failed to interpret width as an integer" msgstr "" -#: ../raster/r.out.ascii/main.c:123 -msgid "Both -s and -h doesn't make sense" -msgstr "" - -#: ../raster/r.out.ascii/main.c:126 -msgid "Use -M or -s, not both" -msgstr "" - -#: ../raster/r.out.ascii/main.c:161 +#: ../raster/r.out.ascii/main.c:168 #, c-format msgid "Unable to read fp range for <%s>" msgstr "" -#: ../raster/r.out.ascii/main.c:177 +#: ../raster/r.out.ascii/main.c:189 #, c-format msgid "Read failed at row %d" msgstr "" @@ -23887,35 +24155,35 @@ msgstr "" msgid "Exporting to GDAL data type: %s" msgstr "" -#: ../raster/r.out.gdal/main.c:538 +#: ../raster/r.out.gdal/main.c:532 +msgid "Forcing raster export" +msgstr "" + +#: ../raster/r.out.gdal/main.c:541 msgid "Raster export would result in complete data loss, aborting." msgstr "" -#: ../raster/r.out.gdal/main.c:549 +#: ../raster/r.out.gdal/main.c:552 #, c-format msgid "Precision loss: Raster map <%s> of type %s to be exported as %s. This can be avoided by using %s." msgstr "" -#: ../raster/r.out.gdal/main.c:562 +#: ../raster/r.out.gdal/main.c:565 #, c-format msgid "Precision loss: The range of <%s> can not be accurately preserved with GDAL datatype Float32. This can be avoided by exporting to Int32 or Float64." msgstr "" -#: ../raster/r.out.gdal/main.c:570 +#: ../raster/r.out.gdal/main.c:573 #, c-format msgid "Precision loss: Float32 can not preserve the DCELL precision of raster <%s>. This can be avoided by using Float64" msgstr "" -#: ../raster/r.out.gdal/main.c:579 -msgid "Forcing raster export" -msgstr "" - -#: ../raster/r.out.gdal/main.c:582 +#: ../raster/r.out.gdal/main.c:581 #, c-format msgid "Raster export aborted. To override data loss check, use the -%c flag" msgstr "" -#: ../raster/r.out.gdal/main.c:599 ../raster/r.out.gdal/main.c:641 +#: ../raster/r.out.gdal/main.c:598 ../raster/r.out.gdal/main.c:641 #: ../raster/r.out.gdal/main.c:645 msgid "Raster export aborted." msgstr "" @@ -24063,65 +24331,71 @@ msgstr "" msgid "%ld bytes written to '%s'" msgstr "" -#: ../raster/r.out.mpeg/main.c:106 +#: ../raster/r.out.mpeg/main.c:107 msgid "animation" msgstr "" -#: ../raster/r.out.mpeg/main.c:108 +#: ../raster/r.out.mpeg/main.c:109 msgid "Converts raster map series to MPEG movie." msgstr "" -#: ../raster/r.out.mpeg/main.c:117 +#: ../raster/r.out.mpeg/main.c:118 #, c-format msgid "Name of input raster map(s) for view no.%d" msgstr "" -#: ../raster/r.out.mpeg/main.c:120 +#: ../raster/r.out.mpeg/main.c:121 msgid "Views" msgstr "" -#: ../raster/r.out.mpeg/main.c:134 +#: ../raster/r.out.mpeg/main.c:135 msgid "Quality factor (1 = highest quality, lowest compression)" msgstr "" -#: ../raster/r.out.mpeg/main.c:139 +#: ../raster/r.out.mpeg/main.c:140 msgid "Convert on the fly, uses less disk space" msgstr "" -#: ../raster/r.out.mpeg/main.c:140 +#: ../raster/r.out.mpeg/main.c:141 msgid "Requires r.out.ppm with stdout option" msgstr "" -#: ../raster/r.out.mpeg/main.c:169 +#: ../raster/r.out.mpeg/main.c:170 msgid "Either mpeg_encode or ppmtompeg must be installed" msgstr "" -#: ../raster/r.out.mpeg/main.c:299 +#: ../raster/r.out.mpeg/main.c:300 #, c-format msgid "Unable to read color table for <%s>" msgstr "" -#: ../raster/r.out.mpeg/main.c:348 ../raster/r.out.mpeg/main.c:380 +#: ../raster/r.out.mpeg/main.c:349 ../raster/r.out.mpeg/main.c:381 msgid "mpeg_encode ERROR" msgstr "" -#: ../raster/r.out.mpeg/main.c:421 +#: ../raster/r.out.mpeg/main.c:422 msgid "Error reading wildcard" msgstr "" -#: ../raster/r.out.mpeg/write.c:80 ../raster/r.out.mpeg/write.c:166 +#: ../raster/r.out.mpeg/main.c:460 ../raster/r.out.mpeg/write.c:324 +#: ../raster/r.out.mpeg/write.c:331 +#, c-format +msgid "Failed to remove temporary file <%s>: %s" +msgstr "" + +#: ../raster/r.out.mpeg/write.c:81 ../raster/r.out.mpeg/write.c:167 msgid "Size mismatch error!" msgstr "" -#: ../raster/r.out.mpeg/write.c:128 ../raster/r.out.mpeg/write.c:169 +#: ../raster/r.out.mpeg/write.c:129 ../raster/r.out.mpeg/write.c:170 msgid "Unable to open output file" msgstr "" -#: ../raster/r.out.mpeg/write.c:203 +#: ../raster/r.out.mpeg/write.c:204 msgid "Unable to create temporary files." msgstr "" -#: ../raster/r.out.mpeg/write.c:208 +#: ../raster/r.out.mpeg/write.c:209 #, c-format msgid "Directory <%s> too long" msgstr "" @@ -24155,7 +24429,7 @@ msgstr "" msgid "Converting <%s>..." msgstr "" -#: ../raster/r.out.png/main.c:280 ../raster/r.univar/r.univar_main.c:268 +#: ../raster/r.out.png/main.c:280 ../raster/r.univar/r.univar_main.c:320 #, c-format msgid "Raster <%s> type mismatch" msgstr "" @@ -24225,29 +24499,40 @@ msgstr "" msgid "Suppress printing of PPM header" msgstr "" -#: ../raster/r.out.ppm/main.c:99 ../raster/r.out.ppm3/main.c:96 +#: ../raster/r.out.ppm/main.c:83 +#, c-format +msgid "Output file name <%s> is too long" +msgstr "" + +#: ../raster/r.out.ppm/main.c:97 ../raster/r.out.ppm/main.c:99 +#: ../raster3d/r3.mkdspf/r3_find.c:20 +#, c-format +msgid "File name <%s> is too long" +msgstr "" + +#: ../raster/r.out.ppm/main.c:105 ../raster/r.out.ppm3/main.c:96 #, c-format msgid "row = %d" msgid_plural "rows = %d" msgstr[0] "" #. GTC Raster columns -#: ../raster/r.out.ppm/main.c:100 ../raster/r.out.ppm3/main.c:98 +#: ../raster/r.out.ppm/main.c:106 ../raster/r.out.ppm3/main.c:98 #, c-format msgid "column = %d" msgid_plural "columns = %d" msgstr[0] "" -#: ../raster/r.out.ppm/main.c:122 +#: ../raster/r.out.ppm/main.c:128 #, c-format msgid "Unable to open file <%s> for write" msgstr "" -#: ../raster/r.out.ppm/main.c:151 +#: ../raster/r.out.ppm/main.c:157 msgid "Converting..." msgstr "" -#: ../raster/r.out.ppm/main.c:234 +#: ../raster/r.out.ppm/main.c:240 #, c-format msgid "File <%s> created" msgstr "" @@ -24299,11 +24584,11 @@ msgstr "" msgid "Opening %s for writing... " msgstr "" -#: ../raster/r.out.vrml/put_grid.c:35 +#: ../raster/r.out.vrml/put_grid.c:34 msgid "Writing vertices..." msgstr "" -#: ../raster/r.out.vrml/put_grid.c:79 +#: ../raster/r.out.vrml/put_grid.c:78 msgid "Writing color file..." msgstr "" @@ -24520,7 +24805,7 @@ msgstr "" #: ../raster/r.patch/main.c:194 ../raster/r.relief/main.c:292 #: ../raster/r.series.accumulate/main.c:319 -#: ../raster/r.series.interp/main.c:377 ../raster/r.series/main.c:501 +#: ../raster/r.series.interp/main.c:377 ../raster/r.series/main.c:496 #: ../raster/r.slope.aspect/main.c:560 msgid "Percent complete..." msgstr "" @@ -24530,164 +24815,169 @@ msgstr "" msgid "Creating support files for raster map <%s>..." msgstr "" -#: ../raster/r.path/main.c:153 +#: ../raster/r.path/main.c:154 msgid "Traces paths from starting points following input directions." msgstr "" -#: ../raster/r.path/main.c:156 +#: ../raster/r.path/main.c:157 msgid "Name of input direction" msgstr "" -#: ../raster/r.path/main.c:158 +#: ../raster/r.path/main.c:159 msgid "Direction in degrees CCW from east, or bitmask encoded" msgstr "" -#: ../raster/r.path/main.c:163 +#: ../raster/r.path/main.c:164 msgid "Format of the input direction map" msgstr "" -#: ../raster/r.path/main.c:169 +#: ../raster/r.path/main.c:170 msgid "auto-detect direction format" msgstr "" -#: ../raster/r.path/main.c:169 +#: ../raster/r.path/main.c:170 msgid "degrees CCW from East" msgstr "" -#: ../raster/r.path/main.c:170 +#: ../raster/r.path/main.c:171 msgid "degrees CCW from East divided by 45 (e.g. r.watershed directions)" msgstr "" -#: ../raster/r.path/main.c:171 +#: ../raster/r.path/main.c:172 msgid "bitmask encoded directions (e.g. r.cost -b)" msgstr "" -#: ../raster/r.path/main.c:176 +#: ../raster/r.path/main.c:177 msgid "Name of input raster values to be used for output" msgstr "" -#: ../raster/r.path/main.c:182 +#: ../raster/r.path/main.c:183 msgid "Name for output raster path map" msgstr "" -#: ../raster/r.path/main.c:187 +#: ../raster/r.path/main.c:188 msgid "Name for output vector path map" msgstr "" -#: ../raster/r.path/main.c:204 +#: ../raster/r.path/main.c:205 msgid "Start bitmask encoded directions from East (e.g., r.terraflow)" msgstr "" -#: ../raster/r.path/main.c:205 ../raster/r.path/main.c:211 +#: ../raster/r.path/main.c:206 ../raster/r.path/main.c:212 msgid "Direction settings" msgstr "" -#: ../raster/r.path/main.c:210 +#: ../raster/r.path/main.c:211 msgid "Do not break lines (faster for single-direction bitmask encoding)" msgstr "" -#: ../raster/r.path/main.c:383 +#: ../raster/r.path/main.c:387 msgid "No start point(s) specified" msgstr "" -#: ../raster/r.path/main.c:393 +#: ../raster/r.path/main.c:397 #, c-format msgid "Reading raster values map <%s> ..." msgstr "" -#: ../raster/r.path/main.c:406 ../raster/r.path/main.c:484 -#: ../raster/r.path/main.c:501 +#: ../raster/r.path/main.c:402 +#, c-format +msgid "Unable to open temporary file <%s>: %s" +msgstr "" + +#: ../raster/r.path/main.c:414 ../raster/r.path/main.c:492 +#: ../raster/r.path/main.c:509 msgid "Unable to write to tempfile" msgstr "" -#: ../raster/r.path/main.c:414 +#: ../raster/r.path/main.c:422 msgid "Unable to read range file" msgstr "" -#: ../raster/r.path/main.c:417 +#: ../raster/r.path/main.c:425 #, c-format msgid "Invalid directions map <%s>" msgstr "" -#: ../raster/r.path/main.c:422 +#: ../raster/r.path/main.c:430 msgid "Directional degrees can not be > 360" msgstr "" -#: ../raster/r.path/main.c:428 +#: ../raster/r.path/main.c:436 msgid "Directional degrees divided by 45 can not be > 8" msgstr "" -#: ../raster/r.path/main.c:433 +#: ../raster/r.path/main.c:441 #, c-format msgid "Bitmask encoded directions can not be > %d" msgstr "" -#: ../raster/r.path/main.c:440 +#: ../raster/r.path/main.c:448 msgid "Input direction format assumed to be degrees CCW from East divided by 45" msgstr "" -#: ../raster/r.path/main.c:445 +#: ../raster/r.path/main.c:453 msgid "Input direction format assumed to be bitmask encoded without Knight's move" msgstr "" -#: ../raster/r.path/main.c:451 +#: ../raster/r.path/main.c:459 msgid "Input direction format assumed to be degrees CCW from East" msgstr "" -#: ../raster/r.path/main.c:455 +#: ../raster/r.path/main.c:463 msgid "Input direction format assumed to be bitmask encoded with Knight's move" msgstr "" -#: ../raster/r.path/main.c:460 +#: ../raster/r.path/main.c:468 #, c-format msgid "Unable to detect format of input direction map <%s>" msgstr "" -#: ../raster/r.path/main.c:464 +#: ../raster/r.path/main.c:472 #, c-format msgid "Invalid directions format '%s'" msgstr "" -#: ../raster/r.path/main.c:466 +#: ../raster/r.path/main.c:474 #, c-format msgid "Reading direction map <%s> ..." msgstr "" -#: ../raster/r.path/main.c:520 +#: ../raster/r.path/main.c:528 msgid "Processing start points..." msgstr "" -#: ../raster/r.path/main.c:530 ../vector/v.buffer/main.c:410 +#: ../raster/r.path/main.c:538 ../vector/v.buffer/main.c:410 #: ../vector/v.in.ogr/main.c:881 ../vector/v.overlay/main.c:237 #: ../vector/v.voronoi/main.c:215 msgid "Unable to create temporary vector map" msgstr "" -#: ../raster/r.path/main.c:536 ../raster/r.path/main.c:552 +#: ../raster/r.path/main.c:544 ../raster/r.path/main.c:560 #, c-format msgid "No path at row %d, col %d" msgstr "" -#: ../raster/r.path/main.c:541 ../vector/v.overlay/area_area.c:123 +#: ../raster/r.path/main.c:549 ../vector/v.overlay/area_area.c:134 #: ../vector/v.overlay/line_area.c:255 msgid "Breaking lines..." msgstr "" -#: ../raster/r.path/main.c:679 +#: ../raster/r.path/main.c:687 msgid "Unable to increase point list" msgstr "" -#: ../raster/r.path/main.c:871 +#: ../raster/r.path/main.c:890 #, c-format msgid "No path from row %d, col %d" msgstr "" -#: ../raster/r.path/main.c:885 +#: ../raster/r.path/main.c:904 #, c-format msgid "Invalid direction %d" msgstr "" -#: ../raster/r.path/main.c:978 +#: ../raster/r.path/main.c:1002 msgid "Path is leaving the current region" msgstr "" @@ -24696,87 +24986,87 @@ msgstr "" msgid "One coordinate pair per line, please" msgstr "" -#: ../raster/r.profile/main.c:57 ../raster/r.transect/main.c:104 +#: ../raster/r.profile/main.c:59 ../raster/r.transect/main.c:104 #: ../vector/v.profile/main.c:157 msgid "transect" msgstr "" -#: ../raster/r.profile/main.c:59 +#: ../raster/r.profile/main.c:61 msgid "Outputs the raster map layer values lying on user-defined line(s)." msgstr "" -#: ../raster/r.profile/main.c:78 +#: ../raster/r.profile/main.c:80 msgid "Name of input file containing coordinate pairs" msgstr "" -#: ../raster/r.profile/main.c:79 +#: ../raster/r.profile/main.c:81 msgid "Use instead of the 'coordinates' option. \"-\" reads from stdin." msgstr "" -#: ../raster/r.profile/main.c:87 +#: ../raster/r.profile/main.c:89 msgid "Resolution along profile (default = current region resolution)" msgstr "" -#: ../raster/r.profile/main.c:94 ../raster/r.transect/main.c:124 +#: ../raster/r.profile/main.c:96 ../raster/r.transect/main.c:124 msgid "Output easting and northing in first two columns of four column output" msgstr "" -#: ../raster/r.profile/main.c:100 -msgid "Output RRR:GGG:BBB color values for each profile point" +#: ../raster/r.profile/main.c:102 +msgid "Output color values for each profile point (format controlled by color_format option; default is 'triplet' for plain output, 'hex' for JSON)" msgstr "" -#: ../raster/r.profile/main.c:106 +#: ../raster/r.profile/main.c:110 msgid "If units are not specified, current project units are used. Meters are used by default in geographic (latlon) projects." msgstr "" -#: ../raster/r.profile/main.c:123 +#: ../raster/r.profile/main.c:140 msgid "Either use profile option or coordinate_file option, but not both" msgstr "" -#: ../raster/r.profile/main.c:150 +#: ../raster/r.profile/main.c:167 #, c-format msgid "Illegal resolution %g [%s]" msgstr "" -#: ../raster/r.profile/main.c:166 +#: ../raster/r.profile/main.c:185 #, c-format msgid "Using resolution: %g [%s]" msgstr "" -#: ../raster/r.profile/main.c:198 +#: ../raster/r.profile/main.c:232 msgid "Output columns:" msgstr "" -#: ../raster/r.profile/main.c:201 +#: ../raster/r.profile/main.c:235 #, c-format msgid "Easting, Northing, Along track dist. [%s], Elevation" msgstr "" -#: ../raster/r.profile/main.c:205 +#: ../raster/r.profile/main.c:239 #, c-format msgid "Along track dist. [%s], Elevation" msgstr "" -#: ../raster/r.profile/main.c:207 +#: ../raster/r.profile/main.c:241 msgid " RGB color" msgstr "" -#: ../raster/r.profile/main.c:219 +#: ../raster/r.profile/main.c:262 #, c-format msgid "Could not open <%s>" msgstr "" -#: ../raster/r.profile/main.c:225 +#: ../raster/r.profile/main.c:268 #, c-format msgid "Invalid coordinates %s %s" msgstr "" -#: ../raster/r.profile/main.c:306 +#: ../raster/r.profile/main.c:351 #, c-format msgid "Approx. transect length: %f [%s]" msgstr "" -#: ../raster/r.profile/main.c:310 +#: ../raster/r.profile/main.c:355 msgid "Endpoint coordinates are outside of current region settings" msgstr "" @@ -24856,131 +25146,131 @@ msgstr "" msgid "Print input map's bounds in the current projection and exit" msgstr "" -#: ../raster/r.proj/main.c:238 -msgid "[DEPRECATED] Print input map's bounds in the current projection and exit (shell style). This flag is obsolete and will be removed in a future release. Use format=shell instead." +#: ../raster/r.proj/main.c:237 +msgid "Print input map's bounds in the current projection in shell script style [deprecated]" msgstr "" -#: ../raster/r.proj/main.c:263 +#: ../raster/r.proj/main.c:264 #, c-format msgid "The format option can only be used with -%c or -%c flags" msgstr "" -#: ../raster/r.proj/main.c:294 +#: ../raster/r.proj/main.c:296 msgid "Input and output locations can not be the same" msgstr "" -#: ../raster/r.proj/main.c:296 +#: ../raster/r.proj/main.c:298 msgid "Input and output projects are the same" msgstr "" -#: ../raster/r.proj/main.c:306 +#: ../raster/r.proj/main.c:308 msgid "Unable to get projection info of output raster map" msgstr "" -#: ../raster/r.proj/main.c:309 +#: ../raster/r.proj/main.c:311 msgid "Unable to get projection units of output raster map" msgstr "" -#: ../raster/r.proj/main.c:313 +#: ../raster/r.proj/main.c:315 msgid "Unable to get projection key values of output raster map" msgstr "" -#: ../raster/r.proj/main.c:327 +#: ../raster/r.proj/main.c:329 #, c-format msgid "Mapset <%s> in input project <%s> - %s" msgstr "" -#: ../raster/r.proj/main.c:348 ../vector/v.proj/main.c:231 +#: ../raster/r.proj/main.c:350 ../vector/v.proj/main.c:231 #, c-format msgid "Checking project <%s> mapset <%s>" msgstr "" -#: ../raster/r.proj/main.c:381 ../scripts/d.frame/d.frame.py:311 +#: ../raster/r.proj/main.c:383 ../scripts/d.frame/d.frame.py:312 #: ../vector/v.edit/main.c:89 ../vector/v.external/main.c:109 #: ../vector/v.in.ogr/main.c:454 ../vector/v.net/args.c:150 #: ../vector/v.net/args.c:156 ../vector/v.net/args.c:162 #: ../vector/v.net/args.c:166 ../vector/v.net/args.c:176 #: ../vector/v.proj/main.c:248 ../vector/v.select/main.c:100 -#: ../vector/v.what.rast/main.c:120 +#: ../vector/v.what.rast/main.c:138 #, c-format, python-format msgid "Required parameter <%s> not set" msgstr "" -#: ../raster/r.proj/main.c:385 +#: ../raster/r.proj/main.c:387 #, c-format msgid "Raster map <%s> in project <%s> in mapset <%s> not found" msgstr "" -#: ../raster/r.proj/main.c:393 +#: ../raster/r.proj/main.c:395 msgid "Unable to get projection info of input map" msgstr "" -#: ../raster/r.proj/main.c:404 +#: ../raster/r.proj/main.c:406 msgid "Unable to get projection units of input map" msgstr "" -#: ../raster/r.proj/main.c:407 +#: ../raster/r.proj/main.c:409 msgid "Unable to get projection key values of input map" msgstr "" -#: ../raster/r.proj/main.c:431 +#: ../raster/r.proj/main.c:433 msgid "Unable to work with unprojected data (xy project)" msgstr "" -#: ../raster/r.proj/main.c:452 +#: ../raster/r.proj/main.c:454 #, c-format msgid "Input map <%s@%s> in project <%s>:" msgstr "" -#: ../raster/r.proj/main.c:653 +#: ../raster/r.proj/main.c:655 msgid "Input:" msgstr "" -#: ../raster/r.proj/main.c:654 ../raster/r.proj/main.c:665 +#: ../raster/r.proj/main.c:656 ../raster/r.proj/main.c:667 #, c-format msgid "Cols: %d (original: %d)" msgstr "" -#: ../raster/r.proj/main.c:655 ../raster/r.proj/main.c:666 +#: ../raster/r.proj/main.c:657 ../raster/r.proj/main.c:668 #, c-format msgid "Rows: %d (original: %d)" msgstr "" -#: ../raster/r.proj/main.c:656 ../raster/r.proj/main.c:667 +#: ../raster/r.proj/main.c:658 ../raster/r.proj/main.c:669 #, c-format msgid "North: %f (original: %f)" msgstr "" -#: ../raster/r.proj/main.c:657 ../raster/r.proj/main.c:668 +#: ../raster/r.proj/main.c:659 ../raster/r.proj/main.c:670 #, c-format msgid "South: %f (original: %f)" msgstr "" -#: ../raster/r.proj/main.c:658 ../raster/r.proj/main.c:669 +#: ../raster/r.proj/main.c:660 ../raster/r.proj/main.c:671 #, c-format msgid "West: %f (original: %f)" msgstr "" -#: ../raster/r.proj/main.c:659 ../raster/r.proj/main.c:670 +#: ../raster/r.proj/main.c:661 ../raster/r.proj/main.c:672 #, c-format msgid "East: %f (original: %f)" msgstr "" -#: ../raster/r.proj/main.c:660 ../raster/r.proj/main.c:671 +#: ../raster/r.proj/main.c:662 ../raster/r.proj/main.c:673 #, c-format msgid "EW-res: %f" msgstr "" -#: ../raster/r.proj/main.c:661 ../raster/r.proj/main.c:672 +#: ../raster/r.proj/main.c:663 ../raster/r.proj/main.c:674 #, c-format msgid "NS-res: %f" msgstr "" -#: ../raster/r.proj/main.c:664 +#: ../raster/r.proj/main.c:666 msgid "Output:" msgstr "" -#: ../raster/r.proj/main.c:715 +#: ../raster/r.proj/main.c:717 msgid "Projecting..." msgstr "" @@ -25124,27 +25414,27 @@ msgstr "" msgid "Computing histogram" msgstr "" -#: ../raster/r.quantile/main.c:129 ../raster/r.stats.quantile/main.c:208 +#: ../raster/r.quantile/main.c:129 ../raster/r.stats.quantile/main.c:211 msgid "Computing bins" msgstr "" -#: ../raster/r.quantile/main.c:182 ../raster/r.stats.quantile/main.c:280 +#: ../raster/r.quantile/main.c:182 ../raster/r.stats.quantile/main.c:283 msgid "Binning data" msgstr "" -#: ../raster/r.quantile/main.c:227 ../raster/r.stats.quantile/main.c:336 +#: ../raster/r.quantile/main.c:227 ../raster/r.stats.quantile/main.c:339 msgid "Sorting bins" msgstr "" -#: ../raster/r.quantile/main.c:242 ../raster/r.stats.quantile/main.c:408 +#: ../raster/r.quantile/main.c:242 ../raster/r.stats.quantile/main.c:486 msgid "Computing quantiles" msgstr "" -#: ../raster/r.quantile/main.c:300 ../raster/r.stats.quantile/main.c:568 +#: ../raster/r.quantile/main.c:300 ../raster/r.stats.quantile/main.c:647 msgid "percentile" msgstr "" -#: ../raster/r.quantile/main.c:301 ../raster/r.stats.quantile/main.c:569 +#: ../raster/r.quantile/main.c:301 ../raster/r.stats.quantile/main.c:648 msgid "quantile" msgstr "" @@ -25152,15 +25442,15 @@ msgstr "" msgid "Compute quantiles using two passes." msgstr "" -#: ../raster/r.quantile/main.c:310 ../raster/r.stats.quantile/main.c:580 +#: ../raster/r.quantile/main.c:310 ../raster/r.stats.quantile/main.c:659 msgid "Number of quantiles" msgstr "" -#: ../raster/r.quantile/main.c:318 ../raster/r.stats.quantile/main.c:586 +#: ../raster/r.quantile/main.c:318 ../raster/r.stats.quantile/main.c:665 msgid "List of percentiles" msgstr "" -#: ../raster/r.quantile/main.c:324 ../raster/r.stats.quantile/main.c:593 +#: ../raster/r.quantile/main.c:324 ../raster/r.stats.quantile/main.c:672 msgid "Number of bins to use" msgstr "" @@ -25274,11 +25564,11 @@ msgstr "" msgid "Uniformly distributed cell values" msgstr "" -#: ../raster/r.random/count.c:66 +#: ../raster/r.random/count.c:69 msgid "Collecting Stats..." msgstr "" -#: ../raster/r.random/count.c:121 +#: ../raster/r.random/count.c:119 msgid "Programmer error in get_stats/switch" msgstr "" @@ -25484,22 +25774,22 @@ msgstr "" msgid "Too many categories" msgstr "" -#: ../raster/r.reclass/reclass.c:216 +#: ../raster/r.reclass/reclass.c:218 #, c-format msgid "Cannot read header file of <%s@%s>" msgstr "" -#: ../raster/r.reclass/reclass.c:234 +#: ../raster/r.reclass/reclass.c:236 #, c-format msgid "Cannot overwrite existing raster map <%s>" msgstr "" -#: ../raster/r.reclass/reclass.c:239 +#: ../raster/r.reclass/reclass.c:241 #, c-format msgid "Cannot create reclass file of <%s>" msgstr "" -#: ../raster/r.reclass/reclass.c:247 +#: ../raster/r.reclass/reclass.c:249 #, c-format msgid "Cannot create raster map <%s>" msgstr "" @@ -25543,7 +25833,7 @@ msgstr "" msgid "Data range of %s is %s to %s (entire map)" msgstr "" -#: ../raster/r.recode/read_rules.c:35 ../raster/r.stats/main.c:379 +#: ../raster/r.recode/read_rules.c:35 ../raster/r.stats/main.c:398 #, c-format msgid "Unable to read range for map <%s>" msgstr "" @@ -25614,54 +25904,54 @@ msgstr "" msgid "Raster map to align to" msgstr "" -#: ../raster/r.regression.line/main.c:49 +#: ../raster/r.regression.line/main.c:55 msgid "Calculates linear regression from two raster maps: y = a + b*x." msgstr "" -#: ../raster/r.regression.line/main.c:54 -#: ../raster/r.regression.multi/main.c:138 +#: ../raster/r.regression.line/main.c:60 +#: ../raster/r.regression.multi/main.c:146 msgid "Map for x coefficient" msgstr "" -#: ../raster/r.regression.line/main.c:58 -#: ../raster/r.regression.multi/main.c:142 +#: ../raster/r.regression.line/main.c:64 +#: ../raster/r.regression.multi/main.c:150 msgid "Map for y coefficient" msgstr "" -#: ../raster/r.regression.line/main.c:64 -#: ../raster/r.regression.multi/main.c:158 +#: ../raster/r.regression.line/main.c:70 +#: ../raster/r.regression.multi/main.c:166 msgid "ASCII file for storing regression coefficients (output to screen if file not specified)." msgstr "" -#: ../raster/r.regression.multi/main.c:59 +#: ../raster/r.regression.multi/main.c:62 msgid "Matrix is unsolvable" msgstr "" -#: ../raster/r.regression.multi/main.c:133 +#: ../raster/r.regression.multi/main.c:141 msgid "Calculates multiple linear regression from raster maps." msgstr "" -#: ../raster/r.regression.multi/main.c:147 +#: ../raster/r.regression.multi/main.c:155 msgid "Map to store residuals" msgstr "" -#: ../raster/r.regression.multi/main.c:152 +#: ../raster/r.regression.multi/main.c:160 msgid "Map to store estimates" msgstr "" -#: ../raster/r.regression.multi/main.c:253 +#: ../raster/r.regression.multi/main.c:300 msgid "First pass..." msgstr "" -#: ../raster/r.regression.multi/main.c:325 +#: ../raster/r.regression.multi/main.c:372 msgid "Not enough valid cells available" msgstr "" -#: ../raster/r.regression.multi/main.c:339 +#: ../raster/r.regression.multi/main.c:387 msgid "Multiple regression failed" msgstr "" -#: ../raster/r.regression.multi/main.c:344 +#: ../raster/r.regression.multi/main.c:392 msgid "Second pass..." msgstr "" @@ -25738,7 +26028,7 @@ msgstr "" msgid "Reports statistics for raster maps." msgstr "" -#: ../raster/r.report/parse.c:37 ../raster/r.stats/main.c:116 +#: ../raster/r.report/parse.c:37 ../raster/r.stats/main.c:117 msgid "Name of raster map(s) to report on" msgstr "" @@ -25774,18 +26064,18 @@ msgstr "" msgid "percent cover" msgstr "" -#: ../raster/r.report/parse.c:56 ../raster/r.stats/main.c:162 -#: ../raster/r.stats/main.c:167 ../raster/r.stats/main.c:173 -#: ../vector/v.vect.stats/main.c:202 ../vector/v.vect.stats/main.c:209 -#: ../vector/v.vect.stats/main.c:218 ../vector/v.vect.stats/main.c:226 +#: ../raster/r.report/parse.c:56 ../raster/r.stats/main.c:167 +#: ../raster/r.stats/main.c:172 ../raster/r.stats/main.c:178 +#: ../vector/v.vect.stats/main.c:210 ../vector/v.vect.stats/main.c:217 +#: ../vector/v.vect.stats/main.c:226 ../vector/v.vect.stats/main.c:234 msgid "Statistics" msgstr "" -#: ../raster/r.report/parse.c:60 ../raster/r.volume/main.c:108 +#: ../raster/r.report/parse.c:60 ../raster/r.volume/main.c:115 msgid "Name for output file to hold the report" msgstr "" -#: ../raster/r.report/parse.c:62 ../raster/r.volume/main.c:110 +#: ../raster/r.report/parse.c:62 ../raster/r.volume/main.c:117 msgid "If no output file given report is printed to standard output" msgstr "" @@ -25797,30 +26087,30 @@ msgstr "" msgid "Page width" msgstr "" -#: ../raster/r.report/parse.c:91 ../raster/r.stats/main.c:138 +#: ../raster/r.report/parse.c:91 ../raster/r.stats/main.c:139 msgid "Number of floating-point subranges to collect stats from" msgstr "" #: ../raster/r.report/parse.c:92 ../raster/r.report/parse.c:139 -#: ../raster/r.report/parse.c:145 ../raster/r.stats/main.c:139 -#: ../raster/r.stats/main.c:199 ../raster/r.stats/main.c:205 -#: ../raster/r.stats/main.c:221 ../raster/r.stats/main.c:227 +#: ../raster/r.report/parse.c:145 ../raster/r.stats/main.c:140 +#: ../raster/r.stats/main.c:204 ../raster/r.stats/main.c:210 +#: ../raster/r.stats/main.c:226 ../raster/r.stats/main.c:232 msgid "Floating point" msgstr "" -#: ../raster/r.report/parse.c:99 ../raster/r.stats/main.c:146 +#: ../raster/r.report/parse.c:99 ../raster/r.stats/main.c:147 msgid "Sort output statistics by cell counts" msgstr "" -#: ../raster/r.report/parse.c:100 ../raster/r.stats/main.c:147 +#: ../raster/r.report/parse.c:100 ../raster/r.stats/main.c:148 msgid "Default: sorted by categories or intervals" msgstr "" -#: ../raster/r.report/parse.c:103 ../raster/r.stats/main.c:150 +#: ../raster/r.report/parse.c:103 ../raster/r.stats/main.c:151 msgid "Sort by cell counts in ascending order" msgstr "" -#: ../raster/r.report/parse.c:104 ../raster/r.stats/main.c:151 +#: ../raster/r.report/parse.c:104 ../raster/r.stats/main.c:152 msgid "Sort by cell counts in descending order" msgstr "" @@ -25836,24 +26126,24 @@ msgstr "" msgid "Scientific format" msgstr "" -#: ../raster/r.report/parse.c:127 ../raster/r.stats/main.c:209 +#: ../raster/r.report/parse.c:127 ../raster/r.stats/main.c:214 msgid "Do not report no data value" msgstr "" #: ../raster/r.report/parse.c:128 ../raster/r.report/parse.c:133 -#: ../raster/r.stats/main.c:210 ../raster/r.stats/main.c:215 +#: ../raster/r.stats/main.c:215 ../raster/r.stats/main.c:220 msgid "No data" msgstr "" -#: ../raster/r.report/parse.c:132 ../raster/r.stats/main.c:214 +#: ../raster/r.report/parse.c:132 ../raster/r.stats/main.c:219 msgid "Do not report cells where all maps have no data" msgstr "" -#: ../raster/r.report/parse.c:138 ../raster/r.stats/main.c:220 +#: ../raster/r.report/parse.c:138 ../raster/r.stats/main.c:225 msgid "Report for cats floating-point ranges (floating-point maps only)" msgstr "" -#: ../raster/r.report/parse.c:144 ../raster/r.stats/main.c:226 +#: ../raster/r.report/parse.c:144 ../raster/r.stats/main.c:231 msgid "Read floating-point map as integer (use map's quant rules)" msgstr "" @@ -26389,8 +26679,8 @@ msgstr "" msgid "Unable to write raster maps -- try increasing cell size" msgstr "" -#: ../raster/r.resamp.rst/main.c:551 ../raster/r.thin/io.c:133 -#: ../raster/r.thin/io.c:141 ../raster/r.thin/io.c:151 +#: ../raster/r.resamp.rst/main.c:551 ../raster/r.thin/io.c:142 +#: ../raster/r.thin/io.c:150 ../raster/r.thin/io.c:160 #: ../vector/v.surf.rst/main.c:918 #, c-format msgid "Error writing temporary file <%s>" @@ -26797,29 +27087,29 @@ msgstr "" msgid "Weighting factor for each input map, default value is 1.0 for each input map" msgstr "" -#: ../raster/r.series/main.c:285 ../raster/r.series/main.c:369 +#: ../raster/r.series/main.c:280 ../raster/r.series/main.c:364 msgid "Weights must be positive" msgstr "" -#: ../raster/r.series/main.c:308 ../raster/r.series/main.c:376 +#: ../raster/r.series/main.c:303 ../raster/r.series/main.c:371 #, c-format msgid "Reading raster map <%s> using weight %f..." msgstr "" -#: ../raster/r.series/main.c:312 ../raster/r.series/main.c:380 +#: ../raster/r.series/main.c:307 ../raster/r.series/main.c:375 #, c-format msgid "Unable to open input raster <%s>" msgstr "" -#: ../raster/r.series/main.c:354 +#: ../raster/r.series/main.c:349 msgid "input= and weights= must have the same number of values" msgstr "" -#: ../raster/r.series/main.c:415 +#: ../raster/r.series/main.c:410 msgid "output= and method= must have the same number of values" msgstr "" -#: ../raster/r.series/main.c:458 +#: ../raster/r.series/main.c:453 #, c-format msgid "Method %s not compatible with weights, using unweighed version instead" msgstr "" @@ -27449,42 +27739,48 @@ msgstr "" msgid "Smoothed map" msgstr "" -#: ../raster/r.smooth.edgepreserve/row_cache.c:32 +#: ../raster/r.smooth.edgepreserve/row_cache.c:29 +#: ../raster/r.smooth.edgepreserve/row_cache.c:49 +#, c-format +msgid "Seek error on temp file. %d: %s" +msgstr "" + +#: ../raster/r.smooth.edgepreserve/row_cache.c:36 #, c-format msgid "There was an error reading data from a temporary file. %d: %s" msgstr "" -#: ../raster/r.smooth.edgepreserve/row_cache.c:46 +#: ../raster/r.smooth.edgepreserve/row_cache.c:56 #, c-format msgid "There was an error writing data from a temporary file. %d: %s" msgstr "" -#: ../raster/r.smooth.edgepreserve/row_cache.c:59 +#: ../raster/r.smooth.edgepreserve/row_cache.c:71 msgid "Error fetching data from a disk cache" msgstr "" -#: ../raster/r.smooth.edgepreserve/row_cache.c:111 +#: ../raster/r.smooth.edgepreserve/row_cache.c:123 msgid "Insufficient memory to hold processed data. Either increase available memory with the \"memory\" parameter or reduce size of the computational region." msgstr "" -#: ../raster/r.smooth.edgepreserve/row_cache.c:115 +#: ../raster/r.smooth.edgepreserve/row_cache.c:127 msgid "Using disk for temporary data storage" msgstr "" -#: ../raster/r.smooth.edgepreserve/row_cache.c:123 +#: ../raster/r.smooth.edgepreserve/row_cache.c:135 #, c-format msgid "Error creating row cache. %d: %s" msgstr "" -#: ../raster/r.smooth.edgepreserve/row_cache.c:129 +#: ../raster/r.smooth.edgepreserve/row_cache.c:141 msgid "Error creating row cache" msgstr "" -#: ../raster/r.smooth.edgepreserve/row_cache.c:135 +#: ../raster/r.smooth.edgepreserve/row_cache.c:147 msgid "Keeping temporary data in RAM" msgstr "" -#: ../raster/r.smooth.edgepreserve/row_cache.c:155 +#: ../raster/r.smooth.edgepreserve/row_cache.c:167 #, c-format msgid "Error cleaning up row cache. %d: %s" msgstr "" @@ -27868,66 +28164,80 @@ msgstr "" msgid "Reading r.stats output" msgstr "" -#: ../raster/r.stats.quantile/main.c:112 +#: ../raster/r.stats.quantile/main.c:115 msgid "Computing histograms" msgstr "" -#: ../raster/r.stats.quantile/main.c:150 +#: ../raster/r.stats.quantile/main.c:153 msgid "No cells found where both base and cover are not NULL" msgstr "" -#: ../raster/r.stats.quantile/main.c:364 +#: ../raster/r.stats.quantile/main.c:371 msgid "Printing quantiles" msgstr "" -#: ../raster/r.stats.quantile/main.c:460 +#: ../raster/r.stats.quantile/main.c:538 msgid "Generating reclass maps" msgstr "" -#: ../raster/r.stats.quantile/main.c:504 +#: ../raster/r.stats.quantile/main.c:582 msgid "Writing output maps" msgstr "" -#: ../raster/r.stats.quantile/main.c:570 +#: ../raster/r.stats.quantile/main.c:649 msgid "Compute category quantiles using two passes." msgstr "" -#: ../raster/r.stats.quantile/main.c:597 +#: ../raster/r.stats.quantile/main.c:676 msgid "Resultant raster map(s)" msgstr "" -#: ../raster/r.stats.quantile/main.c:614 ../raster/r.stats.zonal/main.c:152 +#: ../raster/r.stats.quantile/main.c:699 ../raster/r.stats.zonal/main.c:152 msgid "Create reclass map with statistics as category labels" msgstr "" -#: ../raster/r.stats.quantile/main.c:618 +#: ../raster/r.stats.quantile/main.c:703 msgid "Do not create output maps; just print statistics" msgstr "" -#: ../raster/r.stats.quantile/main.c:622 -msgid "Print statistics in table format" +#: ../raster/r.stats.quantile/main.c:707 +msgid "Print statistics in table format [deprecated]" +msgstr "" + +#: ../raster/r.stats.quantile/main.c:709 ../raster/r.univar/r.univar_main.c:117 +#: ../raster/r.univar/r3.univar_main.c:79 ../raster/r.volume/main.c:134 +msgid "This flag is deprecated and will be removed in a future release. Use format=csv instead." msgstr "" -#: ../raster/r.stats.quantile/main.c:634 +#: ../raster/r.stats.quantile/main.c:730 #, c-format msgid "Either -%c or %s= must be given" msgstr "" -#: ../raster/r.stats.quantile/main.c:663 +#: ../raster/r.stats.quantile/main.c:749 ../raster/r.univar/r.univar_main.c:232 +#: ../raster/r.univar/r3.univar_main.c:188 +msgid "Flag 't' is deprecated and will be removed in a future release. Please use format=csv instead." +msgstr "" + +#: ../raster/r.stats.quantile/main.c:752 +msgid "The -t flag cannot be used with format=json. Please select only one output format." +msgstr "" + +#: ../raster/r.stats.quantile/main.c:780 #, c-format msgid "Number of quantiles (%d) does not match number of output maps (%d)" msgstr "" -#: ../raster/r.stats.quantile/main.c:673 ../raster/r.stats.zonal/main.c:185 +#: ../raster/r.stats.quantile/main.c:790 ../raster/r.stats.zonal/main.c:185 msgid "The base map must be an integer (CELL) map" msgstr "" -#: ../raster/r.stats.quantile/main.c:676 ../raster/r.stats.zonal/main.c:188 +#: ../raster/r.stats.quantile/main.c:793 ../raster/r.stats.zonal/main.c:188 #, c-format msgid "Unable to read range of base map <%s>" msgstr "" -#: ../raster/r.stats.quantile/main.c:681 +#: ../raster/r.stats.quantile/main.c:798 #, c-format msgid "Base map <%s> has many categories (%d), computation might be slow and might need a lot of memory" msgstr "" @@ -27957,75 +28267,75 @@ msgstr "" msgid "Writing output map" msgstr "" -#: ../raster/r.stats/main.c:111 +#: ../raster/r.stats/main.c:112 msgid "Generates area statistics for raster map." msgstr "" -#: ../raster/r.stats/main.c:161 +#: ../raster/r.stats/main.c:166 msgid "Print area totals in square meters" msgstr "" -#: ../raster/r.stats/main.c:166 +#: ../raster/r.stats/main.c:171 msgid "Print cell counts (sortable)" msgstr "" -#: ../raster/r.stats/main.c:172 +#: ../raster/r.stats/main.c:177 msgid "Print approximate (total percent may not be 100%) percents" msgstr "" -#: ../raster/r.stats/main.c:177 +#: ../raster/r.stats/main.c:182 msgid "Print category labels" msgstr "" -#: ../raster/r.stats/main.c:181 +#: ../raster/r.stats/main.c:186 msgid "One cell (range) per line" msgstr "" -#: ../raster/r.stats/main.c:185 +#: ../raster/r.stats/main.c:190 msgid "Print grid coordinates (east and north)" msgstr "" -#: ../raster/r.stats/main.c:186 ../raster/r.stats/main.c:193 +#: ../raster/r.stats/main.c:191 ../raster/r.stats/main.c:198 msgid "Coordinates" msgstr "" -#: ../raster/r.stats/main.c:190 +#: ../raster/r.stats/main.c:195 msgid "Print x and y (column and row)" msgstr "" -#: ../raster/r.stats/main.c:192 +#: ../raster/r.stats/main.c:197 msgid "Indexing starts with 1: first column and row are 1" msgstr "" -#: ../raster/r.stats/main.c:197 +#: ../raster/r.stats/main.c:202 msgid "Print averaged values instead of intervals (floating-point maps only)" msgstr "" -#: ../raster/r.stats/main.c:203 +#: ../raster/r.stats/main.c:208 msgid "Print raw indexes of floating-point ranges (floating-point maps only)" msgstr "" -#: ../raster/r.stats/main.c:241 +#: ../raster/r.stats/main.c:246 #, c-format msgid "'%s' must be greater than zero; using %s=255" msgstr "" -#: ../raster/r.stats/main.c:321 +#: ../raster/r.stats/main.c:340 #, c-format msgid "Raster map <%s> is reading as integer map! Flag '-%c' and/or '%s' option will be ignored." msgstr "" -#: ../raster/r.stats/main.c:337 +#: ../raster/r.stats/main.c:356 #, c-format msgid "Cats for raster map <%s> are either missing or have no explicit labels. Using %s=%d." msgstr "" -#: ../raster/r.stats/main.c:344 +#: ../raster/r.stats/main.c:363 #, c-format msgid "Flag '-%c' was given, using cats fp ranges of raster map <%s>, ignoring '%s' option" msgstr "" -#: ../raster/r.stats/raw_stats.c:202 +#: ../raster/r.stats/raw_stats.c:230 msgid "Invalid map type" msgstr "" @@ -28336,7 +28646,7 @@ msgid "seg_put_row(): could not write segment file" msgstr "" #: ../raster/r.stream.extract/streams.c:71 -#: ../raster/r.stream.extract/streams.c:656 +#: ../raster/r.stream.extract/streams.c:667 #, c-format msgid "Stream_no %d and n_stream_nodes % out of sync" msgstr "" @@ -28365,11 +28675,11 @@ msgstr "" msgid "Bug in stream extraction" msgstr "" -#: ../raster/r.stream.extract/streams.c:620 +#: ../raster/r.stream.extract/streams.c:631 msgid "Can't use Montgomery's method, no stream direction found" msgstr "" -#: ../raster/r.stream.extract/streams.c:689 +#: ../raster/r.stream.extract/streams.c:700 #, c-format msgid "MFD: A * path already processed when setting drainage direction: % of % cells" msgstr "" @@ -29140,11 +29450,11 @@ msgid "Removing null file for [%s]...\n" msgstr "" #: ../raster/r.support/main.c:356 ../raster/r.viewshed/viewshed.cpp:240 -#: ../scripts/d.polar/d.polar.py:405 -#: ../scripts/i.in.spotvgt/i.in.spotvgt.py:281 +#: ../scripts/d.polar/d.polar.py:406 +#: ../scripts/i.in.spotvgt/i.in.spotvgt.py:278 #: ../scripts/r.fillnulls/r.fillnulls.py:681 #: ../scripts/r.in.aster/r.in.aster.py:173 ../scripts/r.plane/r.plane.py:131 -#: ../scripts/v.in.e00/v.in.e00.py:171 +#: ../scripts/v.in.e00/v.in.e00.py:172 msgid "Done." msgstr "" @@ -29533,15 +29843,15 @@ msgstr "" msgid "Too many categories (found: %i, max: %i). Try to rescale or reclassify the map" msgstr "" -#: ../raster/r.thin/io.c:99 +#: ../raster/r.thin/io.c:103 msgid "Input raster must be of type CELL." msgstr "" #. GTC Count of window columns #. GTC Count of raster columns #. GTC Count of window columns -#: ../raster/r.thin/io.c:108 ../raster/r.thin/io.c:179 -#: ../raster/r.thin/io.c:189 ../vector/v.kernel/main.c:305 +#: ../raster/r.thin/io.c:112 ../raster/r.thin/io.c:188 +#: ../raster/r.thin/io.c:198 ../vector/v.kernel/main.c:305 #: ../vector/v.surf.idw/main.c:250 #, c-format msgid "%d column" @@ -29550,24 +29860,24 @@ msgstr[0] "" #. GTC First argument is the raster map name, second and third - a string #. * representing number of rows and cols -#: ../raster/r.thin/io.c:111 +#: ../raster/r.thin/io.c:115 #, c-format msgid "Raster map <%s> - %s X %s" msgstr "" -#: ../raster/r.thin/io.c:124 +#: ../raster/r.thin/io.c:133 #, c-format msgid "Unable to create temporary file <%s> -- errno = %d" msgstr "" #. GTC %s will be replaced with number of rows and columns -#: ../raster/r.thin/io.c:181 +#: ../raster/r.thin/io.c:190 #, c-format msgid "Output map %s X %s" msgstr "" #. GTC %s will be replaced with number of rows and columns -#: ../raster/r.thin/io.c:192 +#: ../raster/r.thin/io.c:201 #, c-format msgid "Window %s X %s" msgstr "" @@ -29734,7 +30044,7 @@ msgid "Use the input map values to fill the lower cells" msgstr "" #: ../raster/r.to.rast3elev/main.c:204 ../raster3d/r3.cross.rast/main.c:107 -#: ../raster3d/r3.out.ascii/main.c:117 ../raster3d/r3.out.netcdf/main.c:122 +#: ../raster3d/r3.out.ascii/main.c:118 ../raster3d/r3.out.netcdf/main.c:122 #: ../raster3d/r3.to.rast/main.c:128 msgid "Use 3D raster mask (if exists) with input map" msgstr "" @@ -29779,13 +30089,13 @@ msgstr "" msgid "No area for centroid %d" msgstr "" -#: ../raster/r.to.vect/areas_io.c:344 ../vector/v.category/main.c:490 -#: ../vector/v.delaunay/main.c:172 ../vector/v.in.ogr/main.c:1539 +#: ../raster/r.to.vect/areas_io.c:344 ../vector/v.category/main.c:505 +#: ../vector/v.delaunay/main.c:172 ../vector/v.in.ogr/main.c:1541 msgid "Unable to calculate area centroid" msgstr "" #: ../raster/r.to.vect/areas_io.c:385 ../raster/r.to.vect/util.c:157 -#: ../raster/r.volume/main.c:315 ../vector/v.in.lidar/attributes.c:237 +#: ../raster/r.volume/main.c:389 ../vector/v.in.lidar/attributes.c:237 #: ../vector/v.vol.rst/vector.c:75 #, c-format msgid "Cannot insert new row: %s" @@ -29888,9 +30198,9 @@ msgstr "" msgid "Categories will be unique sequence, raster values will be lost." msgstr "" -#: ../raster/r.to.vect/main.c:242 ../raster/r.volume/main.c:276 +#: ../raster/r.to.vect/main.c:242 ../raster/r.volume/main.c:342 #: ../raster3d/r3.flow/main.c:65 ../vector/v.in.ascii/main.c:428 -#: ../vector/v.in.dxf/write_vect.c:234 ../vector/v.lrs/v.lrs.create/main.c:342 +#: ../vector/v.in.dxf/write_vect.c:237 ../vector/v.lrs/v.lrs.create/main.c:342 #: ../vector/v.mkgrid/main.c:364 ../vector/v.mkgrid/main.c:425 #: ../vector/v.random/main.c:297 #, c-format @@ -29953,7 +30263,7 @@ msgstr "" msgid "%s cannot be 0" msgstr "" -#: ../raster/r.topmodel/file_io.c:209 ../raster/r.topmodel/topmodel.c:77 +#: ../raster/r.topmodel/file_io.c:209 ../raster/r.topmodel/topmodel.c:78 #: ../vector/v.out.pov/main.c:108 #, c-format msgid "Unable to create output file <%s>" @@ -30040,12 +30350,12 @@ msgstr "" msgid "Ignoring %s because %s is not specified" msgstr "" -#: ../raster/r.topmodel/topmodel.c:32 +#: ../raster/r.topmodel/topmodel.c:33 #, c-format msgid "Unable to run %s" msgstr "" -#: ../raster/r.topmodel/topmodel.c:74 +#: ../raster/r.topmodel/topmodel.c:75 #, c-format msgid "Invalid %s output" msgstr "" @@ -30067,39 +30377,52 @@ msgstr "" msgid "Transect definition" msgstr "" -#: ../raster/r.univar/r.univar_main.c:90 ../raster/r.univar/r.univar_main.c:105 +#: ../raster/r.univar/r.univar_main.c:90 ../raster/r.univar/r.univar_main.c:110 +#: ../raster/r.univar/r3.univar_main.c:54 +#: ../raster/r.univar/r3.univar_main.c:72 msgid "Extended" msgstr "" -#: ../raster/r.univar/r.univar_main.c:99 ../raster/r.univar/r3.univar_main.c:58 -#: ../vector/v.univar/main.c:129 ../vector/v.what/main.c:103 -msgid "Print the stats in shell script style" +#: ../raster/r.univar/r.univar_main.c:101 +#: ../raster/r.univar/r3.univar_main.c:63 ../vector/v.univar/main.c:129 +#: ../vector/v.what/main.c:122 +msgid "Print the stats in shell script style [deprecated]" msgstr "" -#: ../raster/r.univar/r.univar_main.c:110 -#: ../raster/r.univar/r3.univar_main.c:67 -msgid "Table output format instead of standard output format" +#: ../raster/r.univar/r.univar_main.c:115 +#: ../raster/r.univar/r3.univar_main.c:77 +msgid "Table output format instead of standard output format [deprecated]" msgstr "" -#: ../raster/r.univar/r.univar_main.c:119 +#: ../raster/r.univar/r.univar_main.c:132 msgid "Use the native resolution and extent of the raster map, instead of the current region" msgstr "" -#: ../raster/r.univar/r.univar_main.c:158 +#: ../raster/r.univar/r.univar_main.c:171 msgid "Calculates univariate statistics from the non-null cells of a raster map." msgstr "" -#: ../raster/r.univar/r.univar_main.c:161 -#: ../raster/r.univar/r3.univar_main.c:109 +#: ../raster/r.univar/r.univar_main.c:174 +#: ../raster/r.univar/r3.univar_main.c:125 msgid "Statistics include number of cells counted, minimum and maximum cell values, range, arithmetic mean, population variance, standard deviation, coefficient of variation, and sum." msgstr "" -#: ../raster/r.univar/r.univar_main.c:174 +#: ../raster/r.univar/r.univar_main.c:187 msgid "zones option and region flag -r are mutually exclusive" msgstr "" -#: ../raster/r.univar/r.univar_main.c:496 -#: ../raster/r.univar/r.univar_main.c:605 +#: ../raster/r.univar/r.univar_main.c:224 +#: ../raster/r.univar/r3.univar_main.c:180 +msgid "The -g flag cannot be used with format=json or format=csv. Please select only one output format." +msgstr "" + +#: ../raster/r.univar/r.univar_main.c:236 +#: ../raster/r.univar/r3.univar_main.c:192 +msgid "The -t flag cannot be used with format=json or format=shell. Please select only one output format." +msgstr "" + +#: ../raster/r.univar/r.univar_main.c:527 +#: ../raster/r.univar/r.univar_main.c:636 msgid "Unknown map type" msgstr "" @@ -30107,19 +30430,19 @@ msgstr "" msgid "3D Raster map used for zoning, must be of type CELL" msgstr "" -#: ../raster/r.univar/r3.univar_main.c:106 +#: ../raster/r.univar/r3.univar_main.c:122 msgid "Calculates univariate statistics from the non-null cells of a 3D raster map." msgstr "" -#: ../raster/r.univar/r3.univar_main.c:163 -#: ../raster/r.univar/r3.univar_main.c:201 ../raster3d/r3.cross.rast/main.c:278 +#: ../raster/r.univar/r3.univar_main.c:217 +#: ../raster/r.univar/r3.univar_main.c:255 ../raster3d/r3.cross.rast/main.c:278 #: ../raster3d/r3.flow/main.c:115 ../raster3d/r3.flow/main.c:127 #: ../raster3d/r3.flow/main.c:361 ../raster3d/r3.flow/main.c:372 #: ../raster3d/r3.flow/test_main.c:78 ../raster3d/r3.gradient/main.c:113 -#: ../raster3d/r3.gradient/main.c:121 ../raster3d/r3.info/main.c:111 +#: ../raster3d/r3.gradient/main.c:121 ../raster3d/r3.info/main.c:128 #: ../raster3d/r3.mask/main.c:59 ../raster3d/r3.mkdspf/main.c:169 #: ../raster3d/r3.neighbors/main.c:261 ../raster3d/r3.neighbors/main.c:268 -#: ../raster3d/r3.null/main.c:100 ../raster3d/r3.out.ascii/main.c:341 +#: ../raster3d/r3.null/main.c:100 ../raster3d/r3.out.ascii/main.c:342 #: ../raster3d/r3.out.bin/main.c:327 ../raster3d/r3.out.netcdf/main.c:594 #: ../raster3d/r3.out.v5d/main.c:313 ../raster3d/r3.out.vtk/main.c:207 #: ../raster3d/r3.out.vtk/main.c:291 ../raster3d/r3.out.vtk/main.c:516 @@ -30432,16 +30755,16 @@ msgstr "" msgid "current dist too large %.4f > %.4f" msgstr "" -#: ../raster/r.viewshed/statusstructure.cpp:91 +#: ../raster/r.viewshed/statusstructure.cpp:92 msgid "Estimated size active structure:" msgstr "" -#: ../raster/r.viewshed/statusstructure.cpp:92 +#: ../raster/r.viewshed/statusstructure.cpp:93 #, c-format msgid " (key=%d, ptr=%d, total node=%d B)" msgstr "" -#: ../raster/r.viewshed/statusstructure.cpp:96 +#: ../raster/r.viewshed/statusstructure.cpp:97 #, c-format msgid " Total= %lld B" msgstr "" @@ -30459,11 +30782,11 @@ msgstr "" msgid "Running the program in-memory mode requires memory beyond the capability of the platform. Use external mode, or a 64-bit platform." msgstr "" -#: ../raster/r.viewshed/viewshed.cpp:188 ../raster/r.viewshed/viewshed.cpp:442 +#: ../raster/r.viewshed/viewshed.cpp:188 ../raster/r.viewshed/viewshed.cpp:441 msgid "Start sweeping." msgstr "" -#: ../raster/r.viewshed/viewshed.cpp:227 ../raster/r.viewshed/viewshed.cpp:472 +#: ../raster/r.viewshed/viewshed.cpp:227 ../raster/r.viewshed/viewshed.cpp:471 msgid "Sorting events..." msgstr "" @@ -30471,97 +30794,109 @@ msgstr "" msgid "Computing visibility..." msgstr "" -#: ../raster/r.viewshed/viewshed.cpp:414 ../raster/r.viewshed/viewshed.cpp:662 +#: ../raster/r.viewshed/viewshed.cpp:414 ../raster/r.viewshed/viewshed.cpp:661 msgid "Sweeping done." msgstr "" -#: ../raster/r.viewshed/viewshed.cpp:416 ../raster/r.viewshed/viewshed.cpp:664 +#: ../raster/r.viewshed/viewshed.cpp:416 ../raster/r.viewshed/viewshed.cpp:663 #, c-format msgid "Total cells %ld, visible cells %ld (%.1f percent)." msgstr "" -#: ../raster/r.viewshed/viewshed.cpp:487 +#: ../raster/r.viewshed/viewshed.cpp:486 msgid "Initialize sweepline..." msgstr "" -#: ../raster/r.viewshed/viewshed.cpp:557 +#: ../raster/r.viewshed/viewshed.cpp:556 msgid "Determine visibility..." msgstr "" -#: ../raster/r.volume/main.c:81 ../raster3d/r3.stats/main.c:50 +#: ../raster/r.volume/main.c:88 ../raster3d/r3.stats/main.c:50 msgid "volume" msgstr "" -#: ../raster/r.volume/main.c:83 +#: ../raster/r.volume/main.c:90 msgid "Calculates the volume of data \"clumps\"." msgstr "" -#: ../raster/r.volume/main.c:85 +#: ../raster/r.volume/main.c:92 msgid "Optionally produces a GRASS vector points map containing the calculated centroids of these clumps." msgstr "" -#: ../raster/r.volume/main.c:89 +#: ../raster/r.volume/main.c:96 msgid "Name of input raster map representing data that will be summed within clumps" msgstr "" -#: ../raster/r.volume/main.c:95 +#: ../raster/r.volume/main.c:102 msgid "Name of input clump raster map" msgstr "" -#: ../raster/r.volume/main.c:96 +#: ../raster/r.volume/main.c:103 msgid "Preferably the output of r.clump. If no clump map is given, raster mask is used instead." msgstr "" -#: ../raster/r.volume/main.c:104 +#: ../raster/r.volume/main.c:111 msgid "Name for output vector points map to contain clump centroids" msgstr "" -#: ../raster/r.volume/main.c:115 -msgid "Generate unformatted report (items separated by colon)" +#: ../raster/r.volume/main.c:132 +msgid "Generate unformatted report (items separated by colon) [deprecated]" +msgstr "" + +#: ../raster/r.volume/main.c:139 +msgid "Print report" +msgstr "" + +#: ../raster/r.volume/main.c:190 +msgid "Flag 'f' is deprecated and will be removed in a future release. Please use format=csv instead." +msgstr "" + +#: ../raster/r.volume/main.c:193 +msgid "The -f flag cannot be used with format=json. Please select only one output format." msgstr "" -#: ../raster/r.volume/main.c:150 +#: ../raster/r.volume/main.c:216 #, c-format msgid "No clump map <%s> given and no raster mask found. You need to define a clump raster map or create a raster mask using r.mask." msgstr "" -#: ../raster/r.volume/main.c:156 +#: ../raster/r.volume/main.c:222 msgid "No clump map given, using raster mask" msgstr "" -#: ../raster/r.volume/main.c:210 +#: ../raster/r.volume/main.c:276 #, c-format msgid "Invalid category value %d (max=%d): row=%d col=%d" msgstr "" -#: ../raster/r.volume/main.c:243 +#: ../raster/r.volume/main.c:309 #, c-format msgid "Creating vector point map <%s>..." msgstr "" -#: ../raster/r.volume/main.c:246 +#: ../raster/r.volume/main.c:312 #, c-format msgid "From '%s' on raster map <%s> using clumps from <%s>" msgstr "" -#: ../raster/r.volume/main.c:283 +#: ../raster/r.volume/main.c:349 #, c-format msgid "" "\n" "Volume report on data from <%s> using clumps on <%s> raster map" msgstr "" -#: ../raster/r.volume/main.c:287 +#: ../raster/r.volume/main.c:353 #, c-format msgid "Category Average Data # Cells Centroid Total\n" msgstr "" -#: ../raster/r.volume/main.c:289 +#: ../raster/r.volume/main.c:355 #, c-format msgid "Number in clump Total in clump Easting Northing Volume" msgstr "" -#: ../raster/r.volume/main.c:337 +#: ../raster/r.volume/main.c:440 msgid "Total Volume" msgstr "" @@ -31546,7 +31881,7 @@ msgstr "" msgid "Name of existing raster map(s) to query" msgstr "" -#: ../raster/r.what/main.c:123 ../vector/v.what/main.c:76 +#: ../raster/r.what/main.c:123 ../vector/v.what/main.c:78 msgid "Coordinates for query" msgstr "" @@ -31605,8 +31940,8 @@ msgstr "" #: ../raster3d/r3.cross.rast/main.c:55 ../raster3d/r3.in.ascii/main.c:396 #: ../raster3d/r3.in.bin/main.c:484 ../raster3d/r3.in.v5d/main.c:199 -#: ../raster3d/r3.out.ascii/main.c:59 ../raster3d/r3.out.ascii/main.c:369 -#: ../raster3d/r3.out.netcdf/main.c:626 ../raster3d/r3.out.v5d/main.c:51 +#: ../raster3d/r3.out.ascii/main.c:60 ../raster3d/r3.out.ascii/main.c:370 +#: ../raster3d/r3.out.netcdf/main.c:626 ../raster3d/r3.out.v5d/main.c:52 #: ../raster3d/r3.out.v5d/main.c:327 ../raster3d/r3.out.vtk/main.c:251 #: ../raster3d/r3.out.vtk/main.c:336 ../raster3d/r3.to.rast/main.c:75 #: ../raster3d/r3.to.rast/main.c:442 @@ -31641,8 +31976,8 @@ msgstr "" msgid "Wrong 3D raster datatype! Cannot create raster map" msgstr "" -#: ../raster3d/r3.cross.rast/main.c:342 ../raster3d/r3.gwflow/main.c:415 -#: ../raster3d/r3.info/main.c:505 ../raster3d/r3.null/main.c:153 +#: ../raster3d/r3.cross.rast/main.c:342 ../raster3d/r3.gwflow/main.c:427 +#: ../raster3d/r3.info/main.c:1004 ../raster3d/r3.null/main.c:153 #: ../raster3d/r3.out.vtk/errorHandling.c:62 #, c-format msgid "Unable to close 3D raster map <%s>" @@ -31862,7 +32197,11 @@ msgid "" "Consider to choose a full filled quadratic matrix with flag -f " msgstr "" -#: ../raster3d/r3.gwflow/main.c:368 ../raster3d/r3.in.lidar/main.c:488 +#: ../raster3d/r3.gwflow/main.c:236 +msgid "No sink map provided. Initializing zero sink..." +msgstr "" + +#: ../raster3d/r3.gwflow/main.c:380 ../raster3d/r3.in.lidar/main.c:488 #: ../raster3d/r3.in.lidar/main.c:496 ../raster3d/r3.in.lidar/main.c:504 #: ../raster3d/r3.in.lidar/main.c:512 ../raster3d/r3.in.lidar/main.c:520 #: ../raster3d/r3.in.lidar/main.c:529 ../raster3d/r3.in.lidar/main.c:537 @@ -31952,12 +32291,12 @@ msgstr "" msgid "Number of depths" msgstr "" -#: ../raster3d/r3.in.bin/main.c:367 ../raster3d/r3.out.ascii/main.c:102 +#: ../raster3d/r3.in.bin/main.c:367 ../raster3d/r3.out.ascii/main.c:103 #: ../raster3d/r3.out.bin/main.c:253 msgid "Switch the row order in output from north->south to south->north" msgstr "" -#: ../raster3d/r3.in.bin/main.c:372 ../raster3d/r3.out.ascii/main.c:107 +#: ../raster3d/r3.in.bin/main.c:372 ../raster3d/r3.out.ascii/main.c:108 #: ../raster3d/r3.out.bin/main.c:258 msgid "Switch the depth order in output from bottom->top to top->bottom" msgstr "" @@ -32107,34 +32446,39 @@ msgstr "" msgid "Import 3-dimensional Vis5D files." msgstr "" -#: ../raster3d/r3.in.v5d/v5d.c:1295 +#: ../raster3d/r3.in.v5d/v5d.c:1297 msgid "Error: Unexpected end of file, file may be corrupted." msgstr "" -#: ../raster3d/r3.info/main.c:81 +#: ../raster3d/r3.info/main.c:89 msgid "Outputs basic information about a user-specified 3D raster map layer." msgstr "" -#: ../raster3d/r3.info/main.c:88 -msgid "Print raster3d information in shell style" +#: ../raster3d/r3.info/main.c:105 +msgid "Print raster3d array information" msgstr "" -#: ../raster3d/r3.info/main.c:92 -msgid "Print range in shell style only" +#: ../raster3d/r3.info/main.c:113 +msgid "Print raster3d history" msgstr "" -#: ../raster3d/r3.info/main.c:105 +#: ../raster3d/r3.info/main.c:122 #, c-format msgid "3D Raster map <%s> not found" msgstr "" -#: ../raster3d/r3.info/main.c:327 ../raster3d/r3.info/main.c:451 +#: ../raster3d/r3.info/main.c:137 +msgid "The output format for flags -g, and -r currently defaults to 'shell', but this will change to 'plain' in a future release. To avoid unexpected behaviour, specify the format explicitly." +msgstr "" + +#: ../raster3d/r3.info/main.c:387 ../raster3d/r3.info/main.c:551 +#: ../raster3d/r3.info/main.c:681 ../raster3d/r3.info/main.c:874 #: ../raster3d/r3.mkdspf/main.c:172 #, c-format msgid "Unable to read range of 3D raster map <%s>" msgstr "" -#: ../raster3d/r3.info/main.c:498 +#: ../raster3d/r3.info/main.c:984 msgid "Error while reading history file" msgstr "" @@ -32235,11 +32579,6 @@ msgstr "" msgid "Writing %s from %s..." msgstr "" -#: ../raster3d/r3.mkdspf/r3_find.c:20 -#, c-format -msgid "File name <%s> is too long" -msgstr "" - #: ../raster3d/r3.neighbors/main.c:134 msgid "The size of the window in x, y and z direction, values must be odd integer numbers, eg: 3,3,3" msgstr "" @@ -32276,27 +32615,27 @@ msgstr "" msgid "Explicitly create the 3D NULL-value bitmap file." msgstr "" -#: ../raster3d/r3.out.ascii/main.c:77 +#: ../raster3d/r3.out.ascii/main.c:78 msgid "3D raster map to be converted to ASCII" msgstr "" -#: ../raster3d/r3.out.ascii/main.c:81 +#: ../raster3d/r3.out.ascii/main.c:82 msgid "Name for ASCII output file" msgstr "" -#: ../raster3d/r3.out.ascii/main.c:90 +#: ../raster3d/r3.out.ascii/main.c:91 msgid "Number of decimal places for floats" msgstr "" -#: ../raster3d/r3.out.ascii/main.c:112 +#: ../raster3d/r3.out.ascii/main.c:113 msgid "Print grass6 compatible format. Flags -d and -r are ignored." msgstr "" -#: ../raster3d/r3.out.ascii/main.c:309 +#: ../raster3d/r3.out.ascii/main.c:310 msgid "Converts a 3D raster map layer into a ASCII text file." msgstr "" -#: ../raster3d/r3.out.ascii/main.c:373 +#: ../raster3d/r3.out.ascii/main.c:374 msgid "Unable to close new ASCII file" msgstr "" @@ -32360,11 +32699,11 @@ msgstr "" msgid "Export a 3D raster map as netCDF file." msgstr "" -#: ../raster3d/r3.out.v5d/main.c:69 +#: ../raster3d/r3.out.v5d/main.c:70 msgid "3D raster map to be converted to Vis5D (V5D) file" msgstr "" -#: ../raster3d/r3.out.v5d/main.c:73 +#: ../raster3d/r3.out.v5d/main.c:74 msgid "Name for V5D output file" msgstr "" @@ -32395,6 +32734,10 @@ msgstr "" msgid "Use map coordinates instead of xyz coordinates" msgstr "" +#: ../raster3d/r3.out.v5d/v5d.c:1300 +msgid "Unexpected end of file, file may be corrupted." +msgstr "" + #: ../raster3d/r3.out.vtk/errorHandling.c:102 msgid "Unable to close input raster maps" msgstr "" @@ -32670,79 +33013,79 @@ msgstr "" msgid "At least 2 maps are required" msgstr "" -#: ../scripts/d.frame/d.frame.py:96 ../scripts/d.frame/d.frame.py:127 +#: ../scripts/d.frame/d.frame.py:97 ../scripts/d.frame/d.frame.py:128 #, python-format msgid "Unable to get monitor info. %s" msgstr "" -#: ../scripts/d.frame/d.frame.py:113 +#: ../scripts/d.frame/d.frame.py:114 msgid "Unable to get monitor info" msgstr "" -#: ../scripts/d.frame/d.frame.py:210 +#: ../scripts/d.frame/d.frame.py:211 #, python-format msgid "Invalid frame position: %s" msgstr "" -#: ../scripts/d.frame/d.frame.py:245 +#: ../scripts/d.frame/d.frame.py:246 #, python-format msgid "Invalid monitor size: %dx%d" msgstr "" -#: ../scripts/d.frame/d.frame.py:304 +#: ../scripts/d.frame/d.frame.py:305 #, python-format msgid "Frame <%s> doesn't exist, exiting. To create a new frame use '-c' flag." msgstr "" -#: ../scripts/d.frame/d.frame.py:316 +#: ../scripts/d.frame/d.frame.py:317 #, python-format msgid "Frame <%s> already exists and will be overwritten" msgstr "" -#: ../scripts/d.frame/d.frame.py:322 +#: ../scripts/d.frame/d.frame.py:323 #, python-format msgid "Frame <%s> already found. An existing frame can be overwritten by '%s' flag." msgstr "" -#: ../scripts/d.polar/d.polar.py:199 +#: ../scripts/d.polar/d.polar.py:200 #, python-format msgid "Generating %s ..." msgstr "" -#: ../scripts/d.polar/d.polar.py:421 +#: ../scripts/d.polar/d.polar.py:422 msgid "Please select only one output method" msgstr "" -#: ../scripts/d.polar/d.polar.py:427 +#: ../scripts/d.polar/d.polar.py:428 msgid "EPS output file path <{}>, doesn't exists. Set new output file path." msgstr "" -#: ../scripts/d.polar/d.polar.py:438 +#: ../scripts/d.polar/d.polar.py:439 msgid "option : <{}> exists. To overwrite, use the --overwrite flag." msgstr "" -#: ../scripts/d.polar/d.polar.py:445 +#: ../scripts/d.polar/d.polar.py:446 msgid "xgraph required, please install first (www.xgraph.org)" msgstr "" -#: ../scripts/d.polar/d.polar.py:462 +#: ../scripts/d.polar/d.polar.py:463 msgid "Calculating statistics for polar diagram... (be patient)" msgstr "" -#: ../scripts/d.polar/d.polar.py:492 +#: ../scripts/d.polar/d.polar.py:493 msgid "No data pixel found" msgstr "" -#: ../scripts/d.polar/d.polar.py:538 +#: ../scripts/d.polar/d.polar.py:539 msgid "Average vector:" msgstr "" -#: ../scripts/d.polar/d.polar.py:540 +#: ../scripts/d.polar/d.polar.py:541 #, python-format msgid "direction: %.1f degrees CCW from East" msgstr "" -#: ../scripts/d.polar/d.polar.py:544 +#: ../scripts/d.polar/d.polar.py:545 #, python-format msgid "magnitude: %.1f percent of fullscale" msgstr "" @@ -32832,68 +33175,64 @@ msgstr "" msgid "Imported table <%s> with %d rows" msgstr "" -#: ../scripts/db.out.ogr/db.out.ogr.py:79 +#: ../scripts/db.out.ogr/db.out.ogr.py:80 #, python-format msgid "File <%s> already exists" msgstr "" -#: ../scripts/db.out.ogr/db.out.ogr.py:94 -#: ../scripts/db.out.ogr/db.out.ogr.py:108 +#: ../scripts/db.out.ogr/db.out.ogr.py:95 +#: ../scripts/db.out.ogr/db.out.ogr.py:109 #, python-format msgid "Module <%s> failed" msgstr "" -#: ../scripts/db.out.ogr/db.out.ogr.py:126 +#: ../scripts/db.out.ogr/db.out.ogr.py:127 #, python-format msgid "Exported table <%s>" msgstr "" -#: ../scripts/db.test/db.test.py:44 +#: ../scripts/db.test/db.test.py:46 #, python-format msgid "Using DB driver: %s" msgstr "" -#: ../scripts/db.test/db.test.py:72 +#: ../scripts/db.test/db.test.py:74 msgid "EXECUTE: OK" msgstr "" -#: ../scripts/db.test/db.test.py:86 +#: ../scripts/db.test/db.test.py:88 msgid "RESULT: OK" msgstr "" -#: ../scripts/db.univar/db.univar.py:85 +#: ../scripts/db.univar/db.univar.py:86 msgid "'sort' not found: sorting in memory" msgstr "" -#: ../scripts/db.univar/db.univar.py:119 -msgid "The format option is used and -g flag ignored" -msgstr "" - -#: ../scripts/db.univar/db.univar.py:129 +#: ../scripts/db.univar/db.univar.py:135 #: ../vector/v.colors.out/make_colors.c:45 ../vector/v.colors/scan_attr.c:37 #, c-format, python-format msgid "Column <%s> is not numeric" msgstr "" -#: ../scripts/db.univar/db.univar.py:134 +#: ../scripts/db.univar/db.univar.py:140 #, python-format msgid "Calculation for column <%s> of table <%s>..." msgstr "" -#: ../scripts/db.univar/db.univar.py:135 +#: ../scripts/db.univar/db.univar.py:141 msgid "Reading column values..." msgstr "" -#: ../scripts/db.univar/db.univar.py:162 +#: ../scripts/db.univar/db.univar.py:168 #, python-format msgid "Table <%s> contains no data." msgstr "" -#: ../scripts/db.univar/db.univar.py:166 +#: ../scripts/db.univar/db.univar.py:172 msgid "Calculating statistics..." msgstr "" -#: ../scripts/db.univar/db.univar.py:190 +#: ../scripts/db.univar/db.univar.py:196 msgid "No non-null values found" msgstr "" @@ -32971,7 +33310,7 @@ msgid "Download file from <{url}>, failed. Check internet connection." msgstr "" #: ../scripts/g.extension.all/g.extension.all.py:174 -msgid "Unable to get GRASS GIS version." +msgid "Unable to get GRASS version." msgstr "" #: ../scripts/g.extension.all/g.extension.all.py:196 @@ -33009,366 +33348,366 @@ msgstr "" msgid "Unable to process extension:%s" msgstr "" -#: ../scripts/g.extension/g.extension.py:262 +#: ../scripts/g.extension/g.extension.py:257 msgid "" "Failed to get Git version.\n" "{}" msgstr "" -#: ../scripts/g.extension/g.extension.py:268 +#: ../scripts/g.extension/g.extension.py:263 msgid "Failed to get Git version." msgstr "" -#: ../scripts/g.extension/g.extension.py:298 +#: ../scripts/g.extension/g.extension.py:293 msgid "Could not found Git. Please install it." msgstr "" -#: ../scripts/g.extension/g.extension.py:307 +#: ../scripts/g.extension/g.extension.py:302 msgid "Cannot write to working directory {}." msgstr "" -#: ../scripts/g.extension/g.extension.py:365 +#: ../scripts/g.extension/g.extension.py:360 #, python-brace-format msgid "Branch <{branch}> not found in repository <{url}>" msgstr "" -#: ../scripts/g.extension/g.extension.py:391 -#: ../scripts/g.extension/g.extension.py:2787 +#: ../scripts/g.extension/g.extension.py:386 +#: ../scripts/g.extension/g.extension.py:2784 #, python-brace-format msgid "" "Failed to get addons files list from the Git repository <{repo_path}>.\n" "{error}" msgstr "" -#: ../scripts/g.extension/g.extension.py:416 +#: ../scripts/g.extension/g.extension.py:411 msgid "No addon named <{}> found in the repository." msgstr "" -#: ../scripts/g.extension/g.extension.py:520 +#: ../scripts/g.extension/g.extension.py:515 #, python-brace-format msgid "" "Failed to get branch from the Git repository <{repo_path}>.\n" "{error}" msgstr "" -#: ../scripts/g.extension/g.extension.py:543 +#: ../scripts/g.extension/g.extension.py:538 msgid "Cannot retrieve organization and repository from URL: <{}>." msgstr "" -#: ../scripts/g.extension/g.extension.py:581 +#: ../scripts/g.extension/g.extension.py:576 #, python-brace-format msgid "Download file from <{url}>, failed. File is not on the server or check your internet connection." msgstr "" -#: ../scripts/g.extension/g.extension.py:594 +#: ../scripts/g.extension/g.extension.py:589 #, python-format msgid "'%s' required. Please install '%s' first." msgstr "" -#: ../scripts/g.extension/g.extension.py:658 +#: ../scripts/g.extension/g.extension.py:653 msgid "List of installed extensions (toolboxes):" msgstr "" -#: ../scripts/g.extension/g.extension.py:660 +#: ../scripts/g.extension/g.extension.py:655 msgid "List of installed extensions (modules):" msgstr "" -#: ../scripts/g.extension/g.extension.py:664 +#: ../scripts/g.extension/g.extension.py:659 msgid "No extension (toolbox) installed" msgstr "" -#: ../scripts/g.extension/g.extension.py:666 +#: ../scripts/g.extension/g.extension.py:661 msgid "No extension (module) installed" msgstr "" -#: ../scripts/g.extension/g.extension.py:741 +#: ../scripts/g.extension/g.extension.py:736 msgid "List of available extensions (toolboxes):" msgstr "" -#: ../scripts/g.extension/g.extension.py:756 +#: ../scripts/g.extension/g.extension.py:751 msgid "List of available extensions (modules):" msgstr "" -#: ../scripts/g.extension/g.extension.py:782 -#: ../scripts/g.extension/g.extension.py:812 +#: ../scripts/g.extension/g.extension.py:777 +#: ../scripts/g.extension/g.extension.py:807 msgid "Unable to fetch addons metadata file" msgstr "" -#: ../scripts/g.extension/g.extension.py:887 +#: ../scripts/g.extension/g.extension.py:882 #, python-brace-format msgid "Unable to parse '{url}'. Trying to scan Git repository (may take some time)..." msgstr "" -#: ../scripts/g.extension/g.extension.py:935 +#: ../scripts/g.extension/g.extension.py:930 msgid "Fetching list of extensions from GRASS-Addons SVN repository (be patient)..." msgstr "" -#: ../scripts/g.extension/g.extension.py:942 +#: ../scripts/g.extension/g.extension.py:937 msgid "Flag 'c' ignored, addons metadata file not available" msgstr "" -#: ../scripts/g.extension/g.extension.py:944 +#: ../scripts/g.extension/g.extension.py:939 msgid "Flag 'g' ignored, addons metadata file not available" msgstr "" -#: ../scripts/g.extension/g.extension.py:949 -#: ../scripts/g.extension/g.extension.py:984 +#: ../scripts/g.extension/g.extension.py:944 +#: ../scripts/g.extension/g.extension.py:979 #, python-format msgid "Checking for '%s' modules..." msgstr "" -#: ../scripts/g.extension/g.extension.py:957 -#: ../scripts/g.extension/g.extension.py:991 +#: ../scripts/g.extension/g.extension.py:952 +#: ../scripts/g.extension/g.extension.py:986 #, python-format msgid "Unable to fetch '%s'" msgstr "" -#: ../scripts/g.extension/g.extension.py:1159 +#: ../scripts/g.extension/g.extension.py:1154 msgid "$GISBASE not defined" msgstr "" -#: ../scripts/g.extension/g.extension.py:1163 +#: ../scripts/g.extension/g.extension.py:1158 #, python-format msgid "Extension <%s> already installed. Re-installing..." msgstr "" -#: ../scripts/g.extension/g.extension.py:1174 +#: ../scripts/g.extension/g.extension.py:1169 #, python-format msgid "Installing toolbox <%s>..." msgstr "" -#: ../scripts/g.extension/g.extension.py:1184 +#: ../scripts/g.extension/g.extension.py:1179 msgid "Nothing to install" msgstr "" -#: ../scripts/g.extension/g.extension.py:1217 +#: ../scripts/g.extension/g.extension.py:1212 msgid "Installation failed, sorry. Please check above error messages." msgstr "" -#: ../scripts/g.extension/g.extension.py:1220 +#: ../scripts/g.extension/g.extension.py:1215 msgid "Updating extensions metadata file..." msgstr "" -#: ../scripts/g.extension/g.extension.py:1224 +#: ../scripts/g.extension/g.extension.py:1219 msgid "Updating extension modules metadata file..." msgstr "" -#: ../scripts/g.extension/g.extension.py:1231 +#: ../scripts/g.extension/g.extension.py:1226 #, python-format msgid "Installation of <%s> successfully finished" msgstr "" -#: ../scripts/g.extension/g.extension.py:1237 +#: ../scripts/g.extension/g.extension.py:1232 msgid "This add-on module will not function until you set the GRASS_ADDON_BASE environment variable (see \"g.manual variables\")" msgstr "" -#: ../scripts/g.extension/g.extension.py:1272 +#: ../scripts/g.extension/g.extension.py:1267 msgid "Unable to read addons metadata file from the remote server" msgstr "" -#: ../scripts/g.extension/g.extension.py:1282 +#: ../scripts/g.extension/g.extension.py:1277 msgid "No addons metadata available" msgstr "" -#: ../scripts/g.extension/g.extension.py:1285 +#: ../scripts/g.extension/g.extension.py:1280 #, python-format msgid "No addons metadata available for <%s>" msgstr "" -#: ../scripts/g.extension/g.extension.py:1342 +#: ../scripts/g.extension/g.extension.py:1337 #, python-brace-format msgid "Unable to read addons metadata file from the remote server: {0}" msgstr "" -#: ../scripts/g.extension/g.extension.py:1348 +#: ../scripts/g.extension/g.extension.py:1343 #, python-format, python-brace-format msgid "Unable to parse '%s': {0}" msgstr "" -#: ../scripts/g.extension/g.extension.py:1531 +#: ../scripts/g.extension/g.extension.py:1526 #, python-brace-format msgid "No metadata available for module '{name}': {error}" msgstr "" -#: ../scripts/g.extension/g.extension.py:1600 +#: ../scripts/g.extension/g.extension.py:1595 msgid "Downloading precompiled GRASS Addons <{}>..." msgstr "" -#: ../scripts/g.extension/g.extension.py:1693 +#: ../scripts/g.extension/g.extension.py:1688 msgid "svn not found but needed to fetch AddOns from an SVN repository" msgstr "" -#: ../scripts/g.extension/g.extension.py:1700 -#: ../scripts/g.extension/g.extension.py:1734 +#: ../scripts/g.extension/g.extension.py:1695 +#: ../scripts/g.extension/g.extension.py:1729 #, python-format msgid "GRASS Addons <%s> not found" msgstr "" -#: ../scripts/g.extension/g.extension.py:1824 +#: ../scripts/g.extension/g.extension.py:1818 #, python-brace-format msgid "ZIP file is unreadable: {0}" msgstr "" -#: ../scripts/g.extension/g.extension.py:1854 -#: ../scripts/r.unpack/r.unpack.py:119 ../scripts/v.unpack/v.unpack.py:130 +#: ../scripts/g.extension/g.extension.py:1848 +#: ../scripts/r.unpack/r.unpack.py:119 ../scripts/v.unpack/v.unpack.py:131 msgid "Extracting may be unsafe; consider updating Python" msgstr "" -#: ../scripts/g.extension/g.extension.py:1860 +#: ../scripts/g.extension/g.extension.py:1854 #, python-brace-format msgid "Archive file is unreadable: {0}" msgstr "" -#: ../scripts/g.extension/g.extension.py:1877 +#: ../scripts/g.extension/g.extension.py:1871 #, python-brace-format msgid "Type of source identified as '{source}'." msgstr "" -#: ../scripts/g.extension/g.extension.py:1880 -#: ../scripts/g.extension/g.extension.py:1889 -#: ../scripts/g.extension/g.extension.py:1896 +#: ../scripts/g.extension/g.extension.py:1874 +#: ../scripts/g.extension/g.extension.py:1883 +#: ../scripts/g.extension/g.extension.py:1890 #, python-brace-format msgid "Fetching <{name}> from <{url}> (be patient)..." msgstr "" -#: ../scripts/g.extension/g.extension.py:1911 +#: ../scripts/g.extension/g.extension.py:1905 #, python-brace-format msgid "Expected default branch not found. Trying again from <{url}>..." msgstr "" -#: ../scripts/g.extension/g.extension.py:1919 +#: ../scripts/g.extension/g.extension.py:1913 #, python-brace-format msgid "Extension <{name}> not found. Please check 'url' and 'branch' options" msgstr "" -#: ../scripts/g.extension/g.extension.py:1924 +#: ../scripts/g.extension/g.extension.py:1918 msgid "Extension <{}> not found" msgstr "" -#: ../scripts/g.extension/g.extension.py:1952 +#: ../scripts/g.extension/g.extension.py:1946 #, python-brace-format msgid "Unknown extension (addon) source type '{0}'. Please report this to the grass-user mailing list." msgstr "" -#: ../scripts/g.extension/g.extension.py:1980 +#: ../scripts/g.extension/g.extension.py:1974 msgid "Path to the source code:" msgstr "" -#: ../scripts/g.extension/g.extension.py:2000 +#: ../scripts/g.extension/g.extension.py:1994 msgid "Module name not found. Check module Makefile syntax (PGM variable)." msgstr "" -#: ../scripts/g.extension/g.extension.py:2075 +#: ../scripts/g.extension/g.extension.py:2069 msgid "To compile run:" msgstr "" -#: ../scripts/g.extension/g.extension.py:2077 +#: ../scripts/g.extension/g.extension.py:2071 msgid "To install run:" msgstr "" -#: ../scripts/g.extension/g.extension.py:2085 +#: ../scripts/g.extension/g.extension.py:2079 msgid "Compiling..." msgstr "" -#: ../scripts/g.extension/g.extension.py:2087 +#: ../scripts/g.extension/g.extension.py:2081 msgid "Please install GRASS development package" msgstr "" -#: ../scripts/g.extension/g.extension.py:2090 +#: ../scripts/g.extension/g.extension.py:2084 msgid "Compilation failed, sorry. Please check above error messages." msgstr "" -#: ../scripts/g.extension/g.extension.py:2104 +#: ../scripts/g.extension/g.extension.py:2098 msgid "Installing..." msgstr "" -#: ../scripts/g.extension/g.extension.py:2195 +#: ../scripts/g.extension/g.extension.py:2189 msgid "List of removed files:" msgstr "" -#: ../scripts/g.extension/g.extension.py:2197 +#: ../scripts/g.extension/g.extension.py:2191 msgid "Files to be removed:" msgstr "" -#: ../scripts/g.extension/g.extension.py:2203 +#: ../scripts/g.extension/g.extension.py:2197 msgid "Updating addons metadata file..." msgstr "" -#: ../scripts/g.extension/g.extension.py:2207 +#: ../scripts/g.extension/g.extension.py:2201 #, python-format msgid "Extension <%s> successfully uninstalled." msgstr "" -#: ../scripts/g.extension/g.extension.py:2210 +#: ../scripts/g.extension/g.extension.py:2204 #, python-format msgid "Toolbox <%s> not removed. Re-run '%s' with '-f' flag to force removal" msgstr "" -#: ../scripts/g.extension/g.extension.py:2215 +#: ../scripts/g.extension/g.extension.py:2209 #, python-format msgid "Extension <%s> not removed. Re-run '%s' with '-f' flag to force removal" msgstr "" -#: ../scripts/g.extension/g.extension.py:2264 +#: ../scripts/g.extension/g.extension.py:2258 #, python-format msgid "Extension <%s> not found" msgstr "" -#: ../scripts/g.extension/g.extension.py:2368 +#: ../scripts/g.extension/g.extension.py:2362 #, python-brace-format -msgid "Unable to create '{filename}': {error}. Is the GRASS GIS documentation package installed? Installation continues, but documentation may not look right." +msgid "Unable to create '{filename}': {error}. Is the GRASS documentation package installed? Installation continues, but documentation may not look right." msgstr "" -#: ../scripts/g.extension/g.extension.py:2387 +#: ../scripts/g.extension/g.extension.py:2381 #, python-format msgid "Unable to create '%s': %s" msgstr "" -#: ../scripts/g.extension/g.extension.py:2415 +#: ../scripts/g.extension/g.extension.py:2409 #, python-format msgid "Manual page for <%s> updated" msgstr "" -#: ../scripts/g.extension/g.extension.py:2422 +#: ../scripts/g.extension/g.extension.py:2416 #, python-format msgid "Unable to read manual page: %s" msgstr "" -#: ../scripts/g.extension/g.extension.py:2467 +#: ../scripts/g.extension/g.extension.py:2461 #, python-format msgid "Unable for write manual page: %s" msgstr "" -#: ../scripts/g.extension/g.extension.py:2484 +#: ../scripts/g.extension/g.extension.py:2481 msgid "GRASS_ADDON_BASE is not defined, installing to {}" msgstr "" -#: ../scripts/g.extension/g.extension.py:2491 +#: ../scripts/g.extension/g.extension.py:2488 #, python-brace-format msgid "You don't have permission to install extension to <{0}>. Try to run {1} with administrator rights (su or sudo)." msgstr "" -#: ../scripts/g.extension/g.extension.py:2583 +#: ../scripts/g.extension/g.extension.py:2580 #, python-brace-format msgid "Identified {0} as known hosting service" msgstr "" -#: ../scripts/g.extension/g.extension.py:2588 +#: ../scripts/g.extension/g.extension.py:2585 #, python-brace-format msgid "Not using {service} as known hosting service because the URL ends with '{suffix}'" msgstr "" -#: ../scripts/g.extension/g.extension.py:2605 +#: ../scripts/g.extension/g.extension.py:2602 #, python-brace-format msgid "Will use the following URL for download: {0}" msgstr "" -#: ../scripts/g.extension/g.extension.py:2636 +#: ../scripts/g.extension/g.extension.py:2633 #, python-brace-format msgid "Cannot open URL <{url}>: {error}" msgstr "" -#: ../scripts/g.extension/g.extension.py:2842 +#: ../scripts/g.extension/g.extension.py:2839 msgid "Flag '{}' is relevant only to 'operation=add'. Ignoring this flag." msgstr "" @@ -33376,55 +33715,55 @@ msgstr "" msgid "No metadata available for module '{}':" msgstr "" -#: ../scripts/g.manual/g.manual.py:65 +#: ../scripts/g.manual/g.manual.py:66 #, python-format msgid "Browser '%s' not found" msgstr "" -#: ../scripts/g.manual/g.manual.py:96 +#: ../scripts/g.manual/g.manual.py:97 #, python-format msgid "No HTML manual page entry for '%s'" msgstr "" -#: ../scripts/g.manual/g.manual.py:104 +#: ../scripts/g.manual/g.manual.py:105 #, python-format msgid "Starting browser '%(browser)s' for manual entry '%(entry)s'..." msgstr "" -#: ../scripts/g.manual/g.manual.py:112 +#: ../scripts/g.manual/g.manual.py:113 #, python-format msgid "Error starting browser '%(browser)s' for HTML file '%(path)s'" msgstr "" -#: ../scripts/g.manual/g.manual.py:127 +#: ../scripts/g.manual/g.manual.py:128 #, python-format msgid "Error starting 'man' for '%s'" msgstr "" -#: ../scripts/g.manual/g.manual.py:128 +#: ../scripts/g.manual/g.manual.py:129 #, python-format msgid "No manual page entry for '%s'" msgstr "" -#: ../scripts/g.manual/g.manual.py:135 +#: ../scripts/g.manual/g.manual.py:136 #, python-format msgid "Flags -%c and -%c are mutually exclusive" msgstr "" -#: ../scripts/g.search.modules/g.search.modules.py:177 +#: ../scripts/g.search.modules/g.search.modules.py:178 msgid "Cannot colorize, python-termcolor is not installed" msgstr "" -#: ../scripts/i.image.mosaic/i.image.mosaic.py:68 +#: ../scripts/i.image.mosaic/i.image.mosaic.py:71 msgid "Do not forget to set region properly to cover all images." msgstr "" -#: ../scripts/i.image.mosaic/i.image.mosaic.py:80 +#: ../scripts/i.image.mosaic/i.image.mosaic.py:83 #, python-format msgid "Mosaicing %d images..." msgstr "" -#: ../scripts/i.image.mosaic/i.image.mosaic.py:92 +#: ../scripts/i.image.mosaic/i.image.mosaic.py:97 #, python-format msgid "Done. Raster map <%s> created." msgstr "" @@ -33466,21 +33805,21 @@ msgstr "" msgid "Importing SPOT VGT NDVI quality map..." msgstr "" -#: ../scripts/i.in.spotvgt/i.in.spotvgt.py:259 +#: ../scripts/i.in.spotvgt/i.in.spotvgt.py:256 #, python-format msgid "Imported SPOT VEGETATION SM quality map <%s>." msgstr "" -#: ../scripts/i.in.spotvgt/i.in.spotvgt.py:261 +#: ../scripts/i.in.spotvgt/i.in.spotvgt.py:258 #, python-format msgid "Note: A snow map can be extracted by category 252 (d.rast %s cat=252)" msgstr "" -#: ../scripts/i.in.spotvgt/i.in.spotvgt.py:264 +#: ../scripts/i.in.spotvgt/i.in.spotvgt.py:261 msgid "Filtering NDVI map by Status Map quality layer..." msgstr "" -#: ../scripts/i.in.spotvgt/i.in.spotvgt.py:275 +#: ../scripts/i.in.spotvgt/i.in.spotvgt.py:272 #, python-format msgid "Filtered SPOT VEGETATION NDVI map <%s>." msgstr "" @@ -33714,20 +34053,20 @@ msgstr "" msgid "Projection transform probably failed, please investigate" msgstr "" -#: ../scripts/r.blend/r.blend.py:63 +#: ../scripts/r.blend/r.blend.py:66 #, python-format msgid "Raster map <%s> already exists." msgstr "" -#: ../scripts/r.blend/r.blend.py:71 +#: ../scripts/r.blend/r.blend.py:74 msgid "Calculating the three component maps..." msgstr "" -#: ../scripts/r.blend/r.blend.py:128 +#: ../scripts/r.blend/r.blend.py:139 msgid "Done. Use the following command to visualize the result:" msgstr "" -#: ../scripts/r.blend/r.blend.py:129 +#: ../scripts/r.blend/r.blend.py:140 #, python-format msgid "d.rgb r=%s.r g=%s.g b=%s.b" msgstr "" @@ -33840,107 +34179,107 @@ msgstr "" msgid "Following holes where not filled. Temporary maps with are left in place to allow examination of unfilled holes" msgstr "" -#: ../scripts/r.grow/r.grow.py:124 +#: ../scripts/r.grow/r.grow.py:127 msgid "Output can be written only to the current mapset" msgstr "" -#: ../scripts/r.grow/r.grow.py:139 +#: ../scripts/r.grow/r.grow.py:142 msgid "Growing failed. Removing temporary maps." msgstr "" -#: ../scripts/r.grow/r.grow.py:162 +#: ../scripts/r.grow/r.grow.py:166 msgid "Shrinking failed. Removing temporary maps." msgstr "" -#: ../scripts/r.import/r.import.py:174 +#: ../scripts/r.import/r.import.py:176 msgid "To set custom resolution value, select 'value' in resolution option" msgstr "" -#: ../scripts/r.import/r.import.py:178 +#: ../scripts/r.import/r.import.py:180 msgid "Resolution value can't be smaller than 0" msgstr "" -#: ../scripts/r.import/r.import.py:182 +#: ../scripts/r.import/r.import.py:184 msgid "Please provide the resolution for the imported dataset or change to 'estimated' resolution" msgstr "" -#: ../scripts/r.import/r.import.py:206 ../scripts/v.import/v.import.py:229 +#: ../scripts/r.import/r.import.py:208 ../scripts/v.import/v.import.py:230 #, python-format msgid "Input <%s> successfully imported without reprojection" msgstr "" -#: ../scripts/r.import/r.import.py:211 ../scripts/r.import/r.import.py:299 +#: ../scripts/r.import/r.import.py:213 ../scripts/r.import/r.import.py:301 #, python-format msgid "Unable to import GDAL dataset <%s>" msgstr "" -#: ../scripts/r.import/r.import.py:222 ../scripts/v.import/v.import.py:245 +#: ../scripts/r.import/r.import.py:224 ../scripts/v.import/v.import.py:246 #, python-format msgid "Coordinate reference system not available for current project <%s>" msgstr "" -#: ../scripts/r.import/r.import.py:235 ../scripts/v.import/v.import.py:264 +#: ../scripts/r.import/r.import.py:237 ../scripts/v.import/v.import.py:265 #, python-format msgid "Creating temporary project for <%s>..." msgstr "" -#: ../scripts/r.import/r.import.py:253 +#: ../scripts/r.import/r.import.py:255 #, python-format msgid "Unable to read GDAL dataset <%s>" msgstr "" -#: ../scripts/r.import/r.import.py:271 ../scripts/v.import/v.import.py:308 +#: ../scripts/r.import/r.import.py:273 ../scripts/v.import/v.import.py:311 #, python-format msgid "Coordinate reference system not available for input <%s>" msgstr "" -#: ../scripts/r.import/r.import.py:276 +#: ../scripts/r.import/r.import.py:278 #, python-format msgid "Importing <%s> to temporary project..." msgstr "" -#: ../scripts/r.import/r.import.py:310 +#: ../scripts/r.import/r.import.py:312 msgid "Input contains GCPs, rectification is required" msgstr "" -#: ../scripts/r.import/r.import.py:348 +#: ../scripts/r.import/r.import.py:350 msgid "Unable to get reprojected map extent" msgstr "" -#: ../scripts/r.import/r.import.py:389 +#: ../scripts/r.import/r.import.py:391 msgid "Please check the 'extent' parameter" msgstr "" -#: ../scripts/r.import/r.import.py:391 ../scripts/v.import/v.import.py:335 +#: ../scripts/r.import/r.import.py:393 ../scripts/v.import/v.import.py:338 msgid "Unable to reproject to source project" msgstr "" -#: ../scripts/r.import/r.import.py:411 +#: ../scripts/r.import/r.import.py:413 #, python-brace-format msgid "Estimated target resolution for input band <{out}>: {res}" msgstr "" -#: ../scripts/r.import/r.import.py:429 +#: ../scripts/r.import/r.import.py:431 #, python-brace-format msgid "Using given resolution for input band <{out}>: {res}" msgstr "" -#: ../scripts/r.import/r.import.py:439 +#: ../scripts/r.import/r.import.py:441 #, python-brace-format msgid "Using current region resolution for input band <{out}>: nsres={ns}, ewres={ew}" msgstr "" -#: ../scripts/r.import/r.import.py:445 ../scripts/v.import/v.import.py:380 +#: ../scripts/r.import/r.import.py:447 ../scripts/v.import/v.import.py:387 #, python-format msgid "Reprojecting <%s>..." msgstr "" -#: ../scripts/r.import/r.import.py:460 +#: ../scripts/r.import/r.import.py:462 #, python-format msgid "Unable to to reproject raster <%s>" msgstr "" -#: ../scripts/r.import/r.import.py:463 +#: ../scripts/r.import/r.import.py:465 #, python-format msgid "The reprojected raster <%s> is empty" msgstr "" @@ -34053,93 +34392,93 @@ msgstr "" #: ../scripts/r.in.wms/wms_base.py:138 #, python-format -msgid "SRS differences: WMS source EPSG %s != location EPSG %s (use srs=%s to adjust)" +msgid "CRS (SRS) differences: WMS source EPSG %s != location EPSG %s (use srs=%s to adjust)" msgstr "" -#: ../scripts/r.in.wms/wms_base.py:152 +#: ../scripts/r.in.wms/wms_base.py:153 msgid "Unable to get projection info" msgstr "" -#: ../scripts/r.in.wms/wms_base.py:159 +#: ../scripts/r.in.wms/wms_base.py:160 msgid "Maxcols must be greater than 100" msgstr "" -#: ../scripts/r.in.wms/wms_base.py:163 +#: ../scripts/r.in.wms/wms_base.py:164 msgid "Maxrows must be greater than 100" msgstr "" -#: ../scripts/r.in.wms/wms_base.py:205 +#: ../scripts/r.in.wms/wms_base.py:206 #, python-format msgid "" "These parameter are ignored: %s\n" " %s driver does not support the parameters." msgstr "" -#: ../scripts/r.in.wms/wms_base.py:219 +#: ../scripts/r.in.wms/wms_base.py:220 #, python-format msgid "" "These flags are ignored: %s\n" " %s driver does not support the flags." msgstr "" -#: ../scripts/r.in.wms/wms_base.py:270 +#: ../scripts/r.in.wms/wms_base.py:271 #, python-format msgid "Authorization failed to <%s> when fetching capabilities" msgstr "" -#: ../scripts/r.in.wms/wms_base.py:274 +#: ../scripts/r.in.wms/wms_base.py:275 #, python-brace-format msgid "Unable to fetch capabilities from <{0}>. Reason: " msgstr "" -#: ../scripts/r.in.wms/wms_base.py:313 +#: ../scripts/r.in.wms/wms_base.py:314 #, python-format msgid "" "Unable to open file '%s'.\n" "%s\n" msgstr "" -#: ../scripts/r.in.wms/wms_base.py:355 +#: ../scripts/r.in.wms/wms_base.py:356 msgid "Unable to write data into tempfile" msgstr "" -#: ../scripts/r.in.wms/wms_base.py:373 +#: ../scripts/r.in.wms/wms_base.py:374 #, python-format msgid "Unable to determine region, %s failed" msgstr "" -#: ../scripts/r.in.wms/wms_base.py:377 +#: ../scripts/r.in.wms/wms_base.py:378 msgid "Region definition: 4 points required" msgstr "" -#: ../scripts/r.in.wms/wms_base.py:383 +#: ../scripts/r.in.wms/wms_base.py:384 msgid "Reprojection of region using m.proj failed." msgstr "" -#: ../scripts/r.in.wms/wms_base.py:423 +#: ../scripts/r.in.wms/wms_base.py:424 msgid "Reprojecting raster..." msgstr "" -#: ../scripts/r.in.wms/wms_base.py:482 ../scripts/r.in.wms/wms_base.py:584 -#: ../scripts/r.in.wms/wms_base.py:615 ../scripts/r.in.wms/wms_base.py:656 +#: ../scripts/r.in.wms/wms_base.py:483 ../scripts/r.in.wms/wms_base.py:585 +#: ../scripts/r.in.wms/wms_base.py:616 ../scripts/r.in.wms/wms_base.py:657 #, python-format msgid "%s failed" msgstr "" -#: ../scripts/r.in.wms/wms_base.py:499 +#: ../scripts/r.in.wms/wms_base.py:500 msgid "Unable to create temporary files" msgstr "" -#: ../scripts/r.in.wms/wms_base.py:524 +#: ../scripts/r.in.wms/wms_base.py:525 #, python-format msgid "Please change output name, or change names of these rasters: %s, module needs to create this temporary maps during execution." msgstr "" -#: ../scripts/r.in.wms/wms_base.py:561 +#: ../scripts/r.in.wms/wms_base.py:562 msgid "WMS import failed, nothing imported" msgstr "" -#: ../scripts/r.in.wms/wms_base.py:568 +#: ../scripts/r.in.wms/wms_base.py:569 #, python-format msgid "<%s> created." msgstr "" @@ -34199,240 +34538,255 @@ msgid "" " Tag <%s> was not found." msgstr "" -#: ../scripts/r.in.wms/wms_drv.py:30 ../scripts/r.in.wms/wms_gdal_drv.py:23 -#: ../scripts/v.import/v.import.py:272 ../scripts/v.import/v.import.py:350 +#: ../scripts/r.in.wms/wms_drv.py:32 ../scripts/r.in.wms/wms_gdal_drv.py:25 +#: ../scripts/v.import/v.import.py:275 ../scripts/v.import/v.import.py:355 msgid "Unable to load GDAL Python bindings (requires package 'python-gdal' being installed)" msgstr "" -#: ../scripts/r.in.wms/wms_drv.py:53 +#: ../scripts/r.in.wms/wms_drv.py:55 msgid "Downloading data from WMS server..." msgstr "" -#: ../scripts/r.in.wms/wms_drv.py:114 +#: ../scripts/r.in.wms/wms_drv.py:116 #, python-format msgid "" "Authorization failed to '%s' when fetching data.\n" "%s" msgstr "" -#: ../scripts/r.in.wms/wms_drv.py:119 +#: ../scripts/r.in.wms/wms_drv.py:121 #, python-format msgid "" "Unable to fetch data from: '%s'\n" "%s" msgstr "" -#: ../scripts/r.in.wms/wms_drv.py:145 +#: ../scripts/r.in.wms/wms_drv.py:147 #, python-format msgid "" "Server refused to send data for a tile.\n" "Request will be repeated after %d s." msgstr "" -#: ../scripts/r.in.wms/wms_drv.py:153 +#: ../scripts/r.in.wms/wms_drv.py:155 #, python-format msgid "" "Unable to write data into tempfile.\n" "%s" msgstr "" -#: ../scripts/r.in.wms/wms_drv.py:166 +#: ../scripts/r.in.wms/wms_drv.py:168 #, python-format msgid "" "Unable to read data from tempfile.\n" "%s" msgstr "" -#: ../scripts/r.in.wms/wms_drv.py:171 +#: ../scripts/r.in.wms/wms_drv.py:173 #, python-format msgid "WMS server error: %s" msgstr "" -#: ../scripts/r.in.wms/wms_drv.py:173 +#: ../scripts/r.in.wms/wms_drv.py:175 msgid "WMS server unknown error" msgstr "" -#: ../scripts/r.in.wms/wms_drv.py:179 +#: ../scripts/r.in.wms/wms_drv.py:181 #, python-format msgid "WMS server error: no band(s) received. Is server URL correct? <%s>" msgstr "" -#: ../scripts/r.in.wms/wms_drv.py:205 +#: ../scripts/r.in.wms/wms_drv.py:207 #, python-format msgid "Driver %s does not supports Create() method" msgstr "" -#: ../scripts/r.in.wms/wms_drv.py:283 +#: ../scripts/r.in.wms/wms_drv.py:285 #, python-format msgid "Unable to open %s " msgstr "" -#: ../scripts/r.in.wms/wms_drv.py:360 +#: ../scripts/r.in.wms/wms_drv.py:362 msgid "Region is out of server data extend." msgstr "" -#: ../scripts/r.in.wms/wms_drv.py:392 +#: ../scripts/r.in.wms/wms_drv.py:394 #, python-format msgid "Fetching %d tiles with %d x %d pixel size per tile..." msgstr "" -#: ../scripts/r.in.wms/wms_drv.py:625 ../scripts/r.in.wms/wms_drv.py:904 +#: ../scripts/r.in.wms/wms_drv.py:627 ../scripts/r.in.wms/wms_drv.py:906 #, python-format msgid "" "Unable to parse tile service file.\n" "%s\n" msgstr "" -#: ../scripts/r.in.wms/wms_drv.py:673 +#: ../scripts/r.in.wms/wms_drv.py:675 #, python-format msgid "Layer '%s' was not found in capabilities file" msgstr "" -#: ../scripts/r.in.wms/wms_drv.py:692 +#: ../scripts/r.in.wms/wms_drv.py:694 #, python-format msgid "Layer '%s' is not available with %s code." msgstr "" -#: ../scripts/r.in.wms/wms_drv.py:928 +#: ../scripts/r.in.wms/wms_drv.py:930 #, python-format msgid "" "Unable to parse tile service file. \n" " No tag '%s' was found." msgstr "" -#: ../scripts/r.in.wms/wms_drv.py:941 +#: ../scripts/r.in.wms/wms_drv.py:943 #, python-format msgid "Tiled group '%s' was not found in tile service file" msgstr "" -#: ../scripts/r.in.wms/wms_drv.py:1033 +#: ../scripts/r.in.wms/wms_drv.py:1035 #, python-format msgid "" "Wrong form of parameter '%s' in '%s'. \n" " The parameter was ignored." msgstr "" -#: ../scripts/r.in.wms/wms_drv.py:1058 +#: ../scripts/r.in.wms/wms_drv.py:1060 #, python-format msgid "Parameter '%s' in '%s' is not variable in tile pattern url." msgstr "" -#: ../scripts/r.in.wms/wms_drv.py:1065 +#: ../scripts/r.in.wms/wms_drv.py:1067 #, python-format msgid "%s driver supports only '%s' parameter in '%s'. Other parameters are ignored." msgstr "" -#: ../scripts/r.in.wms/wms_gdal_drv.py:146 +#: ../scripts/r.in.wms/wms_gdal_drv.py:148 msgid "" "If module will not be able to fetch the data in this geographic projection, \n" " try 'WMS_GRASS' driver or use WMS version 1.1.1." msgstr "" -#: ../scripts/r.in.wms/wms_gdal_drv.py:169 +#: ../scripts/r.in.wms/wms_gdal_drv.py:171 msgid "Unable to open GDAL WMS driver" msgstr "" -#: ../scripts/r.in.wms/wms_gdal_drv.py:175 +#: ../scripts/r.in.wms/wms_gdal_drv.py:177 #, python-format msgid "Unable to find %s driver" msgstr "" -#: ../scripts/r.in.wms/wms_gdal_drv.py:182 +#: ../scripts/r.in.wms/wms_gdal_drv.py:184 #, python-format msgid "Driver %s supports CreateCopy() method." msgstr "" -#: ../scripts/r.in.wms/wms_gdal_drv.py:195 +#: ../scripts/r.in.wms/wms_gdal_drv.py:197 msgid "Incorrect WMS query" msgstr "" -#: ../scripts/r.mapcalc.simple/r.mapcalc.simple.py:107 +#: ../scripts/r.mapcalc.simple/r.mapcalc.simple.py:109 msgid "The expression is an empty string" msgstr "" -#: ../scripts/r.mapcalc.simple/r.mapcalc.simple.py:141 +#: ../scripts/r.mapcalc.simple/r.mapcalc.simple.py:143 msgid "Expression: {}" msgstr "" -#: ../scripts/r.mask/r.mask.py:98 +#: ../scripts/r.mask/r.mask.py:97 msgid "Either parameter or parameter is required" msgstr "" -#: ../scripts/r.mask/r.mask.py:110 +#: ../scripts/r.mask/r.mask.py:109 #, python-brace-format msgid "r.mask can only operate on raster mask in the current mapset ({current_mapset}), but mask name is set to {full_name}" msgstr "" -#: ../scripts/r.mask/r.mask.py:126 +#: ../scripts/r.mask/r.mask.py:125 msgid "Raster mask removed" msgstr "" -#: ../scripts/r.mask/r.mask.py:129 +#: ../scripts/r.mask/r.mask.py:128 #, python-brace-format msgid "No existing mask to remove (no raster named {name})" msgstr "" -#: ../scripts/r.mask/r.mask.py:139 +#: ../scripts/r.mask/r.mask.py:138 #, python-brace-format msgid "Raster mask is already present in the current mapset. Use overwrite or delete raster named {name}." msgstr "" -#: ../scripts/r.mask/r.mask.py:144 +#: ../scripts/r.mask/r.mask.py:143 msgid "Raster mask already exists and will be overwritten" msgstr "" -#: ../scripts/r.mask/r.mask.py:158 +#: ../scripts/r.mask/r.mask.py:157 #, python-format msgid "The raster map <%s> must be integer (CELL type) in order to use the 'maskcats' parameter" msgstr "" -#: ../scripts/r.mask/r.mask.py:185 +#: ../scripts/r.mask/r.mask.py:184 #, python-format msgid "No area found in vector map <%s>. Creating a convex hull to create a raster mask." msgstr "" -#: ../scripts/r.mask/r.mask.py:207 +#: ../scripts/r.mask/r.mask.py:206 #, python-format msgid "Unable to create a convex hull for vector map <%s>" msgstr "" -#: ../scripts/r.mask/r.mask.py:233 +#: ../scripts/r.mask/r.mask.py:232 msgid "Creating inverted raster mask..." msgstr "" -#: ../scripts/r.mask/r.mask.py:235 +#: ../scripts/r.mask/r.mask.py:234 msgid "Inverted raster mask created" msgstr "" -#: ../scripts/r.mask/r.mask.py:237 +#: ../scripts/r.mask/r.mask.py:236 msgid "Raster mask created" msgstr "" -#: ../scripts/r.mask/r.mask.py:241 +#: ../scripts/r.mask/r.mask.py:240 #, python-brace-format msgid "All subsequent raster operations will be limited to the raster mask area. Removing the mask (with r.mask -r) or renaming a raster map named '{name}' will restore raster operations to normal." msgstr "" -#: ../scripts/r.pack/r.pack.py:77 ../scripts/v.pack/v.pack.py:82 +#: ../scripts/r.pack/r.pack.py:80 ../scripts/v.pack/v.pack.py:82 #, python-format msgid "Pack file <%s> already exists and will be overwritten" msgstr "" -#: ../scripts/r.pack/r.pack.py:81 +#: ../scripts/r.pack/r.pack.py:84 #, python-format msgid "option : <%s> exists." msgstr "" -#: ../scripts/r.pack/r.pack.py:83 +#: ../scripts/r.pack/r.pack.py:86 +#, python-brace-format +msgid "Directory '{path}' does not exist" +msgstr "" + +#: ../scripts/r.pack/r.pack.py:88 +#, python-brace-format +msgid "Path '{path}' is not a directory" +msgstr "" + +#: ../scripts/r.pack/r.pack.py:90 +#, python-brace-format +msgid "Directory '{path}' is not writable" +msgstr "" + +#: ../scripts/r.pack/r.pack.py:92 #, python-format msgid "Packing <%s> to <%s>..." msgstr "" -#: ../scripts/r.pack/r.pack.py:152 +#: ../scripts/r.pack/r.pack.py:160 msgid "No raster map components found" msgstr "" -#: ../scripts/r.pack/r.pack.py:183 +#: ../scripts/r.pack/r.pack.py:199 #, python-format msgid "Raster map saved to '%s'" msgstr "" @@ -34578,11 +34932,11 @@ msgid "File {name} not found." msgstr "" #: ../scripts/r.unpack/r.unpack.py:81 ../scripts/r.unpack/r.unpack.py:135 -#: ../scripts/v.unpack/v.unpack.py:81 ../scripts/v.unpack/v.unpack.py:144 +#: ../scripts/v.unpack/v.unpack.py:82 ../scripts/v.unpack/v.unpack.py:142 msgid "Pack file unreadable" msgstr "" -#: ../scripts/r.unpack/r.unpack.py:90 ../scripts/v.unpack/v.unpack.py:90 +#: ../scripts/r.unpack/r.unpack.py:90 ../scripts/v.unpack/v.unpack.py:91 msgid "Pack file unreadable: file '{}' missing" msgstr "" @@ -34598,7 +34952,7 @@ msgstr "" #: ../scripts/r.unpack/r.unpack.py:129 #, python-brace-format -msgid "This GRASS GIS pack file contains vector data. Use v.unpack to unpack <{name}>" +msgid "This GRASS pack file contains vector data. Use v.unpack to unpack <{name}>" msgstr "" #: ../scripts/r.unpack/r.unpack.py:140 @@ -34609,56 +34963,56 @@ msgstr "" msgid "PROJ_INFO file is missing, unpack raster map in XY (unprojected) project." msgstr "" -#: ../scripts/r.unpack/r.unpack.py:177 ../scripts/v.unpack/v.unpack.py:186 +#: ../scripts/r.unpack/r.unpack.py:177 ../scripts/v.unpack/v.unpack.py:184 #, python-brace-format msgid "" "Difference between PROJ_INFO file of packed map and of current project:\n" "{diff}" msgstr "" -#: ../scripts/r.unpack/r.unpack.py:184 ../scripts/v.unpack/v.unpack.py:193 +#: ../scripts/r.unpack/r.unpack.py:184 ../scripts/v.unpack/v.unpack.py:191 #, python-brace-format msgid "" "Difference between PROJ_UNITS file of packed map and of current project:\n" "{diff}" msgstr "" -#: ../scripts/r.unpack/r.unpack.py:190 ../scripts/v.unpack/v.unpack.py:199 +#: ../scripts/r.unpack/r.unpack.py:190 ../scripts/v.unpack/v.unpack.py:197 msgid "Coordinate reference system of dataset does not appear to match current project. In case of no significant differences in the CRS definitions, use the -o flag to ignore them and use current project definition." msgstr "" -#: ../scripts/r.unpack/r.unpack.py:245 +#: ../scripts/r.unpack/r.unpack.py:244 #, python-brace-format msgid "Raster map <{name}> unpacked" msgstr "" -#: ../scripts/r3.in.xyz/r3.in.xyz.py:249 +#: ../scripts/r3.in.xyz/r3.in.xyz.py:250 msgid "The 2D and 3D region settings are different. Can not continue." msgstr "" -#: ../scripts/r3.in.xyz/r3.in.xyz.py:252 +#: ../scripts/r3.in.xyz/r3.in.xyz.py:253 #, python-format msgid "Region bottom=%.15g top=%.15g vertical_cell_res=%.15g (%d depths)" msgstr "" -#: ../scripts/r3.in.xyz/r3.in.xyz.py:256 +#: ../scripts/r3.in.xyz/r3.in.xyz.py:257 msgid "Creating slices ..." msgstr "" -#: ../scripts/r3.in.xyz/r3.in.xyz.py:286 +#: ../scripts/r3.in.xyz/r3.in.xyz.py:287 #, python-format msgid "Processing horizontal slice %d of %d [%.15g,%.15g) ..." msgstr "" -#: ../scripts/r3.in.xyz/r3.in.xyz.py:313 ../scripts/r3.in.xyz/r3.in.xyz.py:319 +#: ../scripts/r3.in.xyz/r3.in.xyz.py:314 ../scripts/r3.in.xyz/r3.in.xyz.py:320 msgid "Trouble importing data. Aborting." msgstr "" -#: ../scripts/r3.in.xyz/r3.in.xyz.py:323 +#: ../scripts/r3.in.xyz/r3.in.xyz.py:324 msgid "Assembling 3D cube ..." msgstr "" -#: ../scripts/r3.in.xyz/r3.in.xyz.py:334 +#: ../scripts/r3.in.xyz/r3.in.xyz.py:335 #, python-format msgid "Done. 3D raster map <%s> created." msgstr "" @@ -34873,48 +35227,48 @@ msgstr "" msgid "Error filling columns {}" msgstr "" -#: ../scripts/v.db.reconnect.all/v.db.reconnect.all.py:102 +#: ../scripts/v.db.reconnect.all/v.db.reconnect.all.py:103 #, python-format msgid "Target database doesn't exist, creating a new database using <%s> driver..." msgstr "" -#: ../scripts/v.db.reconnect.all/v.db.reconnect.all.py:109 +#: ../scripts/v.db.reconnect.all/v.db.reconnect.all.py:110 #, python-format msgid "Unable to create database <%s> by driver <%s>" msgstr "" -#: ../scripts/v.db.reconnect.all/v.db.reconnect.all.py:144 +#: ../scripts/v.db.reconnect.all/v.db.reconnect.all.py:145 #: ../vector/v.decimate/copy_tab.c:101 ../vector/v.extract/copy_tab.c:106 -#: ../vector/v.generalize/misc.c:180 ../vector/v.to.points/main.c:187 +#: ../vector/v.generalize/misc.c:181 ../vector/v.to.points/main.c:187 #, c-format, python-format msgid "Unable to copy table <%s>" msgstr "" -#: ../scripts/v.db.reconnect.all/v.db.reconnect.all.py:160 +#: ../scripts/v.db.reconnect.all/v.db.reconnect.all.py:161 #, python-format msgid "Unable to disconnect table <%s> from vector <%s>" msgstr "" -#: ../scripts/v.db.reconnect.all/v.db.reconnect.all.py:173 +#: ../scripts/v.db.reconnect.all/v.db.reconnect.all.py:174 #, python-format msgid "Unable to drop table <%s>" msgstr "" -#: ../scripts/v.db.reconnect.all/v.db.reconnect.all.py:183 +#: ../scripts/v.db.reconnect.all/v.db.reconnect.all.py:184 #, python-format msgid "Creating index <%s>..." msgstr "" -#: ../scripts/v.db.reconnect.all/v.db.reconnect.all.py:193 +#: ../scripts/v.db.reconnect.all/v.db.reconnect.all.py:194 #, python-format msgid "Unable to create index <%s>" msgstr "" -#: ../scripts/v.db.reconnect.all/v.db.reconnect.all.py:224 +#: ../scripts/v.db.reconnect.all/v.db.reconnect.all.py:225 msgid "Old and new database connection is identical. Nothing to do." msgstr "" -#: ../scripts/v.db.reconnect.all/v.db.reconnect.all.py:240 +#: ../scripts/v.db.reconnect.all/v.db.reconnect.all.py:241 #, python-format msgid "" "%s\n" @@ -34922,17 +35276,17 @@ msgid "" "%s" msgstr "" -#: ../scripts/v.db.reconnect.all/v.db.reconnect.all.py:275 +#: ../scripts/v.db.reconnect.all/v.db.reconnect.all.py:276 #, python-format msgid "Reconnecting layer %d..." msgstr "" -#: ../scripts/v.db.reconnect.all/v.db.reconnect.all.py:308 +#: ../scripts/v.db.reconnect.all/v.db.reconnect.all.py:309 #, python-format msgid "Unable to connect table <%s> to vector <%s> on layer <%s>" msgstr "" -#: ../scripts/v.db.reconnect.all/v.db.reconnect.all.py:315 +#: ../scripts/v.db.reconnect.all/v.db.reconnect.all.py:316 #, python-format msgid "Layer <%d> will not be reconnected because database or schema do not match." msgstr "" @@ -34951,7 +35305,12 @@ msgstr "" msgid "Cannot rename column <%s> as it is needed to keep table <%s> connected to the input vector map" msgstr "" -#: ../scripts/v.db.univar/v.db.univar.py:84 +#: ../scripts/v.db.renamecolumn/v.db.renamecolumn.py:105 +#, python-brace-format +msgid "Column <{column_name}> not found in table <{table_name}>" +msgstr "" + +#: ../scripts/v.db.univar/v.db.univar.py:85 #, python-format msgid "No attribute table linked to layer <%s>" msgstr "" @@ -34968,7 +35327,7 @@ msgid "Use of libsqlitefunctions only with SQLite backend" msgstr "" #: ../scripts/v.db.update/v.db.update.py:103 -#: ../scripts/v.dissolve/v.dissolve.py:615 ../vector/v.to.rast/support.c:297 +#: ../scripts/v.dissolve/v.dissolve.py:607 ../vector/v.to.rast/support.c:297 #: ../vector/v.to.rast/support.c:528 ../vector/v.to.rast/vect2rast.c:67 #: ../vector/v.what.rast3/main.c:143 #, c-format, python-format @@ -34983,22 +35342,22 @@ msgstr "" msgid "Either or must be given" msgstr "" -#: ../scripts/v.dissolve/v.dissolve.py:248 +#: ../scripts/v.dissolve/v.dissolve.py:246 #, python-brace-format msgid "At least one method must be provided when backend <{backend}> is used" msgstr "" -#: ../scripts/v.dissolve/v.dissolve.py:256 +#: ../scripts/v.dissolve/v.dissolve.py:254 #, python-brace-format msgid "Method <{method}> is not available for backend <{backend}>" msgstr "" -#: ../scripts/v.dissolve/v.dissolve.py:271 +#: ../scripts/v.dissolve/v.dissolve.py:269 #, python-brace-format msgid "Column <{column}> does not exist in vector <{vector}> (layer <{layer}>). Specify result columns with 'name type' syntax if you are using function calls instead of aggregate column names only." msgstr "" -#: ../scripts/v.dissolve/v.dissolve.py:279 +#: ../scripts/v.dissolve/v.dissolve.py:277 #, python-brace-format msgid "Column <{column}> selected for aggregation does not exist in vector <{vector}> (layer <{layer}>)" msgstr "" @@ -35028,109 +35387,109 @@ msgstr "" msgid "Methods must be specified with {backend} backend and with result columns provided" msgstr "" -#: ../scripts/v.dissolve/v.dissolve.py:590 +#: ../scripts/v.dissolve/v.dissolve.py:583 #, python-format msgid "No '%s' option specified. Dissolving based on category values from layer <%s>." msgstr "" -#: ../scripts/v.dissolve/v.dissolve.py:606 +#: ../scripts/v.dissolve/v.dissolve.py:598 #, python-format msgid "Invalid layer number (%d). Parameter '%s' specified, assuming layer '1'." msgstr "" -#: ../scripts/v.dissolve/v.dissolve.py:618 +#: ../scripts/v.dissolve/v.dissolve.py:610 msgid "Key column must be of type integer or string" msgstr "" -#: ../scripts/v.dissolve/v.dissolve.py:623 +#: ../scripts/v.dissolve/v.dissolve.py:615 #, python-brace-format msgid "Key column type must be string (text) for aggregation method to work, not '{column_type}'" msgstr "" -#: ../scripts/v.dissolve/v.dissolve.py:676 +#: ../scripts/v.dissolve/v.dissolve.py:666 #, python-brace-format msgid "" "A processing step failed. Check the above error messages and see the following details:\n" "{error}" msgstr "" -#: ../scripts/v.import/v.import.py:206 +#: ../scripts/v.import/v.import.py:207 #, python-format msgid "Missing value for parameter <%s>" msgstr "" -#: ../scripts/v.import/v.import.py:234 +#: ../scripts/v.import/v.import.py:235 #, python-format msgid "Unable to import <%s>" msgstr "" -#: ../scripts/v.import/v.import.py:288 +#: ../scripts/v.import/v.import.py:291 #, python-format msgid "Unable to create project from OGR datasource <%s>" msgstr "" -#: ../scripts/v.import/v.import.py:342 +#: ../scripts/v.import/v.import.py:345 #, python-format msgid "Importing <%s> ..." msgstr "" -#: ../scripts/v.import/v.import.py:360 +#: ../scripts/v.import/v.import.py:365 #, python-format msgid "Unable to import OGR datasource <%s>" msgstr "" -#: ../scripts/v.import/v.import.py:374 ../scripts/v.pack/v.pack.py:86 -#, python-format -msgid "option <%s>: <%s> exists." +#: ../scripts/v.import/v.import.py:380 ../scripts/v.pack/v.pack.py:87 +#, python-brace-format +msgid "option <{key}>: <{value}> exists." msgstr "" -#: ../scripts/v.import/v.import.py:390 +#: ../scripts/v.import/v.import.py:397 #, python-format msgid "Unable to to reproject vector <%s>" msgstr "" -#: ../scripts/v.in.e00/v.in.e00.py:60 +#: ../scripts/v.in.e00/v.in.e00.py:61 msgid "'avcimport' program not found, install it first" msgstr "" -#: ../scripts/v.in.e00/v.in.e00.py:68 +#: ../scripts/v.in.e00/v.in.e00.py:69 msgid "'e00conv' program not found, install it first" msgstr "" -#: ../scripts/v.in.e00/v.in.e00.py:75 +#: ../scripts/v.in.e00/v.in.e00.py:76 msgid "Must specify one of \"point\", \"line\", or \"area\"." msgstr "" -#: ../scripts/v.in.e00/v.in.e00.py:85 +#: ../scripts/v.in.e00/v.in.e00.py:86 msgid "Found that E00 file is split into pieces (.e01, ...). Merging..." msgstr "" -#: ../scripts/v.in.e00/v.in.e00.py:120 +#: ../scripts/v.in.e00/v.in.e00.py:121 msgid "An error may appear next which will be ignored..." msgstr "" -#: ../scripts/v.in.e00/v.in.e00.py:126 +#: ../scripts/v.in.e00/v.in.e00.py:127 msgid "E00 ASCII found and converted to Arc Coverage in current directory" msgstr "" -#: ../scripts/v.in.e00/v.in.e00.py:129 +#: ../scripts/v.in.e00/v.in.e00.py:130 msgid "E00 Compressed ASCII found. Will uncompress first..." msgstr "" -#: ../scripts/v.in.e00/v.in.e00.py:132 +#: ../scripts/v.in.e00/v.in.e00.py:133 msgid "...converted to Arc Coverage in current directory" msgstr "" -#: ../scripts/v.in.e00/v.in.e00.py:139 +#: ../scripts/v.in.e00/v.in.e00.py:140 #, python-format msgid "Importing %ss..." msgstr "" -#: ../scripts/v.in.e00/v.in.e00.py:154 +#: ../scripts/v.in.e00/v.in.e00.py:155 msgid "An error occurred while running v.in.ogr" msgstr "" -#: ../scripts/v.in.e00/v.in.e00.py:156 +#: ../scripts/v.in.e00/v.in.e00.py:157 #, python-format msgid "Imported <%s> vector map <%s>." msgstr "" @@ -35152,25 +35511,25 @@ msgstr "" msgid "Not enough data columns. (incorrect fs setting?)" msgstr "" -#: ../scripts/v.in.mapgen/v.in.mapgen.py:74 +#: ../scripts/v.in.mapgen/v.in.mapgen.py:75 #, python-format msgid "Input file <%s> not found" msgstr "" -#: ../scripts/v.in.mapgen/v.in.mapgen.py:89 ../scripts/v.in.wfs/v.in.wfs.py:216 +#: ../scripts/v.in.mapgen/v.in.mapgen.py:90 ../scripts/v.in.wfs/v.in.wfs.py:216 msgid "Importing data..." msgstr "" -#: ../scripts/v.in.mapgen/v.in.mapgen.py:128 +#: ../scripts/v.in.mapgen/v.in.mapgen.py:129 #, python-format msgid "An error occurred on line '%s', exiting." msgstr "" -#: ../scripts/v.in.mapgen/v.in.mapgen.py:196 +#: ../scripts/v.in.mapgen/v.in.mapgen.py:197 msgid "Importing with v.in.ascii..." msgstr "" -#: ../scripts/v.in.mapgen/v.in.mapgen.py:202 +#: ../scripts/v.in.mapgen/v.in.mapgen.py:203 #, python-format msgid "An error occurred on creating \"%s\", please check" msgstr "" @@ -35228,17 +35587,17 @@ msgstr "" msgid "Unable to pack vector map <%s>. Only native format supported." msgstr "" -#: ../scripts/v.pack/v.pack.py:89 +#: ../scripts/v.pack/v.pack.py:93 #, python-format msgid "Packing <%s>..." msgstr "" -#: ../scripts/v.pack/v.pack.py:102 +#: ../scripts/v.pack/v.pack.py:106 #, python-format msgid "There is not database connected with vector map <%s>" msgstr "" -#: ../scripts/v.pack/v.pack.py:130 +#: ../scripts/v.pack/v.pack.py:134 #, python-format msgid "Pack file <%s> created" msgstr "" @@ -35350,7 +35709,7 @@ msgstr "" msgid "Error removing table from layer 1" msgstr "" -#: ../scripts/v.to.lines/v.to.lines.py:192 ../vector/v.select/copy_tabs.c:51 +#: ../scripts/v.to.lines/v.to.lines.py:192 ../vector/v.select/copy_tabs.c:52 #, c-format, python-format msgid "No table for layer %d" msgstr "" @@ -35359,51 +35718,51 @@ msgstr "" msgid "Error adding categories" msgstr "" -#: ../scripts/v.unpack/v.unpack.py:109 ../vector/v.edit/main.c:99 +#: ../scripts/v.unpack/v.unpack.py:110 ../vector/v.edit/main.c:99 #: ../vector/v.in.lidar/main.c:556 ../vector/v.in.ogr/main.c:695 #, c-format, python-format msgid "Vector map <%s> already exists" msgstr "" -#: ../scripts/v.unpack/v.unpack.py:112 ../vector/v.in.lidar/main.c:553 +#: ../scripts/v.unpack/v.unpack.py:113 ../vector/v.in.lidar/main.c:553 #, c-format, python-format msgid "Vector map <%s> already exists and will be overwritten" msgstr "" #: ../scripts/v.unpack/v.unpack.py:138 #, python-format -msgid "This GRASS GIS pack file contains raster data. Use r.unpack to unpack <%s>" +msgid "This GRASS pack file contains raster data. Use r.unpack to unpack <%s>" msgstr "" -#: ../scripts/v.unpack/v.unpack.py:155 +#: ../scripts/v.unpack/v.unpack.py:153 msgid "PROJ_INFO file is missing, unpack vector map in XY (unprojected) project." msgstr "" -#: ../scripts/v.unpack/v.unpack.py:181 +#: ../scripts/v.unpack/v.unpack.py:179 msgid "Projection information does not match. Proceeding..." msgstr "" -#: ../scripts/v.unpack/v.unpack.py:243 +#: ../scripts/v.unpack/v.unpack.py:237 #, python-format msgid "Coping table <%s> as table <%s>" msgstr "" -#: ../scripts/v.unpack/v.unpack.py:258 +#: ../scripts/v.unpack/v.unpack.py:252 #, python-format msgid "Unable to copy table <%s> as table <%s>" msgstr "" -#: ../scripts/v.unpack/v.unpack.py:263 +#: ../scripts/v.unpack/v.unpack.py:257 #, python-format msgid "Connect table <%s> to vector map <%s> at layer <%s>" msgstr "" -#: ../scripts/v.unpack/v.unpack.py:282 +#: ../scripts/v.unpack/v.unpack.py:276 #, python-format msgid "Unable to connect table <%s> to vector map <%s>" msgstr "" -#: ../scripts/v.unpack/v.unpack.py:286 +#: ../scripts/v.unpack/v.unpack.py:280 #, python-format msgid "Vector map <%s> successfully unpacked" msgstr "" @@ -35613,10 +35972,10 @@ msgstr "" msgid "Unable to select data from table <%s>" msgstr "" -#: ../vector/v.buffer/main.c:444 ../vector/v.class/main.c:125 +#: ../vector/v.buffer/main.c:444 ../vector/v.class/main.c:172 #: ../vector/v.sample/main.c:238 ../vector/v.surf.bspline/crosscorr.c:141 -#: ../vector/v.surf.bspline/main.c:399 ../vector/v.surf.idw/read_sites.c:68 -#: ../vector/v.to.rast3/main.c:102 ../vector/v.what.rast/main.c:184 +#: ../vector/v.surf.bspline/main.c:399 ../vector/v.to.rast3/main.c:102 +#: ../vector/v.what.rast/main.c:225 msgid "Column type not supported" msgstr "" @@ -35640,7 +35999,7 @@ msgstr "" #: ../vector/v.buffer/main.c:545 ../vector/v.buffer/main.c:658 #: ../vector/v.label.sa/labels.c:165 ../vector/v.label/main.c:323 #: ../vector/v.sample/main.c:224 ../vector/v.sample/main.c:232 -#: ../vector/v.vol.rst/user1.c:172 ../vector/v.what.rast/main.c:615 +#: ../vector/v.vol.rst/user1.c:171 ../vector/v.what.rast/main.c:730 #: ../vector/v.what.rast3/main.c:278 #, c-format msgid "No record for category %d in table <%s>" @@ -35681,19 +36040,19 @@ msgstr "" msgid "Snapping boundaries..." msgstr "" -#: ../vector/v.buffer/main.c:797 ../vector/v.in.ogr/main.c:1459 +#: ../vector/v.buffer/main.c:797 ../vector/v.in.ogr/main.c:1461 #: ../vector/v.patch/main.c:534 msgid "Breaking polygons..." msgstr "" #: ../vector/v.buffer/main.c:800 ../vector/v.buffer/main.c:807 -#: ../vector/v.delaunay/main.c:144 ../vector/v.in.ogr/main.c:1465 -#: ../vector/v.in.ogr/main.c:1480 ../vector/v.overlay/area_area.c:127 +#: ../vector/v.delaunay/main.c:144 ../vector/v.in.ogr/main.c:1467 +#: ../vector/v.in.ogr/main.c:1482 ../vector/v.overlay/area_area.c:138 #: ../vector/v.patch/main.c:538 ../vector/v.patch/main.c:555 msgid "Removing duplicates..." msgstr "" -#: ../vector/v.buffer/main.c:804 ../vector/v.in.ogr/main.c:1476 +#: ../vector/v.buffer/main.c:804 ../vector/v.in.ogr/main.c:1478 #: ../vector/v.patch/main.c:551 msgid "Breaking boundaries..." msgstr "" @@ -35702,17 +36061,17 @@ msgstr "" msgid "Cleaning boundaries at nodes" msgstr "" -#: ../vector/v.buffer/main.c:819 ../vector/v.in.ogr/main.c:1500 +#: ../vector/v.buffer/main.c:819 ../vector/v.in.ogr/main.c:1502 #: ../vector/v.patch/main.c:570 ../vector/v.voronoi/clean_topo.c:85 msgid "Removing dangles..." msgstr "" -#: ../vector/v.buffer/main.c:822 ../vector/v.in.ogr/main.c:1515 +#: ../vector/v.buffer/main.c:822 ../vector/v.in.ogr/main.c:1517 #: ../vector/v.patch/main.c:576 ../vector/v.voronoi/clean_topo.c:87 msgid "Removing bridges..." msgstr "" -#: ../vector/v.buffer/main.c:825 ../vector/v.overlay/area_area.c:172 +#: ../vector/v.buffer/main.c:825 ../vector/v.overlay/area_area.c:183 msgid "Attaching islands..." msgstr "" @@ -35720,7 +36079,7 @@ msgstr "" msgid "Calculating centroids for all areas..." msgstr "" -#: ../vector/v.buffer/main.c:846 ../vector/v.overlay/area_area.c:185 +#: ../vector/v.buffer/main.c:846 ../vector/v.overlay/area_area.c:196 msgid "Cannot calculate area centroid" msgstr "" @@ -35789,8 +36148,8 @@ msgid "%d polyline stored in output vector map" msgid_plural "%d polylines stored in output vector map" msgstr[0] "" -#: ../vector/v.build.polylines/main.c:243 ../vector/v.category/main.c:964 -#: ../vector/v.net/main.c:157 ../vector/v.proj/main.c:615 +#: ../vector/v.build.polylines/main.c:243 ../vector/v.category/main.c:1001 +#: ../vector/v.net/main.c:159 ../vector/v.proj/main.c:615 #: ../vector/v.rectify/main.c:280 ../vector/v.transform/main.c:314 #: ../vector/v.type/main.c:152 msgid "Failed to copy attribute table to output map" @@ -35854,7 +36213,7 @@ msgstr "" msgid "Vector map <%s> is not in current mapset" msgstr "" -#: ../vector/v.category/main.c:100 ../vector/v.db.connect/main.c:54 +#: ../vector/v.category/main.c:100 ../vector/v.db.connect/main.c:62 msgid "layer" msgstr "" @@ -35891,7 +36250,7 @@ msgid "copy values from one layer to another (e.g. layer=1,2,3 copies values fro msgstr "" #: ../vector/v.category/main.c:146 -msgid "print report (statistics), in shell style: layer type count min max" +msgid "print report (statistics), in CSV style: layer type count min max" msgstr "" #: ../vector/v.category/main.c:148 @@ -35902,155 +36261,175 @@ msgstr "" msgid "print only layer numbers" msgstr "" -#: ../vector/v.category/main.c:173 -msgid "Shell script style, currently only for report" +#: ../vector/v.category/main.c:166 +msgid "plain;Human readable text output;csv;CSV (Comma Separated Values);json;JSON (JavaScript Object Notation);" msgstr "" -#: ../vector/v.category/main.c:175 -msgid "[DEPRECATED] Format: layer type count min max. This flag is obsolete and will be removed in a future release. Use format=shell instead." +#: ../vector/v.category/main.c:177 +msgid "CSV style output, currently only for report [deprecated]" msgstr "" #: ../vector/v.category/main.c:179 +msgid "Format: layer type count min max. This flag is deprecated and will be removed in a future release. Use format=csv instead." +msgstr "" + +#: ../vector/v.category/main.c:183 msgid "Do not copy attribute table(s)" msgstr "" -#: ../vector/v.category/main.c:197 +#: ../vector/v.category/main.c:201 msgid "Database connection and attribute tables for concerned layers are not changed" msgstr "" -#: ../vector/v.category/main.c:234 -msgid "JSON output and shell output cannot be used simultaneously." +#: ../vector/v.category/main.c:243 ../vector/v.db.connect/main.c:179 +msgid "Flag 'g' is deprecated and will be removed in a future release. Please use format=csv instead." msgstr "" -#: ../vector/v.category/main.c:266 ../vector/v.category/main.c:373 -#: ../vector/v.category/main.c:383 ../vector/v.kcv/main.c:96 +#: ../vector/v.category/main.c:247 +msgid "JSON output and CSV output cannot be used simultaneously." +msgstr "" + +#: ../vector/v.category/main.c:277 ../vector/v.category/main.c:388 +#: ../vector/v.category/main.c:398 ../vector/v.kcv/main.c:96 #: ../vector/v.kcv/main.c:188 #, c-format msgid "Unable to open vector map <%s> at topological level %d" msgstr "" -#: ../vector/v.category/main.c:329 +#: ../vector/v.category/main.c:344 msgid "Invalid category number (must be equal to or greater than 0). Normally category number starts at 1." msgstr "" -#: ../vector/v.category/main.c:339 +#: ../vector/v.category/main.c:354 #, c-format msgid "%d error in id option" msgid_plural "%d errors in id option" msgstr[0] "" -#: ../vector/v.category/main.c:349 +#: ../vector/v.category/main.c:364 msgid "Output vector wasn't entered" msgstr "" -#: ../vector/v.category/main.c:401 +#: ../vector/v.category/main.c:416 msgid "Too many layers for this operation" msgstr "" -#: ../vector/v.category/main.c:404 ../vector/v.category/main.c:407 +#: ../vector/v.category/main.c:419 ../vector/v.category/main.c:422 msgid "2 layers must be specified" msgstr "" -#: ../vector/v.category/main.c:415 +#: ../vector/v.category/main.c:430 #, c-format msgid "Categories already exist in layer %d" msgstr "" -#: ../vector/v.category/main.c:459 ../vector/v.drape/main.c:175 +#: ../vector/v.category/main.c:474 ../vector/v.drape/main.c:175 #: ../vector/v.select/select.c:48 msgid "Processing features..." msgstr "" -#: ../vector/v.category/main.c:504 +#: ../vector/v.category/main.c:519 #, c-format msgid "%d new centroid placed in output map" msgid_plural "%d new centroids placed in output map" msgstr[0] "" -#: ../vector/v.category/main.c:811 +#: ../vector/v.category/main.c:834 msgid "Layer/table" msgstr "" -#: ../vector/v.category/main.c:815 +#: ../vector/v.category/main.c:838 msgid "Layer" msgstr "" -#: ../vector/v.category/main.c:817 +#: ../vector/v.category/main.c:840 #, c-format msgid "type count min max\n" msgstr "" -#: ../vector/v.category/main.c:828 +#: ../vector/v.category/main.c:851 msgid "boundary" msgstr "" -#: ../vector/v.category/main.c:845 +#: ../vector/v.category/main.c:868 msgid "face" msgstr "" -#: ../vector/v.category/main.c:850 +#: ../vector/v.category/main.c:873 msgid "kernel" msgstr "" -#: ../vector/v.category/main.c:856 +#: ../vector/v.category/main.c:879 msgid "all" msgstr "" -#: ../vector/v.category/main.c:962 ../vector/v.rectify/main.c:278 +#: ../vector/v.category/main.c:999 ../vector/v.rectify/main.c:278 msgid "Copying attribute table(s)..." msgstr "" -#: ../vector/v.category/main.c:973 +#: ../vector/v.category/main.c:1010 #, c-format msgid "Categories copied from layer %d to layer %d" msgstr "" -#: ../vector/v.category/main.c:978 +#: ../vector/v.category/main.c:1015 #, c-format msgid "%d feature modified." msgid_plural "%d features modified." msgstr[0] "" -#: ../vector/v.class/main.c:49 +#: ../vector/v.class/main.c:58 msgid "Classifies attribute data, e.g. for thematic mapping" msgstr "" -#: ../vector/v.class/main.c:57 +#: ../vector/v.class/main.c:66 msgid "Column name or expression" msgstr "" -#: ../vector/v.class/main.c:89 +#: ../vector/v.class/main.c:98 ../vector/v.db.connect/main.c:91 +msgid "Field separator for printing output" +msgstr "" + +#: ../vector/v.class/main.c:111 msgid "Print only class breaks (without min and max)" msgstr "" -#: ../vector/v.class/main.c:134 +#: ../vector/v.class/main.c:133 +msgid "CSV format cannot be used with the -b flag. Please use the -b flag with the 'list' format instead." +msgstr "" + +#: ../vector/v.class/main.c:138 +msgid "The 'list' format can only be used with the -b flag. Please use -b to enable list output." +msgstr "" + +#: ../vector/v.class/main.c:181 msgid "Unable to sort array of values" msgstr "" -#: ../vector/v.class/main.c:165 +#: ../vector/v.class/main.c:212 msgid "The discontinuities algorithm indicates that some class breaks are not statistically significant at alpha=0.05. You are advised to reduce the number of classes." msgstr "" -#: ../vector/v.class/main.c:193 +#: ../vector/v.class/main.c:295 #, c-format msgid "" "\n" "Classification of %s into %i classes\n" msgstr "" -#: ../vector/v.class/main.c:200 +#: ../vector/v.class/main.c:303 #, c-format msgid "Lowest chi2 = %f\n" msgstr "" -#: ../vector/v.class/main.c:206 +#: ../vector/v.class/main.c:309 #, c-format msgid "" "%15s%15s%15s\n" "\n" msgstr "" -#: ../vector/v.class/main.c:218 +#: ../vector/v.class/main.c:322 #, c-format msgid "" "\n" @@ -36297,12 +36676,12 @@ msgstr "" msgid "Building topology for error vector map..." msgstr "" -#: ../vector/v.clean/prune.c:215 +#: ../vector/v.clean/prune.c:214 #, c-format msgid "%d vertices from input %d (vertices of given type) removed, i.e. %.2f %%" msgstr "" -#: ../vector/v.clean/prune.c:222 +#: ../vector/v.clean/prune.c:221 #, c-format msgid "%d boundaries not pruned because pruning would damage topology" msgstr "" @@ -36509,7 +36888,7 @@ msgstr "" msgid "Layer <%s> not found" msgstr "" -#: ../vector/v.colors.out/make_colors.c:31 ../vector/v.db.connect/main.c:212 +#: ../vector/v.colors.out/make_colors.c:31 ../vector/v.db.connect/main.c:337 #: ../vector/v.db.select/main.c:276 ../vector/v.distance/main.c:557 #: ../vector/v.distance/main.c:639 ../vector/v.extract/main.c:217 #: ../vector/v.extract/main.c:315 ../vector/v.random/main.c:268 @@ -36524,7 +36903,7 @@ msgid "No data selected" msgstr "" #: ../vector/v.colors.out/scan_cats.c:27 ../vector/v.colors/scan_cats.c:19 -#: ../vector/v.colors/scan_z.c:33 ../vector/v.to.db/lines.c:75 +#: ../vector/v.colors/scan_z.c:33 ../vector/v.to.db/lines.c:74 #: ../vector/v.to.db/query.c:23 ../vector/v.to.rast/do_lines.c:34 #: ../vector/v.voronoi/main.c:207 msgid "Reading features..." @@ -36687,7 +37066,7 @@ msgstr "" msgid "Max value (%d) is out of range %d,%d" msgstr "" -#: ../vector/v.colors/write_rgb.c:37 ../vector/v.what.rast/main.c:178 +#: ../vector/v.colors/write_rgb.c:37 ../vector/v.what.rast/main.c:219 #, c-format msgid "Unable to add column <%s> to table <%s>" msgstr "" @@ -36715,86 +37094,86 @@ msgstr "" msgid "Unable to update RGB values" msgstr "" -#: ../vector/v.db.connect/main.c:56 +#: ../vector/v.db.connect/main.c:64 msgid "Prints/sets DB connection for a vector map to attribute table." msgstr "" -#: ../vector/v.db.connect/main.c:78 +#: ../vector/v.db.connect/main.c:86 msgid "Format: layer number[/layer name]" msgstr "" -#: ../vector/v.db.connect/main.c:82 -msgid "Field separator for shell script style output" -msgstr "" - -#: ../vector/v.db.connect/main.c:87 +#: ../vector/v.db.connect/main.c:104 msgid "Print all map connection parameters and exit" msgstr "" -#: ../vector/v.db.connect/main.c:93 -msgid "Print all map connection parameters in shell script style and exit" +#: ../vector/v.db.connect/main.c:110 +msgid "Print all map connection parameters in a legacy format [deprecated]" msgstr "" -#: ../vector/v.db.connect/main.c:95 -msgid "Format: layer[/layer name] table key database driver" +#: ../vector/v.db.connect/main.c:112 +msgid "Order: layer[/layer name] table key database driverThis flag is deprecated and will be removed in a future release. Use format=csv instead." msgstr "" -#: ../vector/v.db.connect/main.c:100 +#: ../vector/v.db.connect/main.c:119 msgid "Print types/names of table columns for specified layer and exit" msgstr "" -#: ../vector/v.db.connect/main.c:107 +#: ../vector/v.db.connect/main.c:126 msgid "Delete connection for certain layer (not the table)" msgstr "" -#: ../vector/v.db.connect/main.c:143 +#: ../vector/v.db.connect/main.c:174 +msgid "The -p or -c flag is required when using the format option." +msgstr "" + +#: ../vector/v.db.connect/main.c:216 msgid "Please choose only one print style" msgstr "" -#: ../vector/v.db.connect/main.c:153 ../vector/v.kcv/main.c:170 +#: ../vector/v.db.connect/main.c:226 ../vector/v.kcv/main.c:170 msgid "Unable to modify vector map stored in other mapset" msgstr "" -#: ../vector/v.db.connect/main.c:161 +#: ../vector/v.db.connect/main.c:234 #, c-format msgid "Map <%s> is not connected to a database" msgstr "" -#: ../vector/v.db.connect/main.c:169 +#: ../vector/v.db.connect/main.c:242 #, c-format msgid "Vector map <%s> is connected by:\n" msgstr "" -#: ../vector/v.db.connect/main.c:190 +#: ../vector/v.db.connect/main.c:287 #, c-format msgid "layer <%d/%s> table <%s> in database <%s> through driver <%s> with key <%s>\n" msgstr "" -#: ../vector/v.db.connect/main.c:198 +#: ../vector/v.db.connect/main.c:295 #, c-format msgid "layer <%d> table <%s> in database <%s> through driver <%s> with key <%s>\n" msgstr "" -#: ../vector/v.db.connect/main.c:270 +#: ../vector/v.db.connect/main.c:469 #, c-format msgid "Use --overwrite to overwrite existing link for layer <%d>" msgstr "" -#: ../vector/v.db.connect/main.c:279 ../vector/v.db.connect/main.c:318 +#: ../vector/v.db.connect/main.c:478 ../vector/v.db.connect/main.c:517 #, c-format msgid "Table <%s> does not exist in database <%s>" msgstr "" -#: ../vector/v.db.connect/main.c:298 ../vector/v.in.db/main.c:191 +#: ../vector/v.db.connect/main.c:497 ../vector/v.in.db/main.c:198 msgid "Data type of key column must be integer" msgstr "" -#: ../vector/v.db.connect/main.c:305 ../vector/v.db.connect/main.c:325 +#: ../vector/v.db.connect/main.c:504 ../vector/v.db.connect/main.c:524 #, c-format msgid "The table <%s> is now part of vector map <%s> and may be deleted or overwritten by GRASS modules" msgstr "" -#: ../vector/v.db.connect/main.c:340 ../vector/v.kcv/main.c:176 +#: ../vector/v.db.connect/main.c:539 ../vector/v.kcv/main.c:176 #: ../vector/v.net.alloc/main.c:328 ../vector/v.net.allpairs/main.c:183 #: ../vector/v.net.centrality/main.c:268 ../vector/v.net.components/main.c:193 #: ../vector/v.net.distance/main.c:297 ../vector/v.net.flow/main.c:183 @@ -36803,16 +37182,16 @@ msgstr "" msgid "Cannot create index" msgstr "" -#: ../vector/v.db.connect/main.c:344 ../vector/v.kcv/main.c:180 +#: ../vector/v.db.connect/main.c:543 ../vector/v.kcv/main.c:180 #, c-format msgid "Cannot grant privileges on table %s" msgstr "" -#: ../vector/v.db.connect/main.c:348 ../vector/v.kcv/main.c:182 +#: ../vector/v.db.connect/main.c:547 ../vector/v.kcv/main.c:182 msgid "Select privileges were granted on the table" msgstr "" -#: ../vector/v.db.connect/main.c:355 +#: ../vector/v.db.connect/main.c:554 msgid "For defining a new connection you have to specify these parameters: driver, database, table [, key [, layer]]" msgstr "" @@ -36896,7 +37275,7 @@ msgid "No attribute table for layer %d" msgstr "" #: ../vector/v.decimate/copy_tab.c:109 ../vector/v.extract/copy_tab.c:114 -#: ../vector/v.vect.stats/main.c:350 ../vector/v.vect.stats/main.c:435 +#: ../vector/v.vect.stats/main.c:389 ../vector/v.vect.stats/main.c:474 #, c-format msgid "Unable to open database <%s> with driver <%s>" msgstr "" @@ -37346,13 +37725,13 @@ msgstr "" msgid "%d categories read from the map don't exist in the table" msgstr "" -#: ../vector/v.distance/main.c:1846 ../vector/v.vect.stats/main.c:779 -#: ../vector/v.what.rast/main.c:683 +#: ../vector/v.distance/main.c:1846 ../vector/v.vect.stats/main.c:854 +#: ../vector/v.what.rast/main.c:798 #, c-format msgid "%d update errors" msgstr "" -#: ../vector/v.distance/main.c:1848 ../vector/v.what.rast/main.c:685 +#: ../vector/v.distance/main.c:1848 ../vector/v.what.rast/main.c:800 #, c-format msgid "%d records updated." msgstr "" @@ -37364,7 +37743,7 @@ msgstr "" msgid "3D" msgstr "" -#: ../vector/v.drape/main.c:59 ../vector/v.what.rast/main.c:76 +#: ../vector/v.drape/main.c:59 ../vector/v.what.rast/main.c:83 #: ../vector/v.what.rast3/main.c:71 msgid "surface information" msgstr "" @@ -37806,7 +38185,7 @@ msgid "%d of %d feature selected from vector map <%s>" msgid_plural "%d of %d features selected from vector map <%s>" msgstr[0] "" -#: ../vector/v.edit/select.c:490 +#: ../vector/v.edit/select.c:493 msgid "Layer must be > 0 for 'where'" msgstr "" @@ -38050,39 +38429,17 @@ msgstr "" msgid "Link to vector map <%s> created." msgstr "" -#: ../vector/v.external/proj.c:35 ../vector/v.in.ogr/main.c:741 -#: ../vector/v.in.ogr/proj.c:36 +#: ../vector/v.external/proj.c:34 ../vector/v.in.ogr/main.c:741 +#: ../vector/v.in.ogr/proj.c:34 #, c-format msgid "Geometry column <%s> not found in input layer <%s>" msgstr "" -#: ../vector/v.external/proj.c:49 ../vector/v.in.ogr/proj.c:50 -msgid "Unable to convert input layer projection information to GRASS format for checking" -msgstr "" - -#: ../vector/v.external/proj.c:55 ../vector/v.external/proj.c:85 -#: ../vector/v.in.ogr/proj.c:56 ../vector/v.in.ogr/proj.c:86 -msgid "Can't get WKT parameter string" -msgstr "" - -#: ../vector/v.external/proj.c:58 ../vector/v.external/proj.c:88 -#: ../vector/v.in.ogr/proj.c:59 ../vector/v.in.ogr/proj.c:89 -#, c-format -msgid "" -"WKT definition:\n" -"%s" -msgstr "" - -#: ../vector/v.external/proj.c:69 ../vector/v.in.ogr/proj.c:70 +#: ../vector/v.external/proj.c:46 ../vector/v.in.ogr/proj.c:46 #, c-format msgid "No projection information available for layer <%s>" msgstr "" -#: ../vector/v.external/proj.c:78 ../vector/v.in.ogr/proj.c:79 -#, c-format -msgid "Projection for layer <%s> does not contain a valid SRS" -msgstr "" - #: ../vector/v.extract/extract.c:202 #, c-format msgid "No category found for area %d. Skipping." @@ -38554,20 +38911,17 @@ msgstr "" msgid "%d lines/boundaries were not modified due to over-simplification" msgstr "" -#: ../vector/v.generalize/main.c:608 +#: ../vector/v.generalize/main.c:609 #, c-format -msgid "Number of vertices for selected features %s from %d to %d (%d%% remaining)" +msgid "Number of vertices for selected features reduced from %d to %d (%d%% remaining)" msgstr "" -#: ../vector/v.generalize/main.c:610 -msgid "changed" -msgstr "" - -#: ../vector/v.generalize/main.c:610 -msgid "reduced" +#: ../vector/v.generalize/main.c:611 +#, c-format +msgid "Number of vertices for selected features changed from %d to %d (%d%% remaining)" msgstr "" -#: ../vector/v.generalize/misc.c:163 +#: ../vector/v.generalize/misc.c:164 #, c-format msgid "Layer %d" msgstr "" @@ -38828,62 +39182,62 @@ msgid "Unable to close attribute table. The DBMI driver did not accept all attri msgstr "" #: ../vector/v.in.ascii/main.c:578 ../vector/v.in.ascii/main.c:581 -#: ../vector/v.in.ogr/main.c:1953 +#: ../vector/v.in.ogr/main.c:1955 msgid "Import failed" msgstr "" -#: ../vector/v.in.ascii/points.c:82 +#: ../vector/v.in.ascii/points.c:81 msgid "Scanning input for column types..." msgstr "" -#: ../vector/v.in.ascii/points.c:130 +#: ../vector/v.in.ascii/points.c:129 #, c-format msgid "Row %d: '%s' can not be imported into the attribute table" msgstr "" -#: ../vector/v.in.ascii/points.c:135 +#: ../vector/v.in.ascii/points.c:134 #, c-format msgid "Expected %d columns, found %d columns" msgstr "" -#: ../vector/v.in.ascii/points.c:137 ../vector/v.in.ascii/points.c:149 +#: ../vector/v.in.ascii/points.c:136 ../vector/v.in.ascii/points.c:148 #, c-format msgid "Broken row %d: '%s'" msgstr "" -#: ../vector/v.in.ascii/points.c:147 +#: ../vector/v.in.ascii/points.c:146 #, c-format msgid "ntokens: %d, xcol: %d, ycol: %d, zcol: %d" msgstr "" -#: ../vector/v.in.ascii/points.c:198 ../vector/v.in.ascii/points.c:220 +#: ../vector/v.in.ascii/points.c:197 ../vector/v.in.ascii/points.c:219 #, c-format msgid "" "Current row %d:\n" "%s\n" msgstr "" -#: ../vector/v.in.ascii/points.c:200 ../vector/v.in.ascii/points.c:233 +#: ../vector/v.in.ascii/points.c:199 ../vector/v.in.ascii/points.c:232 #, c-format msgid "Unparsable longitude value in column %d: %s" msgstr "" -#: ../vector/v.in.ascii/points.c:223 ../vector/v.in.ascii/points.c:238 +#: ../vector/v.in.ascii/points.c:222 ../vector/v.in.ascii/points.c:237 #, c-format msgid "Unparsable latitude value in column %d: %s" msgstr "" -#: ../vector/v.in.ascii/points.c:331 +#: ../vector/v.in.ascii/points.c:330 #, c-format msgid "Skipping %d of %d row falling outside of current region" msgid_plural "Skipping %d of %d rows falling outside of current region" msgstr[0] "" -#: ../vector/v.in.ascii/points.c:360 +#: ../vector/v.in.ascii/points.c:359 msgid "Importing points..." msgstr "" -#: ../vector/v.in.ascii/points.c:486 ../vector/v.in.dxf/write_vect.c:73 +#: ../vector/v.in.ascii/points.c:485 ../vector/v.in.dxf/write_vect.c:73 #: ../vector/v.mkgrid/main.c:388 ../vector/v.mkgrid/main.c:488 #, c-format msgid "Unable to insert new record: %s" @@ -38931,59 +39285,69 @@ msgstr "" msgid "Use imported table as attribute table for new map" msgstr "" -#: ../vector/v.in.db/main.c:140 +#: ../vector/v.in.db/main.c:126 +#, c-format +msgid "Output vector name too long: <%s>" +msgstr "" + +#: ../vector/v.in.db/main.c:131 +#, c-format +msgid "Mapset name too long: <%s>" +msgstr "" + +#: ../vector/v.in.db/main.c:147 #, c-format msgid "Vector map <%s> cannot be overwritten because input table <%s> is linked to this map." msgstr "" -#: ../vector/v.in.db/main.c:176 +#: ../vector/v.in.db/main.c:183 #, c-format msgid "Output vector map, table <%s> (driver: <%s>, database: <%s>) already exists" msgstr "" -#: ../vector/v.in.db/main.c:196 +#: ../vector/v.in.db/main.c:203 #, c-format msgid "Option <%s> must be specified when -%c flag is given" msgstr "" -#: ../vector/v.in.db/main.c:201 +#: ../vector/v.in.db/main.c:208 #, c-format msgid "Unable to define key column. This operation is not supported by <%s> driver. You need to define <%s> option." msgstr "" -#: ../vector/v.in.db/main.c:239 ../vector/v.voronoi/main.c:429 +#: ../vector/v.in.db/main.c:246 ../vector/v.voronoi/main.c:429 msgid "Writing features..." msgstr "" -#: ../vector/v.in.db/main.c:247 +#: ../vector/v.in.db/main.c:254 msgid "Key column must be integer" msgstr "" -#: ../vector/v.in.db/main.c:260 +#: ../vector/v.in.db/main.c:267 msgid "x/y/z column must be integer or double" msgstr "" -#: ../vector/v.in.db/main.c:286 ../vector/v.net/main.c:155 +#: ../vector/v.in.db/main.c:293 ../vector/v.net/main.c:157 #: ../vector/v.to.3d/main.c:95 ../vector/v.to.3d/main.c:116 #: ../vector/v.transform/main.c:312 msgid "Copying attributes..." msgstr "" -#: ../vector/v.in.db/main.c:293 +#: ../vector/v.in.db/main.c:300 msgid "Unable to copy table" msgstr "" -#: ../vector/v.in.db/main.c:319 +#: ../vector/v.in.db/main.c:326 #, c-format msgid "Unable to add key column <%s>: SERIAL type is not supported by <%s>" msgstr "" -#: ../vector/v.in.db/main.c:330 +#: ../vector/v.in.db/main.c:337 #, c-format msgid "Failed to update key column <%s>" msgstr "" -#: ../vector/v.in.db/main.c:346 +#: ../vector/v.in.db/main.c:353 #, c-format msgid "%d point written to vector map." msgid_plural "%d points written to vector map." @@ -39077,7 +39441,12 @@ msgstr "" msgid "Layer %d: %s" msgstr "" -#: ../vector/v.in.dxf/write_vect.c:247 +#: ../vector/v.in.dxf/write_vect.c:151 +#, c-format +msgid "Layer name <%s> is too long" +msgstr "" + +#: ../vector/v.in.dxf/write_vect.c:251 #, c-format msgid "Unable to add database link for vector map <%s>" msgstr "" @@ -39221,11 +39590,11 @@ msgid "Storing generated point IDs as categories in the layer <%d>, consequently msgstr "" #: ../vector/v.in.lidar/main.c:457 ../vector/v.in.ogr/main.c:724 -#: ../vector/v.in.ogr/main.c:2170 +#: ../vector/v.in.ogr/main.c:2172 msgid "Select either the current region flag or the spatial option, not both" msgstr "" -#: ../vector/v.in.lidar/main.c:487 ../vector/v.in.ogr/main.c:2198 +#: ../vector/v.in.lidar/main.c:487 ../vector/v.in.ogr/main.c:2200 msgid "4 parameters required for 'spatial' parameter" msgstr "" @@ -39360,7 +39729,7 @@ msgstr "" msgid "Number of OSM line splits: %d" msgstr "" -#: ../vector/v.in.ogr/clean.c:123 ../vector/v.overlay/area_area.c:168 +#: ../vector/v.in.ogr/clean.c:123 ../vector/v.overlay/area_area.c:179 msgid "Merging lines..." msgstr "" @@ -39551,7 +39920,7 @@ msgstr "" msgid "When creating a new project, the current region can not be used as spatial filter, disabling" msgstr "" -#: ../vector/v.in.ogr/main.c:751 ../vector/v.in.ogr/main.c:2056 +#: ../vector/v.in.ogr/main.c:751 ../vector/v.in.ogr/main.c:2058 #, c-format msgid "Error setting attribute filter '%s'" msgstr "" @@ -39636,213 +40005,206 @@ msgstr "" msgid "Cannot insert new row for input layer <%s>: %s" msgstr "" -#: ../vector/v.in.ogr/main.c:1373 -#, c-format -msgid "%d %s without geometry in input layer <%s> skipped" -msgstr "" - #: ../vector/v.in.ogr/main.c:1374 -msgid "feature" -msgstr "" - -#: ../vector/v.in.ogr/main.c:1374 -msgid "features" -msgstr "" +#, c-format +msgid "%d feature without geometry in input layer <%s> skipped" +msgid_plural "%d features without geometry in input layer <%s> skipped" +msgstr[0] "" -#: ../vector/v.in.ogr/main.c:1397 +#: ../vector/v.in.ogr/main.c:1399 #, c-format msgid "Unable to drop table: '%s'" msgstr "" -#: ../vector/v.in.ogr/main.c:1438 +#: ../vector/v.in.ogr/main.c:1440 msgid "Cleaning polygons" msgstr "" -#: ../vector/v.in.ogr/main.c:1442 ../vector/v.patch/main.c:529 +#: ../vector/v.in.ogr/main.c:1444 ../vector/v.patch/main.c:529 #, c-format msgid "Snapping boundaries (threshold = %.3e)..." msgstr "" -#: ../vector/v.in.ogr/main.c:1484 ../vector/v.overlay/area_area.c:130 +#: ../vector/v.in.ogr/main.c:1486 ../vector/v.overlay/area_area.c:141 #: ../vector/v.patch/main.c:559 msgid "Cleaning boundaries at nodes..." msgstr "" -#: ../vector/v.in.ogr/main.c:1490 ../vector/v.patch/main.c:566 +#: ../vector/v.in.ogr/main.c:1492 ../vector/v.patch/main.c:566 msgid "Merging boundaries..." msgstr "" -#: ../vector/v.in.ogr/main.c:1496 +#: ../vector/v.in.ogr/main.c:1498 msgid "Changing boundary dangles to lines..." msgstr "" -#: ../vector/v.in.ogr/main.c:1509 +#: ../vector/v.in.ogr/main.c:1511 msgid "Changing boundary bridges to lines..." msgstr "" -#: ../vector/v.in.ogr/main.c:1558 +#: ../vector/v.in.ogr/main.c:1560 #, c-format msgid "Finding centroids for OGR layer <%s>..." msgstr "" -#: ../vector/v.in.ogr/main.c:1597 +#: ../vector/v.in.ogr/main.c:1599 #, c-format msgid "The order of features in input layer <%s> has changed" msgstr "" -#: ../vector/v.in.ogr/main.c:1628 ../vector/v.overlay/area_area.c:294 +#: ../vector/v.in.ogr/main.c:1630 ../vector/v.overlay/area_area.c:305 msgid "Writing centroids..." msgstr "" -#: ../vector/v.in.ogr/main.c:1674 +#: ../vector/v.in.ogr/main.c:1676 #, c-format msgid "%d input polygons\n" msgstr "" -#: ../vector/v.in.ogr/main.c:1675 +#: ../vector/v.in.ogr/main.c:1677 #, c-format msgid "%d input polygons" msgstr "" -#: ../vector/v.in.ogr/main.c:1678 +#: ../vector/v.in.ogr/main.c:1680 #, c-format msgid "Total area: %G (%d areas)\n" msgstr "" -#: ../vector/v.in.ogr/main.c:1680 +#: ../vector/v.in.ogr/main.c:1682 #, c-format msgid "Total area: %G (%d areas)" msgstr "" -#: ../vector/v.in.ogr/main.c:1683 +#: ../vector/v.in.ogr/main.c:1685 #, c-format msgid "Overlapping area: %G (%d areas)\n" msgstr "" -#: ../vector/v.in.ogr/main.c:1686 +#: ../vector/v.in.ogr/main.c:1688 #, c-format msgid "Overlapping area: %G (%d areas)" msgstr "" -#: ../vector/v.in.ogr/main.c:1691 +#: ../vector/v.in.ogr/main.c:1693 #, c-format msgid "Area without category: %G (%d areas)\n" msgstr "" -#: ../vector/v.in.ogr/main.c:1694 +#: ../vector/v.in.ogr/main.c:1696 #, c-format msgid "Area without category: %G (%d areas)" msgstr "" -#: ../vector/v.in.ogr/main.c:1820 +#: ../vector/v.in.ogr/main.c:1822 msgid "The output contains topological errors:" msgstr "" -#: ../vector/v.in.ogr/main.c:1824 +#: ../vector/v.in.ogr/main.c:1826 #, c-format msgid "Unable to calculate a centroid for %d areas" msgstr "" -#: ../vector/v.in.ogr/main.c:1830 +#: ../vector/v.in.ogr/main.c:1832 #, c-format msgid "Number of incorrect boundaries: %d" msgstr "" -#: ../vector/v.in.ogr/main.c:1836 +#: ../vector/v.in.ogr/main.c:1838 #, c-format msgid "Number of centroids outside area: %d" msgstr "" -#: ../vector/v.in.ogr/main.c:1842 +#: ../vector/v.in.ogr/main.c:1844 #, c-format msgid "Number of duplicate centroids: %d" msgstr "" -#: ../vector/v.in.ogr/main.c:1846 ../vector/v.in.ogr/main.c:1942 +#: ../vector/v.in.ogr/main.c:1848 ../vector/v.in.ogr/main.c:1944 msgid "The input could be cleaned by snapping vertices to each other." msgstr "" -#: ../vector/v.in.ogr/main.c:1851 ../vector/v.in.ogr/main.c:1898 -#: ../vector/v.in.ogr/main.c:1935 ../vector/v.in.ogr/main.c:1945 +#: ../vector/v.in.ogr/main.c:1853 ../vector/v.in.ogr/main.c:1900 +#: ../vector/v.in.ogr/main.c:1937 ../vector/v.in.ogr/main.c:1947 #, c-format msgid "Estimated range of snapping threshold: [%g, %g]" msgstr "" -#: ../vector/v.in.ogr/main.c:1864 ../vector/v.in.ogr/main.c:1875 -#: ../vector/v.in.ogr/main.c:1911 +#: ../vector/v.in.ogr/main.c:1866 ../vector/v.in.ogr/main.c:1877 +#: ../vector/v.in.ogr/main.c:1913 #, c-format msgid "Try to import again, snapping with %g: 'snap=%g'" msgstr "" -#: ../vector/v.in.ogr/main.c:1868 ../vector/v.in.ogr/main.c:1904 +#: ../vector/v.in.ogr/main.c:1870 ../vector/v.in.ogr/main.c:1906 #, c-format msgid "Try to import again, snapping with at least %g: 'snap=%g'" msgstr "" -#: ../vector/v.in.ogr/main.c:1880 ../vector/v.in.ogr/main.c:1916 +#: ../vector/v.in.ogr/main.c:1882 ../vector/v.in.ogr/main.c:1918 msgid "Manual cleaning may be needed." msgstr "" -#: ../vector/v.in.ogr/main.c:1884 +#: ../vector/v.in.ogr/main.c:1886 #, c-format msgid "%d areas represent multiple (overlapping) features, because polygons overlap in input layer(s). Such areas are linked to more than 1 row in attribute table. The number of features for those areas is stored as category in layer %d" msgstr "" -#: ../vector/v.in.ogr/main.c:1893 +#: ../vector/v.in.ogr/main.c:1895 msgid "If overlapping is not desired, the input data can be cleaned by snapping vertices to each other." msgstr "" -#: ../vector/v.in.ogr/main.c:1923 +#: ../vector/v.in.ogr/main.c:1925 #, c-format msgid "%d input polygons got lost during import." msgstr "" -#: ../vector/v.in.ogr/main.c:1928 +#: ../vector/v.in.ogr/main.c:1930 #, c-format msgid "%d additional areas where created during import." msgstr "" -#: ../vector/v.in.ogr/main.c:1933 +#: ../vector/v.in.ogr/main.c:1935 #, c-format msgid "The snapping threshold %g might be too large." msgstr "" -#: ../vector/v.in.ogr/main.c:1938 +#: ../vector/v.in.ogr/main.c:1940 msgid "Try to reduce the snapping threshold or clean the output manually." msgstr "" -#: ../vector/v.in.ogr/main.c:1989 +#: ../vector/v.in.ogr/main.c:1991 msgid "Input data contains 3D features. Created vector is 2D only, disable -2 flag to import 3D vector." msgstr "" -#: ../vector/v.in.ogr/main.c:2009 +#: ../vector/v.in.ogr/main.c:2011 #, c-format msgid "Using GDAL 2.2+ style interleaved reading for GDAL version %d.%d.%d" msgstr "" -#: ../vector/v.in.ogr/main.c:2201 +#: ../vector/v.in.ogr/main.c:2203 msgid "xmin is larger than xmax in 'spatial' parameters" msgstr "" -#: ../vector/v.in.ogr/main.c:2204 +#: ../vector/v.in.ogr/main.c:2206 msgid "ymin is larger than ymax in 'spatial' parameters" msgstr "" -#: ../vector/v.in.ogr/main.c:2224 +#: ../vector/v.in.ogr/main.c:2226 #, c-format msgid "The spatial filter does not overlap with OGR layer <%s>. Nothing to import." msgstr "" -#: ../vector/v.in.ogr/proj.c:168 +#: ../vector/v.in.ogr/proj.c:85 msgid "Layer projections are unreadable" msgstr "" -#: ../vector/v.in.ogr/proj.c:184 +#: ../vector/v.in.ogr/proj.c:93 #, c-format msgid "Projection for layer <%s> is unreadable" msgstr "" -#: ../vector/v.in.ogr/proj.c:236 +#: ../vector/v.in.ogr/proj.c:113 #, c-format msgid "Projection of layer <%s> is different from projection of layer <%s>" msgstr "" @@ -39960,164 +40322,164 @@ msgstr "" msgid "Unable to open driver <%s>" msgstr "" -#: ../vector/v.info/print.c:589 +#: ../vector/v.info/print.c:590 msgid "Name:" msgstr "" -#: ../vector/v.info/print.c:591 +#: ../vector/v.info/print.c:592 msgid "Mapset:" msgstr "" -#: ../vector/v.info/print.c:594 +#: ../vector/v.info/print.c:595 msgid "Project:" msgstr "" -#: ../vector/v.info/print.c:596 +#: ../vector/v.info/print.c:597 msgid "Database:" msgstr "" -#: ../vector/v.info/print.c:599 +#: ../vector/v.info/print.c:600 msgid "Title:" msgstr "" -#: ../vector/v.info/print.c:601 +#: ../vector/v.info/print.c:602 msgid "Map scale:" msgstr "" -#: ../vector/v.info/print.c:604 +#: ../vector/v.info/print.c:605 msgid "Name of creator:" msgstr "" -#: ../vector/v.info/print.c:606 +#: ../vector/v.info/print.c:607 msgid "Organization:" msgstr "" -#: ../vector/v.info/print.c:608 +#: ../vector/v.info/print.c:609 msgid "Source date:" msgstr "" -#: ../vector/v.info/print.c:614 +#: ../vector/v.info/print.c:615 msgid "Timestamp (first layer): " msgstr "" -#: ../vector/v.info/print.c:618 +#: ../vector/v.info/print.c:619 msgid "Timestamp (first layer): none" msgstr "" -#: ../vector/v.info/print.c:625 ../vector/v.info/print.c:647 -#: ../vector/v.info/print.c:684 +#: ../vector/v.info/print.c:626 ../vector/v.info/print.c:648 +#: ../vector/v.info/print.c:685 msgid "Map format:" msgstr "" -#: ../vector/v.info/print.c:630 +#: ../vector/v.info/print.c:631 msgid "OGR layer:" msgstr "" -#: ../vector/v.info/print.c:632 +#: ../vector/v.info/print.c:633 msgid "OGR datasource:" msgstr "" -#: ../vector/v.info/print.c:635 ../vector/v.info/print.c:662 +#: ../vector/v.info/print.c:636 ../vector/v.info/print.c:663 msgid "Feature type:" msgstr "" -#: ../vector/v.info/print.c:652 +#: ../vector/v.info/print.c:653 msgid "DB table:" msgstr "" -#: ../vector/v.info/print.c:654 +#: ../vector/v.info/print.c:655 msgid "DB name:" msgstr "" -#: ../vector/v.info/print.c:658 +#: ../vector/v.info/print.c:659 msgid "Geometry column:" msgstr "" -#: ../vector/v.info/print.c:668 ../vector/v.info/print.c:676 +#: ../vector/v.info/print.c:669 ../vector/v.info/print.c:677 msgid "Topology:" msgstr "" -#: ../vector/v.info/print.c:669 +#: ../vector/v.info/print.c:670 msgid "schema:" msgstr "" -#: ../vector/v.info/print.c:673 +#: ../vector/v.info/print.c:674 msgid "Topology column:" msgstr "" -#: ../vector/v.info/print.c:690 +#: ../vector/v.info/print.c:691 msgid "Type of map" msgstr "" -#: ../vector/v.info/print.c:691 +#: ../vector/v.info/print.c:692 msgid "level" msgstr "" -#: ../vector/v.info/print.c:696 +#: ../vector/v.info/print.c:697 msgid "Number of points:" msgstr "" -#: ../vector/v.info/print.c:698 +#: ../vector/v.info/print.c:699 msgid "Number of centroids:" msgstr "" -#: ../vector/v.info/print.c:701 +#: ../vector/v.info/print.c:702 msgid "Number of lines:" msgstr "" -#: ../vector/v.info/print.c:703 +#: ../vector/v.info/print.c:704 msgid "Number of boundaries:" msgstr "" -#: ../vector/v.info/print.c:706 +#: ../vector/v.info/print.c:707 msgid "Number of areas:" msgstr "" -#: ../vector/v.info/print.c:707 +#: ../vector/v.info/print.c:708 msgid "Number of islands:" msgstr "" -#: ../vector/v.info/print.c:712 +#: ../vector/v.info/print.c:713 msgid "Number of faces:" msgstr "" -#: ../vector/v.info/print.c:713 +#: ../vector/v.info/print.c:714 msgid "Number of kernels:" msgstr "" -#: ../vector/v.info/print.c:717 +#: ../vector/v.info/print.c:718 msgid "Number of volumes:" msgstr "" -#: ../vector/v.info/print.c:718 +#: ../vector/v.info/print.c:719 msgid "Number of holes:" msgstr "" -#: ../vector/v.info/print.c:723 +#: ../vector/v.info/print.c:724 msgid "Map is 3D:" msgstr "" -#: ../vector/v.info/print.c:724 +#: ../vector/v.info/print.c:725 msgid "No" msgstr "" -#: ../vector/v.info/print.c:724 +#: ../vector/v.info/print.c:725 msgid "Yes" msgstr "" -#: ../vector/v.info/print.c:726 +#: ../vector/v.info/print.c:727 msgid "Number of dblinks:" msgstr "" -#: ../vector/v.info/print.c:743 +#: ../vector/v.info/print.c:744 msgid "zone" msgstr "" -#: ../vector/v.info/print.c:775 +#: ../vector/v.info/print.c:776 msgid "Digitization threshold" msgstr "" -#: ../vector/v.info/print.c:777 +#: ../vector/v.info/print.c:778 msgid "Comment" msgstr "" @@ -40382,12 +40744,12 @@ msgstr "" msgid "Maximum value in output: %e." msgstr "" -#: ../vector/v.label.sa/font.c:54 +#: ../vector/v.label.sa/font.c:53 #, c-format msgid "%s: Unable to read font definition file; use the default" msgstr "" -#: ../vector/v.label.sa/font.c:60 +#: ../vector/v.label.sa/font.c:59 #, c-format msgid "%s: No font definition file" msgstr "" @@ -40432,7 +40794,7 @@ msgstr "" msgid "Unable to select attributes" msgstr "" -#: ../vector/v.label.sa/labels.c:244 +#: ../vector/v.label.sa/labels.c:245 #, c-format msgid "Cannot load glyph for '%c'" msgstr "" @@ -41123,10 +41485,10 @@ msgstr "" #: ../vector/v.lrs/v.lrs.label/main.c:332 ../vector/v.out.ogr/attrb.c:55 #: ../vector/v.out.ogr/attrb_fast.c:62 -#: ../vector/v.out.ogr/export_areas_fast.c:118 +#: ../vector/v.out.ogr/export_areas_fast.c:120 #: ../vector/v.out.ogr/export_areas_fast.c:185 -#: ../vector/v.out.ogr/export_areas_fast.c:305 -#: ../vector/v.out.ogr/export_areas_fast.c:410 +#: ../vector/v.out.ogr/export_areas_fast.c:306 +#: ../vector/v.out.ogr/export_areas_fast.c:406 #: ../vector/v.out.ogr/export_lines_fast.c:103 #: ../vector/v.out.ogr/export_lines_fast.c:170 #: ../vector/v.out.ogr/export_lines_fast.c:301 @@ -41479,15 +41841,15 @@ msgstr "" msgid "Neighborhood diameter in map units" msgstr "" -#: ../vector/v.neighbors/main.c:162 ../vector/v.vect.stats/main.c:207 +#: ../vector/v.neighbors/main.c:162 ../vector/v.vect.stats/main.c:215 msgid "Column name of points map to use for statistics" msgstr "" -#: ../vector/v.neighbors/main.c:163 ../vector/v.vect.stats/main.c:208 +#: ../vector/v.neighbors/main.c:163 ../vector/v.vect.stats/main.c:216 msgid "Column of points map must be numeric" msgstr "" -#: ../vector/v.neighbors/main.c:243 ../vector/v.vect.stats/main.c:455 +#: ../vector/v.neighbors/main.c:243 ../vector/v.vect.stats/main.c:494 #, c-format msgid "points_column <%s> of points vector <%s> must be numeric" msgstr "" @@ -41702,7 +42064,7 @@ msgid "Finds articulation points" msgstr "" #: ../vector/v.net.bridge/main.c:98 ../vector/v.to.db/parse.c:40 -#: ../vector/v.vect.stats/main.c:150 +#: ../vector/v.vect.stats/main.c:158 msgid "Feature type" msgstr "" @@ -42462,17 +42824,17 @@ msgstr "" msgid "Performs network maintenance." msgstr "" -#: ../vector/v.net/main.c:121 +#: ../vector/v.net/main.c:123 #, c-format msgid "Unable to open vector map <%s> at topology level %d" msgstr "" -#: ../vector/v.net/main.c:139 +#: ../vector/v.net/main.c:141 #, c-format msgid "%d new points (nodes) written to output." msgstr "" -#: ../vector/v.net/main.c:151 +#: ../vector/v.net/main.c:153 #, c-format msgid "%d lines (network arcs) written to output." msgstr "" @@ -42492,62 +42854,62 @@ msgstr "" msgid "Duplicate nodes at x=%g y=%g z=%g " msgstr "" -#: ../vector/v.net/turntable.c:327 ../vector/v.net/turntable.c:351 -#: ../vector/v.net/turntable.c:372 ../vector/v.net/turntable.c:514 -#: ../vector/v.net/turntable.c:584 +#: ../vector/v.net/turntable.c:326 ../vector/v.net/turntable.c:350 +#: ../vector/v.net/turntable.c:371 ../vector/v.net/turntable.c:513 +#: ../vector/v.net/turntable.c:583 #, c-format msgid "Unable to read line from <%s>." msgstr "" -#: ../vector/v.net/turntable.c:467 ../vector/v.net/turntable.c:555 +#: ../vector/v.net/turntable.c:466 ../vector/v.net/turntable.c:554 msgid "Unable to insert data into turntable." msgstr "" -#: ../vector/v.net/turntable.c:669 +#: ../vector/v.net/turntable.c:668 #, c-format msgid "Unable to open vector map <%s>." msgstr "" -#: ../vector/v.net/turntable.c:673 +#: ../vector/v.net/turntable.c:672 #, c-format msgid "Unable to create vector map <%s>." msgstr "" -#: ../vector/v.net/turntable.c:686 +#: ../vector/v.net/turntable.c:685 #, c-format msgid "Arc layer <%s> does not exist in map <%s>." msgstr "" -#: ../vector/v.net/turntable.c:690 +#: ../vector/v.net/turntable.c:689 #, c-format msgid "" "Layer <%s> already exist in map <%s>.\n" "It will be overwritten by tlayer data." msgstr "" -#: ../vector/v.net/turntable.c:695 +#: ../vector/v.net/turntable.c:694 #, c-format msgid "" "Layer <%s> already exist in map <%s>.\n" "It will be overwritten by tuclayer data." msgstr "" -#: ../vector/v.net/turntable.c:731 +#: ../vector/v.net/turntable.c:730 #, c-format msgid "Unable to open database <%s> using driver <%s>" msgstr "" -#: ../vector/v.net/turntable.c:746 +#: ../vector/v.net/turntable.c:745 #, c-format msgid "Unable to create turntable <%s>." msgstr "" -#: ../vector/v.net/turntable.c:752 +#: ../vector/v.net/turntable.c:751 #, c-format msgid "Unable to connect table <%s> to vector map <%s>." msgstr "" -#: ../vector/v.net/turntable.c:757 +#: ../vector/v.net/turntable.c:756 #, c-format msgid "Unable to create index for column <%s> in table <%s>." msgstr "" @@ -42831,7 +43193,7 @@ msgstr "" msgid "Double values will be converted to integers (column <%s> in table <%s>)" msgstr "" -#: ../vector/v.out.lidar/main.c:157 ../vector/v.univar/main.c:388 +#: ../vector/v.out.lidar/main.c:157 ../vector/v.univar/main.c:408 msgid "Only numeric column type is supported" msgstr "" @@ -43020,7 +43382,7 @@ msgid "List supported output formats and exit" msgstr "" #: ../vector/v.out.ogr/attrb.c:51 ../vector/v.out.ogr/export_areas_fast.c:182 -#: ../vector/v.out.ogr/export_areas_fast.c:407 +#: ../vector/v.out.ogr/export_areas_fast.c:403 #: ../vector/v.out.ogr/export_lines_fast.c:167 #: ../vector/v.out.ogr/export_lines_fast.c:395 #: ../vector/v.out.vtk/writeVTK.c:582 @@ -43053,8 +43415,8 @@ msgstr "" #: ../vector/v.out.ogr/export_areas.c:278 #: ../vector/v.out.ogr/export_areas_fast.c:164 #: ../vector/v.out.ogr/export_areas_fast.c:221 -#: ../vector/v.out.ogr/export_areas_fast.c:379 -#: ../vector/v.out.ogr/export_areas_fast.c:451 +#: ../vector/v.out.ogr/export_areas_fast.c:375 +#: ../vector/v.out.ogr/export_areas_fast.c:447 #: ../vector/v.out.ogr/export_lines.c:131 #: ../vector/v.out.ogr/export_lines.c:229 #: ../vector/v.out.ogr/export_lines.c:278 @@ -43066,10 +43428,8 @@ msgid "Failed to create OGR feature" msgstr "" #: ../vector/v.out.ogr/export_areas.c:168 -#: ../vector/v.out.ogr/export_areas_fast.c:95 -#: ../vector/v.out.ogr/export_areas_fast.c:275 +#: ../vector/v.out.ogr/export_areas_fast.c:276 #: ../vector/v.out.ogr/export_lines.c:177 -#: ../vector/v.out.ogr/export_lines_fast.c:77 #: ../vector/v.out.ogr/export_lines_fast.c:265 #, c-format msgid "Unable to export multi-features. No category index for layer %d." @@ -43077,14 +43437,13 @@ msgstr "" #: ../vector/v.out.ogr/export_areas.c:180 #: ../vector/v.out.ogr/export_areas_fast.c:104 -#: ../vector/v.out.ogr/export_areas_fast.c:288 +#: ../vector/v.out.ogr/export_areas_fast.c:289 #: ../vector/v.out.ogr/export_lines_fast.c:86 #: ../vector/v.out.ogr/export_lines_fast.c:274 msgid "Exporting features with category..." msgstr "" #: ../vector/v.out.ogr/export_areas.c:202 -#: ../vector/v.out.ogr/export_areas_fast.c:353 #: ../vector/v.out.ogr/export_lines.c:212 #: ../vector/v.out.ogr/export_lines_fast.c:349 #, c-format @@ -43093,27 +43452,38 @@ msgstr "" #: ../vector/v.out.ogr/export_areas.c:243 #: ../vector/v.out.ogr/export_areas_fast.c:174 -#: ../vector/v.out.ogr/export_areas_fast.c:395 +#: ../vector/v.out.ogr/export_areas_fast.c:391 #: ../vector/v.out.ogr/export_lines_fast.c:159 #: ../vector/v.out.ogr/export_lines_fast.c:383 msgid "Exporting features without category..." msgstr "" -#: ../vector/v.out.ogr/export_areas_fast.c:114 -#: ../vector/v.out.ogr/export_areas_fast.c:301 +#: ../vector/v.out.ogr/export_areas_fast.c:95 +#: ../vector/v.out.ogr/export_lines_fast.c:77 +#, c-format +msgid "Unable to export features. No category index for layer %d." +msgstr "" + +#: ../vector/v.out.ogr/export_areas_fast.c:116 +#: ../vector/v.out.ogr/export_areas_fast.c:302 #: ../vector/v.out.ogr/export_lines_fast.c:99 #: ../vector/v.out.ogr/export_lines_fast.c:297 #, c-format msgid "Cannot select attributes sorted by %s" msgstr "" -#: ../vector/v.out.ogr/export_areas_fast.c:142 -#: ../vector/v.out.ogr/export_areas_fast.c:328 +#: ../vector/v.out.ogr/export_areas_fast.c:145 +#: ../vector/v.out.ogr/export_areas_fast.c:329 #: ../vector/v.out.ogr/export_lines_fast.c:126 #: ../vector/v.out.ogr/export_lines_fast.c:323 msgid "Category index is not sorted ascending by cat!" msgstr "" +#: ../vector/v.out.ogr/export_areas_fast.c:354 +#, c-format +msgid "Unable to create multi-feature. Category %d not found in area %d, field %d" +msgstr "" + #: ../vector/v.out.ogr/main.c:88 msgid "Exports a vector map layer to any of the supported OGR vector formats." msgstr "" @@ -43612,6 +43982,11 @@ msgstr "" msgid "Cannot select attributes for cat=%d" msgstr "" +#: ../vector/v.out.svg/main.c:414 +#, c-format +msgid "Column name <%s> is too long" +msgstr "" + #: ../vector/v.out.vtk/head.c:26 msgid "writeVTKHeader: Writing VTK-Header" msgstr "" @@ -43736,24 +44111,29 @@ msgstr "" msgid "Snapping boundaries with %g ..." msgstr "" -#: ../vector/v.overlay/area_area.c:113 +#: ../vector/v.overlay/area_area.c:99 +#, c-format +msgid "Line with %d points reduced to %d point, deleting line." +msgstr "" + +#: ../vector/v.overlay/area_area.c:124 #, c-format msgid "%d boundary snapped" msgid_plural "%d boundaries snapped" msgstr[0] "" -#: ../vector/v.overlay/area_area.c:217 +#: ../vector/v.overlay/area_area.c:228 #, c-format msgid "Querying vector map <%s>..." msgstr "" -#: ../vector/v.overlay/area_area.c:281 ../vector/v.overlay/area_area.c:364 -#: ../vector/v.overlay/area_area.c:394 ../vector/v.overlay/line_area.c:391 +#: ../vector/v.overlay/area_area.c:292 ../vector/v.overlay/area_area.c:375 +#: ../vector/v.overlay/area_area.c:405 ../vector/v.overlay/line_area.c:391 #: ../vector/v.overlay/line_area.c:421 msgid "Attribute not found" msgstr "" -#: ../vector/v.overlay/area_area.c:455 +#: ../vector/v.overlay/area_area.c:466 msgid "Copying results to final output map..." msgstr "" @@ -44493,7 +44873,7 @@ msgid "Either '%s' or '%s' must be specified" msgstr "" #: ../vector/v.reclass/main.c:128 ../vector/v.sample/main.c:129 -#: ../vector/v.surf.idw/read_sites.c:54 +#: ../vector/v.surf.idw/read_sites.c:53 #, c-format msgid "Database connection not defined for layer %s" msgstr "" @@ -44832,7 +45212,7 @@ msgstr "" msgid "Do not skip features without category" msgstr "" -#: ../vector/v.select/copy_tabs.c:68 +#: ../vector/v.select/copy_tabs.c:69 #, c-format msgid "Unable to copy table for layer %d" msgstr "" @@ -45188,16 +45568,21 @@ msgstr "" msgid "Interpolating raster map <%s> (%s, %s)..." msgstr "" -#: ../vector/v.surf.idw/read_sites.c:39 +#: ../vector/v.surf.idw/read_sites.c:38 #, c-format msgid "Input vector map <%s> is 2D - using categories to interpolate" msgstr "" -#: ../vector/v.surf.idw/read_sites.c:43 +#: ../vector/v.surf.idw/read_sites.c:42 #, c-format msgid "Input vector map <%s> is 3D - using z-coordinates to interpolate" msgstr "" +#: ../vector/v.surf.idw/read_sites.c:68 +#, c-format +msgid "Column type of column <%s> is not numeric" +msgstr "" + #: ../vector/v.surf.idw/read_sites.c:73 #, c-format msgid "One record selected from table" @@ -45287,7 +45672,7 @@ msgid "Conversion factor for values used for approximation" msgstr "" #: ../vector/v.surf.rst/main.c:423 -msgid "GRASS GIS is not compiled with OpenMP support, parallel computation is disabled." +msgid "GRASS is not compiled with OpenMP support, parallel computation is disabled." msgstr "" #: ../vector/v.surf.rst/main.c:434 ../vector/v.surf.rst/main.c:439 @@ -45333,8 +45718,8 @@ msgstr "" #: ../vector/v.vol.rst/main.c:713 ../vector/v.vol.rst/main.c:736 #: ../vector/v.vol.rst/main.c:759 ../vector/v.vol.rst/main.c:782 #: ../vector/v.vol.rst/user2.c:112 ../vector/v.vol.rst/user2.c:222 -#: ../vector/v.vol.rst/user3.c:264 ../vector/v.vol.rst/user3.c:270 -#: ../vector/v.vol.rst/user3.c:276 +#: ../vector/v.vol.rst/user3.c:265 ../vector/v.vol.rst/user3.c:271 +#: ../vector/v.vol.rst/user3.c:277 #, c-format msgid "Not enough memory for %s" msgstr "" @@ -45577,7 +45962,7 @@ msgstr "" msgid "Category index for vector map <%s> is not sorted" msgstr "" -#: ../vector/v.to.db/main.c:428 ../vector/v.what.rast/main.c:269 +#: ../vector/v.to.db/main.c:428 ../vector/v.what.rast/main.c:310 #, c-format msgid "Unable to write history for vector map <%s>" msgstr "" @@ -45748,41 +46133,41 @@ msgstr "" msgid "Unable to fetch record" msgstr "" -#: ../vector/v.to.db/report.c:32 +#: ../vector/v.to.db/report.c:40 msgid "No totals for selected option" msgstr "" -#: ../vector/v.to.db/report.c:520 +#: ../vector/v.to.db/report.c:535 #, c-format msgid "%d categories read from vector map (layer %d)" msgstr "" -#: ../vector/v.to.db/report.c:524 +#: ../vector/v.to.db/report.c:539 #, c-format msgid "%d records selected from table (layer %d)" msgstr "" -#: ../vector/v.to.db/report.c:527 +#: ../vector/v.to.db/report.c:542 #, c-format msgid "%d categories read from vector map exist in selection from table" msgstr "" -#: ../vector/v.to.db/report.c:531 +#: ../vector/v.to.db/report.c:546 #, c-format msgid "%d categories read from vector map don't exist in selection from table" msgstr "" -#: ../vector/v.to.db/report.c:534 +#: ../vector/v.to.db/report.c:549 #, c-format msgid "%d records updated/inserted (layer %d)" msgstr "" -#: ../vector/v.to.db/report.c:537 +#: ../vector/v.to.db/report.c:552 #, c-format msgid "%d update/insert errors (layer %d)" msgstr "" -#: ../vector/v.to.db/report.c:540 +#: ../vector/v.to.db/report.c:555 #, c-format msgid "%d categories with more points (coordinates not loaded)" msgstr "" @@ -46243,159 +46628,159 @@ msgstr "" msgid "Variance and standard deviation is calculated only for points if specified." msgstr "" -#: ../vector/v.univar/main.c:137 +#: ../vector/v.univar/main.c:140 msgid "Weigh by line length or area size" msgstr "" -#: ../vector/v.univar/main.c:142 +#: ../vector/v.univar/main.c:145 msgid "Calculate geometric distances instead of attribute statistics" msgstr "" -#: ../vector/v.univar/main.c:210 +#: ../vector/v.univar/main.c:230 #, c-format msgid "Geometry distances are not supported for areas. Use '%s' instead." msgstr "" -#: ../vector/v.univar/main.c:215 +#: ../vector/v.univar/main.c:235 msgid "Incompatible vector type(s) specified, only number of features, minimum, maximum and range can be calculated" msgstr "" -#: ../vector/v.univar/main.c:221 +#: ../vector/v.univar/main.c:241 msgid "Extended statistics is currently supported only for points/centroids" msgstr "" -#: ../vector/v.univar/main.c:247 +#: ../vector/v.univar/main.c:267 msgid "'layer' must be > 0 for 'where'." msgstr "" -#: ../vector/v.univar/main.c:264 +#: ../vector/v.univar/main.c:284 #, c-format msgid "Unable select categories from table <%s>" msgstr "" -#: ../vector/v.univar/main.c:275 +#: ../vector/v.univar/main.c:295 #, c-format msgid "Calculating geometric distances between %d primitives..." msgstr "" -#: ../vector/v.univar/main.c:372 +#: ../vector/v.univar/main.c:392 #, c-format msgid " Database connection not defined for layer <%s>" msgstr "" -#: ../vector/v.univar/main.c:728 +#: ../vector/v.univar/main.c:749 msgid "Cannot sort the key/value array" msgstr "" -#: ../vector/v.vect.stats/main.c:134 +#: ../vector/v.vect.stats/main.c:142 msgid "Count points in areas, calculate statistics from point attributes." msgstr "" -#: ../vector/v.vect.stats/main.c:138 +#: ../vector/v.vect.stats/main.c:146 msgid "Name of existing vector map with points" msgstr "" -#: ../vector/v.vect.stats/main.c:143 +#: ../vector/v.vect.stats/main.c:151 msgid "Name of existing vector map with areas" msgstr "" -#: ../vector/v.vect.stats/main.c:156 +#: ../vector/v.vect.stats/main.c:164 msgid "Layer number for points map" msgstr "" -#: ../vector/v.vect.stats/main.c:161 +#: ../vector/v.vect.stats/main.c:169 msgid "Category values for points map" msgstr "" -#: ../vector/v.vect.stats/main.c:166 +#: ../vector/v.vect.stats/main.c:174 msgid "WHERE conditions of SQL statement without 'where' keyword for points map" msgstr "" -#: ../vector/v.vect.stats/main.c:173 +#: ../vector/v.vect.stats/main.c:181 msgid "Layer number for area map" msgstr "" -#: ../vector/v.vect.stats/main.c:178 +#: ../vector/v.vect.stats/main.c:186 msgid "Category values for area map" msgstr "" -#: ../vector/v.vect.stats/main.c:183 +#: ../vector/v.vect.stats/main.c:191 msgid "WHERE conditions of SQL statement without 'where' keyword for area map" msgstr "" -#: ../vector/v.vect.stats/main.c:201 +#: ../vector/v.vect.stats/main.c:209 msgid "Method for aggregate statistics" msgstr "" -#: ../vector/v.vect.stats/main.c:214 +#: ../vector/v.vect.stats/main.c:222 msgid "Column name to upload points count" msgstr "" -#: ../vector/v.vect.stats/main.c:216 +#: ../vector/v.vect.stats/main.c:224 msgid "Column to hold points count, must be of type integer, will be created if not existing" msgstr "" -#: ../vector/v.vect.stats/main.c:222 +#: ../vector/v.vect.stats/main.c:230 msgid "Column name to upload statistics" msgstr "" -#: ../vector/v.vect.stats/main.c:224 +#: ../vector/v.vect.stats/main.c:232 msgid "Column to hold statistics, must be of type double, will be created if not existing" msgstr "" -#: ../vector/v.vect.stats/main.c:234 +#: ../vector/v.vect.stats/main.c:249 msgid "Print output to stdout, do not update attribute table" msgstr "" -#: ../vector/v.vect.stats/main.c:235 +#: ../vector/v.vect.stats/main.c:250 msgid "First column is always area category" msgstr "" -#: ../vector/v.vect.stats/main.c:290 +#: ../vector/v.vect.stats/main.c:329 #, c-format msgid "Vector map <%s> is not in the current mapset <%s> and cannot be updated" msgstr "" -#: ../vector/v.vect.stats/main.c:354 +#: ../vector/v.vect.stats/main.c:393 msgid "count_column is required to upload point counts" msgstr "" -#: ../vector/v.vect.stats/main.c:363 +#: ../vector/v.vect.stats/main.c:402 msgid "count_column must be of type integer" msgstr "" -#: ../vector/v.vect.stats/main.c:376 ../vector/v.vect.stats/main.c:409 +#: ../vector/v.vect.stats/main.c:415 ../vector/v.vect.stats/main.c:448 #, c-format msgid "Unable to add column <%s>" msgstr "" -#: ../vector/v.vect.stats/main.c:383 +#: ../vector/v.vect.stats/main.c:422 msgid "stats_column is required to upload point stats" msgstr "" -#: ../vector/v.vect.stats/main.c:395 +#: ../vector/v.vect.stats/main.c:434 msgid "stats_column must be of type double precision" msgstr "" -#: ../vector/v.vect.stats/main.c:418 +#: ../vector/v.vect.stats/main.c:457 msgid "collecting attributes from points vector..." msgstr "" -#: ../vector/v.vect.stats/main.c:519 +#: ../vector/v.vect.stats/main.c:558 #, c-format msgid "No area categories in vector <%s>, layer <%s>" msgstr "" -#: ../vector/v.vect.stats/main.c:544 +#: ../vector/v.vect.stats/main.c:583 msgid "Selecting points for each area..." msgstr "" -#: ../vector/v.vect.stats/main.c:655 +#: ../vector/v.vect.stats/main.c:694 #, c-format msgid "could not find area category %d" msgstr "" -#: ../vector/v.vect.stats/main.c:777 +#: ../vector/v.vect.stats/main.c:852 #, c-format msgid "%d records updated" msgstr "" @@ -46551,111 +46936,111 @@ msgstr "" msgid "Interpolation failed" msgstr "" -#: ../vector/v.vol.rst/user1.c:105 +#: ../vector/v.vol.rst/user1.c:104 msgid "Column type of wcolumn is not supported (must be integer or double)" msgstr "" -#: ../vector/v.vol.rst/user1.c:120 +#: ../vector/v.vol.rst/user1.c:119 msgid "Cannot read column type of smooth column" msgstr "" -#: ../vector/v.vol.rst/user1.c:123 +#: ../vector/v.vol.rst/user1.c:122 msgid "Column type of smooth column (datetime) is not supported" msgstr "" -#: ../vector/v.vol.rst/user1.c:125 +#: ../vector/v.vol.rst/user1.c:124 msgid "Column type of smooth column is not supported (must be integer or double)" msgstr "" -#: ../vector/v.vol.rst/user1.c:148 +#: ../vector/v.vol.rst/user1.c:147 msgid "Point without category" msgstr "" -#: ../vector/v.vol.rst/user1.c:206 +#: ../vector/v.vol.rst/user1.c:205 msgid "Some points outside of region -- will ignore..." msgstr "" -#: ../vector/v.vol.rst/user1.c:213 +#: ../vector/v.vol.rst/user1.c:212 msgid "Cannot allocate memory for point" msgstr "" -#: ../vector/v.vol.rst/user1.c:221 +#: ../vector/v.vol.rst/user1.c:220 #, c-format msgid "Can't insert %lf,%lf,%lf,%lf,%lf a=%d" msgstr "" -#: ../vector/v.vol.rst/user1.c:270 +#: ../vector/v.vol.rst/user1.c:269 msgid "Strip exists with insufficient data" msgstr "" -#: ../vector/v.vol.rst/user1.c:280 +#: ../vector/v.vol.rst/user1.c:279 msgid "Zero segments!" msgstr "" -#: ../vector/v.vol.rst/user1.c:311 +#: ../vector/v.vol.rst/user1.c:310 #, c-format msgid "There are points outside specified 2D/3D region--ignored %d points (total points: %d)" msgstr "" -#: ../vector/v.vol.rst/user1.c:315 +#: ../vector/v.vol.rst/user1.c:314 #, c-format msgid "Points are more dense than specified 'DMIN'--ignored %d points (remain %d)" msgstr "" -#: ../vector/v.vol.rst/user1.c:321 +#: ../vector/v.vol.rst/user1.c:320 #, c-format msgid "%d points given for interpolation (after thinning) is less than given NPMIN=%d" msgstr "" -#: ../vector/v.vol.rst/user1.c:346 +#: ../vector/v.vol.rst/user1.c:345 #, c-format msgid "There is less than %d points for interpolation, no segmentation is necessary, to run the program faster, set segmax=%d (see manual)" msgstr "" -#: ../vector/v.vol.rst/user1.c:375 +#: ../vector/v.vol.rst/user1.c:374 #, c-format msgid "Mask raster map [%s] not found" msgstr "" -#: ../vector/v.vol.rst/user1.c:390 +#: ../vector/v.vol.rst/user1.c:389 msgid "Bitmap mask created" msgstr "" -#: ../vector/v.vol.rst/user1.c:423 ../vector/v.vol.rst/user1.c:456 -#: ../vector/v.vol.rst/user1.c:511 ../vector/v.vol.rst/user1.c:565 -#: ../vector/v.vol.rst/user1.c:619 ../vector/v.vol.rst/user1.c:673 -#: ../vector/v.vol.rst/user1.c:727 ../vector/v.vol.rst/user1.c:781 +#: ../vector/v.vol.rst/user1.c:421 ../vector/v.vol.rst/user1.c:454 +#: ../vector/v.vol.rst/user1.c:509 ../vector/v.vol.rst/user1.c:563 +#: ../vector/v.vol.rst/user1.c:617 ../vector/v.vol.rst/user1.c:671 +#: ../vector/v.vol.rst/user1.c:725 ../vector/v.vol.rst/user1.c:779 msgid "Unable to read data from temp file" msgstr "" -#: ../vector/v.vol.rst/user1.c:445 ../vector/v.vol.rst/user1.c:500 -#: ../vector/v.vol.rst/user1.c:554 ../vector/v.vol.rst/user1.c:608 -#: ../vector/v.vol.rst/user1.c:662 ../vector/v.vol.rst/user1.c:716 -#: ../vector/v.vol.rst/user1.c:770 +#: ../vector/v.vol.rst/user1.c:443 ../vector/v.vol.rst/user1.c:498 +#: ../vector/v.vol.rst/user1.c:552 ../vector/v.vol.rst/user1.c:606 +#: ../vector/v.vol.rst/user1.c:660 ../vector/v.vol.rst/user1.c:714 +#: ../vector/v.vol.rst/user1.c:768 #, c-format msgid "Unable to open %s for writing" msgstr "" -#: ../vector/v.vol.rst/user1.c:474 ../vector/v.vol.rst/user1.c:529 -#: ../vector/v.vol.rst/user1.c:583 ../vector/v.vol.rst/user1.c:637 -#: ../vector/v.vol.rst/user1.c:691 ../vector/v.vol.rst/user1.c:745 -#: ../vector/v.vol.rst/user1.c:799 +#: ../vector/v.vol.rst/user1.c:472 ../vector/v.vol.rst/user1.c:527 +#: ../vector/v.vol.rst/user1.c:581 ../vector/v.vol.rst/user1.c:635 +#: ../vector/v.vol.rst/user1.c:689 ../vector/v.vol.rst/user1.c:743 +#: ../vector/v.vol.rst/user1.c:797 #, c-format msgid "Error writing cell (%d,%d,%d) with value %f" msgstr "" -#: ../vector/v.vol.rst/user1.c:486 ../vector/v.vol.rst/user1.c:541 -#: ../vector/v.vol.rst/user1.c:595 ../vector/v.vol.rst/user1.c:649 -#: ../vector/v.vol.rst/user1.c:703 ../vector/v.vol.rst/user1.c:757 -#: ../vector/v.vol.rst/user1.c:811 +#: ../vector/v.vol.rst/user1.c:484 ../vector/v.vol.rst/user1.c:539 +#: ../vector/v.vol.rst/user1.c:593 ../vector/v.vol.rst/user1.c:647 +#: ../vector/v.vol.rst/user1.c:701 ../vector/v.vol.rst/user1.c:755 +#: ../vector/v.vol.rst/user1.c:809 #, c-format msgid "Error closing output file %s" msgstr "" -#: ../vector/v.vol.rst/user1.c:489 ../vector/v.vol.rst/user1.c:544 -#: ../vector/v.vol.rst/user1.c:598 ../vector/v.vol.rst/user1.c:652 -#: ../vector/v.vol.rst/user1.c:706 ../vector/v.vol.rst/user1.c:760 -#: ../vector/v.vol.rst/user1.c:814 +#: ../vector/v.vol.rst/user1.c:487 ../vector/v.vol.rst/user1.c:542 +#: ../vector/v.vol.rst/user1.c:596 ../vector/v.vol.rst/user1.c:650 +#: ../vector/v.vol.rst/user1.c:704 ../vector/v.vol.rst/user1.c:758 +#: ../vector/v.vol.rst/user1.c:812 #, c-format msgid "3D raster map <%s> created" msgstr "" @@ -46672,14 +47057,14 @@ msgstr "" msgid "Cannot allocate w" msgstr "" -#: ../vector/v.vol.rst/user3.c:542 +#: ../vector/v.vol.rst/user3.c:543 msgid "Secpar_loop failed" msgstr "" -#: ../vector/v.vol.rst/user3.c:580 ../vector/v.vol.rst/user3.c:589 -#: ../vector/v.vol.rst/user3.c:598 ../vector/v.vol.rst/user3.c:607 -#: ../vector/v.vol.rst/user3.c:616 ../vector/v.vol.rst/user3.c:625 -#: ../vector/v.vol.rst/user3.c:634 ../vector/v.vol.rst/user3.c:643 +#: ../vector/v.vol.rst/user3.c:581 ../vector/v.vol.rst/user3.c:590 +#: ../vector/v.vol.rst/user3.c:599 ../vector/v.vol.rst/user3.c:608 +#: ../vector/v.vol.rst/user3.c:617 ../vector/v.vol.rst/user3.c:626 +#: ../vector/v.vol.rst/user3.c:635 ../vector/v.vol.rst/user3.c:644 msgid "Not enough disk space--cannot write files" msgstr "" @@ -46787,75 +47172,79 @@ msgid "Found %d vertex in <%s>, but at least 2 are needed" msgid_plural "Found %d vertices in <%s>, but at least 2 are needed" msgstr[0] "" -#: ../vector/v.what.rast/main.c:78 +#: ../vector/v.what.rast/main.c:85 msgid "Uploads raster values at positions of vector points to the table." msgstr "" -#: ../vector/v.what.rast/main.c:92 +#: ../vector/v.what.rast/main.c:99 msgid "Name of existing raster map to be queried" msgstr "" -#: ../vector/v.what.rast/main.c:105 +#: ../vector/v.what.rast/main.c:111 +msgid "Field separator for CSV style output" +msgstr "" + +#: ../vector/v.what.rast/main.c:123 msgid "Interpolate values from the nearest four cells" msgstr "" -#: ../vector/v.what.rast/main.c:110 +#: ../vector/v.what.rast/main.c:128 msgid "Print categories and values instead of updating the database" msgstr "" -#: ../vector/v.what.rast/main.c:170 +#: ../vector/v.what.rast/main.c:211 #, c-format msgid "Column <%s> not found in the table <%s>. Creating..." msgstr "" -#: ../vector/v.what.rast/main.c:187 +#: ../vector/v.what.rast/main.c:228 msgid "Raster type is integer and column type is float" msgstr "" -#: ../vector/v.what.rast/main.c:190 +#: ../vector/v.what.rast/main.c:231 msgid "Raster type is float and column type is integer, some data lost!!" msgstr "" -#: ../vector/v.what.rast/main.c:208 ../vector/v.what.rast3/main.c:161 +#: ../vector/v.what.rast/main.c:249 ../vector/v.what.rast3/main.c:161 msgid "Reading features from vector map..." msgstr "" -#: ../vector/v.what.rast/main.c:277 +#: ../vector/v.what.rast/main.c:318 #, c-format msgid "No features of type (%s) found in the current computational region" msgstr "" -#: ../vector/v.what.rast/main.c:301 +#: ../vector/v.what.rast/main.c:342 #, c-format msgid "%d points outside current region were skipped" msgstr "" -#: ../vector/v.what.rast/main.c:305 +#: ../vector/v.what.rast/main.c:346 #, c-format msgid "%d points without category were skipped" msgstr "" -#: ../vector/v.what.rast/main.c:560 ../vector/v.what.rast/main.c:602 +#: ../vector/v.what.rast/main.c:609 ../vector/v.what.rast/main.c:717 #, c-format msgid "Multiple points (%d) of category %d, value set to 'NULL'" msgstr "" -#: ../vector/v.what.rast/main.c:673 +#: ../vector/v.what.rast/main.c:788 #, c-format msgid "%d categories loaded from vector" msgstr "" -#: ../vector/v.what.rast/main.c:675 +#: ../vector/v.what.rast/main.c:790 #, c-format msgid "%d duplicate categories in vector map <%s>" msgstr "" -#: ../vector/v.what.rast/main.c:679 +#: ../vector/v.what.rast/main.c:794 #, c-format msgid "%d categories loaded from table" msgstr "" -#: ../vector/v.what.rast/main.c:680 +#: ../vector/v.what.rast/main.c:795 #, c-format msgid "%d categories from vector missing in table" msgstr "" @@ -46930,89 +47319,113 @@ msgid "%d record updated." msgid_plural "%d records updated." msgstr[0] "" -#: ../vector/v.what/main.c:64 +#: ../vector/v.what/main.c:66 msgid "Queries a vector map at given locations." msgstr "" -#: ../vector/v.what/main.c:84 +#: ../vector/v.what/main.c:86 msgid "Query threshold distance" msgstr "" -#: ../vector/v.what/main.c:85 +#: ../vector/v.what/main.c:87 msgid "Threshold" msgstr "" -#: ../vector/v.what/main.c:88 +#: ../vector/v.what/main.c:90 msgid "Name of attribute column(s)" msgstr "" -#: ../vector/v.what/main.c:89 +#: ../vector/v.what/main.c:91 msgid "Default: all columns" msgstr "" -#: ../vector/v.what/main.c:93 +#: ../vector/v.what/main.c:104 +msgid "Print attribute information" +msgstr "" + +#: ../vector/v.what/main.c:110 +msgid "Print attribute database connection information" +msgstr "" + +#: ../vector/v.what/main.c:115 msgid "Print topological information (debugging)" msgstr "" -#: ../vector/v.what/main.c:98 -msgid "Print attribute information" +#: ../vector/v.what/main.c:117 +msgid "Prints internal information for topology debugging" +msgstr "" + +#: ../vector/v.what/main.c:130 +msgid "Print the stats in JSON [deprecated]" msgstr "" -#: ../vector/v.what/main.c:108 -msgid "Print the stats in JSON" +#: ../vector/v.what/main.c:132 +msgid "This flag is deprecated and will be removed in a future release. Use format=json instead." msgstr "" -#: ../vector/v.what/main.c:114 -msgid "Print multiple features if overlapping features are found" +#: ../vector/v.what/main.c:139 +msgid "Print multiple features for each map if they meet the criteria" msgstr "" -#: ../vector/v.what/main.c:131 +#: ../vector/v.what/main.c:141 +msgid "For JSON, this places features under a \"features\" key" +msgstr "" + +#: ../vector/v.what/main.c:160 msgid "No input vector maps!" msgstr "" -#: ../vector/v.what/main.c:201 +#: ../vector/v.what/main.c:190 +msgid "Flag 'j' is deprecated and will be removed in a future release. Please use format=json instead." +msgstr "" + +#: ../vector/v.what/main.c:215 +msgid "Flag 'i' prints attribute database connection information. It is currently always enabled for backward compatibility, but this behavior will be removed in a future release. Please use the 'i' flag together with the 'a' flag instead." +msgstr "" + +#: ../vector/v.what/main.c:272 #, c-format msgid "Number of given vector maps (%d) differs from number of layers (%d)" msgstr "" -#: ../vector/v.what/main.c:211 +#: ../vector/v.what/main.c:282 #, c-format msgid "You must build topology on vector map <%s>" msgstr "" -#: ../vector/v.what/main.c:229 +#: ../vector/v.what/main.c:301 #, c-format msgid "Unknown input format, skipping: '%s'" msgstr "" -#: ../vector/v.what/what.c:46 +#: ../vector/v.what/what.c:47 msgid "Cannot open driver" msgstr "" -#: ../vector/v.what/what.c:54 +#: ../vector/v.what/what.c:55 msgid "Cannot open database" msgstr "" -#: ../vector/v.what/what.c:68 +#: ../vector/v.what/what.c:69 msgid "Cannot open select cursor" msgstr "" -#: ../vector/v.what/what.c:75 +#: ../vector/v.what/what.c:76 msgid "Cannot fetch next record" msgstr "" -#: ../vector/v.what/what.c:78 +#: ../vector/v.what/what.c:79 msgid "No database record" msgstr "" -#: ../vector/v.what/what.c:182 +#: ../vector/v.what/what.c:222 #, c-format msgid "" "Layer: %d\n" "Category: %d\n" msgstr "" -#: ../vector/v.what/what.c:208 +#: ../vector/v.what/what.c:263 #, c-format msgid "" "\n" @@ -47022,12 +47435,17 @@ msgid "" "Key column: %s\n" msgstr "" -#: ../vector/v.what/what.c:388 +#: ../vector/v.what/what.c:450 +#, c-format +msgid "Vector name <%s> is too long" +msgstr "" + +#: ../vector/v.what/what.c:495 #, c-format msgid "Nothing found.\n" msgstr "" -#: ../vector/v.what/what.c:486 +#: ../vector/v.what/what.c:637 #, c-format msgid "" "Id: %d\n" @@ -47036,12 +47454,12 @@ msgid "" "Right: %d\n" msgstr "" -#: ../vector/v.what/what.c:489 ../vector/v.what/what.c:567 +#: ../vector/v.what/what.c:640 ../vector/v.what/what.c:796 #, c-format msgid "Length: %f\n" msgstr "" -#: ../vector/v.what/what.c:509 +#: ../vector/v.what/what.c:669 #, c-format msgid "" "Node[%d]=%d\n" @@ -47049,7 +47467,7 @@ msgid "" "Coordinates=%.6f,%.6f,%.6f\n" msgstr "" -#: ../vector/v.what/what.c:515 +#: ../vector/v.what/what.c:675 #, c-format msgid "" ",\n" @@ -47058,7 +47476,7 @@ msgid "" "\"Coordinates\": %.6f,%.6f,%.6f" msgstr "" -#: ../vector/v.what/what.c:521 +#: ../vector/v.what/what.c:698 #, c-format msgid "" "Node[%d]: %d\n" @@ -47066,77 +47484,77 @@ msgid "" "Coordinates: %.6f, %.6f, %.6f\n" msgstr "" -#: ../vector/v.what/what.c:541 +#: ../vector/v.what/what.c:741 #, c-format msgid "" "Id: %d\n" "Angle: %.8f\n" msgstr "" -#: ../vector/v.what/what.c:564 +#: ../vector/v.what/what.c:793 #, c-format msgid "Type: %s\n" msgstr "" -#: ../vector/v.what/what.c:565 +#: ../vector/v.what/what.c:794 #, c-format msgid "Id: %d\n" msgstr "" -#: ../vector/v.what/what.c:586 +#: ../vector/v.what/what.c:823 #, c-format msgid "Point height: %f\n" msgstr "" -#: ../vector/v.what/what.c:609 +#: ../vector/v.what/what.c:854 #, c-format msgid "Line height: %f\n" msgstr "" -#: ../vector/v.what/what.c:629 +#: ../vector/v.what/what.c:888 #, c-format msgid "" "Line height min: %f\n" "Line height max: %f\n" msgstr "" -#: ../vector/v.what/what.c:674 +#: ../vector/v.what/what.c:971 #, c-format msgid "" "Type: Area\n" "Area height: %f\n" msgstr "" -#: ../vector/v.what/what.c:688 +#: ../vector/v.what/what.c:994 #, c-format msgid "Type: Area\n" msgstr "" -#: ../vector/v.what/what.c:713 +#: ../vector/v.what/what.c:1031 #, c-format msgid "" "Area: %d\n" "Number of isles: %d\n" msgstr "" -#: ../vector/v.what/what.c:728 +#: ../vector/v.what/what.c:1058 #, c-format msgid "Isle[%d]: %d\n" msgstr "" -#: ../vector/v.what/what.c:748 +#: ../vector/v.what/what.c:1101 #, c-format msgid "Island: %d In area: %d\n" msgstr "" -#: ../vector/v.what/what.c:770 +#: ../vector/v.what/what.c:1144 #, c-format msgid "" "Sq Meters: %.3f\n" "Hectares: %.3f\n" msgstr "" -#: ../vector/v.what/what.c:772 +#: ../vector/v.what/what.c:1146 #, c-format msgid "" "Acres: %.3f\n" diff --git a/locale/po/grasswxpy_ar.po b/locale/po/grasswxpy_ar.po index 276f20b80f7..5466eefb988 100644 --- a/locale/po/grasswxpy_ar.po +++ b/locale/po/grasswxpy_ar.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -197,9 +197,9 @@ msgstr "" #: ../gui/wxpython/animation/dialogs.py:415 #: ../gui/wxpython/gmodeler/preferences.py:730 -#: ../gui/wxpython/gui_core/gselect.py:1629 -#: ../gui/wxpython/gui_core/gselect.py:1646 -#: ../gui/wxpython/gui_core/gselect.py:1647 +#: ../gui/wxpython/gui_core/gselect.py:1633 +#: ../gui/wxpython/gui_core/gselect.py:1650 +#: ../gui/wxpython/gui_core/gselect.py:1651 #: ../gui/wxpython/gui_core/widgets.py:1462 #: ../gui/wxpython/vnet/dialogs.py:1679 msgid "Name:" @@ -249,11 +249,11 @@ msgstr "" #: ../gui/wxpython/animation/dialogs.py:1278 #: ../gui/wxpython/gui_core/forms.py:2009 #: ../gui/wxpython/gui_core/forms.py:2120 -#: ../gui/wxpython/gui_core/gselect.py:1245 -#: ../gui/wxpython/gui_core/gselect.py:1561 -#: ../gui/wxpython/gui_core/gselect.py:1578 -#: ../gui/wxpython/gui_core/gselect.py:1631 -#: ../gui/wxpython/gui_core/gselect.py:1666 +#: ../gui/wxpython/gui_core/gselect.py:1249 +#: ../gui/wxpython/gui_core/gselect.py:1565 +#: ../gui/wxpython/gui_core/gselect.py:1582 +#: ../gui/wxpython/gui_core/gselect.py:1635 +#: ../gui/wxpython/gui_core/gselect.py:1670 #: ../gui/wxpython/location_wizard/wizard.py:1446 #: ../gui/wxpython/location_wizard/wizard.py:1801 #: ../gui/wxpython/modules/import_export.py:862 @@ -451,8 +451,8 @@ msgid "File format:" msgstr "" #: ../gui/wxpython/animation/dialogs.py:1194 -#: ../gui/wxpython/gui_core/gselect.py:1576 -#: ../gui/wxpython/gui_core/gselect.py:1664 +#: ../gui/wxpython/gui_core/gselect.py:1580 +#: ../gui/wxpython/gui_core/gselect.py:1668 msgid "Directory:" msgstr "" @@ -2218,7 +2218,7 @@ msgid "Data type" msgstr "" #: ../gui/wxpython/dbmgr/base.py:3051 ../gui/wxpython/dbmgr/base.py:3203 -#: ../gui/wxpython/dbmgr/base.py:3471 ../gui/wxpython/gui_core/gselect.py:1479 +#: ../gui/wxpython/dbmgr/base.py:3471 ../gui/wxpython/gui_core/gselect.py:1483 msgid "Database" msgstr "" @@ -3588,13 +3588,13 @@ msgid "Delete all" msgstr "" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "No" msgstr "" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "Yes" msgstr "" @@ -4699,7 +4699,7 @@ msgid "Enter file content directly instead of specifying a file. Temporary file msgstr "" #: ../gui/wxpython/gui_core/forms.py:2119 -#: ../gui/wxpython/gui_core/gselect.py:1475 +#: ../gui/wxpython/gui_core/gselect.py:1479 msgid "Directory" msgstr "" @@ -4993,182 +4993,182 @@ msgstr "" msgid "No table linked to layer <{}>." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1244 +#: ../gui/wxpython/gui_core/gselect.py:1248 #: ../gui/wxpython/image2target/ii2t_gis_set.py:1017 msgid "Choose GIS Data Directory" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1456 +#: ../gui/wxpython/gui_core/gselect.py:1460 msgid "Output settings" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1458 +#: ../gui/wxpython/gui_core/gselect.py:1462 msgid "Source input" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1465 +#: ../gui/wxpython/gui_core/gselect.py:1469 msgid "Native" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1471 +#: ../gui/wxpython/gui_core/gselect.py:1475 #: ../gui/wxpython/lmgr/workspace.py:517 msgid "File" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1483 +#: ../gui/wxpython/gui_core/gselect.py:1487 msgid "Protocol" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1494 +#: ../gui/wxpython/gui_core/gselect.py:1498 msgid "Output type" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1496 +#: ../gui/wxpython/gui_core/gselect.py:1500 msgid "Source type" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1514 +#: ../gui/wxpython/gui_core/gselect.py:1518 msgid "All files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1544 +#: ../gui/wxpython/gui_core/gselect.py:1548 msgid "ZIP files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1545 +#: ../gui/wxpython/gui_core/gselect.py:1549 msgid "GZIP files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1546 +#: ../gui/wxpython/gui_core/gselect.py:1550 msgid "TAR files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1550 +#: ../gui/wxpython/gui_core/gselect.py:1554 msgid "TARGZ files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1559 +#: ../gui/wxpython/gui_core/gselect.py:1563 msgid "File:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1560 +#: ../gui/wxpython/gui_core/gselect.py:1564 msgid "Choose file to import" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1577 -#: ../gui/wxpython/gui_core/gselect.py:1665 +#: ../gui/wxpython/gui_core/gselect.py:1581 +#: ../gui/wxpython/gui_core/gselect.py:1669 msgid "Choose input directory" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1598 +#: ../gui/wxpython/gui_core/gselect.py:1602 msgid "Extension:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1630 +#: ../gui/wxpython/gui_core/gselect.py:1634 msgid "Choose file" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1651 -#: ../gui/wxpython/gui_core/gselect.py:2777 +#: ../gui/wxpython/gui_core/gselect.py:1655 +#: ../gui/wxpython/gui_core/gselect.py:2781 msgid "Feature type:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "simple features" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "topological" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1769 -#: ../gui/wxpython/gui_core/gselect.py:1809 -#: ../gui/wxpython/gui_core/gselect.py:1871 -#: ../gui/wxpython/gui_core/gselect.py:1916 +#: ../gui/wxpython/gui_core/gselect.py:1773 +#: ../gui/wxpython/gui_core/gselect.py:1813 +#: ../gui/wxpython/gui_core/gselect.py:1875 +#: ../gui/wxpython/gui_core/gselect.py:1920 msgid "Creation options:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1786 -#: ../gui/wxpython/gui_core/gselect.py:1832 -#: ../gui/wxpython/gui_core/gselect.py:1897 +#: ../gui/wxpython/gui_core/gselect.py:1790 +#: ../gui/wxpython/gui_core/gselect.py:1836 +#: ../gui/wxpython/gui_core/gselect.py:1901 msgid "Format:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1905 +#: ../gui/wxpython/gui_core/gselect.py:1909 msgid "Protocol:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1934 +#: ../gui/wxpython/gui_core/gselect.py:1938 msgid "No settings available" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2066 +#: ../gui/wxpython/gui_core/gselect.py:2070 #: ../gui/wxpython/web_services/dialogs.py:302 msgid "No data source defined, settings are not saved." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2098 +#: ../gui/wxpython/gui_core/gselect.py:2102 msgid "PostgreSQL/PostGIS login was not set. Set it via module, please." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2253 +#: ../gui/wxpython/gui_core/gselect.py:2257 #, python-brace-format msgid "Getting raster <{table}> SRID from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2508 +#: ../gui/wxpython/gui_core/gselect.py:2512 #, python-brace-format msgid "Getting list of tables from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2597 +#: ../gui/wxpython/gui_core/gselect.py:2601 #, python-brace-format msgid "Getting list of tables columns data types from PostGIS DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2628 +#: ../gui/wxpython/gui_core/gselect.py:2632 #, python-brace-format msgid "PostgreSQL DB <{psql}> program was not found. Please, install it." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2648 +#: ../gui/wxpython/gui_core/gselect.py:2652 #: ../gui/wxpython/modules/import_export.py:506 msgid "The Python GDAL package is missing. Please install it." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "LineString" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 #: ../gui/wxpython/psmap/dialogs.py:6221 ../gui/wxpython/psmap/toolbars.py:103 #: ../gui/wxpython/vdigit/preferences.py:729 msgid "Point" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "Polygon" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2982 +#: ../gui/wxpython/gui_core/gselect.py:2986 msgid "No vector map selected in layer manager. Operation canceled." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3001 +#: ../gui/wxpython/gui_core/gselect.py:3005 msgid "Input vector map is not selected" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3005 +#: ../gui/wxpython/gui_core/gselect.py:3009 #, python-format msgid "Input vector map <%s> and selected map <%s> in layer manager are different. Operation canceled." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3121 +#: ../gui/wxpython/gui_core/gselect.py:3125 #, python-format msgid "Unable to import C imagery library functions: %s\n" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3199 +#: ../gui/wxpython/gui_core/gselect.py:3203 msgid "No vector map selected" msgstr "" diff --git a/locale/po/grasswxpy_bn.po b/locale/po/grasswxpy_bn.po index aaa89c8de0d..a8baa67ee75 100644 --- a/locale/po/grasswxpy_bn.po +++ b/locale/po/grasswxpy_bn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: grasslibs_bn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2018-09-28 23:33+0200\n" "Last-Translator: \n" "Language-Team: Bengali (https://www.transifex.com/grass-gis/teams/45198/bn/)\n" @@ -198,9 +198,9 @@ msgstr "" #: ../gui/wxpython/animation/dialogs.py:415 #: ../gui/wxpython/gmodeler/preferences.py:730 -#: ../gui/wxpython/gui_core/gselect.py:1629 -#: ../gui/wxpython/gui_core/gselect.py:1646 -#: ../gui/wxpython/gui_core/gselect.py:1647 +#: ../gui/wxpython/gui_core/gselect.py:1633 +#: ../gui/wxpython/gui_core/gselect.py:1650 +#: ../gui/wxpython/gui_core/gselect.py:1651 #: ../gui/wxpython/gui_core/widgets.py:1462 #: ../gui/wxpython/vnet/dialogs.py:1679 msgid "Name:" @@ -250,11 +250,11 @@ msgstr "" #: ../gui/wxpython/animation/dialogs.py:1278 #: ../gui/wxpython/gui_core/forms.py:2009 #: ../gui/wxpython/gui_core/forms.py:2120 -#: ../gui/wxpython/gui_core/gselect.py:1245 -#: ../gui/wxpython/gui_core/gselect.py:1561 -#: ../gui/wxpython/gui_core/gselect.py:1578 -#: ../gui/wxpython/gui_core/gselect.py:1631 -#: ../gui/wxpython/gui_core/gselect.py:1666 +#: ../gui/wxpython/gui_core/gselect.py:1249 +#: ../gui/wxpython/gui_core/gselect.py:1565 +#: ../gui/wxpython/gui_core/gselect.py:1582 +#: ../gui/wxpython/gui_core/gselect.py:1635 +#: ../gui/wxpython/gui_core/gselect.py:1670 #: ../gui/wxpython/location_wizard/wizard.py:1446 #: ../gui/wxpython/location_wizard/wizard.py:1801 #: ../gui/wxpython/modules/import_export.py:862 @@ -452,8 +452,8 @@ msgid "File format:" msgstr "" #: ../gui/wxpython/animation/dialogs.py:1194 -#: ../gui/wxpython/gui_core/gselect.py:1576 -#: ../gui/wxpython/gui_core/gselect.py:1664 +#: ../gui/wxpython/gui_core/gselect.py:1580 +#: ../gui/wxpython/gui_core/gselect.py:1668 msgid "Directory:" msgstr "" @@ -2226,7 +2226,7 @@ msgid "Data type" msgstr "" #: ../gui/wxpython/dbmgr/base.py:3051 ../gui/wxpython/dbmgr/base.py:3203 -#: ../gui/wxpython/dbmgr/base.py:3471 ../gui/wxpython/gui_core/gselect.py:1479 +#: ../gui/wxpython/dbmgr/base.py:3471 ../gui/wxpython/gui_core/gselect.py:1483 msgid "Database" msgstr "" @@ -3596,13 +3596,13 @@ msgid "Delete all" msgstr "" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "No" msgstr "" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "Yes" msgstr "" @@ -4707,7 +4707,7 @@ msgid "Enter file content directly instead of specifying a file. Temporary file msgstr "" #: ../gui/wxpython/gui_core/forms.py:2119 -#: ../gui/wxpython/gui_core/gselect.py:1475 +#: ../gui/wxpython/gui_core/gselect.py:1479 msgid "Directory" msgstr "" @@ -5001,182 +5001,182 @@ msgstr "" msgid "No table linked to layer <{}>." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1244 +#: ../gui/wxpython/gui_core/gselect.py:1248 #: ../gui/wxpython/image2target/ii2t_gis_set.py:1017 msgid "Choose GIS Data Directory" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1456 +#: ../gui/wxpython/gui_core/gselect.py:1460 msgid "Output settings" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1458 +#: ../gui/wxpython/gui_core/gselect.py:1462 msgid "Source input" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1465 +#: ../gui/wxpython/gui_core/gselect.py:1469 msgid "Native" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1471 +#: ../gui/wxpython/gui_core/gselect.py:1475 #: ../gui/wxpython/lmgr/workspace.py:517 msgid "File" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1483 +#: ../gui/wxpython/gui_core/gselect.py:1487 msgid "Protocol" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1494 +#: ../gui/wxpython/gui_core/gselect.py:1498 msgid "Output type" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1496 +#: ../gui/wxpython/gui_core/gselect.py:1500 msgid "Source type" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1514 +#: ../gui/wxpython/gui_core/gselect.py:1518 msgid "All files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1544 +#: ../gui/wxpython/gui_core/gselect.py:1548 msgid "ZIP files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1545 +#: ../gui/wxpython/gui_core/gselect.py:1549 msgid "GZIP files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1546 +#: ../gui/wxpython/gui_core/gselect.py:1550 msgid "TAR files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1550 +#: ../gui/wxpython/gui_core/gselect.py:1554 msgid "TARGZ files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1559 +#: ../gui/wxpython/gui_core/gselect.py:1563 msgid "File:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1560 +#: ../gui/wxpython/gui_core/gselect.py:1564 msgid "Choose file to import" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1577 -#: ../gui/wxpython/gui_core/gselect.py:1665 +#: ../gui/wxpython/gui_core/gselect.py:1581 +#: ../gui/wxpython/gui_core/gselect.py:1669 msgid "Choose input directory" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1598 +#: ../gui/wxpython/gui_core/gselect.py:1602 msgid "Extension:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1630 +#: ../gui/wxpython/gui_core/gselect.py:1634 msgid "Choose file" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1651 -#: ../gui/wxpython/gui_core/gselect.py:2777 +#: ../gui/wxpython/gui_core/gselect.py:1655 +#: ../gui/wxpython/gui_core/gselect.py:2781 msgid "Feature type:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "simple features" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "topological" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1769 -#: ../gui/wxpython/gui_core/gselect.py:1809 -#: ../gui/wxpython/gui_core/gselect.py:1871 -#: ../gui/wxpython/gui_core/gselect.py:1916 +#: ../gui/wxpython/gui_core/gselect.py:1773 +#: ../gui/wxpython/gui_core/gselect.py:1813 +#: ../gui/wxpython/gui_core/gselect.py:1875 +#: ../gui/wxpython/gui_core/gselect.py:1920 msgid "Creation options:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1786 -#: ../gui/wxpython/gui_core/gselect.py:1832 -#: ../gui/wxpython/gui_core/gselect.py:1897 +#: ../gui/wxpython/gui_core/gselect.py:1790 +#: ../gui/wxpython/gui_core/gselect.py:1836 +#: ../gui/wxpython/gui_core/gselect.py:1901 msgid "Format:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1905 +#: ../gui/wxpython/gui_core/gselect.py:1909 msgid "Protocol:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1934 +#: ../gui/wxpython/gui_core/gselect.py:1938 msgid "No settings available" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2066 +#: ../gui/wxpython/gui_core/gselect.py:2070 #: ../gui/wxpython/web_services/dialogs.py:302 msgid "No data source defined, settings are not saved." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2098 +#: ../gui/wxpython/gui_core/gselect.py:2102 msgid "PostgreSQL/PostGIS login was not set. Set it via module, please." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2253 +#: ../gui/wxpython/gui_core/gselect.py:2257 #, python-brace-format msgid "Getting raster <{table}> SRID from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2508 +#: ../gui/wxpython/gui_core/gselect.py:2512 #, python-brace-format msgid "Getting list of tables from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2597 +#: ../gui/wxpython/gui_core/gselect.py:2601 #, python-brace-format msgid "Getting list of tables columns data types from PostGIS DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2628 +#: ../gui/wxpython/gui_core/gselect.py:2632 #, python-brace-format msgid "PostgreSQL DB <{psql}> program was not found. Please, install it." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2648 +#: ../gui/wxpython/gui_core/gselect.py:2652 #: ../gui/wxpython/modules/import_export.py:506 msgid "The Python GDAL package is missing. Please install it." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "LineString" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 #: ../gui/wxpython/psmap/dialogs.py:6221 ../gui/wxpython/psmap/toolbars.py:103 #: ../gui/wxpython/vdigit/preferences.py:729 msgid "Point" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "Polygon" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2982 +#: ../gui/wxpython/gui_core/gselect.py:2986 msgid "No vector map selected in layer manager. Operation canceled." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3001 +#: ../gui/wxpython/gui_core/gselect.py:3005 msgid "Input vector map is not selected" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3005 +#: ../gui/wxpython/gui_core/gselect.py:3009 #, python-format msgid "Input vector map <%s> and selected map <%s> in layer manager are different. Operation canceled." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3121 +#: ../gui/wxpython/gui_core/gselect.py:3125 #, python-format msgid "Unable to import C imagery library functions: %s\n" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3199 +#: ../gui/wxpython/gui_core/gselect.py:3203 msgid "No vector map selected" msgstr "" diff --git a/locale/po/grasswxpy_cs.po b/locale/po/grasswxpy_cs.po index 289a9230bb5..3feadaec618 100644 --- a/locale/po/grasswxpy_cs.po +++ b/locale/po/grasswxpy_cs.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: grasswxpy_cs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-08-26 13:29+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Czech \n" @@ -203,9 +203,9 @@ msgstr "" #: ../gui/wxpython/animation/dialogs.py:415 #: ../gui/wxpython/gmodeler/preferences.py:730 -#: ../gui/wxpython/gui_core/gselect.py:1629 -#: ../gui/wxpython/gui_core/gselect.py:1646 -#: ../gui/wxpython/gui_core/gselect.py:1647 +#: ../gui/wxpython/gui_core/gselect.py:1633 +#: ../gui/wxpython/gui_core/gselect.py:1650 +#: ../gui/wxpython/gui_core/gselect.py:1651 #: ../gui/wxpython/gui_core/widgets.py:1462 #: ../gui/wxpython/vnet/dialogs.py:1679 msgid "Name:" @@ -255,11 +255,11 @@ msgstr "" #: ../gui/wxpython/animation/dialogs.py:1278 #: ../gui/wxpython/gui_core/forms.py:2009 #: ../gui/wxpython/gui_core/forms.py:2120 -#: ../gui/wxpython/gui_core/gselect.py:1245 -#: ../gui/wxpython/gui_core/gselect.py:1561 -#: ../gui/wxpython/gui_core/gselect.py:1578 -#: ../gui/wxpython/gui_core/gselect.py:1631 -#: ../gui/wxpython/gui_core/gselect.py:1666 +#: ../gui/wxpython/gui_core/gselect.py:1249 +#: ../gui/wxpython/gui_core/gselect.py:1565 +#: ../gui/wxpython/gui_core/gselect.py:1582 +#: ../gui/wxpython/gui_core/gselect.py:1635 +#: ../gui/wxpython/gui_core/gselect.py:1670 #: ../gui/wxpython/location_wizard/wizard.py:1446 #: ../gui/wxpython/location_wizard/wizard.py:1801 #: ../gui/wxpython/modules/import_export.py:862 @@ -457,8 +457,8 @@ msgid "File format:" msgstr "Formát souboru:" #: ../gui/wxpython/animation/dialogs.py:1194 -#: ../gui/wxpython/gui_core/gselect.py:1576 -#: ../gui/wxpython/gui_core/gselect.py:1664 +#: ../gui/wxpython/gui_core/gselect.py:1580 +#: ../gui/wxpython/gui_core/gselect.py:1668 msgid "Directory:" msgstr "Adresář:" @@ -2270,7 +2270,7 @@ msgid "Data type" msgstr "Datový typ" #: ../gui/wxpython/dbmgr/base.py:3051 ../gui/wxpython/dbmgr/base.py:3203 -#: ../gui/wxpython/dbmgr/base.py:3471 ../gui/wxpython/gui_core/gselect.py:1479 +#: ../gui/wxpython/dbmgr/base.py:3471 ../gui/wxpython/gui_core/gselect.py:1483 msgid "Database" msgstr "Databáze" @@ -3660,13 +3660,13 @@ msgid "Delete all" msgstr "Odstranit vše" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "No" msgstr "Ne" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "Yes" msgstr "Budiž" @@ -4794,7 +4794,7 @@ msgid "Enter file content directly instead of specifying a file. Temporary file msgstr "" #: ../gui/wxpython/gui_core/forms.py:2119 -#: ../gui/wxpython/gui_core/gselect.py:1475 +#: ../gui/wxpython/gui_core/gselect.py:1479 msgid "Directory" msgstr "Adresář" @@ -5092,182 +5092,182 @@ msgstr "" msgid "No table linked to layer <{}>." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1244 +#: ../gui/wxpython/gui_core/gselect.py:1248 #: ../gui/wxpython/image2target/ii2t_gis_set.py:1017 msgid "Choose GIS Data Directory" msgstr "Zvolit adresář GRASS dat" -#: ../gui/wxpython/gui_core/gselect.py:1456 +#: ../gui/wxpython/gui_core/gselect.py:1460 msgid "Output settings" msgstr "Nastavení výstupu" -#: ../gui/wxpython/gui_core/gselect.py:1458 +#: ../gui/wxpython/gui_core/gselect.py:1462 msgid "Source input" msgstr "Zdroj vstupu" -#: ../gui/wxpython/gui_core/gselect.py:1465 +#: ../gui/wxpython/gui_core/gselect.py:1469 msgid "Native" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1471 +#: ../gui/wxpython/gui_core/gselect.py:1475 #: ../gui/wxpython/lmgr/workspace.py:517 msgid "File" msgstr "Soubor" -#: ../gui/wxpython/gui_core/gselect.py:1483 +#: ../gui/wxpython/gui_core/gselect.py:1487 msgid "Protocol" msgstr "Protokol" -#: ../gui/wxpython/gui_core/gselect.py:1494 +#: ../gui/wxpython/gui_core/gselect.py:1498 msgid "Output type" msgstr "Typ výstupu" -#: ../gui/wxpython/gui_core/gselect.py:1496 +#: ../gui/wxpython/gui_core/gselect.py:1500 msgid "Source type" msgstr "Typ zdroje" -#: ../gui/wxpython/gui_core/gselect.py:1514 +#: ../gui/wxpython/gui_core/gselect.py:1518 msgid "All files" msgstr "Všechny soubory" -#: ../gui/wxpython/gui_core/gselect.py:1544 +#: ../gui/wxpython/gui_core/gselect.py:1548 msgid "ZIP files" msgstr "Soubory ZIP" -#: ../gui/wxpython/gui_core/gselect.py:1545 +#: ../gui/wxpython/gui_core/gselect.py:1549 msgid "GZIP files" msgstr "Soubory GZIP" -#: ../gui/wxpython/gui_core/gselect.py:1546 +#: ../gui/wxpython/gui_core/gselect.py:1550 msgid "TAR files" msgstr "Soubory TAR" -#: ../gui/wxpython/gui_core/gselect.py:1550 +#: ../gui/wxpython/gui_core/gselect.py:1554 msgid "TARGZ files" msgstr "Soubory TARGZ" -#: ../gui/wxpython/gui_core/gselect.py:1559 +#: ../gui/wxpython/gui_core/gselect.py:1563 msgid "File:" msgstr "Soubor:" -#: ../gui/wxpython/gui_core/gselect.py:1560 +#: ../gui/wxpython/gui_core/gselect.py:1564 msgid "Choose file to import" msgstr "Vyberte soubor pro import" -#: ../gui/wxpython/gui_core/gselect.py:1577 -#: ../gui/wxpython/gui_core/gselect.py:1665 +#: ../gui/wxpython/gui_core/gselect.py:1581 +#: ../gui/wxpython/gui_core/gselect.py:1669 msgid "Choose input directory" msgstr "Vyberte vstupní adresář" -#: ../gui/wxpython/gui_core/gselect.py:1598 +#: ../gui/wxpython/gui_core/gselect.py:1602 msgid "Extension:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1630 +#: ../gui/wxpython/gui_core/gselect.py:1634 msgid "Choose file" msgstr "Vyberte soubor" -#: ../gui/wxpython/gui_core/gselect.py:1651 -#: ../gui/wxpython/gui_core/gselect.py:2777 +#: ../gui/wxpython/gui_core/gselect.py:1655 +#: ../gui/wxpython/gui_core/gselect.py:2781 msgid "Feature type:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "simple features" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "topological" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1769 -#: ../gui/wxpython/gui_core/gselect.py:1809 -#: ../gui/wxpython/gui_core/gselect.py:1871 -#: ../gui/wxpython/gui_core/gselect.py:1916 +#: ../gui/wxpython/gui_core/gselect.py:1773 +#: ../gui/wxpython/gui_core/gselect.py:1813 +#: ../gui/wxpython/gui_core/gselect.py:1875 +#: ../gui/wxpython/gui_core/gselect.py:1920 msgid "Creation options:" msgstr "Možnosti vytvoření:" -#: ../gui/wxpython/gui_core/gselect.py:1786 -#: ../gui/wxpython/gui_core/gselect.py:1832 -#: ../gui/wxpython/gui_core/gselect.py:1897 +#: ../gui/wxpython/gui_core/gselect.py:1790 +#: ../gui/wxpython/gui_core/gselect.py:1836 +#: ../gui/wxpython/gui_core/gselect.py:1901 msgid "Format:" msgstr "Formát:" -#: ../gui/wxpython/gui_core/gselect.py:1905 +#: ../gui/wxpython/gui_core/gselect.py:1909 msgid "Protocol:" msgstr "Protokol:" -#: ../gui/wxpython/gui_core/gselect.py:1934 +#: ../gui/wxpython/gui_core/gselect.py:1938 msgid "No settings available" msgstr "Nejsou k dispozici žádná nastavení" -#: ../gui/wxpython/gui_core/gselect.py:2066 +#: ../gui/wxpython/gui_core/gselect.py:2070 #: ../gui/wxpython/web_services/dialogs.py:302 msgid "No data source defined, settings are not saved." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2098 +#: ../gui/wxpython/gui_core/gselect.py:2102 msgid "PostgreSQL/PostGIS login was not set. Set it via module, please." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2253 +#: ../gui/wxpython/gui_core/gselect.py:2257 #, python-brace-format msgid "Getting raster <{table}> SRID from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2508 +#: ../gui/wxpython/gui_core/gselect.py:2512 #, python-brace-format msgid "Getting list of tables from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2597 +#: ../gui/wxpython/gui_core/gselect.py:2601 #, python-brace-format msgid "Getting list of tables columns data types from PostGIS DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2628 +#: ../gui/wxpython/gui_core/gselect.py:2632 #, python-brace-format msgid "PostgreSQL DB <{psql}> program was not found. Please, install it." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2648 +#: ../gui/wxpython/gui_core/gselect.py:2652 #: ../gui/wxpython/modules/import_export.py:506 msgid "The Python GDAL package is missing. Please install it." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "LineString" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 #: ../gui/wxpython/psmap/dialogs.py:6221 ../gui/wxpython/psmap/toolbars.py:103 #: ../gui/wxpython/vdigit/preferences.py:729 msgid "Point" msgstr "Bod" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "Polygon" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2982 +#: ../gui/wxpython/gui_core/gselect.py:2986 msgid "No vector map selected in layer manager. Operation canceled." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3001 +#: ../gui/wxpython/gui_core/gselect.py:3005 msgid "Input vector map is not selected" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3005 +#: ../gui/wxpython/gui_core/gselect.py:3009 #, python-format msgid "Input vector map <%s> and selected map <%s> in layer manager are different. Operation canceled." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3121 +#: ../gui/wxpython/gui_core/gselect.py:3125 #, python-format msgid "Unable to import C imagery library functions: %s\n" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3199 +#: ../gui/wxpython/gui_core/gselect.py:3203 msgid "No vector map selected" msgstr "" @@ -15269,14 +15269,6 @@ msgid "" "\n" msgstr "" -#, fuzzy -#~ msgid "Do you want to create a new project (also known as location)?" -#~ msgstr "Přejete si založit lokaci GRASSu <%s>?" - -#, fuzzy -#~ msgid "Create project?" -#~ msgstr "Vytvořit tabulku?" - #~ msgid " Feature type: " #~ msgstr "Typ prvku:" @@ -15851,6 +15843,10 @@ msgstr "" #~ msgid "Create points/segments" #~ msgstr "Vytvořit body/segmenty" +#, fuzzy +#~ msgid "Create project?" +#~ msgstr "Vytvořit tabulku?" + #~ msgid "Create stationing" #~ msgstr "vytvořit staničení" @@ -16031,6 +16027,10 @@ msgstr "" #~ msgid "Distance to features" #~ msgstr "Vzdálenost k prvkům" +#, fuzzy +#~ msgid "Do you want to create a new project (also known as location)?" +#~ msgstr "Přejete si založit lokaci GRASSu <%s>?" + #~ msgid "Do you want to set the default region extents and resolution now?" #~ msgstr "Přejete si nyní nastavit výchozí nastavení regionu a jeho rozlišení?" diff --git a/locale/po/grasswxpy_de.po b/locale/po/grasswxpy_de.po index 84001188817..233ec774644 100644 --- a/locale/po/grasswxpy_de.po +++ b/locale/po/grasswxpy_de.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: grasswxpy_de\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-08-26 13:29+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: German \n" @@ -204,9 +204,9 @@ msgstr "" #: ../gui/wxpython/animation/dialogs.py:415 #: ../gui/wxpython/gmodeler/preferences.py:730 -#: ../gui/wxpython/gui_core/gselect.py:1629 -#: ../gui/wxpython/gui_core/gselect.py:1646 -#: ../gui/wxpython/gui_core/gselect.py:1647 +#: ../gui/wxpython/gui_core/gselect.py:1633 +#: ../gui/wxpython/gui_core/gselect.py:1650 +#: ../gui/wxpython/gui_core/gselect.py:1651 #: ../gui/wxpython/gui_core/widgets.py:1462 #: ../gui/wxpython/vnet/dialogs.py:1679 msgid "Name:" @@ -256,11 +256,11 @@ msgstr "" #: ../gui/wxpython/animation/dialogs.py:1278 #: ../gui/wxpython/gui_core/forms.py:2009 #: ../gui/wxpython/gui_core/forms.py:2120 -#: ../gui/wxpython/gui_core/gselect.py:1245 -#: ../gui/wxpython/gui_core/gselect.py:1561 -#: ../gui/wxpython/gui_core/gselect.py:1578 -#: ../gui/wxpython/gui_core/gselect.py:1631 -#: ../gui/wxpython/gui_core/gselect.py:1666 +#: ../gui/wxpython/gui_core/gselect.py:1249 +#: ../gui/wxpython/gui_core/gselect.py:1565 +#: ../gui/wxpython/gui_core/gselect.py:1582 +#: ../gui/wxpython/gui_core/gselect.py:1635 +#: ../gui/wxpython/gui_core/gselect.py:1670 #: ../gui/wxpython/location_wizard/wizard.py:1446 #: ../gui/wxpython/location_wizard/wizard.py:1801 #: ../gui/wxpython/modules/import_export.py:862 @@ -458,8 +458,8 @@ msgid "File format:" msgstr "Dateiformat:" #: ../gui/wxpython/animation/dialogs.py:1194 -#: ../gui/wxpython/gui_core/gselect.py:1576 -#: ../gui/wxpython/gui_core/gselect.py:1664 +#: ../gui/wxpython/gui_core/gselect.py:1580 +#: ../gui/wxpython/gui_core/gselect.py:1668 msgid "Directory:" msgstr "Verzeichnis:" @@ -2299,7 +2299,7 @@ msgid "Data type" msgstr "Datentyp" #: ../gui/wxpython/dbmgr/base.py:3051 ../gui/wxpython/dbmgr/base.py:3203 -#: ../gui/wxpython/dbmgr/base.py:3471 ../gui/wxpython/gui_core/gselect.py:1479 +#: ../gui/wxpython/dbmgr/base.py:3471 ../gui/wxpython/gui_core/gselect.py:1483 msgid "Database" msgstr "Datenbank" @@ -3700,13 +3700,13 @@ msgid "Delete all" msgstr "Alle löschen" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "No" msgstr "Nein" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "Yes" msgstr "Ja" @@ -4853,7 +4853,7 @@ msgid "Enter file content directly instead of specifying a file. Temporary file msgstr "" #: ../gui/wxpython/gui_core/forms.py:2119 -#: ../gui/wxpython/gui_core/gselect.py:1475 +#: ../gui/wxpython/gui_core/gselect.py:1479 msgid "Directory" msgstr "Verzeichnis" @@ -5154,182 +5154,182 @@ msgstr "" msgid "No table linked to layer <{}>." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1244 +#: ../gui/wxpython/gui_core/gselect.py:1248 #: ../gui/wxpython/image2target/ii2t_gis_set.py:1017 msgid "Choose GIS Data Directory" msgstr "Wählen Sie das GIS-Datenverzeichnis" -#: ../gui/wxpython/gui_core/gselect.py:1456 +#: ../gui/wxpython/gui_core/gselect.py:1460 msgid "Output settings" msgstr "Einstellungen für Ausgabe" -#: ../gui/wxpython/gui_core/gselect.py:1458 +#: ../gui/wxpython/gui_core/gselect.py:1462 msgid "Source input" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1465 +#: ../gui/wxpython/gui_core/gselect.py:1469 msgid "Native" msgstr "nativ" -#: ../gui/wxpython/gui_core/gselect.py:1471 +#: ../gui/wxpython/gui_core/gselect.py:1475 #: ../gui/wxpython/lmgr/workspace.py:517 msgid "File" msgstr "Datei" -#: ../gui/wxpython/gui_core/gselect.py:1483 +#: ../gui/wxpython/gui_core/gselect.py:1487 msgid "Protocol" msgstr "Protokoll" -#: ../gui/wxpython/gui_core/gselect.py:1494 +#: ../gui/wxpython/gui_core/gselect.py:1498 msgid "Output type" msgstr "Ausgabe Typ" -#: ../gui/wxpython/gui_core/gselect.py:1496 +#: ../gui/wxpython/gui_core/gselect.py:1500 msgid "Source type" msgstr "Typ der Quelle" -#: ../gui/wxpython/gui_core/gselect.py:1514 +#: ../gui/wxpython/gui_core/gselect.py:1518 msgid "All files" msgstr "Alle Dateien" -#: ../gui/wxpython/gui_core/gselect.py:1544 +#: ../gui/wxpython/gui_core/gselect.py:1548 msgid "ZIP files" msgstr "ZIP Dateien" -#: ../gui/wxpython/gui_core/gselect.py:1545 +#: ../gui/wxpython/gui_core/gselect.py:1549 msgid "GZIP files" msgstr "GZIP Dateien" -#: ../gui/wxpython/gui_core/gselect.py:1546 +#: ../gui/wxpython/gui_core/gselect.py:1550 msgid "TAR files" msgstr "TAR Dateien" -#: ../gui/wxpython/gui_core/gselect.py:1550 +#: ../gui/wxpython/gui_core/gselect.py:1554 msgid "TARGZ files" msgstr "TARGZ Dateien" -#: ../gui/wxpython/gui_core/gselect.py:1559 +#: ../gui/wxpython/gui_core/gselect.py:1563 msgid "File:" msgstr "Datei:" -#: ../gui/wxpython/gui_core/gselect.py:1560 +#: ../gui/wxpython/gui_core/gselect.py:1564 msgid "Choose file to import" msgstr "Wählen Sie zu importierende Datei" -#: ../gui/wxpython/gui_core/gselect.py:1577 -#: ../gui/wxpython/gui_core/gselect.py:1665 +#: ../gui/wxpython/gui_core/gselect.py:1581 +#: ../gui/wxpython/gui_core/gselect.py:1669 msgid "Choose input directory" msgstr "Wählen Sie das Eingabe-Verzeichnis" -#: ../gui/wxpython/gui_core/gselect.py:1598 +#: ../gui/wxpython/gui_core/gselect.py:1602 msgid "Extension:" msgstr "Erweiterung:" -#: ../gui/wxpython/gui_core/gselect.py:1630 +#: ../gui/wxpython/gui_core/gselect.py:1634 msgid "Choose file" msgstr "Wählen die Datei" -#: ../gui/wxpython/gui_core/gselect.py:1651 -#: ../gui/wxpython/gui_core/gselect.py:2777 +#: ../gui/wxpython/gui_core/gselect.py:1655 +#: ../gui/wxpython/gui_core/gselect.py:2781 msgid "Feature type:" msgstr "Objekttyp:" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "simple features" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "topological" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1769 -#: ../gui/wxpython/gui_core/gselect.py:1809 -#: ../gui/wxpython/gui_core/gselect.py:1871 -#: ../gui/wxpython/gui_core/gselect.py:1916 +#: ../gui/wxpython/gui_core/gselect.py:1773 +#: ../gui/wxpython/gui_core/gselect.py:1813 +#: ../gui/wxpython/gui_core/gselect.py:1875 +#: ../gui/wxpython/gui_core/gselect.py:1920 msgid "Creation options:" msgstr "Erzeugungsoptionen:" -#: ../gui/wxpython/gui_core/gselect.py:1786 -#: ../gui/wxpython/gui_core/gselect.py:1832 -#: ../gui/wxpython/gui_core/gselect.py:1897 +#: ../gui/wxpython/gui_core/gselect.py:1790 +#: ../gui/wxpython/gui_core/gselect.py:1836 +#: ../gui/wxpython/gui_core/gselect.py:1901 msgid "Format:" msgstr "Format:" -#: ../gui/wxpython/gui_core/gselect.py:1905 +#: ../gui/wxpython/gui_core/gselect.py:1909 msgid "Protocol:" msgstr "Protokoll:" -#: ../gui/wxpython/gui_core/gselect.py:1934 +#: ../gui/wxpython/gui_core/gselect.py:1938 msgid "No settings available" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2066 +#: ../gui/wxpython/gui_core/gselect.py:2070 #: ../gui/wxpython/web_services/dialogs.py:302 msgid "No data source defined, settings are not saved." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2098 +#: ../gui/wxpython/gui_core/gselect.py:2102 msgid "PostgreSQL/PostGIS login was not set. Set it via module, please." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2253 +#: ../gui/wxpython/gui_core/gselect.py:2257 #, python-brace-format msgid "Getting raster <{table}> SRID from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2508 +#: ../gui/wxpython/gui_core/gselect.py:2512 #, python-brace-format msgid "Getting list of tables from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2597 +#: ../gui/wxpython/gui_core/gselect.py:2601 #, python-brace-format msgid "Getting list of tables columns data types from PostGIS DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2628 +#: ../gui/wxpython/gui_core/gselect.py:2632 #, python-brace-format msgid "PostgreSQL DB <{psql}> program was not found. Please, install it." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2648 +#: ../gui/wxpython/gui_core/gselect.py:2652 #: ../gui/wxpython/modules/import_export.py:506 msgid "The Python GDAL package is missing. Please install it." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "LineString" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 #: ../gui/wxpython/psmap/dialogs.py:6221 ../gui/wxpython/psmap/toolbars.py:103 #: ../gui/wxpython/vdigit/preferences.py:729 msgid "Point" msgstr "Punkt" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "Polygon" msgstr "Polygon" -#: ../gui/wxpython/gui_core/gselect.py:2982 +#: ../gui/wxpython/gui_core/gselect.py:2986 msgid "No vector map selected in layer manager. Operation canceled." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3001 +#: ../gui/wxpython/gui_core/gselect.py:3005 msgid "Input vector map is not selected" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3005 +#: ../gui/wxpython/gui_core/gselect.py:3009 #, python-format msgid "Input vector map <%s> and selected map <%s> in layer manager are different. Operation canceled." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3121 +#: ../gui/wxpython/gui_core/gselect.py:3125 #, python-format msgid "Unable to import C imagery library functions: %s\n" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3199 +#: ../gui/wxpython/gui_core/gselect.py:3203 msgid "No vector map selected" msgstr "" @@ -15443,23 +15443,6 @@ msgid "" "\n" msgstr "" -#, fuzzy -#~ msgid "Do you want to create a new project (also known as location)?" -#~ msgstr "Möchten Sie die GRASS Location <%s> erzeugen?" - -#, fuzzy -#~| msgid "&Create mapset" -#~ msgid "Create project?" -#~ msgstr "&Mapset erstellen" - -#~ msgid "Add existing or create new database" -#~ msgstr "Vorhandene Datenbank hinzufügen oder neue Datenbank erstellen" - -#, fuzzy -#~| msgid "Creates new mapset in the current location, changes current mapset." -#~ msgid "Create new project (location) in current GRASS database" -#~ msgstr "Erzeugt neues Mapset in der aktuellen Location, ändert aktuelles Mapset." - #~ msgid " (readonly)" #~ msgstr " (nur Lesen)" @@ -15656,6 +15639,9 @@ msgstr "" #~ msgid "Add default servers" #~ msgstr "Schleife / Serie hinzufügen" +#~ msgid "Add existing or create new database" +#~ msgstr "Vorhandene Datenbank hinzufügen oder neue Datenbank erstellen" + #~ msgid "Add loop / series" #~ msgstr "Schleife / Serie hinzufügen" @@ -16086,6 +16072,11 @@ msgstr "" #~ msgid "Create new location?" #~ msgstr "Neue Location erzeugen?" +#, fuzzy +#~| msgid "Creates new mapset in the current location, changes current mapset." +#~ msgid "Create new project (location) in current GRASS database" +#~ msgstr "Erzeugt neues Mapset in der aktuellen Location, ändert aktuelles Mapset." + #~ msgid "Create new workspace" #~ msgstr "Erzeuge neues Projekt" @@ -16098,6 +16089,11 @@ msgstr "" #~ msgid "Create points/segments" #~ msgstr "Erzeuge Punkte/Segmente" +#, fuzzy +#~| msgid "&Create mapset" +#~ msgid "Create project?" +#~ msgstr "&Mapset erstellen" + #~ msgid "Create stationing" #~ msgstr "Erzeuge Stationen" @@ -16266,6 +16262,10 @@ msgstr "" #~ msgid "Distance to features" #~ msgstr "Distanz zum Objekt" +#, fuzzy +#~ msgid "Do you want to create a new project (also known as location)?" +#~ msgstr "Möchten Sie die GRASS Location <%s> erzeugen?" + #~ msgid "Do you want to set the default region extents and resolution now?" #~ msgstr "Möchten Sie nun die Ausdehnung und Auflösung der Standardregion eingeben?" diff --git a/locale/po/grasswxpy_el.po b/locale/po/grasswxpy_el.po index 75fcd2143ff..0943525c9bf 100644 --- a/locale/po/grasswxpy_el.po +++ b/locale/po/grasswxpy_el.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: grasswxpy_el\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-08-26 14:19+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Greek \n" @@ -199,9 +199,9 @@ msgstr "" #: ../gui/wxpython/animation/dialogs.py:415 #: ../gui/wxpython/gmodeler/preferences.py:730 -#: ../gui/wxpython/gui_core/gselect.py:1629 -#: ../gui/wxpython/gui_core/gselect.py:1646 -#: ../gui/wxpython/gui_core/gselect.py:1647 +#: ../gui/wxpython/gui_core/gselect.py:1633 +#: ../gui/wxpython/gui_core/gselect.py:1650 +#: ../gui/wxpython/gui_core/gselect.py:1651 #: ../gui/wxpython/gui_core/widgets.py:1462 #: ../gui/wxpython/vnet/dialogs.py:1679 msgid "Name:" @@ -251,11 +251,11 @@ msgstr "" #: ../gui/wxpython/animation/dialogs.py:1278 #: ../gui/wxpython/gui_core/forms.py:2009 #: ../gui/wxpython/gui_core/forms.py:2120 -#: ../gui/wxpython/gui_core/gselect.py:1245 -#: ../gui/wxpython/gui_core/gselect.py:1561 -#: ../gui/wxpython/gui_core/gselect.py:1578 -#: ../gui/wxpython/gui_core/gselect.py:1631 -#: ../gui/wxpython/gui_core/gselect.py:1666 +#: ../gui/wxpython/gui_core/gselect.py:1249 +#: ../gui/wxpython/gui_core/gselect.py:1565 +#: ../gui/wxpython/gui_core/gselect.py:1582 +#: ../gui/wxpython/gui_core/gselect.py:1635 +#: ../gui/wxpython/gui_core/gselect.py:1670 #: ../gui/wxpython/location_wizard/wizard.py:1446 #: ../gui/wxpython/location_wizard/wizard.py:1801 #: ../gui/wxpython/modules/import_export.py:862 @@ -453,8 +453,8 @@ msgid "File format:" msgstr "Φορμάτ αρχείου: " #: ../gui/wxpython/animation/dialogs.py:1194 -#: ../gui/wxpython/gui_core/gselect.py:1576 -#: ../gui/wxpython/gui_core/gselect.py:1664 +#: ../gui/wxpython/gui_core/gselect.py:1580 +#: ../gui/wxpython/gui_core/gselect.py:1668 msgid "Directory:" msgstr "" @@ -2236,7 +2236,7 @@ msgid "Data type" msgstr "Τύπος δεδομένων" #: ../gui/wxpython/dbmgr/base.py:3051 ../gui/wxpython/dbmgr/base.py:3203 -#: ../gui/wxpython/dbmgr/base.py:3471 ../gui/wxpython/gui_core/gselect.py:1479 +#: ../gui/wxpython/dbmgr/base.py:3471 ../gui/wxpython/gui_core/gselect.py:1483 msgid "Database" msgstr "Βάση Δεδομένων" @@ -3614,13 +3614,13 @@ msgid "Delete all" msgstr "Διαγραφή όλων" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "No" msgstr "Όχι" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "Yes" msgstr "Ναί" @@ -4742,7 +4742,7 @@ msgid "Enter file content directly instead of specifying a file. Temporary file msgstr "" #: ../gui/wxpython/gui_core/forms.py:2119 -#: ../gui/wxpython/gui_core/gselect.py:1475 +#: ../gui/wxpython/gui_core/gselect.py:1479 msgid "Directory" msgstr "Φάκελος" @@ -5039,182 +5039,182 @@ msgstr "" msgid "No table linked to layer <{}>." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1244 +#: ../gui/wxpython/gui_core/gselect.py:1248 #: ../gui/wxpython/image2target/ii2t_gis_set.py:1017 msgid "Choose GIS Data Directory" msgstr "Επιλογή φακέλου δεδομένων GIS " -#: ../gui/wxpython/gui_core/gselect.py:1456 +#: ../gui/wxpython/gui_core/gselect.py:1460 msgid "Output settings" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1458 +#: ../gui/wxpython/gui_core/gselect.py:1462 msgid "Source input" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1465 +#: ../gui/wxpython/gui_core/gselect.py:1469 msgid "Native" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1471 +#: ../gui/wxpython/gui_core/gselect.py:1475 #: ../gui/wxpython/lmgr/workspace.py:517 msgid "File" msgstr "Αρχείο" -#: ../gui/wxpython/gui_core/gselect.py:1483 +#: ../gui/wxpython/gui_core/gselect.py:1487 msgid "Protocol" msgstr "Πρωτόκολλο" -#: ../gui/wxpython/gui_core/gselect.py:1494 +#: ../gui/wxpython/gui_core/gselect.py:1498 msgid "Output type" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1496 +#: ../gui/wxpython/gui_core/gselect.py:1500 msgid "Source type" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1514 +#: ../gui/wxpython/gui_core/gselect.py:1518 msgid "All files" msgstr "Όλα τα αρχεία" -#: ../gui/wxpython/gui_core/gselect.py:1544 +#: ../gui/wxpython/gui_core/gselect.py:1548 msgid "ZIP files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1545 +#: ../gui/wxpython/gui_core/gselect.py:1549 msgid "GZIP files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1546 +#: ../gui/wxpython/gui_core/gselect.py:1550 msgid "TAR files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1550 +#: ../gui/wxpython/gui_core/gselect.py:1554 msgid "TARGZ files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1559 +#: ../gui/wxpython/gui_core/gselect.py:1563 msgid "File:" msgstr "Αρχείο:" -#: ../gui/wxpython/gui_core/gselect.py:1560 +#: ../gui/wxpython/gui_core/gselect.py:1564 msgid "Choose file to import" msgstr "Επιλογή αρχείου προς εισαγωγή" -#: ../gui/wxpython/gui_core/gselect.py:1577 -#: ../gui/wxpython/gui_core/gselect.py:1665 +#: ../gui/wxpython/gui_core/gselect.py:1581 +#: ../gui/wxpython/gui_core/gselect.py:1669 msgid "Choose input directory" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1598 +#: ../gui/wxpython/gui_core/gselect.py:1602 msgid "Extension:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1630 +#: ../gui/wxpython/gui_core/gselect.py:1634 msgid "Choose file" msgstr "Επιλογή Αρχείου" -#: ../gui/wxpython/gui_core/gselect.py:1651 -#: ../gui/wxpython/gui_core/gselect.py:2777 +#: ../gui/wxpython/gui_core/gselect.py:1655 +#: ../gui/wxpython/gui_core/gselect.py:2781 msgid "Feature type:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "simple features" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "topological" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1769 -#: ../gui/wxpython/gui_core/gselect.py:1809 -#: ../gui/wxpython/gui_core/gselect.py:1871 -#: ../gui/wxpython/gui_core/gselect.py:1916 +#: ../gui/wxpython/gui_core/gselect.py:1773 +#: ../gui/wxpython/gui_core/gselect.py:1813 +#: ../gui/wxpython/gui_core/gselect.py:1875 +#: ../gui/wxpython/gui_core/gselect.py:1920 msgid "Creation options:" msgstr "Επιλογές δημιουργίας:" -#: ../gui/wxpython/gui_core/gselect.py:1786 -#: ../gui/wxpython/gui_core/gselect.py:1832 -#: ../gui/wxpython/gui_core/gselect.py:1897 +#: ../gui/wxpython/gui_core/gselect.py:1790 +#: ../gui/wxpython/gui_core/gselect.py:1836 +#: ../gui/wxpython/gui_core/gselect.py:1901 msgid "Format:" msgstr "Φορμά:" -#: ../gui/wxpython/gui_core/gselect.py:1905 +#: ../gui/wxpython/gui_core/gselect.py:1909 msgid "Protocol:" msgstr "Πρωτόκολλο:" -#: ../gui/wxpython/gui_core/gselect.py:1934 +#: ../gui/wxpython/gui_core/gselect.py:1938 msgid "No settings available" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2066 +#: ../gui/wxpython/gui_core/gselect.py:2070 #: ../gui/wxpython/web_services/dialogs.py:302 msgid "No data source defined, settings are not saved." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2098 +#: ../gui/wxpython/gui_core/gselect.py:2102 msgid "PostgreSQL/PostGIS login was not set. Set it via module, please." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2253 +#: ../gui/wxpython/gui_core/gselect.py:2257 #, python-brace-format msgid "Getting raster <{table}> SRID from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2508 +#: ../gui/wxpython/gui_core/gselect.py:2512 #, python-brace-format msgid "Getting list of tables from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2597 +#: ../gui/wxpython/gui_core/gselect.py:2601 #, python-brace-format msgid "Getting list of tables columns data types from PostGIS DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2628 +#: ../gui/wxpython/gui_core/gselect.py:2632 #, python-brace-format msgid "PostgreSQL DB <{psql}> program was not found. Please, install it." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2648 +#: ../gui/wxpython/gui_core/gselect.py:2652 #: ../gui/wxpython/modules/import_export.py:506 msgid "The Python GDAL package is missing. Please install it." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "LineString" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 #: ../gui/wxpython/psmap/dialogs.py:6221 ../gui/wxpython/psmap/toolbars.py:103 #: ../gui/wxpython/vdigit/preferences.py:729 msgid "Point" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "Polygon" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2982 +#: ../gui/wxpython/gui_core/gselect.py:2986 msgid "No vector map selected in layer manager. Operation canceled." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3001 +#: ../gui/wxpython/gui_core/gselect.py:3005 msgid "Input vector map is not selected" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3005 +#: ../gui/wxpython/gui_core/gselect.py:3009 #, python-format msgid "Input vector map <%s> and selected map <%s> in layer manager are different. Operation canceled." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3121 +#: ../gui/wxpython/gui_core/gselect.py:3125 #, python-format msgid "Unable to import C imagery library functions: %s\n" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3199 +#: ../gui/wxpython/gui_core/gselect.py:3203 msgid "No vector map selected" msgstr "" @@ -15083,17 +15083,6 @@ msgid "" "\n" msgstr "" -#, fuzzy -#~ msgid "Do you want to create a new project (also known as location)?" -#~ msgstr "" -#~ "Η Τοποθεσία <%s> δημιουργήθηκε.\n" -#~ "\n" -#~ "Θέλετε να γίνει αλλαγή στην νέα Τοποθεσία;" - -#, fuzzy -#~ msgid "Create project?" -#~ msgstr "Δημιουργία πίνακα;" - #~ msgid " (readonly)" #~ msgstr "(μονο για ανάγνωση)" @@ -15203,6 +15192,10 @@ msgstr "" #~ msgid "Create new workspace" #~ msgstr "Δημιουργία νέας Επιφάνειας Εργασίας" +#, fuzzy +#~ msgid "Create project?" +#~ msgstr "Δημιουργία πίνακα;" + #~ msgid "Create/edit group" #~ msgstr "Δημιουργία/επεξεργασία ομάδων" @@ -15225,6 +15218,13 @@ msgstr "" #~ msgid "Data file <%(name)s> imported successfully." #~ msgstr "Ο διανυσματικός χάρτης <%(name)s> (%(type)s) απεφορτώθηκε επιτυχώς." +#, fuzzy +#~ msgid "Do you want to create a new project (also known as location)?" +#~ msgstr "" +#~ "Η Τοποθεσία <%s> δημιουργήθηκε.\n" +#~ "\n" +#~ "Θέλετε να γίνει αλλαγή στην νέα Τοποθεσία;" + #~ msgid "Do you want to set the default region extents and resolution now?" #~ msgstr "Θέλετε να θέσετε τα προεπιλεγμένα όρια και ανάλυση της Τοποθεσίας;" diff --git a/locale/po/grasswxpy_es.po b/locale/po/grasswxpy_es.po index 23e13725262..3f98bd01513 100644 --- a/locale/po/grasswxpy_es.po +++ b/locale/po/grasswxpy_es.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: grasswxpy_es\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-08-26 13:29+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Spanish \n" @@ -205,9 +205,9 @@ msgstr "Seleccionar vista 2D o 3D" #: ../gui/wxpython/animation/dialogs.py:415 #: ../gui/wxpython/gmodeler/preferences.py:730 -#: ../gui/wxpython/gui_core/gselect.py:1629 -#: ../gui/wxpython/gui_core/gselect.py:1646 -#: ../gui/wxpython/gui_core/gselect.py:1647 +#: ../gui/wxpython/gui_core/gselect.py:1633 +#: ../gui/wxpython/gui_core/gselect.py:1650 +#: ../gui/wxpython/gui_core/gselect.py:1651 #: ../gui/wxpython/gui_core/widgets.py:1462 #: ../gui/wxpython/vnet/dialogs.py:1679 msgid "Name:" @@ -259,11 +259,11 @@ msgstr "Escojer archivo Entorno de trabajo para importar parámetros de vista 3D #: ../gui/wxpython/animation/dialogs.py:1278 #: ../gui/wxpython/gui_core/forms.py:2009 #: ../gui/wxpython/gui_core/forms.py:2120 -#: ../gui/wxpython/gui_core/gselect.py:1245 -#: ../gui/wxpython/gui_core/gselect.py:1561 -#: ../gui/wxpython/gui_core/gselect.py:1578 -#: ../gui/wxpython/gui_core/gselect.py:1631 -#: ../gui/wxpython/gui_core/gselect.py:1666 +#: ../gui/wxpython/gui_core/gselect.py:1249 +#: ../gui/wxpython/gui_core/gselect.py:1565 +#: ../gui/wxpython/gui_core/gselect.py:1582 +#: ../gui/wxpython/gui_core/gselect.py:1635 +#: ../gui/wxpython/gui_core/gselect.py:1670 #: ../gui/wxpython/location_wizard/wizard.py:1446 #: ../gui/wxpython/location_wizard/wizard.py:1801 #: ../gui/wxpython/modules/import_export.py:862 @@ -461,8 +461,8 @@ msgid "File format:" msgstr "Formato del archivo:" #: ../gui/wxpython/animation/dialogs.py:1194 -#: ../gui/wxpython/gui_core/gselect.py:1576 -#: ../gui/wxpython/gui_core/gselect.py:1664 +#: ../gui/wxpython/gui_core/gselect.py:1580 +#: ../gui/wxpython/gui_core/gselect.py:1668 msgid "Directory:" msgstr "Directorio:" @@ -2297,7 +2297,7 @@ msgid "Data type" msgstr "Tipo de dato" #: ../gui/wxpython/dbmgr/base.py:3051 ../gui/wxpython/dbmgr/base.py:3203 -#: ../gui/wxpython/dbmgr/base.py:3471 ../gui/wxpython/gui_core/gselect.py:1479 +#: ../gui/wxpython/dbmgr/base.py:3471 ../gui/wxpython/gui_core/gselect.py:1483 msgid "Database" msgstr "Base de datos" @@ -3706,13 +3706,13 @@ msgid "Delete all" msgstr "Borrar todo" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "No" msgstr "No" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "Yes" msgstr "Sí" @@ -4853,7 +4853,7 @@ msgid "Enter file content directly instead of specifying a file. Temporary file msgstr "Ingrese contenido de archivo directamente en vez de especificar un archivo. Se creará automáticamente un archivo temporal." #: ../gui/wxpython/gui_core/forms.py:2119 -#: ../gui/wxpython/gui_core/gselect.py:1475 +#: ../gui/wxpython/gui_core/gselect.py:1479 msgid "Directory" msgstr "Directorio" @@ -5162,182 +5162,182 @@ msgstr "" msgid "No table linked to layer <{}>." msgstr "No se ha ligado tabla alguna a la capa<{}>." -#: ../gui/wxpython/gui_core/gselect.py:1244 +#: ../gui/wxpython/gui_core/gselect.py:1248 #: ../gui/wxpython/image2target/ii2t_gis_set.py:1017 msgid "Choose GIS Data Directory" msgstr "Seleccionar Dicrectorio de Datos SIG" -#: ../gui/wxpython/gui_core/gselect.py:1456 +#: ../gui/wxpython/gui_core/gselect.py:1460 msgid "Output settings" msgstr "Configuraciones de salida" -#: ../gui/wxpython/gui_core/gselect.py:1458 +#: ../gui/wxpython/gui_core/gselect.py:1462 msgid "Source input" msgstr "Fuente de entrada." -#: ../gui/wxpython/gui_core/gselect.py:1465 +#: ../gui/wxpython/gui_core/gselect.py:1469 msgid "Native" msgstr "Nativo" -#: ../gui/wxpython/gui_core/gselect.py:1471 +#: ../gui/wxpython/gui_core/gselect.py:1475 #: ../gui/wxpython/lmgr/workspace.py:517 msgid "File" msgstr "Archivo" -#: ../gui/wxpython/gui_core/gselect.py:1483 +#: ../gui/wxpython/gui_core/gselect.py:1487 msgid "Protocol" msgstr "Protocolo" -#: ../gui/wxpython/gui_core/gselect.py:1494 +#: ../gui/wxpython/gui_core/gselect.py:1498 msgid "Output type" msgstr "Tipo de salida" -#: ../gui/wxpython/gui_core/gselect.py:1496 +#: ../gui/wxpython/gui_core/gselect.py:1500 msgid "Source type" msgstr "Tipo de fuente" -#: ../gui/wxpython/gui_core/gselect.py:1514 +#: ../gui/wxpython/gui_core/gselect.py:1518 msgid "All files" msgstr "todos los archivos" -#: ../gui/wxpython/gui_core/gselect.py:1544 +#: ../gui/wxpython/gui_core/gselect.py:1548 msgid "ZIP files" msgstr "Archivos ZIP" -#: ../gui/wxpython/gui_core/gselect.py:1545 +#: ../gui/wxpython/gui_core/gselect.py:1549 msgid "GZIP files" msgstr "Archivos GZIP" -#: ../gui/wxpython/gui_core/gselect.py:1546 +#: ../gui/wxpython/gui_core/gselect.py:1550 msgid "TAR files" msgstr "Archivos TAR" -#: ../gui/wxpython/gui_core/gselect.py:1550 +#: ../gui/wxpython/gui_core/gselect.py:1554 msgid "TARGZ files" msgstr "Archivos TARGZ" -#: ../gui/wxpython/gui_core/gselect.py:1559 +#: ../gui/wxpython/gui_core/gselect.py:1563 msgid "File:" msgstr "Archivo:" -#: ../gui/wxpython/gui_core/gselect.py:1560 +#: ../gui/wxpython/gui_core/gselect.py:1564 msgid "Choose file to import" msgstr "Seleccionar archivo a importar" -#: ../gui/wxpython/gui_core/gselect.py:1577 -#: ../gui/wxpython/gui_core/gselect.py:1665 +#: ../gui/wxpython/gui_core/gselect.py:1581 +#: ../gui/wxpython/gui_core/gselect.py:1669 msgid "Choose input directory" msgstr "Seleccionar directorio de entrada de datos hacia GRASS:" -#: ../gui/wxpython/gui_core/gselect.py:1598 +#: ../gui/wxpython/gui_core/gselect.py:1602 msgid "Extension:" msgstr "Extensión:" -#: ../gui/wxpython/gui_core/gselect.py:1630 +#: ../gui/wxpython/gui_core/gselect.py:1634 msgid "Choose file" msgstr "Escoger archivo" -#: ../gui/wxpython/gui_core/gselect.py:1651 -#: ../gui/wxpython/gui_core/gselect.py:2777 +#: ../gui/wxpython/gui_core/gselect.py:1655 +#: ../gui/wxpython/gui_core/gselect.py:2781 msgid "Feature type:" msgstr "Tipo de elemento:" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "simple features" msgstr "elementos simples" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "topological" msgstr "topológico" -#: ../gui/wxpython/gui_core/gselect.py:1769 -#: ../gui/wxpython/gui_core/gselect.py:1809 -#: ../gui/wxpython/gui_core/gselect.py:1871 -#: ../gui/wxpython/gui_core/gselect.py:1916 +#: ../gui/wxpython/gui_core/gselect.py:1773 +#: ../gui/wxpython/gui_core/gselect.py:1813 +#: ../gui/wxpython/gui_core/gselect.py:1875 +#: ../gui/wxpython/gui_core/gselect.py:1920 msgid "Creation options:" msgstr "Opciones de creación:" -#: ../gui/wxpython/gui_core/gselect.py:1786 -#: ../gui/wxpython/gui_core/gselect.py:1832 -#: ../gui/wxpython/gui_core/gselect.py:1897 +#: ../gui/wxpython/gui_core/gselect.py:1790 +#: ../gui/wxpython/gui_core/gselect.py:1836 +#: ../gui/wxpython/gui_core/gselect.py:1901 msgid "Format:" msgstr "Formato:" -#: ../gui/wxpython/gui_core/gselect.py:1905 +#: ../gui/wxpython/gui_core/gselect.py:1909 msgid "Protocol:" msgstr "Protocolo:" -#: ../gui/wxpython/gui_core/gselect.py:1934 +#: ../gui/wxpython/gui_core/gselect.py:1938 msgid "No settings available" msgstr "No hay configuraciones disponibles" -#: ../gui/wxpython/gui_core/gselect.py:2066 +#: ../gui/wxpython/gui_core/gselect.py:2070 #: ../gui/wxpython/web_services/dialogs.py:302 msgid "No data source defined, settings are not saved." msgstr "Datos de origen no definidos, no se han guardado las configuraciones." -#: ../gui/wxpython/gui_core/gselect.py:2098 +#: ../gui/wxpython/gui_core/gselect.py:2102 msgid "PostgreSQL/PostGIS login was not set. Set it via module, please." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2253 +#: ../gui/wxpython/gui_core/gselect.py:2257 #, python-brace-format msgid "Getting raster <{table}> SRID from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2508 +#: ../gui/wxpython/gui_core/gselect.py:2512 #, python-brace-format msgid "Getting list of tables from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2597 +#: ../gui/wxpython/gui_core/gselect.py:2601 #, python-brace-format msgid "Getting list of tables columns data types from PostGIS DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2628 +#: ../gui/wxpython/gui_core/gselect.py:2632 #, python-brace-format msgid "PostgreSQL DB <{psql}> program was not found. Please, install it." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2648 +#: ../gui/wxpython/gui_core/gselect.py:2652 #: ../gui/wxpython/modules/import_export.py:506 msgid "The Python GDAL package is missing. Please install it." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "LineString" msgstr "Cadena de caracteres." -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 #: ../gui/wxpython/psmap/dialogs.py:6221 ../gui/wxpython/psmap/toolbars.py:103 #: ../gui/wxpython/vdigit/preferences.py:729 msgid "Point" msgstr "Punto" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "Polygon" msgstr "Polígono" -#: ../gui/wxpython/gui_core/gselect.py:2982 +#: ../gui/wxpython/gui_core/gselect.py:2986 msgid "No vector map selected in layer manager. Operation canceled." msgstr "No se ha seleccionado ningún mapa vectorial en el gestor de capas. Operación cancelada." -#: ../gui/wxpython/gui_core/gselect.py:3001 +#: ../gui/wxpython/gui_core/gselect.py:3005 msgid "Input vector map is not selected" msgstr "Mapa vectorial de entrada no ha sido seleccionado." -#: ../gui/wxpython/gui_core/gselect.py:3005 +#: ../gui/wxpython/gui_core/gselect.py:3009 #, python-format msgid "Input vector map <%s> and selected map <%s> in layer manager are different. Operation canceled." msgstr "Mapa vectorial de entrada <%s> y mapa seleccionado <%s> en el gestor de capas son diferentes. Operación cancelada." -#: ../gui/wxpython/gui_core/gselect.py:3121 +#: ../gui/wxpython/gui_core/gselect.py:3125 #, python-format msgid "Unable to import C imagery library functions: %s\n" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3199 +#: ../gui/wxpython/gui_core/gselect.py:3203 msgid "No vector map selected" msgstr "No se ha seleccionado un mapa vectorial." @@ -15510,21 +15510,6 @@ msgstr "" "Ecuación de regresión de mapa ráster <%(rast1)s> vs. <%(rast2)s>:\n" "\n" -#, fuzzy -#~ msgid "Do you want to create a new project (also known as location)?" -#~ msgstr "¿Quiere crear un nuevo Directorio de mapas?" - -#, fuzzy -#~ msgid "Create project?" -#~ msgstr "Crear paquete" - -#~ msgid "Add existing or create new database" -#~ msgstr "Añadir base de datos existente o crear una nueva" - -#, fuzzy -#~ msgid "Create new project (location) in current GRASS database" -#~ msgstr "Crea nuevo Directorio de mapas en la Localización actual, cambia Directorio de mapas actual." - #~ msgid " (readonly)" #~ msgstr "(solo lectura)" @@ -15723,6 +15708,9 @@ msgstr "" #~ msgid "Add default servers" #~ msgstr "Añadir servidores predeterminados" +#~ msgid "Add existing or create new database" +#~ msgstr "Añadir base de datos existente o crear una nueva" + #~ msgid "Add loop / series" #~ msgstr "Añadir bucle / series" @@ -16459,6 +16447,10 @@ msgstr "" #~ msgid "Create new project (location)" #~ msgstr "Crear nueva Localización" +#, fuzzy +#~ msgid "Create new project (location) in current GRASS database" +#~ msgstr "Crea nuevo Directorio de mapas en la Localización actual, cambia Directorio de mapas actual." + #~ msgid "Create new workspace" #~ msgstr "Crear nuevo archivo de Entorno de trabajo" @@ -16468,6 +16460,10 @@ msgstr "" #~ msgid "Create points/segments" #~ msgstr "Crear puntos/segmentos" +#, fuzzy +#~ msgid "Create project?" +#~ msgstr "Crear paquete" + #~ msgid "Create stationing" #~ msgstr "Crear estaciones" @@ -16762,6 +16758,10 @@ msgstr "" #~ msgid "Do you really want to delete map <{m}> of type <{etype}> from mapset <{mapset}> in location <{loc}>?" #~ msgstr "Realmente desea eliminar el mapa <{m}> de tipo <{etype}> del directorio de mapas <{mapset}> en la localizacion <{loc}>?" +#, fuzzy +#~ msgid "Do you want to create a new project (also known as location)?" +#~ msgstr "¿Quiere crear un nuevo Directorio de mapas?" + #~ msgid "Do you want to set the default region extents and resolution now?" #~ msgstr "¿Quiere establecer la extensión y resolución de la región predeterminada ahora?" diff --git a/locale/po/grasswxpy_fi.po b/locale/po/grasswxpy_fi.po index 94d0f7f9c05..f825e9f2348 100644 --- a/locale/po/grasswxpy_fi.po +++ b/locale/po/grasswxpy_fi.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: grasswxpy_fi\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-08-26 14:19+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Finnish \n" @@ -200,9 +200,9 @@ msgstr "" #: ../gui/wxpython/animation/dialogs.py:415 #: ../gui/wxpython/gmodeler/preferences.py:730 -#: ../gui/wxpython/gui_core/gselect.py:1629 -#: ../gui/wxpython/gui_core/gselect.py:1646 -#: ../gui/wxpython/gui_core/gselect.py:1647 +#: ../gui/wxpython/gui_core/gselect.py:1633 +#: ../gui/wxpython/gui_core/gselect.py:1650 +#: ../gui/wxpython/gui_core/gselect.py:1651 #: ../gui/wxpython/gui_core/widgets.py:1462 #: ../gui/wxpython/vnet/dialogs.py:1679 msgid "Name:" @@ -252,11 +252,11 @@ msgstr "" #: ../gui/wxpython/animation/dialogs.py:1278 #: ../gui/wxpython/gui_core/forms.py:2009 #: ../gui/wxpython/gui_core/forms.py:2120 -#: ../gui/wxpython/gui_core/gselect.py:1245 -#: ../gui/wxpython/gui_core/gselect.py:1561 -#: ../gui/wxpython/gui_core/gselect.py:1578 -#: ../gui/wxpython/gui_core/gselect.py:1631 -#: ../gui/wxpython/gui_core/gselect.py:1666 +#: ../gui/wxpython/gui_core/gselect.py:1249 +#: ../gui/wxpython/gui_core/gselect.py:1565 +#: ../gui/wxpython/gui_core/gselect.py:1582 +#: ../gui/wxpython/gui_core/gselect.py:1635 +#: ../gui/wxpython/gui_core/gselect.py:1670 #: ../gui/wxpython/location_wizard/wizard.py:1446 #: ../gui/wxpython/location_wizard/wizard.py:1801 #: ../gui/wxpython/modules/import_export.py:862 @@ -454,8 +454,8 @@ msgid "File format:" msgstr "" #: ../gui/wxpython/animation/dialogs.py:1194 -#: ../gui/wxpython/gui_core/gselect.py:1576 -#: ../gui/wxpython/gui_core/gselect.py:1664 +#: ../gui/wxpython/gui_core/gselect.py:1580 +#: ../gui/wxpython/gui_core/gselect.py:1668 msgid "Directory:" msgstr "" @@ -2228,7 +2228,7 @@ msgid "Data type" msgstr "" #: ../gui/wxpython/dbmgr/base.py:3051 ../gui/wxpython/dbmgr/base.py:3203 -#: ../gui/wxpython/dbmgr/base.py:3471 ../gui/wxpython/gui_core/gselect.py:1479 +#: ../gui/wxpython/dbmgr/base.py:3471 ../gui/wxpython/gui_core/gselect.py:1483 msgid "Database" msgstr "" @@ -3598,13 +3598,13 @@ msgid "Delete all" msgstr "Poista kaikki" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "No" msgstr "" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "Yes" msgstr "" @@ -4713,7 +4713,7 @@ msgid "Enter file content directly instead of specifying a file. Temporary file msgstr "" #: ../gui/wxpython/gui_core/forms.py:2119 -#: ../gui/wxpython/gui_core/gselect.py:1475 +#: ../gui/wxpython/gui_core/gselect.py:1479 msgid "Directory" msgstr "" @@ -5008,182 +5008,182 @@ msgstr "" msgid "No table linked to layer <{}>." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1244 +#: ../gui/wxpython/gui_core/gselect.py:1248 #: ../gui/wxpython/image2target/ii2t_gis_set.py:1017 msgid "Choose GIS Data Directory" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1456 +#: ../gui/wxpython/gui_core/gselect.py:1460 msgid "Output settings" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1458 +#: ../gui/wxpython/gui_core/gselect.py:1462 msgid "Source input" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1465 +#: ../gui/wxpython/gui_core/gselect.py:1469 msgid "Native" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1471 +#: ../gui/wxpython/gui_core/gselect.py:1475 #: ../gui/wxpython/lmgr/workspace.py:517 msgid "File" msgstr "Tiedosto" -#: ../gui/wxpython/gui_core/gselect.py:1483 +#: ../gui/wxpython/gui_core/gselect.py:1487 msgid "Protocol" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1494 +#: ../gui/wxpython/gui_core/gselect.py:1498 msgid "Output type" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1496 +#: ../gui/wxpython/gui_core/gselect.py:1500 msgid "Source type" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1514 +#: ../gui/wxpython/gui_core/gselect.py:1518 msgid "All files" msgstr "Kaikki tiedostot" -#: ../gui/wxpython/gui_core/gselect.py:1544 +#: ../gui/wxpython/gui_core/gselect.py:1548 msgid "ZIP files" msgstr "ZIP tiedostot" -#: ../gui/wxpython/gui_core/gselect.py:1545 +#: ../gui/wxpython/gui_core/gselect.py:1549 msgid "GZIP files" msgstr "GZIP tiedostot" -#: ../gui/wxpython/gui_core/gselect.py:1546 +#: ../gui/wxpython/gui_core/gselect.py:1550 msgid "TAR files" msgstr "TAR tiedostot" -#: ../gui/wxpython/gui_core/gselect.py:1550 +#: ../gui/wxpython/gui_core/gselect.py:1554 msgid "TARGZ files" msgstr "TARGZ tiedostot" -#: ../gui/wxpython/gui_core/gselect.py:1559 +#: ../gui/wxpython/gui_core/gselect.py:1563 msgid "File:" msgstr "Tiedosto:" -#: ../gui/wxpython/gui_core/gselect.py:1560 +#: ../gui/wxpython/gui_core/gselect.py:1564 msgid "Choose file to import" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1577 -#: ../gui/wxpython/gui_core/gselect.py:1665 +#: ../gui/wxpython/gui_core/gselect.py:1581 +#: ../gui/wxpython/gui_core/gselect.py:1669 msgid "Choose input directory" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1598 +#: ../gui/wxpython/gui_core/gselect.py:1602 msgid "Extension:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1630 +#: ../gui/wxpython/gui_core/gselect.py:1634 msgid "Choose file" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1651 -#: ../gui/wxpython/gui_core/gselect.py:2777 +#: ../gui/wxpython/gui_core/gselect.py:1655 +#: ../gui/wxpython/gui_core/gselect.py:2781 msgid "Feature type:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "simple features" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "topological" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1769 -#: ../gui/wxpython/gui_core/gselect.py:1809 -#: ../gui/wxpython/gui_core/gselect.py:1871 -#: ../gui/wxpython/gui_core/gselect.py:1916 +#: ../gui/wxpython/gui_core/gselect.py:1773 +#: ../gui/wxpython/gui_core/gselect.py:1813 +#: ../gui/wxpython/gui_core/gselect.py:1875 +#: ../gui/wxpython/gui_core/gselect.py:1920 msgid "Creation options:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1786 -#: ../gui/wxpython/gui_core/gselect.py:1832 -#: ../gui/wxpython/gui_core/gselect.py:1897 +#: ../gui/wxpython/gui_core/gselect.py:1790 +#: ../gui/wxpython/gui_core/gselect.py:1836 +#: ../gui/wxpython/gui_core/gselect.py:1901 msgid "Format:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1905 +#: ../gui/wxpython/gui_core/gselect.py:1909 msgid "Protocol:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1934 +#: ../gui/wxpython/gui_core/gselect.py:1938 msgid "No settings available" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2066 +#: ../gui/wxpython/gui_core/gselect.py:2070 #: ../gui/wxpython/web_services/dialogs.py:302 msgid "No data source defined, settings are not saved." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2098 +#: ../gui/wxpython/gui_core/gselect.py:2102 msgid "PostgreSQL/PostGIS login was not set. Set it via module, please." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2253 +#: ../gui/wxpython/gui_core/gselect.py:2257 #, python-brace-format msgid "Getting raster <{table}> SRID from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2508 +#: ../gui/wxpython/gui_core/gselect.py:2512 #, python-brace-format msgid "Getting list of tables from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2597 +#: ../gui/wxpython/gui_core/gselect.py:2601 #, python-brace-format msgid "Getting list of tables columns data types from PostGIS DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2628 +#: ../gui/wxpython/gui_core/gselect.py:2632 #, python-brace-format msgid "PostgreSQL DB <{psql}> program was not found. Please, install it." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2648 +#: ../gui/wxpython/gui_core/gselect.py:2652 #: ../gui/wxpython/modules/import_export.py:506 msgid "The Python GDAL package is missing. Please install it." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "LineString" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 #: ../gui/wxpython/psmap/dialogs.py:6221 ../gui/wxpython/psmap/toolbars.py:103 #: ../gui/wxpython/vdigit/preferences.py:729 msgid "Point" msgstr "Piste" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "Polygon" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2982 +#: ../gui/wxpython/gui_core/gselect.py:2986 msgid "No vector map selected in layer manager. Operation canceled." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3001 +#: ../gui/wxpython/gui_core/gselect.py:3005 msgid "Input vector map is not selected" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3005 +#: ../gui/wxpython/gui_core/gselect.py:3009 #, python-format msgid "Input vector map <%s> and selected map <%s> in layer manager are different. Operation canceled." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3121 +#: ../gui/wxpython/gui_core/gselect.py:3125 #, python-format msgid "Unable to import C imagery library functions: %s\n" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3199 +#: ../gui/wxpython/gui_core/gselect.py:3203 msgid "No vector map selected" msgstr "" @@ -15005,10 +15005,6 @@ msgid "" "\n" msgstr "" -#, fuzzy -#~ msgid "Create project?" -#~ msgstr "Luo uusi Paikka?" - #~ msgid "&File" #~ msgstr "&Tiedosto" @@ -15038,6 +15034,10 @@ msgstr "" #~ msgid "Create new workspace" #~ msgstr "Luo uusi työtila" +#, fuzzy +#~ msgid "Create project?" +#~ msgstr "Luo uusi Paikka?" + #~ msgid "Load workspace from file" #~ msgstr "Lataa työtila tiedostosta" diff --git a/locale/po/grasswxpy_fr.po b/locale/po/grasswxpy_fr.po index 74c16ae8346..eaf04402e55 100644 --- a/locale/po/grasswxpy_fr.po +++ b/locale/po/grasswxpy_fr.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: grasswxpy_fr\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-11-22 03:58+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: French \n" @@ -203,9 +203,9 @@ msgstr "Sélectionner la vue 2d ou 3D" #: ../gui/wxpython/animation/dialogs.py:415 #: ../gui/wxpython/gmodeler/preferences.py:730 -#: ../gui/wxpython/gui_core/gselect.py:1629 -#: ../gui/wxpython/gui_core/gselect.py:1646 -#: ../gui/wxpython/gui_core/gselect.py:1647 +#: ../gui/wxpython/gui_core/gselect.py:1633 +#: ../gui/wxpython/gui_core/gselect.py:1650 +#: ../gui/wxpython/gui_core/gselect.py:1651 #: ../gui/wxpython/gui_core/widgets.py:1462 #: ../gui/wxpython/vnet/dialogs.py:1679 msgid "Name:" @@ -257,11 +257,11 @@ msgstr "Choisir le fichier d'espace de travail pour l'import des paramètres de #: ../gui/wxpython/animation/dialogs.py:1278 #: ../gui/wxpython/gui_core/forms.py:2009 #: ../gui/wxpython/gui_core/forms.py:2120 -#: ../gui/wxpython/gui_core/gselect.py:1245 -#: ../gui/wxpython/gui_core/gselect.py:1561 -#: ../gui/wxpython/gui_core/gselect.py:1578 -#: ../gui/wxpython/gui_core/gselect.py:1631 -#: ../gui/wxpython/gui_core/gselect.py:1666 +#: ../gui/wxpython/gui_core/gselect.py:1249 +#: ../gui/wxpython/gui_core/gselect.py:1565 +#: ../gui/wxpython/gui_core/gselect.py:1582 +#: ../gui/wxpython/gui_core/gselect.py:1635 +#: ../gui/wxpython/gui_core/gselect.py:1670 #: ../gui/wxpython/location_wizard/wizard.py:1446 #: ../gui/wxpython/location_wizard/wizard.py:1801 #: ../gui/wxpython/modules/import_export.py:862 @@ -459,8 +459,8 @@ msgid "File format:" msgstr "Format de fichier :" #: ../gui/wxpython/animation/dialogs.py:1194 -#: ../gui/wxpython/gui_core/gselect.py:1576 -#: ../gui/wxpython/gui_core/gselect.py:1664 +#: ../gui/wxpython/gui_core/gselect.py:1580 +#: ../gui/wxpython/gui_core/gselect.py:1668 msgid "Directory:" msgstr "Répertoire :" @@ -2272,7 +2272,7 @@ msgid "Data type" msgstr "Type de données" #: ../gui/wxpython/dbmgr/base.py:3051 ../gui/wxpython/dbmgr/base.py:3203 -#: ../gui/wxpython/dbmgr/base.py:3471 ../gui/wxpython/gui_core/gselect.py:1479 +#: ../gui/wxpython/dbmgr/base.py:3471 ../gui/wxpython/gui_core/gselect.py:1483 msgid "Database" msgstr "Base de données" @@ -3682,13 +3682,13 @@ msgid "Delete all" msgstr "Supprimer tout" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "No" msgstr "Non" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "Yes" msgstr "Oui" @@ -4813,7 +4813,7 @@ msgid "Enter file content directly instead of specifying a file. Temporary file msgstr "Entrez le contenu directement au lieu de spécifier un fichier. Un fichier temporaire sera créé automatiquement." #: ../gui/wxpython/gui_core/forms.py:2119 -#: ../gui/wxpython/gui_core/gselect.py:1475 +#: ../gui/wxpython/gui_core/gselect.py:1479 msgid "Directory" msgstr "Répertoire" @@ -5117,182 +5117,182 @@ msgstr "" msgid "No table linked to layer <{}>." msgstr "Pas de table liée à la couche <{}>." -#: ../gui/wxpython/gui_core/gselect.py:1244 +#: ../gui/wxpython/gui_core/gselect.py:1248 #: ../gui/wxpython/image2target/ii2t_gis_set.py:1017 msgid "Choose GIS Data Directory" msgstr "Choisir le répertoire de données SIG" -#: ../gui/wxpython/gui_core/gselect.py:1456 +#: ../gui/wxpython/gui_core/gselect.py:1460 msgid "Output settings" msgstr "Paramètres de sortie" -#: ../gui/wxpython/gui_core/gselect.py:1458 +#: ../gui/wxpython/gui_core/gselect.py:1462 msgid "Source input" msgstr "Source d'entrée" -#: ../gui/wxpython/gui_core/gselect.py:1465 +#: ../gui/wxpython/gui_core/gselect.py:1469 msgid "Native" msgstr "Natif" -#: ../gui/wxpython/gui_core/gselect.py:1471 +#: ../gui/wxpython/gui_core/gselect.py:1475 #: ../gui/wxpython/lmgr/workspace.py:517 msgid "File" msgstr "Fichier" -#: ../gui/wxpython/gui_core/gselect.py:1483 +#: ../gui/wxpython/gui_core/gselect.py:1487 msgid "Protocol" msgstr "Protocole" -#: ../gui/wxpython/gui_core/gselect.py:1494 +#: ../gui/wxpython/gui_core/gselect.py:1498 msgid "Output type" msgstr "Type de la sortie" -#: ../gui/wxpython/gui_core/gselect.py:1496 +#: ../gui/wxpython/gui_core/gselect.py:1500 msgid "Source type" msgstr "Type de la source" -#: ../gui/wxpython/gui_core/gselect.py:1514 +#: ../gui/wxpython/gui_core/gselect.py:1518 msgid "All files" msgstr "Tous les fichiers" -#: ../gui/wxpython/gui_core/gselect.py:1544 +#: ../gui/wxpython/gui_core/gselect.py:1548 msgid "ZIP files" msgstr "Fichier ZIP" -#: ../gui/wxpython/gui_core/gselect.py:1545 +#: ../gui/wxpython/gui_core/gselect.py:1549 msgid "GZIP files" msgstr "Fichiers GZIP" -#: ../gui/wxpython/gui_core/gselect.py:1546 +#: ../gui/wxpython/gui_core/gselect.py:1550 msgid "TAR files" msgstr "Fichiers TAR" -#: ../gui/wxpython/gui_core/gselect.py:1550 +#: ../gui/wxpython/gui_core/gselect.py:1554 msgid "TARGZ files" msgstr "Fichiers TARGZ" -#: ../gui/wxpython/gui_core/gselect.py:1559 +#: ../gui/wxpython/gui_core/gselect.py:1563 msgid "File:" msgstr "Fichier :" -#: ../gui/wxpython/gui_core/gselect.py:1560 +#: ../gui/wxpython/gui_core/gselect.py:1564 msgid "Choose file to import" msgstr "Choisir un fichier à importer" -#: ../gui/wxpython/gui_core/gselect.py:1577 -#: ../gui/wxpython/gui_core/gselect.py:1665 +#: ../gui/wxpython/gui_core/gselect.py:1581 +#: ../gui/wxpython/gui_core/gselect.py:1669 msgid "Choose input directory" msgstr "Choisir le répertoire d'entrée" -#: ../gui/wxpython/gui_core/gselect.py:1598 +#: ../gui/wxpython/gui_core/gselect.py:1602 msgid "Extension:" msgstr "Extension :" -#: ../gui/wxpython/gui_core/gselect.py:1630 +#: ../gui/wxpython/gui_core/gselect.py:1634 msgid "Choose file" msgstr "Choisir un fichier" -#: ../gui/wxpython/gui_core/gselect.py:1651 -#: ../gui/wxpython/gui_core/gselect.py:2777 +#: ../gui/wxpython/gui_core/gselect.py:1655 +#: ../gui/wxpython/gui_core/gselect.py:2781 msgid "Feature type:" msgstr "Type d'entité :" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "simple features" msgstr "entités simples" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "topological" msgstr "topologiques" -#: ../gui/wxpython/gui_core/gselect.py:1769 -#: ../gui/wxpython/gui_core/gselect.py:1809 -#: ../gui/wxpython/gui_core/gselect.py:1871 -#: ../gui/wxpython/gui_core/gselect.py:1916 +#: ../gui/wxpython/gui_core/gselect.py:1773 +#: ../gui/wxpython/gui_core/gselect.py:1813 +#: ../gui/wxpython/gui_core/gselect.py:1875 +#: ../gui/wxpython/gui_core/gselect.py:1920 msgid "Creation options:" msgstr "Options de création :" -#: ../gui/wxpython/gui_core/gselect.py:1786 -#: ../gui/wxpython/gui_core/gselect.py:1832 -#: ../gui/wxpython/gui_core/gselect.py:1897 +#: ../gui/wxpython/gui_core/gselect.py:1790 +#: ../gui/wxpython/gui_core/gselect.py:1836 +#: ../gui/wxpython/gui_core/gselect.py:1901 msgid "Format:" msgstr "Format :" -#: ../gui/wxpython/gui_core/gselect.py:1905 +#: ../gui/wxpython/gui_core/gselect.py:1909 msgid "Protocol:" msgstr "Protocole :" -#: ../gui/wxpython/gui_core/gselect.py:1934 +#: ../gui/wxpython/gui_core/gselect.py:1938 msgid "No settings available" msgstr "Pas de paramètres disponibles" -#: ../gui/wxpython/gui_core/gselect.py:2066 +#: ../gui/wxpython/gui_core/gselect.py:2070 #: ../gui/wxpython/web_services/dialogs.py:302 msgid "No data source defined, settings are not saved." msgstr "Pas de source de données définie, les paramètres ne sont pas enregistrés." -#: ../gui/wxpython/gui_core/gselect.py:2098 +#: ../gui/wxpython/gui_core/gselect.py:2102 msgid "PostgreSQL/PostGIS login was not set. Set it via module, please." msgstr "La connexion PostgreSQL/PostGIS n'a pas été définie. Veuillez le définir via le module ." -#: ../gui/wxpython/gui_core/gselect.py:2253 +#: ../gui/wxpython/gui_core/gselect.py:2257 #, python-brace-format msgid "Getting raster <{table}> SRID from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2508 +#: ../gui/wxpython/gui_core/gselect.py:2512 #, python-brace-format msgid "Getting list of tables from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2597 +#: ../gui/wxpython/gui_core/gselect.py:2601 #, python-brace-format msgid "Getting list of tables columns data types from PostGIS DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2628 +#: ../gui/wxpython/gui_core/gselect.py:2632 #, python-brace-format msgid "PostgreSQL DB <{psql}> program was not found. Please, install it." msgstr "Le programme de BD PostgreSQL <{psql}> n'a pas été trouvé. Veuillez l'installer." -#: ../gui/wxpython/gui_core/gselect.py:2648 +#: ../gui/wxpython/gui_core/gselect.py:2652 #: ../gui/wxpython/modules/import_export.py:506 msgid "The Python GDAL package is missing. Please install it." msgstr "Le package Python GDAL est manquant. Veuillez l'installer." -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "LineString" msgstr "Ligne" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 #: ../gui/wxpython/psmap/dialogs.py:6221 ../gui/wxpython/psmap/toolbars.py:103 #: ../gui/wxpython/vdigit/preferences.py:729 msgid "Point" msgstr "Point" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "Polygon" msgstr "Polygone" -#: ../gui/wxpython/gui_core/gselect.py:2982 +#: ../gui/wxpython/gui_core/gselect.py:2986 msgid "No vector map selected in layer manager. Operation canceled." msgstr "Aucune carte vecteur sélectionnée dans le gestionnaire de couches. Opération annulée." -#: ../gui/wxpython/gui_core/gselect.py:3001 +#: ../gui/wxpython/gui_core/gselect.py:3005 msgid "Input vector map is not selected" msgstr "La couche vecteur en entrée n'est pas sélectionnée" -#: ../gui/wxpython/gui_core/gselect.py:3005 +#: ../gui/wxpython/gui_core/gselect.py:3009 #, python-format msgid "Input vector map <%s> and selected map <%s> in layer manager are different. Operation canceled." msgstr "La carte vecteur <%s> en entrée et la carte <%s> sélectionnée dans le gestionnaire de couches sont différentes . Opération annulée." -#: ../gui/wxpython/gui_core/gselect.py:3121 +#: ../gui/wxpython/gui_core/gselect.py:3125 #, python-format msgid "Unable to import C imagery library functions: %s\n" msgstr "Impossible d'importer les fonctions de la bibliothèque C d’imagerie : %s\n" -#: ../gui/wxpython/gui_core/gselect.py:3199 +#: ../gui/wxpython/gui_core/gselect.py:3203 msgid "No vector map selected" msgstr "Aucune carte vecteur sélectionnée" @@ -15361,26 +15361,6 @@ msgstr "" "Équation de régression pour la carte raster <%(rast1)s> vs. <%(rast2)s> :\n" "\n" -#, fuzzy -#~ msgid "Do you want to create a new project (also known as location)?" -#~ msgstr "Voulez-vous créer un nouveau jeux de données ?" - -#~ msgid "Create project?" -#~ msgstr "Créer un projet ?" - -#~ msgid "Restrict edits to the current mapset only" -#~ msgstr "Restreindre les modifications à l'ensemble de cartes actuel uniquement" - -#~ msgid "Allow edits outside of the current mapset" -#~ msgstr "Autoriser les modifications en dehors du jeu de cartes actuel" - -#~ msgid "Add existing or create new database" -#~ msgstr "Ajouter une base de données existante ou en créer une nouvelle" - -#, fuzzy -#~ msgid "Create new project (location) in current GRASS database" -#~ msgstr "Crée un nouveau jeux de cartes dans le secteur de travail courant, et change le jeux de cartes courant." - #~ msgid " (readonly)" #~ msgstr " (lecture seule)" @@ -15573,6 +15553,9 @@ msgstr "" #~ msgid "Add default servers" #~ msgstr "Ajouter les serveurs par défaut" +#~ msgid "Add existing or create new database" +#~ msgstr "Ajouter une base de données existante ou en créer une nouvelle" + #~ msgid "Add imported layers into layer tree ({mightNotWork})" #~ msgstr "Ajouter les couches importées dans l'arborescence des couches ({mightNotWork})" @@ -15666,6 +15649,9 @@ msgstr "" #~ msgid "Allocates subnets for nearest centers. Center node must be opened (costs >= 0). Costs of center node are used in calculation." #~ msgstr "Allouer les sous-réseaux pour le centre le plus proche. Le noeud central doit être ouvert (coûts >=0). Les coûts du noeud central sont utilisés dans les calculs." +#~ msgid "Allow edits outside of the current mapset" +#~ msgstr "Autoriser les modifications en dehors du jeu de cartes actuel" + #~ msgid "Allows creation and/or modification of raster map layer support files." #~ msgstr "Permet la création et/ou la modification de fichiers de maintenance de cartes raster." @@ -16334,6 +16320,10 @@ msgstr "" #~ msgid "Create new project (location)" #~ msgstr "Créer un nouveau secteur" +#, fuzzy +#~ msgid "Create new project (location) in current GRASS database" +#~ msgstr "Crée un nouveau jeux de cartes dans le secteur de travail courant, et change le jeux de cartes courant." + #~ msgid "Create new workspace" #~ msgstr "Créer un nouvel espace de travail" @@ -16346,6 +16336,9 @@ msgstr "" #~ msgid "Create points/segments" #~ msgstr "Créer points/segments" +#~ msgid "Create project?" +#~ msgstr "Créer un projet ?" + #~ msgid "Create stationing" #~ msgstr "Créer des placements" @@ -16650,6 +16643,10 @@ msgstr "" #~ msgid "Do you really want to delete map <{m}> of type <{etype}> from mapset <{mapset}> in location <{loc}>?" #~ msgstr "Voulez-vous vraiment suprimer la carte <{m}> de type <{etype}> du jeude cartes <{mapset}> dans le secteur <{loc}> ?" +#, fuzzy +#~ msgid "Do you want to create a new project (also known as location)?" +#~ msgstr "Voulez-vous créer un nouveau jeux de données ?" + #~ msgid "Do you want to import <%(name)s> to the newly created location? The location's default region will be set from this imported map." #~ msgstr "Voulez-vous importer <%(name)s> dans le nouveau secteur ? La région par défaut sera alignée sur la carte importée." @@ -18644,6 +18641,9 @@ msgstr "" #~ msgid "Resize legend" #~ msgstr "Redimensionner la légende" +#~ msgid "Restrict edits to the current mapset only" +#~ msgstr "Restreindre les modifications à l'ensemble de cartes actuel uniquement" + #~ msgid "Richness" #~ msgstr "Richesse" diff --git a/locale/po/grasswxpy_hu.po b/locale/po/grasswxpy_hu.po index 7a5d56e0e84..4b4316811c4 100644 --- a/locale/po/grasswxpy_hu.po +++ b/locale/po/grasswxpy_hu.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: grasslibs_hu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-08-26 14:19+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Hungarian \n" @@ -200,9 +200,9 @@ msgstr "Válaszon 2D vagy 3D nézetet" #: ../gui/wxpython/animation/dialogs.py:415 #: ../gui/wxpython/gmodeler/preferences.py:730 -#: ../gui/wxpython/gui_core/gselect.py:1629 -#: ../gui/wxpython/gui_core/gselect.py:1646 -#: ../gui/wxpython/gui_core/gselect.py:1647 +#: ../gui/wxpython/gui_core/gselect.py:1633 +#: ../gui/wxpython/gui_core/gselect.py:1650 +#: ../gui/wxpython/gui_core/gselect.py:1651 #: ../gui/wxpython/gui_core/widgets.py:1462 #: ../gui/wxpython/vnet/dialogs.py:1679 msgid "Name:" @@ -252,11 +252,11 @@ msgstr "Válasszon munkaterületet a +D nézet paraméterek importálásához" #: ../gui/wxpython/animation/dialogs.py:1278 #: ../gui/wxpython/gui_core/forms.py:2009 #: ../gui/wxpython/gui_core/forms.py:2120 -#: ../gui/wxpython/gui_core/gselect.py:1245 -#: ../gui/wxpython/gui_core/gselect.py:1561 -#: ../gui/wxpython/gui_core/gselect.py:1578 -#: ../gui/wxpython/gui_core/gselect.py:1631 -#: ../gui/wxpython/gui_core/gselect.py:1666 +#: ../gui/wxpython/gui_core/gselect.py:1249 +#: ../gui/wxpython/gui_core/gselect.py:1565 +#: ../gui/wxpython/gui_core/gselect.py:1582 +#: ../gui/wxpython/gui_core/gselect.py:1635 +#: ../gui/wxpython/gui_core/gselect.py:1670 #: ../gui/wxpython/location_wizard/wizard.py:1446 #: ../gui/wxpython/location_wizard/wizard.py:1801 #: ../gui/wxpython/modules/import_export.py:862 @@ -454,8 +454,8 @@ msgid "File format:" msgstr "Fájl formátum:" #: ../gui/wxpython/animation/dialogs.py:1194 -#: ../gui/wxpython/gui_core/gselect.py:1576 -#: ../gui/wxpython/gui_core/gselect.py:1664 +#: ../gui/wxpython/gui_core/gselect.py:1580 +#: ../gui/wxpython/gui_core/gselect.py:1668 msgid "Directory:" msgstr "Könyvtár:" @@ -2265,7 +2265,7 @@ msgid "Data type" msgstr "Adattípus" #: ../gui/wxpython/dbmgr/base.py:3051 ../gui/wxpython/dbmgr/base.py:3203 -#: ../gui/wxpython/dbmgr/base.py:3471 ../gui/wxpython/gui_core/gselect.py:1479 +#: ../gui/wxpython/dbmgr/base.py:3471 ../gui/wxpython/gui_core/gselect.py:1483 msgid "Database" msgstr "Adatbázis" @@ -3648,13 +3648,13 @@ msgid "Delete all" msgstr "Mindent töröl" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "No" msgstr "Nem" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "Yes" msgstr "Igen" @@ -4785,7 +4785,7 @@ msgid "Enter file content directly instead of specifying a file. Temporary file msgstr "" #: ../gui/wxpython/gui_core/forms.py:2119 -#: ../gui/wxpython/gui_core/gselect.py:1475 +#: ../gui/wxpython/gui_core/gselect.py:1479 msgid "Directory" msgstr "Könyvtár" @@ -5089,182 +5089,182 @@ msgstr "" msgid "No table linked to layer <{}>." msgstr "Nincs kapcsolt tábla a <{}> réteghez." -#: ../gui/wxpython/gui_core/gselect.py:1244 +#: ../gui/wxpython/gui_core/gselect.py:1248 #: ../gui/wxpython/image2target/ii2t_gis_set.py:1017 msgid "Choose GIS Data Directory" msgstr "Válasszon GIS adatkönyvtárat" -#: ../gui/wxpython/gui_core/gselect.py:1456 +#: ../gui/wxpython/gui_core/gselect.py:1460 msgid "Output settings" msgstr "Output beállítások" -#: ../gui/wxpython/gui_core/gselect.py:1458 +#: ../gui/wxpython/gui_core/gselect.py:1462 msgid "Source input" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1465 +#: ../gui/wxpython/gui_core/gselect.py:1469 msgid "Native" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1471 +#: ../gui/wxpython/gui_core/gselect.py:1475 #: ../gui/wxpython/lmgr/workspace.py:517 msgid "File" msgstr "Fájl" -#: ../gui/wxpython/gui_core/gselect.py:1483 +#: ../gui/wxpython/gui_core/gselect.py:1487 msgid "Protocol" msgstr "Protokol" -#: ../gui/wxpython/gui_core/gselect.py:1494 +#: ../gui/wxpython/gui_core/gselect.py:1498 msgid "Output type" msgstr "Output típus" -#: ../gui/wxpython/gui_core/gselect.py:1496 +#: ../gui/wxpython/gui_core/gselect.py:1500 msgid "Source type" msgstr "Forrás típus" -#: ../gui/wxpython/gui_core/gselect.py:1514 +#: ../gui/wxpython/gui_core/gselect.py:1518 msgid "All files" msgstr "Minden fájl" -#: ../gui/wxpython/gui_core/gselect.py:1544 +#: ../gui/wxpython/gui_core/gselect.py:1548 msgid "ZIP files" msgstr "ZIP fájlok" -#: ../gui/wxpython/gui_core/gselect.py:1545 +#: ../gui/wxpython/gui_core/gselect.py:1549 msgid "GZIP files" msgstr "GZIP fájlok" -#: ../gui/wxpython/gui_core/gselect.py:1546 +#: ../gui/wxpython/gui_core/gselect.py:1550 msgid "TAR files" msgstr "TAR fájlok" -#: ../gui/wxpython/gui_core/gselect.py:1550 +#: ../gui/wxpython/gui_core/gselect.py:1554 msgid "TARGZ files" msgstr "TARGZ fájlok" -#: ../gui/wxpython/gui_core/gselect.py:1559 +#: ../gui/wxpython/gui_core/gselect.py:1563 msgid "File:" msgstr "Fájl:" -#: ../gui/wxpython/gui_core/gselect.py:1560 +#: ../gui/wxpython/gui_core/gselect.py:1564 msgid "Choose file to import" msgstr "Válasszon importálandó fájlt" -#: ../gui/wxpython/gui_core/gselect.py:1577 -#: ../gui/wxpython/gui_core/gselect.py:1665 +#: ../gui/wxpython/gui_core/gselect.py:1581 +#: ../gui/wxpython/gui_core/gselect.py:1669 msgid "Choose input directory" msgstr "Válasszon input könyvtárat" -#: ../gui/wxpython/gui_core/gselect.py:1598 +#: ../gui/wxpython/gui_core/gselect.py:1602 msgid "Extension:" msgstr "Kiterjesztés:" -#: ../gui/wxpython/gui_core/gselect.py:1630 +#: ../gui/wxpython/gui_core/gselect.py:1634 msgid "Choose file" msgstr "Fájl választás" -#: ../gui/wxpython/gui_core/gselect.py:1651 -#: ../gui/wxpython/gui_core/gselect.py:2777 +#: ../gui/wxpython/gui_core/gselect.py:1655 +#: ../gui/wxpython/gui_core/gselect.py:2781 msgid "Feature type:" msgstr "Elemtípus:" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "simple features" msgstr "egyszerű elemek" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "topological" msgstr "topológiai" -#: ../gui/wxpython/gui_core/gselect.py:1769 -#: ../gui/wxpython/gui_core/gselect.py:1809 -#: ../gui/wxpython/gui_core/gselect.py:1871 -#: ../gui/wxpython/gui_core/gselect.py:1916 +#: ../gui/wxpython/gui_core/gselect.py:1773 +#: ../gui/wxpython/gui_core/gselect.py:1813 +#: ../gui/wxpython/gui_core/gselect.py:1875 +#: ../gui/wxpython/gui_core/gselect.py:1920 msgid "Creation options:" msgstr "Létrehozási beállítások:" -#: ../gui/wxpython/gui_core/gselect.py:1786 -#: ../gui/wxpython/gui_core/gselect.py:1832 -#: ../gui/wxpython/gui_core/gselect.py:1897 +#: ../gui/wxpython/gui_core/gselect.py:1790 +#: ../gui/wxpython/gui_core/gselect.py:1836 +#: ../gui/wxpython/gui_core/gselect.py:1901 msgid "Format:" msgstr "Formátum:" -#: ../gui/wxpython/gui_core/gselect.py:1905 +#: ../gui/wxpython/gui_core/gselect.py:1909 msgid "Protocol:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1934 +#: ../gui/wxpython/gui_core/gselect.py:1938 msgid "No settings available" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2066 +#: ../gui/wxpython/gui_core/gselect.py:2070 #: ../gui/wxpython/web_services/dialogs.py:302 msgid "No data source defined, settings are not saved." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2098 +#: ../gui/wxpython/gui_core/gselect.py:2102 msgid "PostgreSQL/PostGIS login was not set. Set it via module, please." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2253 +#: ../gui/wxpython/gui_core/gselect.py:2257 #, python-brace-format msgid "Getting raster <{table}> SRID from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2508 +#: ../gui/wxpython/gui_core/gselect.py:2512 #, python-brace-format msgid "Getting list of tables from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2597 +#: ../gui/wxpython/gui_core/gselect.py:2601 #, python-brace-format msgid "Getting list of tables columns data types from PostGIS DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2628 +#: ../gui/wxpython/gui_core/gselect.py:2632 #, python-brace-format msgid "PostgreSQL DB <{psql}> program was not found. Please, install it." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2648 +#: ../gui/wxpython/gui_core/gselect.py:2652 #: ../gui/wxpython/modules/import_export.py:506 msgid "The Python GDAL package is missing. Please install it." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "LineString" msgstr "Törtvonal" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 #: ../gui/wxpython/psmap/dialogs.py:6221 ../gui/wxpython/psmap/toolbars.py:103 #: ../gui/wxpython/vdigit/preferences.py:729 msgid "Point" msgstr "Pont" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "Polygon" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2982 +#: ../gui/wxpython/gui_core/gselect.py:2986 msgid "No vector map selected in layer manager. Operation canceled." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3001 +#: ../gui/wxpython/gui_core/gselect.py:3005 msgid "Input vector map is not selected" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3005 +#: ../gui/wxpython/gui_core/gselect.py:3009 #, python-format msgid "Input vector map <%s> and selected map <%s> in layer manager are different. Operation canceled." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3121 +#: ../gui/wxpython/gui_core/gselect.py:3125 #, python-format msgid "Unable to import C imagery library functions: %s\n" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3199 +#: ../gui/wxpython/gui_core/gselect.py:3203 msgid "No vector map selected" msgstr "Nincs szelektált vektortérkép" @@ -15287,18 +15287,6 @@ msgid "" "\n" msgstr "" -#, fuzzy -#~ msgid "Do you want to create a new project (also known as location)?" -#~ msgstr "Meg akarja szakítani a hely letöltést?" - -#, fuzzy -#~ msgid "Create project?" -#~ msgstr "Átvetítés" - -#, fuzzy -#~ msgid "Create new project (location) in current GRASS database" -#~ msgstr "Az aktuális helyen létrehoz egy új térképcsoportot, módosítja az aktuális térképcsoportot." - #~ msgid " (readonly)" #~ msgstr "(csak olvasható)" @@ -15579,9 +15567,17 @@ msgstr "" #~ msgid "Create new project (location)" #~ msgstr "Új hely létrehozása" +#, fuzzy +#~ msgid "Create new project (location) in current GRASS database" +#~ msgstr "Az aktuális helyen létrehoz egy új térképcsoportot, módosítja az aktuális térképcsoportot." + #~ msgid "Create new workspace" #~ msgstr "Új munkaterület létrehozás" +#, fuzzy +#~ msgid "Create project?" +#~ msgstr "Átvetítés" + #~ msgid "Create user mapset" #~ msgstr "Felhasználói térképcsoport létrehozás" @@ -15619,6 +15615,10 @@ msgstr "" #~ msgid "Distance to features" #~ msgstr "Távolság az elemekhez" +#, fuzzy +#~ msgid "Do you want to create a new project (also known as location)?" +#~ msgstr "Meg akarja szakítani a hely letöltést?" + #~ msgid "Do you want to set the default region extents and resolution now?" #~ msgstr "Be akarja állítani az alapértelmezett régió terjedelmét és a felbontást most?" diff --git a/locale/po/grasswxpy_id_ID.po b/locale/po/grasswxpy_id_ID.po index 0caf14d1ca9..5914e8571e5 100644 --- a/locale/po/grasswxpy_id_ID.po +++ b/locale/po/grasswxpy_id_ID.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: grasslibs_id_ID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2017-05-23 21:08+0200\n" "Last-Translator: \n" "Language-Team: Indonesian (Indonesia) (https://www.transifex.com/grass-gis/teams/45198/id_ID/)\n" @@ -198,9 +198,9 @@ msgstr "" #: ../gui/wxpython/animation/dialogs.py:415 #: ../gui/wxpython/gmodeler/preferences.py:730 -#: ../gui/wxpython/gui_core/gselect.py:1629 -#: ../gui/wxpython/gui_core/gselect.py:1646 -#: ../gui/wxpython/gui_core/gselect.py:1647 +#: ../gui/wxpython/gui_core/gselect.py:1633 +#: ../gui/wxpython/gui_core/gselect.py:1650 +#: ../gui/wxpython/gui_core/gselect.py:1651 #: ../gui/wxpython/gui_core/widgets.py:1462 #: ../gui/wxpython/vnet/dialogs.py:1679 msgid "Name:" @@ -250,11 +250,11 @@ msgstr "" #: ../gui/wxpython/animation/dialogs.py:1278 #: ../gui/wxpython/gui_core/forms.py:2009 #: ../gui/wxpython/gui_core/forms.py:2120 -#: ../gui/wxpython/gui_core/gselect.py:1245 -#: ../gui/wxpython/gui_core/gselect.py:1561 -#: ../gui/wxpython/gui_core/gselect.py:1578 -#: ../gui/wxpython/gui_core/gselect.py:1631 -#: ../gui/wxpython/gui_core/gselect.py:1666 +#: ../gui/wxpython/gui_core/gselect.py:1249 +#: ../gui/wxpython/gui_core/gselect.py:1565 +#: ../gui/wxpython/gui_core/gselect.py:1582 +#: ../gui/wxpython/gui_core/gselect.py:1635 +#: ../gui/wxpython/gui_core/gselect.py:1670 #: ../gui/wxpython/location_wizard/wizard.py:1446 #: ../gui/wxpython/location_wizard/wizard.py:1801 #: ../gui/wxpython/modules/import_export.py:862 @@ -452,8 +452,8 @@ msgid "File format:" msgstr "" #: ../gui/wxpython/animation/dialogs.py:1194 -#: ../gui/wxpython/gui_core/gselect.py:1576 -#: ../gui/wxpython/gui_core/gselect.py:1664 +#: ../gui/wxpython/gui_core/gselect.py:1580 +#: ../gui/wxpython/gui_core/gselect.py:1668 msgid "Directory:" msgstr "" @@ -2219,7 +2219,7 @@ msgid "Data type" msgstr "" #: ../gui/wxpython/dbmgr/base.py:3051 ../gui/wxpython/dbmgr/base.py:3203 -#: ../gui/wxpython/dbmgr/base.py:3471 ../gui/wxpython/gui_core/gselect.py:1479 +#: ../gui/wxpython/dbmgr/base.py:3471 ../gui/wxpython/gui_core/gselect.py:1483 msgid "Database" msgstr "" @@ -3589,13 +3589,13 @@ msgid "Delete all" msgstr "" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "No" msgstr "" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "Yes" msgstr "" @@ -4700,7 +4700,7 @@ msgid "Enter file content directly instead of specifying a file. Temporary file msgstr "" #: ../gui/wxpython/gui_core/forms.py:2119 -#: ../gui/wxpython/gui_core/gselect.py:1475 +#: ../gui/wxpython/gui_core/gselect.py:1479 msgid "Directory" msgstr "" @@ -4994,182 +4994,182 @@ msgstr "" msgid "No table linked to layer <{}>." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1244 +#: ../gui/wxpython/gui_core/gselect.py:1248 #: ../gui/wxpython/image2target/ii2t_gis_set.py:1017 msgid "Choose GIS Data Directory" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1456 +#: ../gui/wxpython/gui_core/gselect.py:1460 msgid "Output settings" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1458 +#: ../gui/wxpython/gui_core/gselect.py:1462 msgid "Source input" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1465 +#: ../gui/wxpython/gui_core/gselect.py:1469 msgid "Native" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1471 +#: ../gui/wxpython/gui_core/gselect.py:1475 #: ../gui/wxpython/lmgr/workspace.py:517 msgid "File" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1483 +#: ../gui/wxpython/gui_core/gselect.py:1487 msgid "Protocol" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1494 +#: ../gui/wxpython/gui_core/gselect.py:1498 msgid "Output type" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1496 +#: ../gui/wxpython/gui_core/gselect.py:1500 msgid "Source type" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1514 +#: ../gui/wxpython/gui_core/gselect.py:1518 msgid "All files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1544 +#: ../gui/wxpython/gui_core/gselect.py:1548 msgid "ZIP files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1545 +#: ../gui/wxpython/gui_core/gselect.py:1549 msgid "GZIP files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1546 +#: ../gui/wxpython/gui_core/gselect.py:1550 msgid "TAR files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1550 +#: ../gui/wxpython/gui_core/gselect.py:1554 msgid "TARGZ files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1559 +#: ../gui/wxpython/gui_core/gselect.py:1563 msgid "File:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1560 +#: ../gui/wxpython/gui_core/gselect.py:1564 msgid "Choose file to import" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1577 -#: ../gui/wxpython/gui_core/gselect.py:1665 +#: ../gui/wxpython/gui_core/gselect.py:1581 +#: ../gui/wxpython/gui_core/gselect.py:1669 msgid "Choose input directory" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1598 +#: ../gui/wxpython/gui_core/gselect.py:1602 msgid "Extension:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1630 +#: ../gui/wxpython/gui_core/gselect.py:1634 msgid "Choose file" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1651 -#: ../gui/wxpython/gui_core/gselect.py:2777 +#: ../gui/wxpython/gui_core/gselect.py:1655 +#: ../gui/wxpython/gui_core/gselect.py:2781 msgid "Feature type:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "simple features" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "topological" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1769 -#: ../gui/wxpython/gui_core/gselect.py:1809 -#: ../gui/wxpython/gui_core/gselect.py:1871 -#: ../gui/wxpython/gui_core/gselect.py:1916 +#: ../gui/wxpython/gui_core/gselect.py:1773 +#: ../gui/wxpython/gui_core/gselect.py:1813 +#: ../gui/wxpython/gui_core/gselect.py:1875 +#: ../gui/wxpython/gui_core/gselect.py:1920 msgid "Creation options:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1786 -#: ../gui/wxpython/gui_core/gselect.py:1832 -#: ../gui/wxpython/gui_core/gselect.py:1897 +#: ../gui/wxpython/gui_core/gselect.py:1790 +#: ../gui/wxpython/gui_core/gselect.py:1836 +#: ../gui/wxpython/gui_core/gselect.py:1901 msgid "Format:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1905 +#: ../gui/wxpython/gui_core/gselect.py:1909 msgid "Protocol:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1934 +#: ../gui/wxpython/gui_core/gselect.py:1938 msgid "No settings available" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2066 +#: ../gui/wxpython/gui_core/gselect.py:2070 #: ../gui/wxpython/web_services/dialogs.py:302 msgid "No data source defined, settings are not saved." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2098 +#: ../gui/wxpython/gui_core/gselect.py:2102 msgid "PostgreSQL/PostGIS login was not set. Set it via module, please." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2253 +#: ../gui/wxpython/gui_core/gselect.py:2257 #, python-brace-format msgid "Getting raster <{table}> SRID from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2508 +#: ../gui/wxpython/gui_core/gselect.py:2512 #, python-brace-format msgid "Getting list of tables from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2597 +#: ../gui/wxpython/gui_core/gselect.py:2601 #, python-brace-format msgid "Getting list of tables columns data types from PostGIS DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2628 +#: ../gui/wxpython/gui_core/gselect.py:2632 #, python-brace-format msgid "PostgreSQL DB <{psql}> program was not found. Please, install it." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2648 +#: ../gui/wxpython/gui_core/gselect.py:2652 #: ../gui/wxpython/modules/import_export.py:506 msgid "The Python GDAL package is missing. Please install it." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "LineString" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 #: ../gui/wxpython/psmap/dialogs.py:6221 ../gui/wxpython/psmap/toolbars.py:103 #: ../gui/wxpython/vdigit/preferences.py:729 msgid "Point" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "Polygon" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2982 +#: ../gui/wxpython/gui_core/gselect.py:2986 msgid "No vector map selected in layer manager. Operation canceled." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3001 +#: ../gui/wxpython/gui_core/gselect.py:3005 msgid "Input vector map is not selected" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3005 +#: ../gui/wxpython/gui_core/gselect.py:3009 #, python-format msgid "Input vector map <%s> and selected map <%s> in layer manager are different. Operation canceled." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3121 +#: ../gui/wxpython/gui_core/gselect.py:3125 #, python-format msgid "Unable to import C imagery library functions: %s\n" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3199 +#: ../gui/wxpython/gui_core/gselect.py:3203 msgid "No vector map selected" msgstr "" diff --git a/locale/po/grasswxpy_it.po b/locale/po/grasswxpy_it.po index 865f5cb738a..0e231448cd0 100644 --- a/locale/po/grasswxpy_it.po +++ b/locale/po/grasswxpy_it.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: grasswxpy_it\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-08-26 13:29+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Italian \n" @@ -201,9 +201,9 @@ msgstr "Seleziona visuale 2D o 3D" #: ../gui/wxpython/animation/dialogs.py:415 #: ../gui/wxpython/gmodeler/preferences.py:730 -#: ../gui/wxpython/gui_core/gselect.py:1629 -#: ../gui/wxpython/gui_core/gselect.py:1646 -#: ../gui/wxpython/gui_core/gselect.py:1647 +#: ../gui/wxpython/gui_core/gselect.py:1633 +#: ../gui/wxpython/gui_core/gselect.py:1650 +#: ../gui/wxpython/gui_core/gselect.py:1651 #: ../gui/wxpython/gui_core/widgets.py:1462 #: ../gui/wxpython/vnet/dialogs.py:1679 msgid "Name:" @@ -255,11 +255,11 @@ msgstr "Scegliere un file dell'ambiente di lavoro per importare i parametri dell #: ../gui/wxpython/animation/dialogs.py:1278 #: ../gui/wxpython/gui_core/forms.py:2009 #: ../gui/wxpython/gui_core/forms.py:2120 -#: ../gui/wxpython/gui_core/gselect.py:1245 -#: ../gui/wxpython/gui_core/gselect.py:1561 -#: ../gui/wxpython/gui_core/gselect.py:1578 -#: ../gui/wxpython/gui_core/gselect.py:1631 -#: ../gui/wxpython/gui_core/gselect.py:1666 +#: ../gui/wxpython/gui_core/gselect.py:1249 +#: ../gui/wxpython/gui_core/gselect.py:1565 +#: ../gui/wxpython/gui_core/gselect.py:1582 +#: ../gui/wxpython/gui_core/gselect.py:1635 +#: ../gui/wxpython/gui_core/gselect.py:1670 #: ../gui/wxpython/location_wizard/wizard.py:1446 #: ../gui/wxpython/location_wizard/wizard.py:1801 #: ../gui/wxpython/modules/import_export.py:862 @@ -457,8 +457,8 @@ msgid "File format:" msgstr "Formato del file:" #: ../gui/wxpython/animation/dialogs.py:1194 -#: ../gui/wxpython/gui_core/gselect.py:1576 -#: ../gui/wxpython/gui_core/gselect.py:1664 +#: ../gui/wxpython/gui_core/gselect.py:1580 +#: ../gui/wxpython/gui_core/gselect.py:1668 msgid "Directory:" msgstr "Cartella:" @@ -2286,7 +2286,7 @@ msgid "Data type" msgstr "Tipo dei dati" #: ../gui/wxpython/dbmgr/base.py:3051 ../gui/wxpython/dbmgr/base.py:3203 -#: ../gui/wxpython/dbmgr/base.py:3471 ../gui/wxpython/gui_core/gselect.py:1479 +#: ../gui/wxpython/dbmgr/base.py:3471 ../gui/wxpython/gui_core/gselect.py:1483 msgid "Database" msgstr "Database" @@ -3697,13 +3697,13 @@ msgid "Delete all" msgstr "Elimina tutto" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "No" msgstr "No" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "Yes" msgstr "Si" @@ -4844,7 +4844,7 @@ msgid "Enter file content directly instead of specifying a file. Temporary file msgstr "Inserire direttamente il contenuto del file invece di specificare un file. Un file temporaneo sarà automaticamente creato. " #: ../gui/wxpython/gui_core/forms.py:2119 -#: ../gui/wxpython/gui_core/gselect.py:1475 +#: ../gui/wxpython/gui_core/gselect.py:1479 msgid "Directory" msgstr "Cartella" @@ -5150,182 +5150,182 @@ msgstr "" msgid "No table linked to layer <{}>." msgstr "Nessuna tabella collegata al layer <{}>" -#: ../gui/wxpython/gui_core/gselect.py:1244 +#: ../gui/wxpython/gui_core/gselect.py:1248 #: ../gui/wxpython/image2target/ii2t_gis_set.py:1017 msgid "Choose GIS Data Directory" msgstr "Selezionare cartella del database GIS" -#: ../gui/wxpython/gui_core/gselect.py:1456 +#: ../gui/wxpython/gui_core/gselect.py:1460 msgid "Output settings" msgstr "Impostazioni degli output" -#: ../gui/wxpython/gui_core/gselect.py:1458 +#: ../gui/wxpython/gui_core/gselect.py:1462 msgid "Source input" msgstr "Sorgente di input" -#: ../gui/wxpython/gui_core/gselect.py:1465 +#: ../gui/wxpython/gui_core/gselect.py:1469 msgid "Native" msgstr "Nativo" -#: ../gui/wxpython/gui_core/gselect.py:1471 +#: ../gui/wxpython/gui_core/gselect.py:1475 #: ../gui/wxpython/lmgr/workspace.py:517 msgid "File" msgstr "File" -#: ../gui/wxpython/gui_core/gselect.py:1483 +#: ../gui/wxpython/gui_core/gselect.py:1487 msgid "Protocol" msgstr "Protocollo" -#: ../gui/wxpython/gui_core/gselect.py:1494 +#: ../gui/wxpython/gui_core/gselect.py:1498 msgid "Output type" msgstr "Tipologia di output" -#: ../gui/wxpython/gui_core/gselect.py:1496 +#: ../gui/wxpython/gui_core/gselect.py:1500 msgid "Source type" msgstr "Tipo di sorgente" -#: ../gui/wxpython/gui_core/gselect.py:1514 +#: ../gui/wxpython/gui_core/gselect.py:1518 msgid "All files" msgstr "Tutti i file" -#: ../gui/wxpython/gui_core/gselect.py:1544 +#: ../gui/wxpython/gui_core/gselect.py:1548 msgid "ZIP files" msgstr "Files ZIP" -#: ../gui/wxpython/gui_core/gselect.py:1545 +#: ../gui/wxpython/gui_core/gselect.py:1549 msgid "GZIP files" msgstr "Files GZIP" -#: ../gui/wxpython/gui_core/gselect.py:1546 +#: ../gui/wxpython/gui_core/gselect.py:1550 msgid "TAR files" msgstr "Files TAR" -#: ../gui/wxpython/gui_core/gselect.py:1550 +#: ../gui/wxpython/gui_core/gselect.py:1554 msgid "TARGZ files" msgstr "Files TARGZ" -#: ../gui/wxpython/gui_core/gselect.py:1559 +#: ../gui/wxpython/gui_core/gselect.py:1563 msgid "File:" msgstr "File:" -#: ../gui/wxpython/gui_core/gselect.py:1560 +#: ../gui/wxpython/gui_core/gselect.py:1564 msgid "Choose file to import" msgstr "Scegli file da importare" -#: ../gui/wxpython/gui_core/gselect.py:1577 -#: ../gui/wxpython/gui_core/gselect.py:1665 +#: ../gui/wxpython/gui_core/gselect.py:1581 +#: ../gui/wxpython/gui_core/gselect.py:1669 msgid "Choose input directory" msgstr "Scegli cartella di input" -#: ../gui/wxpython/gui_core/gselect.py:1598 +#: ../gui/wxpython/gui_core/gselect.py:1602 msgid "Extension:" msgstr "Estensione:" -#: ../gui/wxpython/gui_core/gselect.py:1630 +#: ../gui/wxpython/gui_core/gselect.py:1634 msgid "Choose file" msgstr "Scegli file:" -#: ../gui/wxpython/gui_core/gselect.py:1651 -#: ../gui/wxpython/gui_core/gselect.py:2777 +#: ../gui/wxpython/gui_core/gselect.py:1655 +#: ../gui/wxpython/gui_core/gselect.py:2781 msgid "Feature type:" msgstr "Tipologia delle feature:" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "simple features" msgstr "features semplici" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "topological" msgstr "topologico" -#: ../gui/wxpython/gui_core/gselect.py:1769 -#: ../gui/wxpython/gui_core/gselect.py:1809 -#: ../gui/wxpython/gui_core/gselect.py:1871 -#: ../gui/wxpython/gui_core/gselect.py:1916 +#: ../gui/wxpython/gui_core/gselect.py:1773 +#: ../gui/wxpython/gui_core/gselect.py:1813 +#: ../gui/wxpython/gui_core/gselect.py:1875 +#: ../gui/wxpython/gui_core/gselect.py:1920 msgid "Creation options:" msgstr "Creazione delle opzioni:" -#: ../gui/wxpython/gui_core/gselect.py:1786 -#: ../gui/wxpython/gui_core/gselect.py:1832 -#: ../gui/wxpython/gui_core/gselect.py:1897 +#: ../gui/wxpython/gui_core/gselect.py:1790 +#: ../gui/wxpython/gui_core/gselect.py:1836 +#: ../gui/wxpython/gui_core/gselect.py:1901 msgid "Format:" msgstr "Formato:" -#: ../gui/wxpython/gui_core/gselect.py:1905 +#: ../gui/wxpython/gui_core/gselect.py:1909 msgid "Protocol:" msgstr "Protocollo:" -#: ../gui/wxpython/gui_core/gselect.py:1934 +#: ../gui/wxpython/gui_core/gselect.py:1938 msgid "No settings available" msgstr "Nessuna impostazione disponibile" -#: ../gui/wxpython/gui_core/gselect.py:2066 +#: ../gui/wxpython/gui_core/gselect.py:2070 #: ../gui/wxpython/web_services/dialogs.py:302 msgid "No data source defined, settings are not saved." msgstr "Nessuna sorgente dei dati definita, impostazioni non salvate." -#: ../gui/wxpython/gui_core/gselect.py:2098 +#: ../gui/wxpython/gui_core/gselect.py:2102 msgid "PostgreSQL/PostGIS login was not set. Set it via module, please." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2253 +#: ../gui/wxpython/gui_core/gselect.py:2257 #, python-brace-format msgid "Getting raster <{table}> SRID from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2508 +#: ../gui/wxpython/gui_core/gselect.py:2512 #, python-brace-format msgid "Getting list of tables from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2597 +#: ../gui/wxpython/gui_core/gselect.py:2601 #, python-brace-format msgid "Getting list of tables columns data types from PostGIS DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2628 +#: ../gui/wxpython/gui_core/gselect.py:2632 #, python-brace-format msgid "PostgreSQL DB <{psql}> program was not found. Please, install it." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2648 +#: ../gui/wxpython/gui_core/gselect.py:2652 #: ../gui/wxpython/modules/import_export.py:506 msgid "The Python GDAL package is missing. Please install it." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "LineString" msgstr "LineString" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 #: ../gui/wxpython/psmap/dialogs.py:6221 ../gui/wxpython/psmap/toolbars.py:103 #: ../gui/wxpython/vdigit/preferences.py:729 msgid "Point" msgstr "Punto" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "Polygon" msgstr "Poligono" -#: ../gui/wxpython/gui_core/gselect.py:2982 +#: ../gui/wxpython/gui_core/gselect.py:2986 msgid "No vector map selected in layer manager. Operation canceled." msgstr "Nessuna mappa vettoriale selezionata nel layer manager. Operazione cancellata." -#: ../gui/wxpython/gui_core/gselect.py:3001 +#: ../gui/wxpython/gui_core/gselect.py:3005 msgid "Input vector map is not selected" msgstr "Mappa vettoriale di input non selezionata" -#: ../gui/wxpython/gui_core/gselect.py:3005 +#: ../gui/wxpython/gui_core/gselect.py:3009 #, python-format msgid "Input vector map <%s> and selected map <%s> in layer manager are different. Operation canceled." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3121 +#: ../gui/wxpython/gui_core/gselect.py:3125 #, python-format msgid "Unable to import C imagery library functions: %s\n" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3199 +#: ../gui/wxpython/gui_core/gselect.py:3203 msgid "No vector map selected" msgstr "Nessuna mappa vettoriale selezionata" @@ -15475,22 +15475,6 @@ msgid "" "\n" msgstr "" -#, fuzzy -#~ msgid "Do you want to create a new project (also known as location)?" -#~ msgstr "Si vuole creare un nuovo mapset?" - -#~ msgid "Create project?" -#~ msgstr "Crea progetto?" - -#~ msgid "Allow edits outside of the current mapset" -#~ msgstr "Permetti modifiche al di fuori dell'attuale mapset" - -#~ msgid "Add existing or create new database" -#~ msgstr "Aggiungi un database esistente o creane uno nuovo" - -#~ msgid "Create new project (location) in current GRASS database" -#~ msgstr "Crea nuovo progetto (location) nell'attuale database GRASS" - #~ msgid " (readonly)" #~ msgstr "(sola lettura)" @@ -15685,6 +15669,9 @@ msgstr "" #~ msgid "Add default servers" #~ msgstr "Aggiungi server di default" +#~ msgid "Add existing or create new database" +#~ msgstr "Aggiungi un database esistente o creane uno nuovo" + #~ msgid "Add imported layers into layer tree ({mightNotWork})" #~ msgstr "Aggiungi i layer importati nel layer tree ({mightNotWork})" @@ -15769,6 +15756,9 @@ msgstr "" #~ msgid "Allocate subnets" #~ msgstr "Alloca subnets" +#~ msgid "Allow edits outside of the current mapset" +#~ msgstr "Permetti modifiche al di fuori dell'attuale mapset" + #~ msgid "Allows creation and/or modification of raster map layer support files." #~ msgstr "Permette la creazione e/o la modificazione dei file di supporto ai raster" @@ -16322,6 +16312,9 @@ msgstr "" #~ msgid "Create new project (location)" #~ msgstr "Crea nuovo progetto (location)" +#~ msgid "Create new project (location) in current GRASS database" +#~ msgstr "Crea nuovo progetto (location) nell'attuale database GRASS" + #~ msgid "Create new workspace" #~ msgstr "Crea una nuova area di lavoro" @@ -16334,6 +16327,9 @@ msgstr "" #~ msgid "Create points/segments" #~ msgstr "Crea punti/segmenti" +#~ msgid "Create project?" +#~ msgstr "Crea progetto?" + #~ msgid "Create stationing" #~ msgstr "Crea dislocazioni" @@ -16597,6 +16593,10 @@ msgstr "" #~ msgid "Do you really want to delete map <{m}> of type <{etype}> from mapset <{mapset}> in location <{loc}>?" #~ msgstr "Si vuole veramente eliminare la mappa <{m}> di tipo <{etype}> dal mapset <{mapset}> nella location <{loc}>?" +#, fuzzy +#~ msgid "Do you want to create a new project (also known as location)?" +#~ msgstr "Si vuole creare un nuovo mapset?" + #~ msgid "Do you want to set the default region extents and resolution now?" #~ msgstr "Vuoi impostare l'estensione e la risoluzione della region di default ora?" diff --git a/locale/po/grasswxpy_ja.po b/locale/po/grasswxpy_ja.po index 6ab6c4cb783..7f1b1867532 100644 --- a/locale/po/grasswxpy_ja.po +++ b/locale/po/grasswxpy_ja.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: grasswxpy_ja\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-08-26 14:19+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Japanese \n" @@ -204,9 +204,9 @@ msgstr "" #: ../gui/wxpython/animation/dialogs.py:415 #: ../gui/wxpython/gmodeler/preferences.py:730 -#: ../gui/wxpython/gui_core/gselect.py:1629 -#: ../gui/wxpython/gui_core/gselect.py:1646 -#: ../gui/wxpython/gui_core/gselect.py:1647 +#: ../gui/wxpython/gui_core/gselect.py:1633 +#: ../gui/wxpython/gui_core/gselect.py:1650 +#: ../gui/wxpython/gui_core/gselect.py:1651 #: ../gui/wxpython/gui_core/widgets.py:1462 #: ../gui/wxpython/vnet/dialogs.py:1679 msgid "Name:" @@ -256,11 +256,11 @@ msgstr "" #: ../gui/wxpython/animation/dialogs.py:1278 #: ../gui/wxpython/gui_core/forms.py:2009 #: ../gui/wxpython/gui_core/forms.py:2120 -#: ../gui/wxpython/gui_core/gselect.py:1245 -#: ../gui/wxpython/gui_core/gselect.py:1561 -#: ../gui/wxpython/gui_core/gselect.py:1578 -#: ../gui/wxpython/gui_core/gselect.py:1631 -#: ../gui/wxpython/gui_core/gselect.py:1666 +#: ../gui/wxpython/gui_core/gselect.py:1249 +#: ../gui/wxpython/gui_core/gselect.py:1565 +#: ../gui/wxpython/gui_core/gselect.py:1582 +#: ../gui/wxpython/gui_core/gselect.py:1635 +#: ../gui/wxpython/gui_core/gselect.py:1670 #: ../gui/wxpython/location_wizard/wizard.py:1446 #: ../gui/wxpython/location_wizard/wizard.py:1801 #: ../gui/wxpython/modules/import_export.py:862 @@ -458,8 +458,8 @@ msgid "File format:" msgstr "" #: ../gui/wxpython/animation/dialogs.py:1194 -#: ../gui/wxpython/gui_core/gselect.py:1576 -#: ../gui/wxpython/gui_core/gselect.py:1664 +#: ../gui/wxpython/gui_core/gselect.py:1580 +#: ../gui/wxpython/gui_core/gselect.py:1668 msgid "Directory:" msgstr "ディレクトリ:" @@ -2285,7 +2285,7 @@ msgid "Data type" msgstr "データタイプ " #: ../gui/wxpython/dbmgr/base.py:3051 ../gui/wxpython/dbmgr/base.py:3203 -#: ../gui/wxpython/dbmgr/base.py:3471 ../gui/wxpython/gui_core/gselect.py:1479 +#: ../gui/wxpython/dbmgr/base.py:3471 ../gui/wxpython/gui_core/gselect.py:1483 msgid "Database" msgstr "データベース " @@ -3685,13 +3685,13 @@ msgid "Delete all" msgstr "全てを削除" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "No" msgstr "いいえ" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "Yes" msgstr "はい" @@ -4821,7 +4821,7 @@ msgid "Enter file content directly instead of specifying a file. Temporary file msgstr "" #: ../gui/wxpython/gui_core/forms.py:2119 -#: ../gui/wxpython/gui_core/gselect.py:1475 +#: ../gui/wxpython/gui_core/gselect.py:1479 msgid "Directory" msgstr "ディレクトリ" @@ -5118,182 +5118,182 @@ msgstr "" msgid "No table linked to layer <{}>." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1244 +#: ../gui/wxpython/gui_core/gselect.py:1248 #: ../gui/wxpython/image2target/ii2t_gis_set.py:1017 msgid "Choose GIS Data Directory" msgstr "GISデータディレクトリの選択" -#: ../gui/wxpython/gui_core/gselect.py:1456 +#: ../gui/wxpython/gui_core/gselect.py:1460 msgid "Output settings" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1458 +#: ../gui/wxpython/gui_core/gselect.py:1462 msgid "Source input" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1465 +#: ../gui/wxpython/gui_core/gselect.py:1469 msgid "Native" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1471 +#: ../gui/wxpython/gui_core/gselect.py:1475 #: ../gui/wxpython/lmgr/workspace.py:517 msgid "File" msgstr "ファイル " -#: ../gui/wxpython/gui_core/gselect.py:1483 +#: ../gui/wxpython/gui_core/gselect.py:1487 msgid "Protocol" msgstr "プロトコル" -#: ../gui/wxpython/gui_core/gselect.py:1494 +#: ../gui/wxpython/gui_core/gselect.py:1498 msgid "Output type" msgstr "出力タイプ" -#: ../gui/wxpython/gui_core/gselect.py:1496 +#: ../gui/wxpython/gui_core/gselect.py:1500 msgid "Source type" msgstr "ソースタイプ" -#: ../gui/wxpython/gui_core/gselect.py:1514 +#: ../gui/wxpython/gui_core/gselect.py:1518 msgid "All files" msgstr "全ファイル" -#: ../gui/wxpython/gui_core/gselect.py:1544 +#: ../gui/wxpython/gui_core/gselect.py:1548 msgid "ZIP files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1545 +#: ../gui/wxpython/gui_core/gselect.py:1549 msgid "GZIP files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1546 +#: ../gui/wxpython/gui_core/gselect.py:1550 msgid "TAR files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1550 +#: ../gui/wxpython/gui_core/gselect.py:1554 msgid "TARGZ files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1559 +#: ../gui/wxpython/gui_core/gselect.py:1563 msgid "File:" msgstr "ファイル:" -#: ../gui/wxpython/gui_core/gselect.py:1560 +#: ../gui/wxpython/gui_core/gselect.py:1564 msgid "Choose file to import" msgstr "インポートするファイルを選択" -#: ../gui/wxpython/gui_core/gselect.py:1577 -#: ../gui/wxpython/gui_core/gselect.py:1665 +#: ../gui/wxpython/gui_core/gselect.py:1581 +#: ../gui/wxpython/gui_core/gselect.py:1669 msgid "Choose input directory" msgstr "入力ディレクトリ選択 " -#: ../gui/wxpython/gui_core/gselect.py:1598 +#: ../gui/wxpython/gui_core/gselect.py:1602 msgid "Extension:" msgstr "発光度" -#: ../gui/wxpython/gui_core/gselect.py:1630 +#: ../gui/wxpython/gui_core/gselect.py:1634 msgid "Choose file" msgstr "ファイルを選択" -#: ../gui/wxpython/gui_core/gselect.py:1651 -#: ../gui/wxpython/gui_core/gselect.py:2777 +#: ../gui/wxpython/gui_core/gselect.py:1655 +#: ../gui/wxpython/gui_core/gselect.py:2781 msgid "Feature type:" msgstr "フィーチャタイプ:" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "simple features" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "topological" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1769 -#: ../gui/wxpython/gui_core/gselect.py:1809 -#: ../gui/wxpython/gui_core/gselect.py:1871 -#: ../gui/wxpython/gui_core/gselect.py:1916 +#: ../gui/wxpython/gui_core/gselect.py:1773 +#: ../gui/wxpython/gui_core/gselect.py:1813 +#: ../gui/wxpython/gui_core/gselect.py:1875 +#: ../gui/wxpython/gui_core/gselect.py:1920 msgid "Creation options:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1786 -#: ../gui/wxpython/gui_core/gselect.py:1832 -#: ../gui/wxpython/gui_core/gselect.py:1897 +#: ../gui/wxpython/gui_core/gselect.py:1790 +#: ../gui/wxpython/gui_core/gselect.py:1836 +#: ../gui/wxpython/gui_core/gselect.py:1901 msgid "Format:" msgstr "フォーマット:" -#: ../gui/wxpython/gui_core/gselect.py:1905 +#: ../gui/wxpython/gui_core/gselect.py:1909 msgid "Protocol:" msgstr "プロトコル:" -#: ../gui/wxpython/gui_core/gselect.py:1934 +#: ../gui/wxpython/gui_core/gselect.py:1938 msgid "No settings available" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2066 +#: ../gui/wxpython/gui_core/gselect.py:2070 #: ../gui/wxpython/web_services/dialogs.py:302 msgid "No data source defined, settings are not saved." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2098 +#: ../gui/wxpython/gui_core/gselect.py:2102 msgid "PostgreSQL/PostGIS login was not set. Set it via module, please." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2253 +#: ../gui/wxpython/gui_core/gselect.py:2257 #, python-brace-format msgid "Getting raster <{table}> SRID from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2508 +#: ../gui/wxpython/gui_core/gselect.py:2512 #, python-brace-format msgid "Getting list of tables from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2597 +#: ../gui/wxpython/gui_core/gselect.py:2601 #, python-brace-format msgid "Getting list of tables columns data types from PostGIS DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2628 +#: ../gui/wxpython/gui_core/gselect.py:2632 #, python-brace-format msgid "PostgreSQL DB <{psql}> program was not found. Please, install it." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2648 +#: ../gui/wxpython/gui_core/gselect.py:2652 #: ../gui/wxpython/modules/import_export.py:506 msgid "The Python GDAL package is missing. Please install it." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "LineString" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 #: ../gui/wxpython/psmap/dialogs.py:6221 ../gui/wxpython/psmap/toolbars.py:103 #: ../gui/wxpython/vdigit/preferences.py:729 msgid "Point" msgstr "ポイント" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "Polygon" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2982 +#: ../gui/wxpython/gui_core/gselect.py:2986 msgid "No vector map selected in layer manager. Operation canceled." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3001 +#: ../gui/wxpython/gui_core/gselect.py:3005 msgid "Input vector map is not selected" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3005 +#: ../gui/wxpython/gui_core/gselect.py:3009 #, python-format msgid "Input vector map <%s> and selected map <%s> in layer manager are different. Operation canceled." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3121 +#: ../gui/wxpython/gui_core/gselect.py:3125 #, python-format msgid "Unable to import C imagery library functions: %s\n" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3199 +#: ../gui/wxpython/gui_core/gselect.py:3203 msgid "No vector map selected" msgstr "" @@ -15312,14 +15312,6 @@ msgid "" "\n" msgstr "" -#, fuzzy -#~ msgid "Do you want to create a new project (also known as location)?" -#~ msgstr "GRASS ロケーションを作成しますか <%s>?" - -#, fuzzy -#~ msgid "Create project?" -#~ msgstr "新しいロケーションを作成しますか?" - #~ msgid " -- completed. Go to Layers tab for further operations." #~ msgstr " -- 完了しました. 次の処理のためにレイヤタブを表示してください." @@ -15889,6 +15881,10 @@ msgstr "" #~ msgid "Create points/segments" #~ msgstr "ポイント/セグメントの作成 " +#, fuzzy +#~ msgid "Create project?" +#~ msgstr "新しいロケーションを作成しますか?" + #~ msgid "Create stationing" #~ msgstr "配置測点作成" @@ -16066,6 +16062,10 @@ msgstr "" #~ msgid "Do you really want to delete map <{m}> of type <{etype}> from mapset <{mapset}> in location <{loc}>?" #~ msgstr "下記の情報を削除してよろしいですか マップ <{m}> タイプ <{etype}> マップセット <{mapset}> ロケーション<{loc}>?" +#, fuzzy +#~ msgid "Do you want to create a new project (also known as location)?" +#~ msgstr "GRASS ロケーションを作成しますか <%s>?" + #~ msgid "Do you want to set the default region extents and resolution now?" #~ msgstr "デフォルト領域と解像度をセットしますか?" diff --git a/locale/po/grasswxpy_ko.po b/locale/po/grasswxpy_ko.po index cd6093982ca..916987f2a32 100644 --- a/locale/po/grasswxpy_ko.po +++ b/locale/po/grasswxpy_ko.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: grasswxpy_ko\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2014-05-03 16:44-0400\n" "Last-Translator: Huidae Cho \n" "Language-Team: Korean \n" @@ -199,9 +199,9 @@ msgstr "" #: ../gui/wxpython/animation/dialogs.py:415 #: ../gui/wxpython/gmodeler/preferences.py:730 -#: ../gui/wxpython/gui_core/gselect.py:1629 -#: ../gui/wxpython/gui_core/gselect.py:1646 -#: ../gui/wxpython/gui_core/gselect.py:1647 +#: ../gui/wxpython/gui_core/gselect.py:1633 +#: ../gui/wxpython/gui_core/gselect.py:1650 +#: ../gui/wxpython/gui_core/gselect.py:1651 #: ../gui/wxpython/gui_core/widgets.py:1462 #: ../gui/wxpython/vnet/dialogs.py:1679 msgid "Name:" @@ -251,11 +251,11 @@ msgstr "" #: ../gui/wxpython/animation/dialogs.py:1278 #: ../gui/wxpython/gui_core/forms.py:2009 #: ../gui/wxpython/gui_core/forms.py:2120 -#: ../gui/wxpython/gui_core/gselect.py:1245 -#: ../gui/wxpython/gui_core/gselect.py:1561 -#: ../gui/wxpython/gui_core/gselect.py:1578 -#: ../gui/wxpython/gui_core/gselect.py:1631 -#: ../gui/wxpython/gui_core/gselect.py:1666 +#: ../gui/wxpython/gui_core/gselect.py:1249 +#: ../gui/wxpython/gui_core/gselect.py:1565 +#: ../gui/wxpython/gui_core/gselect.py:1582 +#: ../gui/wxpython/gui_core/gselect.py:1635 +#: ../gui/wxpython/gui_core/gselect.py:1670 #: ../gui/wxpython/location_wizard/wizard.py:1446 #: ../gui/wxpython/location_wizard/wizard.py:1801 #: ../gui/wxpython/modules/import_export.py:862 @@ -453,8 +453,8 @@ msgid "File format:" msgstr "" #: ../gui/wxpython/animation/dialogs.py:1194 -#: ../gui/wxpython/gui_core/gselect.py:1576 -#: ../gui/wxpython/gui_core/gselect.py:1664 +#: ../gui/wxpython/gui_core/gselect.py:1580 +#: ../gui/wxpython/gui_core/gselect.py:1668 msgid "Directory:" msgstr "" @@ -2239,7 +2239,7 @@ msgid "Data type" msgstr "" #: ../gui/wxpython/dbmgr/base.py:3051 ../gui/wxpython/dbmgr/base.py:3203 -#: ../gui/wxpython/dbmgr/base.py:3471 ../gui/wxpython/gui_core/gselect.py:1479 +#: ../gui/wxpython/dbmgr/base.py:3471 ../gui/wxpython/gui_core/gselect.py:1483 msgid "Database" msgstr "데이터베이스" @@ -3615,13 +3615,13 @@ msgid "Delete all" msgstr "모두 삭제합니다" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "No" msgstr "" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "Yes" msgstr "예" @@ -4737,7 +4737,7 @@ msgid "Enter file content directly instead of specifying a file. Temporary file msgstr "파일을 지정하는 대신 파일 내용을 직접 입력하세요. 임시 파일이 자동으로 생성됩니다." #: ../gui/wxpython/gui_core/forms.py:2119 -#: ../gui/wxpython/gui_core/gselect.py:1475 +#: ../gui/wxpython/gui_core/gselect.py:1479 msgid "Directory" msgstr "" @@ -5033,182 +5033,182 @@ msgstr "" msgid "No table linked to layer <{}>." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1244 +#: ../gui/wxpython/gui_core/gselect.py:1248 #: ../gui/wxpython/image2target/ii2t_gis_set.py:1017 msgid "Choose GIS Data Directory" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1456 +#: ../gui/wxpython/gui_core/gselect.py:1460 msgid "Output settings" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1458 +#: ../gui/wxpython/gui_core/gselect.py:1462 msgid "Source input" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1465 +#: ../gui/wxpython/gui_core/gselect.py:1469 msgid "Native" msgstr "고유" -#: ../gui/wxpython/gui_core/gselect.py:1471 +#: ../gui/wxpython/gui_core/gselect.py:1475 #: ../gui/wxpython/lmgr/workspace.py:517 msgid "File" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1483 +#: ../gui/wxpython/gui_core/gselect.py:1487 msgid "Protocol" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1494 +#: ../gui/wxpython/gui_core/gselect.py:1498 msgid "Output type" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1496 +#: ../gui/wxpython/gui_core/gselect.py:1500 msgid "Source type" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1514 +#: ../gui/wxpython/gui_core/gselect.py:1518 msgid "All files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1544 +#: ../gui/wxpython/gui_core/gselect.py:1548 msgid "ZIP files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1545 +#: ../gui/wxpython/gui_core/gselect.py:1549 msgid "GZIP files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1546 +#: ../gui/wxpython/gui_core/gselect.py:1550 msgid "TAR files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1550 +#: ../gui/wxpython/gui_core/gselect.py:1554 msgid "TARGZ files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1559 +#: ../gui/wxpython/gui_core/gselect.py:1563 msgid "File:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1560 +#: ../gui/wxpython/gui_core/gselect.py:1564 msgid "Choose file to import" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1577 -#: ../gui/wxpython/gui_core/gselect.py:1665 +#: ../gui/wxpython/gui_core/gselect.py:1581 +#: ../gui/wxpython/gui_core/gselect.py:1669 msgid "Choose input directory" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1598 +#: ../gui/wxpython/gui_core/gselect.py:1602 msgid "Extension:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1630 +#: ../gui/wxpython/gui_core/gselect.py:1634 msgid "Choose file" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1651 -#: ../gui/wxpython/gui_core/gselect.py:2777 +#: ../gui/wxpython/gui_core/gselect.py:1655 +#: ../gui/wxpython/gui_core/gselect.py:2781 msgid "Feature type:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "simple features" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "topological" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1769 -#: ../gui/wxpython/gui_core/gselect.py:1809 -#: ../gui/wxpython/gui_core/gselect.py:1871 -#: ../gui/wxpython/gui_core/gselect.py:1916 +#: ../gui/wxpython/gui_core/gselect.py:1773 +#: ../gui/wxpython/gui_core/gselect.py:1813 +#: ../gui/wxpython/gui_core/gselect.py:1875 +#: ../gui/wxpython/gui_core/gselect.py:1920 msgid "Creation options:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1786 -#: ../gui/wxpython/gui_core/gselect.py:1832 -#: ../gui/wxpython/gui_core/gselect.py:1897 +#: ../gui/wxpython/gui_core/gselect.py:1790 +#: ../gui/wxpython/gui_core/gselect.py:1836 +#: ../gui/wxpython/gui_core/gselect.py:1901 msgid "Format:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1905 +#: ../gui/wxpython/gui_core/gselect.py:1909 msgid "Protocol:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1934 +#: ../gui/wxpython/gui_core/gselect.py:1938 msgid "No settings available" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2066 +#: ../gui/wxpython/gui_core/gselect.py:2070 #: ../gui/wxpython/web_services/dialogs.py:302 msgid "No data source defined, settings are not saved." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2098 +#: ../gui/wxpython/gui_core/gselect.py:2102 msgid "PostgreSQL/PostGIS login was not set. Set it via module, please." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2253 +#: ../gui/wxpython/gui_core/gselect.py:2257 #, python-brace-format msgid "Getting raster <{table}> SRID from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2508 +#: ../gui/wxpython/gui_core/gselect.py:2512 #, python-brace-format msgid "Getting list of tables from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2597 +#: ../gui/wxpython/gui_core/gselect.py:2601 #, python-brace-format msgid "Getting list of tables columns data types from PostGIS DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2628 +#: ../gui/wxpython/gui_core/gselect.py:2632 #, python-brace-format msgid "PostgreSQL DB <{psql}> program was not found. Please, install it." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2648 +#: ../gui/wxpython/gui_core/gselect.py:2652 #: ../gui/wxpython/modules/import_export.py:506 msgid "The Python GDAL package is missing. Please install it." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "LineString" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 #: ../gui/wxpython/psmap/dialogs.py:6221 ../gui/wxpython/psmap/toolbars.py:103 #: ../gui/wxpython/vdigit/preferences.py:729 msgid "Point" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "Polygon" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2982 +#: ../gui/wxpython/gui_core/gselect.py:2986 msgid "No vector map selected in layer manager. Operation canceled." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3001 +#: ../gui/wxpython/gui_core/gselect.py:3005 msgid "Input vector map is not selected" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3005 +#: ../gui/wxpython/gui_core/gselect.py:3009 #, python-format msgid "Input vector map <%s> and selected map <%s> in layer manager are different. Operation canceled." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3121 +#: ../gui/wxpython/gui_core/gselect.py:3125 #, python-format msgid "Unable to import C imagery library functions: %s\n" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3199 +#: ../gui/wxpython/gui_core/gselect.py:3203 msgid "No vector map selected" msgstr "" @@ -15120,14 +15120,6 @@ msgid "" "\n" msgstr "" -#, fuzzy -#~ msgid "Do you want to create a new project (also known as location)?" -#~ msgstr "자료를 영구히 삭제하길 원하십니까? %s" - -#, fuzzy -#~ msgid "Create project?" -#~ msgstr "원천 자료 투영:" - #, python-format #~ msgid "%s. cleaning tool moved down" #~ msgstr "%s. 정리 도구를 아래로 이동했습니다" @@ -15292,6 +15284,10 @@ msgstr "" #~ msgid "Create new project (location)" #~ msgstr "선택된 로케이션을 삭제합니다" +#, fuzzy +#~ msgid "Create project?" +#~ msgstr "원천 자료 투영:" + #~ msgid "Creates a topographic index (wetness index) raster map from an elevation raster map." #~ msgstr "표고 래스터 지도로부터 지형지표(습윤지표) 래스터 지도를 생성합니다." @@ -15335,6 +15331,10 @@ msgstr "" #~ msgid "Do you really want to delete map <{m}> of type <{etype}> from mapset <{mapset}> in location <{loc}>?" #~ msgstr "로케이션 <{loc}> 내 지도세트 <{mapset}>으로부터 <{etype}> 타입의 지도 <{m}>를 정말로 삭제하길 원하십니까?" +#, fuzzy +#~ msgid "Do you want to create a new project (also known as location)?" +#~ msgstr "자료를 영구히 삭제하길 원하십니까? %s" + #~ msgid "Drop column" #~ msgstr "열 삭제" diff --git a/locale/po/grasswxpy_lv.po b/locale/po/grasswxpy_lv.po index 225519dc6d9..0706a98dd21 100644 --- a/locale/po/grasswxpy_lv.po +++ b/locale/po/grasswxpy_lv.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: grasswxpy_lv\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-08-26 13:29+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Latvian \n" @@ -201,9 +201,9 @@ msgstr "" #: ../gui/wxpython/animation/dialogs.py:415 #: ../gui/wxpython/gmodeler/preferences.py:730 -#: ../gui/wxpython/gui_core/gselect.py:1629 -#: ../gui/wxpython/gui_core/gselect.py:1646 -#: ../gui/wxpython/gui_core/gselect.py:1647 +#: ../gui/wxpython/gui_core/gselect.py:1633 +#: ../gui/wxpython/gui_core/gselect.py:1650 +#: ../gui/wxpython/gui_core/gselect.py:1651 #: ../gui/wxpython/gui_core/widgets.py:1462 #: ../gui/wxpython/vnet/dialogs.py:1679 msgid "Name:" @@ -253,11 +253,11 @@ msgstr "" #: ../gui/wxpython/animation/dialogs.py:1278 #: ../gui/wxpython/gui_core/forms.py:2009 #: ../gui/wxpython/gui_core/forms.py:2120 -#: ../gui/wxpython/gui_core/gselect.py:1245 -#: ../gui/wxpython/gui_core/gselect.py:1561 -#: ../gui/wxpython/gui_core/gselect.py:1578 -#: ../gui/wxpython/gui_core/gselect.py:1631 -#: ../gui/wxpython/gui_core/gselect.py:1666 +#: ../gui/wxpython/gui_core/gselect.py:1249 +#: ../gui/wxpython/gui_core/gselect.py:1565 +#: ../gui/wxpython/gui_core/gselect.py:1582 +#: ../gui/wxpython/gui_core/gselect.py:1635 +#: ../gui/wxpython/gui_core/gselect.py:1670 #: ../gui/wxpython/location_wizard/wizard.py:1446 #: ../gui/wxpython/location_wizard/wizard.py:1801 #: ../gui/wxpython/modules/import_export.py:862 @@ -456,8 +456,8 @@ msgid "File format:" msgstr "Datnes formāts:" #: ../gui/wxpython/animation/dialogs.py:1194 -#: ../gui/wxpython/gui_core/gselect.py:1576 -#: ../gui/wxpython/gui_core/gselect.py:1664 +#: ../gui/wxpython/gui_core/gselect.py:1580 +#: ../gui/wxpython/gui_core/gselect.py:1668 msgid "Directory:" msgstr "Mape:" @@ -2268,7 +2268,7 @@ msgid "Data type" msgstr "Datu tips" #: ../gui/wxpython/dbmgr/base.py:3051 ../gui/wxpython/dbmgr/base.py:3203 -#: ../gui/wxpython/dbmgr/base.py:3471 ../gui/wxpython/gui_core/gselect.py:1479 +#: ../gui/wxpython/dbmgr/base.py:3471 ../gui/wxpython/gui_core/gselect.py:1483 msgid "Database" msgstr "Datubāze" @@ -3652,13 +3652,13 @@ msgid "Delete all" msgstr "Dzēst visu" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "No" msgstr "Nē" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "Yes" msgstr "Jā" @@ -4786,7 +4786,7 @@ msgid "Enter file content directly instead of specifying a file. Temporary file msgstr "" #: ../gui/wxpython/gui_core/forms.py:2119 -#: ../gui/wxpython/gui_core/gselect.py:1475 +#: ../gui/wxpython/gui_core/gselect.py:1479 msgid "Directory" msgstr "Mape" @@ -5085,182 +5085,182 @@ msgstr "" msgid "No table linked to layer <{}>." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1244 +#: ../gui/wxpython/gui_core/gselect.py:1248 #: ../gui/wxpython/image2target/ii2t_gis_set.py:1017 msgid "Choose GIS Data Directory" msgstr "Izvēlieties ĢIS datu mapi" -#: ../gui/wxpython/gui_core/gselect.py:1456 +#: ../gui/wxpython/gui_core/gselect.py:1460 msgid "Output settings" msgstr "Izvades iestatījumi" -#: ../gui/wxpython/gui_core/gselect.py:1458 +#: ../gui/wxpython/gui_core/gselect.py:1462 msgid "Source input" msgstr "Ievades avots" -#: ../gui/wxpython/gui_core/gselect.py:1465 +#: ../gui/wxpython/gui_core/gselect.py:1469 msgid "Native" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1471 +#: ../gui/wxpython/gui_core/gselect.py:1475 #: ../gui/wxpython/lmgr/workspace.py:517 msgid "File" msgstr "Datne" -#: ../gui/wxpython/gui_core/gselect.py:1483 +#: ../gui/wxpython/gui_core/gselect.py:1487 msgid "Protocol" msgstr "Protokols" -#: ../gui/wxpython/gui_core/gselect.py:1494 +#: ../gui/wxpython/gui_core/gselect.py:1498 msgid "Output type" msgstr "Izvades tips" -#: ../gui/wxpython/gui_core/gselect.py:1496 +#: ../gui/wxpython/gui_core/gselect.py:1500 msgid "Source type" msgstr "Avota tips" -#: ../gui/wxpython/gui_core/gselect.py:1514 +#: ../gui/wxpython/gui_core/gselect.py:1518 msgid "All files" msgstr "Visi faili" -#: ../gui/wxpython/gui_core/gselect.py:1544 +#: ../gui/wxpython/gui_core/gselect.py:1548 msgid "ZIP files" msgstr "ZIP faili" -#: ../gui/wxpython/gui_core/gselect.py:1545 +#: ../gui/wxpython/gui_core/gselect.py:1549 msgid "GZIP files" msgstr "GZIP faili" -#: ../gui/wxpython/gui_core/gselect.py:1546 +#: ../gui/wxpython/gui_core/gselect.py:1550 msgid "TAR files" msgstr "TAR faili" -#: ../gui/wxpython/gui_core/gselect.py:1550 +#: ../gui/wxpython/gui_core/gselect.py:1554 msgid "TARGZ files" msgstr "TARGZ faili" -#: ../gui/wxpython/gui_core/gselect.py:1559 +#: ../gui/wxpython/gui_core/gselect.py:1563 msgid "File:" msgstr "Datne:" -#: ../gui/wxpython/gui_core/gselect.py:1560 +#: ../gui/wxpython/gui_core/gselect.py:1564 msgid "Choose file to import" msgstr "Izvēlieties importējamo failu" -#: ../gui/wxpython/gui_core/gselect.py:1577 -#: ../gui/wxpython/gui_core/gselect.py:1665 +#: ../gui/wxpython/gui_core/gselect.py:1581 +#: ../gui/wxpython/gui_core/gselect.py:1669 msgid "Choose input directory" msgstr "Izvēlieties ievades mapi" -#: ../gui/wxpython/gui_core/gselect.py:1598 +#: ../gui/wxpython/gui_core/gselect.py:1602 msgid "Extension:" msgstr "Paplašinājums:" -#: ../gui/wxpython/gui_core/gselect.py:1630 +#: ../gui/wxpython/gui_core/gselect.py:1634 msgid "Choose file" msgstr "Izvēlieties failu" -#: ../gui/wxpython/gui_core/gselect.py:1651 -#: ../gui/wxpython/gui_core/gselect.py:2777 +#: ../gui/wxpython/gui_core/gselect.py:1655 +#: ../gui/wxpython/gui_core/gselect.py:2781 msgid "Feature type:" msgstr "Objekta tips:" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "simple features" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "topological" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1769 -#: ../gui/wxpython/gui_core/gselect.py:1809 -#: ../gui/wxpython/gui_core/gselect.py:1871 -#: ../gui/wxpython/gui_core/gselect.py:1916 +#: ../gui/wxpython/gui_core/gselect.py:1773 +#: ../gui/wxpython/gui_core/gselect.py:1813 +#: ../gui/wxpython/gui_core/gselect.py:1875 +#: ../gui/wxpython/gui_core/gselect.py:1920 msgid "Creation options:" msgstr "Izveides parametri:" -#: ../gui/wxpython/gui_core/gselect.py:1786 -#: ../gui/wxpython/gui_core/gselect.py:1832 -#: ../gui/wxpython/gui_core/gselect.py:1897 +#: ../gui/wxpython/gui_core/gselect.py:1790 +#: ../gui/wxpython/gui_core/gselect.py:1836 +#: ../gui/wxpython/gui_core/gselect.py:1901 msgid "Format:" msgstr "Formāts:" -#: ../gui/wxpython/gui_core/gselect.py:1905 +#: ../gui/wxpython/gui_core/gselect.py:1909 msgid "Protocol:" msgstr "Protokols:" -#: ../gui/wxpython/gui_core/gselect.py:1934 +#: ../gui/wxpython/gui_core/gselect.py:1938 msgid "No settings available" msgstr "Iestatījumi nav pieejami" -#: ../gui/wxpython/gui_core/gselect.py:2066 +#: ../gui/wxpython/gui_core/gselect.py:2070 #: ../gui/wxpython/web_services/dialogs.py:302 msgid "No data source defined, settings are not saved." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2098 +#: ../gui/wxpython/gui_core/gselect.py:2102 msgid "PostgreSQL/PostGIS login was not set. Set it via module, please." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2253 +#: ../gui/wxpython/gui_core/gselect.py:2257 #, python-brace-format msgid "Getting raster <{table}> SRID from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2508 +#: ../gui/wxpython/gui_core/gselect.py:2512 #, python-brace-format msgid "Getting list of tables from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2597 +#: ../gui/wxpython/gui_core/gselect.py:2601 #, python-brace-format msgid "Getting list of tables columns data types from PostGIS DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2628 +#: ../gui/wxpython/gui_core/gselect.py:2632 #, python-brace-format msgid "PostgreSQL DB <{psql}> program was not found. Please, install it." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2648 +#: ../gui/wxpython/gui_core/gselect.py:2652 #: ../gui/wxpython/modules/import_export.py:506 msgid "The Python GDAL package is missing. Please install it." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "LineString" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 #: ../gui/wxpython/psmap/dialogs.py:6221 ../gui/wxpython/psmap/toolbars.py:103 #: ../gui/wxpython/vdigit/preferences.py:729 msgid "Point" msgstr "Punkts" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "Polygon" msgstr "Poligons" -#: ../gui/wxpython/gui_core/gselect.py:2982 +#: ../gui/wxpython/gui_core/gselect.py:2986 msgid "No vector map selected in layer manager. Operation canceled." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3001 +#: ../gui/wxpython/gui_core/gselect.py:3005 msgid "Input vector map is not selected" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3005 +#: ../gui/wxpython/gui_core/gselect.py:3009 #, python-format msgid "Input vector map <%s> and selected map <%s> in layer manager are different. Operation canceled." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3121 +#: ../gui/wxpython/gui_core/gselect.py:3125 #, fuzzy, python-format msgid "Unable to import C imagery library functions: %s\n" msgstr "Nav iespējams izveidot novietojumu" -#: ../gui/wxpython/gui_core/gselect.py:3199 +#: ../gui/wxpython/gui_core/gselect.py:3203 msgid "No vector map selected" msgstr "Nav izvēlēta vektordatu karte" @@ -15215,38 +15215,6 @@ msgid "" "\n" msgstr "" -#, fuzzy -#~ msgid "Do you want to create a new project (also known as location)?" -#~ msgstr "Vai vēlaties pārtraukt novietojuma lejupielādi?" - -#, fuzzy -#~ msgid "Create project?" -#~ msgstr "Izveidot jaunu novietojumu?" - -#, fuzzy -#~ msgid "Restrict edits to the current mapset only" -#~ msgstr "Izmantot esošo masku" - -#, fuzzy -#~ msgid "Allow edits outside of the current mapset" -#~ msgstr "Pievienot vai rediģēt rastra karti" - -#, fuzzy -#~ msgid "Add existing or create new database" -#~ msgstr "Nav iespējams izveidot jaunu GRASS datubāzi" - -#, fuzzy -#~ msgid "Create new project (location) in current GRASS database" -#~ msgstr "Nav iespējams izveidot jaunu GRASS datubāzi" - -#, fuzzy -#~ msgid "Download sample project (location) to current GRASS database" -#~ msgstr "Lejupielādēt parauga novietojumu" - -#, fuzzy -#~ msgid "GRASS GIS" -#~ msgstr "Iziet no GRASS GIS" - #~ msgid " Feature type: " #~ msgstr " Objekta tips: " @@ -15348,6 +15316,10 @@ msgstr "" #~ msgid "Add data" #~ msgstr "Pievienot datus" +#, fuzzy +#~ msgid "Add existing or create new database" +#~ msgstr "Nav iespējams izveidot jaunu GRASS datubāzi" + #~ msgid "Add multiple rasters or vectors" #~ msgstr "Pievienot vairākas rastra vai vektoru kartes" @@ -15381,6 +15353,10 @@ msgstr "" #~ msgid "Allocate subnets" #~ msgstr "Izdalīt apakštīklus" +#, fuzzy +#~ msgid "Allow edits outside of the current mapset" +#~ msgstr "Pievienot vai rediģēt rastra karti" + #~ msgid "Animation tool" #~ msgstr "Animāciju rīks" @@ -15503,12 +15479,20 @@ msgstr "" #~ msgid "Create new project (location)" #~ msgstr "Veidot jaunu novietojumu" +#, fuzzy +#~ msgid "Create new project (location) in current GRASS database" +#~ msgstr "Nav iespējams izveidot jaunu GRASS datubāzi" + #~ msgid "Create new workspace" #~ msgstr "Izveidot jaunu darbtelpu" #~ msgid "Create or rebuild topology" #~ msgstr "Izveidot vai pārbūvēt topoloģiju" +#, fuzzy +#~ msgid "Create project?" +#~ msgstr "Izveidot jaunu novietojumu?" + #~ msgid "Create/edit group" #~ msgstr "Veidot/rediģēt grupu" @@ -15562,9 +15546,17 @@ msgstr "" #~ msgid "Distance to features" #~ msgstr "Attālums līdz objektiem" +#, fuzzy +#~ msgid "Do you want to create a new project (also known as location)?" +#~ msgstr "Vai vēlaties pārtraukt novietojuma lejupielādi?" + #~ msgid "Download sample location" #~ msgstr "Lejupielādēt parauga novietojumu" +#, fuzzy +#~ msgid "Download sample project (location) to current GRASS database" +#~ msgstr "Lejupielādēt parauga novietojumu" + #~ msgid "Drop column" #~ msgstr "Dzēst kolonu" @@ -15654,6 +15646,10 @@ msgstr "" #~ msgid "Fractal surface" #~ msgstr "Fraktāļa virsma" +#, fuzzy +#~ msgid "GRASS GIS" +#~ msgstr "Iziet no GRASS GIS" + #, python-format #~ msgid "GRASS GIS %s Startup%s" #~ msgstr "GRASS GIS %s palaišana %s" @@ -16046,6 +16042,10 @@ msgstr "" #~ msgid "Reports and statistics" #~ msgstr "Atskaites un statistika" +#, fuzzy +#~ msgid "Restrict edits to the current mapset only" +#~ msgstr "Izmantot esošo masku" + #~ msgid "Run python script" #~ msgstr "Darbināt Python skriptu" diff --git a/locale/po/grasswxpy_ml.po b/locale/po/grasswxpy_ml.po index 3581fdf62af..3c64c5771a8 100644 --- a/locale/po/grasswxpy_ml.po +++ b/locale/po/grasswxpy_ml.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: grasswxpy_ml\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: \n" "Last-Translator: Mohammed Rashad \n" "Language-Team: Malayalam \n" @@ -199,9 +199,9 @@ msgstr "" #: ../gui/wxpython/animation/dialogs.py:415 #: ../gui/wxpython/gmodeler/preferences.py:730 -#: ../gui/wxpython/gui_core/gselect.py:1629 -#: ../gui/wxpython/gui_core/gselect.py:1646 -#: ../gui/wxpython/gui_core/gselect.py:1647 +#: ../gui/wxpython/gui_core/gselect.py:1633 +#: ../gui/wxpython/gui_core/gselect.py:1650 +#: ../gui/wxpython/gui_core/gselect.py:1651 #: ../gui/wxpython/gui_core/widgets.py:1462 #: ../gui/wxpython/vnet/dialogs.py:1679 msgid "Name:" @@ -251,11 +251,11 @@ msgstr "" #: ../gui/wxpython/animation/dialogs.py:1278 #: ../gui/wxpython/gui_core/forms.py:2009 #: ../gui/wxpython/gui_core/forms.py:2120 -#: ../gui/wxpython/gui_core/gselect.py:1245 -#: ../gui/wxpython/gui_core/gselect.py:1561 -#: ../gui/wxpython/gui_core/gselect.py:1578 -#: ../gui/wxpython/gui_core/gselect.py:1631 -#: ../gui/wxpython/gui_core/gselect.py:1666 +#: ../gui/wxpython/gui_core/gselect.py:1249 +#: ../gui/wxpython/gui_core/gselect.py:1565 +#: ../gui/wxpython/gui_core/gselect.py:1582 +#: ../gui/wxpython/gui_core/gselect.py:1635 +#: ../gui/wxpython/gui_core/gselect.py:1670 #: ../gui/wxpython/location_wizard/wizard.py:1446 #: ../gui/wxpython/location_wizard/wizard.py:1801 #: ../gui/wxpython/modules/import_export.py:862 @@ -453,8 +453,8 @@ msgid "File format:" msgstr "" #: ../gui/wxpython/animation/dialogs.py:1194 -#: ../gui/wxpython/gui_core/gselect.py:1576 -#: ../gui/wxpython/gui_core/gselect.py:1664 +#: ../gui/wxpython/gui_core/gselect.py:1580 +#: ../gui/wxpython/gui_core/gselect.py:1668 msgid "Directory:" msgstr "" @@ -2229,7 +2229,7 @@ msgid "Data type" msgstr "" #: ../gui/wxpython/dbmgr/base.py:3051 ../gui/wxpython/dbmgr/base.py:3203 -#: ../gui/wxpython/dbmgr/base.py:3471 ../gui/wxpython/gui_core/gselect.py:1479 +#: ../gui/wxpython/dbmgr/base.py:3471 ../gui/wxpython/gui_core/gselect.py:1483 msgid "Database" msgstr "" @@ -3599,13 +3599,13 @@ msgid "Delete all" msgstr "" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "No" msgstr "" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "Yes" msgstr "" @@ -4718,7 +4718,7 @@ msgid "Enter file content directly instead of specifying a file. Temporary file msgstr "" #: ../gui/wxpython/gui_core/forms.py:2119 -#: ../gui/wxpython/gui_core/gselect.py:1475 +#: ../gui/wxpython/gui_core/gselect.py:1479 msgid "Directory" msgstr "" @@ -5014,182 +5014,182 @@ msgstr "" msgid "No table linked to layer <{}>." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1244 +#: ../gui/wxpython/gui_core/gselect.py:1248 #: ../gui/wxpython/image2target/ii2t_gis_set.py:1017 msgid "Choose GIS Data Directory" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1456 +#: ../gui/wxpython/gui_core/gselect.py:1460 msgid "Output settings" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1458 +#: ../gui/wxpython/gui_core/gselect.py:1462 msgid "Source input" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1465 +#: ../gui/wxpython/gui_core/gselect.py:1469 msgid "Native" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1471 +#: ../gui/wxpython/gui_core/gselect.py:1475 #: ../gui/wxpython/lmgr/workspace.py:517 msgid "File" msgstr "ഫയൽ" -#: ../gui/wxpython/gui_core/gselect.py:1483 +#: ../gui/wxpython/gui_core/gselect.py:1487 msgid "Protocol" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1494 +#: ../gui/wxpython/gui_core/gselect.py:1498 msgid "Output type" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1496 +#: ../gui/wxpython/gui_core/gselect.py:1500 msgid "Source type" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1514 +#: ../gui/wxpython/gui_core/gselect.py:1518 msgid "All files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1544 +#: ../gui/wxpython/gui_core/gselect.py:1548 msgid "ZIP files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1545 +#: ../gui/wxpython/gui_core/gselect.py:1549 msgid "GZIP files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1546 +#: ../gui/wxpython/gui_core/gselect.py:1550 msgid "TAR files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1550 +#: ../gui/wxpython/gui_core/gselect.py:1554 msgid "TARGZ files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1559 +#: ../gui/wxpython/gui_core/gselect.py:1563 msgid "File:" msgstr "ഫയൽ:" -#: ../gui/wxpython/gui_core/gselect.py:1560 +#: ../gui/wxpython/gui_core/gselect.py:1564 msgid "Choose file to import" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1577 -#: ../gui/wxpython/gui_core/gselect.py:1665 +#: ../gui/wxpython/gui_core/gselect.py:1581 +#: ../gui/wxpython/gui_core/gselect.py:1669 msgid "Choose input directory" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1598 +#: ../gui/wxpython/gui_core/gselect.py:1602 msgid "Extension:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1630 +#: ../gui/wxpython/gui_core/gselect.py:1634 msgid "Choose file" msgstr "ഫയൽ തിരഞ്ഞെടുക്കുക" -#: ../gui/wxpython/gui_core/gselect.py:1651 -#: ../gui/wxpython/gui_core/gselect.py:2777 +#: ../gui/wxpython/gui_core/gselect.py:1655 +#: ../gui/wxpython/gui_core/gselect.py:2781 msgid "Feature type:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "simple features" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "topological" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1769 -#: ../gui/wxpython/gui_core/gselect.py:1809 -#: ../gui/wxpython/gui_core/gselect.py:1871 -#: ../gui/wxpython/gui_core/gselect.py:1916 +#: ../gui/wxpython/gui_core/gselect.py:1773 +#: ../gui/wxpython/gui_core/gselect.py:1813 +#: ../gui/wxpython/gui_core/gselect.py:1875 +#: ../gui/wxpython/gui_core/gselect.py:1920 msgid "Creation options:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1786 -#: ../gui/wxpython/gui_core/gselect.py:1832 -#: ../gui/wxpython/gui_core/gselect.py:1897 +#: ../gui/wxpython/gui_core/gselect.py:1790 +#: ../gui/wxpython/gui_core/gselect.py:1836 +#: ../gui/wxpython/gui_core/gselect.py:1901 msgid "Format:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1905 +#: ../gui/wxpython/gui_core/gselect.py:1909 msgid "Protocol:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1934 +#: ../gui/wxpython/gui_core/gselect.py:1938 msgid "No settings available" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2066 +#: ../gui/wxpython/gui_core/gselect.py:2070 #: ../gui/wxpython/web_services/dialogs.py:302 msgid "No data source defined, settings are not saved." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2098 +#: ../gui/wxpython/gui_core/gselect.py:2102 msgid "PostgreSQL/PostGIS login was not set. Set it via module, please." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2253 +#: ../gui/wxpython/gui_core/gselect.py:2257 #, python-brace-format msgid "Getting raster <{table}> SRID from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2508 +#: ../gui/wxpython/gui_core/gselect.py:2512 #, python-brace-format msgid "Getting list of tables from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2597 +#: ../gui/wxpython/gui_core/gselect.py:2601 #, python-brace-format msgid "Getting list of tables columns data types from PostGIS DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2628 +#: ../gui/wxpython/gui_core/gselect.py:2632 #, python-brace-format msgid "PostgreSQL DB <{psql}> program was not found. Please, install it." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2648 +#: ../gui/wxpython/gui_core/gselect.py:2652 #: ../gui/wxpython/modules/import_export.py:506 msgid "The Python GDAL package is missing. Please install it." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "LineString" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 #: ../gui/wxpython/psmap/dialogs.py:6221 ../gui/wxpython/psmap/toolbars.py:103 #: ../gui/wxpython/vdigit/preferences.py:729 msgid "Point" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "Polygon" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2982 +#: ../gui/wxpython/gui_core/gselect.py:2986 msgid "No vector map selected in layer manager. Operation canceled." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3001 +#: ../gui/wxpython/gui_core/gselect.py:3005 msgid "Input vector map is not selected" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3005 +#: ../gui/wxpython/gui_core/gselect.py:3009 #, python-format msgid "Input vector map <%s> and selected map <%s> in layer manager are different. Operation canceled." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3121 +#: ../gui/wxpython/gui_core/gselect.py:3125 #, python-format msgid "Unable to import C imagery library functions: %s\n" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3199 +#: ../gui/wxpython/gui_core/gselect.py:3203 msgid "No vector map selected" msgstr "" @@ -15059,10 +15059,6 @@ msgid "" "\n" msgstr "" -#, fuzzy -#~ msgid "Create project?" -#~ msgstr "പുതിയ മാപ്പ്സെറ്റ് ഉണ്ടാക്കുക" - #~ msgid "&File" #~ msgstr "ഫയൽ" @@ -15120,6 +15116,10 @@ msgstr "" #~ msgid "Create new workspace" #~ msgstr "പുതിയ വർക്സ്പേസ് ഉണ്ടാക്കുക" +#, fuzzy +#~ msgid "Create project?" +#~ msgstr "പുതിയ മാപ്പ്സെറ്റ് ഉണ്ടാക്കുക" + #, fuzzy #~ msgid "Editing" #~ msgstr "മാത്രിക പരിശൊദിക്കുന്നു.." diff --git a/locale/po/grasswxpy_pl.po b/locale/po/grasswxpy_pl.po index fa69738f7f2..47681f99086 100644 --- a/locale/po/grasswxpy_pl.po +++ b/locale/po/grasswxpy_pl.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: grasswxpy_pl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-08-26 14:19+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Polish \n" @@ -201,9 +201,9 @@ msgstr "Wybierz widok 2D lub 3D" #: ../gui/wxpython/animation/dialogs.py:415 #: ../gui/wxpython/gmodeler/preferences.py:730 -#: ../gui/wxpython/gui_core/gselect.py:1629 -#: ../gui/wxpython/gui_core/gselect.py:1646 -#: ../gui/wxpython/gui_core/gselect.py:1647 +#: ../gui/wxpython/gui_core/gselect.py:1633 +#: ../gui/wxpython/gui_core/gselect.py:1650 +#: ../gui/wxpython/gui_core/gselect.py:1651 #: ../gui/wxpython/gui_core/widgets.py:1462 #: ../gui/wxpython/vnet/dialogs.py:1679 msgid "Name:" @@ -253,11 +253,11 @@ msgstr "" #: ../gui/wxpython/animation/dialogs.py:1278 #: ../gui/wxpython/gui_core/forms.py:2009 #: ../gui/wxpython/gui_core/forms.py:2120 -#: ../gui/wxpython/gui_core/gselect.py:1245 -#: ../gui/wxpython/gui_core/gselect.py:1561 -#: ../gui/wxpython/gui_core/gselect.py:1578 -#: ../gui/wxpython/gui_core/gselect.py:1631 -#: ../gui/wxpython/gui_core/gselect.py:1666 +#: ../gui/wxpython/gui_core/gselect.py:1249 +#: ../gui/wxpython/gui_core/gselect.py:1565 +#: ../gui/wxpython/gui_core/gselect.py:1582 +#: ../gui/wxpython/gui_core/gselect.py:1635 +#: ../gui/wxpython/gui_core/gselect.py:1670 #: ../gui/wxpython/location_wizard/wizard.py:1446 #: ../gui/wxpython/location_wizard/wizard.py:1801 #: ../gui/wxpython/modules/import_export.py:862 @@ -455,8 +455,8 @@ msgid "File format:" msgstr "Format pliku:" #: ../gui/wxpython/animation/dialogs.py:1194 -#: ../gui/wxpython/gui_core/gselect.py:1576 -#: ../gui/wxpython/gui_core/gselect.py:1664 +#: ../gui/wxpython/gui_core/gselect.py:1580 +#: ../gui/wxpython/gui_core/gselect.py:1668 msgid "Directory:" msgstr "Katalog:" @@ -2283,7 +2283,7 @@ msgid "Data type" msgstr "Typ danych" #: ../gui/wxpython/dbmgr/base.py:3051 ../gui/wxpython/dbmgr/base.py:3203 -#: ../gui/wxpython/dbmgr/base.py:3471 ../gui/wxpython/gui_core/gselect.py:1479 +#: ../gui/wxpython/dbmgr/base.py:3471 ../gui/wxpython/gui_core/gselect.py:1483 msgid "Database" msgstr "Baza danych" @@ -3672,13 +3672,13 @@ msgid "Delete all" msgstr "Usuń wszystkie" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "No" msgstr "Nie" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "Yes" msgstr "Tak" @@ -4814,7 +4814,7 @@ msgid "Enter file content directly instead of specifying a file. Temporary file msgstr "" #: ../gui/wxpython/gui_core/forms.py:2119 -#: ../gui/wxpython/gui_core/gselect.py:1475 +#: ../gui/wxpython/gui_core/gselect.py:1479 msgid "Directory" msgstr "Katalog" @@ -5116,182 +5116,182 @@ msgstr "" msgid "No table linked to layer <{}>." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1244 +#: ../gui/wxpython/gui_core/gselect.py:1248 #: ../gui/wxpython/image2target/ii2t_gis_set.py:1017 msgid "Choose GIS Data Directory" msgstr "Wybierz katalog danych GIS" -#: ../gui/wxpython/gui_core/gselect.py:1456 +#: ../gui/wxpython/gui_core/gselect.py:1460 msgid "Output settings" msgstr "Ustawienia wyjścia" -#: ../gui/wxpython/gui_core/gselect.py:1458 +#: ../gui/wxpython/gui_core/gselect.py:1462 msgid "Source input" msgstr "Źródło wejścia" -#: ../gui/wxpython/gui_core/gselect.py:1465 +#: ../gui/wxpython/gui_core/gselect.py:1469 msgid "Native" msgstr "Natywny" -#: ../gui/wxpython/gui_core/gselect.py:1471 +#: ../gui/wxpython/gui_core/gselect.py:1475 #: ../gui/wxpython/lmgr/workspace.py:517 msgid "File" msgstr "Plik" -#: ../gui/wxpython/gui_core/gselect.py:1483 +#: ../gui/wxpython/gui_core/gselect.py:1487 msgid "Protocol" msgstr "Protokół" -#: ../gui/wxpython/gui_core/gselect.py:1494 +#: ../gui/wxpython/gui_core/gselect.py:1498 msgid "Output type" msgstr "Typ wyjściowy" -#: ../gui/wxpython/gui_core/gselect.py:1496 +#: ../gui/wxpython/gui_core/gselect.py:1500 msgid "Source type" msgstr "Rodzaj źródła" -#: ../gui/wxpython/gui_core/gselect.py:1514 +#: ../gui/wxpython/gui_core/gselect.py:1518 msgid "All files" msgstr "Wszystkie pliki" -#: ../gui/wxpython/gui_core/gselect.py:1544 +#: ../gui/wxpython/gui_core/gselect.py:1548 msgid "ZIP files" msgstr "Pliki ZIP" -#: ../gui/wxpython/gui_core/gselect.py:1545 +#: ../gui/wxpython/gui_core/gselect.py:1549 msgid "GZIP files" msgstr "Pliki GZIP" -#: ../gui/wxpython/gui_core/gselect.py:1546 +#: ../gui/wxpython/gui_core/gselect.py:1550 msgid "TAR files" msgstr "Pliki TAR" -#: ../gui/wxpython/gui_core/gselect.py:1550 +#: ../gui/wxpython/gui_core/gselect.py:1554 msgid "TARGZ files" msgstr "Pliki TARGZ" -#: ../gui/wxpython/gui_core/gselect.py:1559 +#: ../gui/wxpython/gui_core/gselect.py:1563 msgid "File:" msgstr "Plik:" -#: ../gui/wxpython/gui_core/gselect.py:1560 +#: ../gui/wxpython/gui_core/gselect.py:1564 msgid "Choose file to import" msgstr "Wybierz plik do importu" -#: ../gui/wxpython/gui_core/gselect.py:1577 -#: ../gui/wxpython/gui_core/gselect.py:1665 +#: ../gui/wxpython/gui_core/gselect.py:1581 +#: ../gui/wxpython/gui_core/gselect.py:1669 msgid "Choose input directory" msgstr "Wybierz katalog wejściowy" -#: ../gui/wxpython/gui_core/gselect.py:1598 +#: ../gui/wxpython/gui_core/gselect.py:1602 msgid "Extension:" msgstr "Rozszerzenie:" -#: ../gui/wxpython/gui_core/gselect.py:1630 +#: ../gui/wxpython/gui_core/gselect.py:1634 msgid "Choose file" msgstr "Wybierz plik" -#: ../gui/wxpython/gui_core/gselect.py:1651 -#: ../gui/wxpython/gui_core/gselect.py:2777 +#: ../gui/wxpython/gui_core/gselect.py:1655 +#: ../gui/wxpython/gui_core/gselect.py:2781 msgid "Feature type:" msgstr "Typ obiektu:" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "simple features" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "topological" msgstr "topologiczny" -#: ../gui/wxpython/gui_core/gselect.py:1769 -#: ../gui/wxpython/gui_core/gselect.py:1809 -#: ../gui/wxpython/gui_core/gselect.py:1871 -#: ../gui/wxpython/gui_core/gselect.py:1916 +#: ../gui/wxpython/gui_core/gselect.py:1773 +#: ../gui/wxpython/gui_core/gselect.py:1813 +#: ../gui/wxpython/gui_core/gselect.py:1875 +#: ../gui/wxpython/gui_core/gselect.py:1920 msgid "Creation options:" msgstr "Opcje tworzenia:" -#: ../gui/wxpython/gui_core/gselect.py:1786 -#: ../gui/wxpython/gui_core/gselect.py:1832 -#: ../gui/wxpython/gui_core/gselect.py:1897 +#: ../gui/wxpython/gui_core/gselect.py:1790 +#: ../gui/wxpython/gui_core/gselect.py:1836 +#: ../gui/wxpython/gui_core/gselect.py:1901 msgid "Format:" msgstr "Format:" -#: ../gui/wxpython/gui_core/gselect.py:1905 +#: ../gui/wxpython/gui_core/gselect.py:1909 msgid "Protocol:" msgstr "Protokół:" -#: ../gui/wxpython/gui_core/gselect.py:1934 +#: ../gui/wxpython/gui_core/gselect.py:1938 msgid "No settings available" msgstr "Ustawienia niedostępne" -#: ../gui/wxpython/gui_core/gselect.py:2066 +#: ../gui/wxpython/gui_core/gselect.py:2070 #: ../gui/wxpython/web_services/dialogs.py:302 msgid "No data source defined, settings are not saved." msgstr "Nie zdefiniowano źródła danych, ustawienia nie zostały zapisane." -#: ../gui/wxpython/gui_core/gselect.py:2098 +#: ../gui/wxpython/gui_core/gselect.py:2102 msgid "PostgreSQL/PostGIS login was not set. Set it via module, please." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2253 +#: ../gui/wxpython/gui_core/gselect.py:2257 #, python-brace-format msgid "Getting raster <{table}> SRID from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2508 +#: ../gui/wxpython/gui_core/gselect.py:2512 #, python-brace-format msgid "Getting list of tables from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2597 +#: ../gui/wxpython/gui_core/gselect.py:2601 #, python-brace-format msgid "Getting list of tables columns data types from PostGIS DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2628 +#: ../gui/wxpython/gui_core/gselect.py:2632 #, python-brace-format msgid "PostgreSQL DB <{psql}> program was not found. Please, install it." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2648 +#: ../gui/wxpython/gui_core/gselect.py:2652 #: ../gui/wxpython/modules/import_export.py:506 msgid "The Python GDAL package is missing. Please install it." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "LineString" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 #: ../gui/wxpython/psmap/dialogs.py:6221 ../gui/wxpython/psmap/toolbars.py:103 #: ../gui/wxpython/vdigit/preferences.py:729 msgid "Point" msgstr "Punkt" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "Polygon" msgstr "Poligon" -#: ../gui/wxpython/gui_core/gselect.py:2982 +#: ../gui/wxpython/gui_core/gselect.py:2986 msgid "No vector map selected in layer manager. Operation canceled." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3001 +#: ../gui/wxpython/gui_core/gselect.py:3005 msgid "Input vector map is not selected" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3005 +#: ../gui/wxpython/gui_core/gselect.py:3009 #, python-format msgid "Input vector map <%s> and selected map <%s> in layer manager are different. Operation canceled." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3121 +#: ../gui/wxpython/gui_core/gselect.py:3125 #, python-format msgid "Unable to import C imagery library functions: %s\n" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3199 +#: ../gui/wxpython/gui_core/gselect.py:3203 msgid "No vector map selected" msgstr "" @@ -15308,18 +15308,6 @@ msgid "" "\n" msgstr "" -#, fuzzy -#~ msgid "Do you want to create a new project (also known as location)?" -#~ msgstr "Czy chcesz zaimportować <%(name)s> do nowo utworzonej Lokacji?" - -#, fuzzy -#~ msgid "Create project?" -#~ msgstr "Utwórz paczkę" - -#, fuzzy -#~ msgid "Create new project (location) in current GRASS database" -#~ msgstr "Tworzy nowy mapset w bieżącej lokacji, zmienia bieżący mapset." - #~ msgid " (readonly)" #~ msgstr "(tylko do odczytu)" @@ -15815,6 +15803,10 @@ msgstr "" #~ msgid "Create new project (location)" #~ msgstr "Utwórz nową lokację" +#, fuzzy +#~ msgid "Create new project (location) in current GRASS database" +#~ msgstr "Tworzy nowy mapset w bieżącej lokacji, zmienia bieżący mapset." + #~ msgid "Create new workspace" #~ msgstr "Tworzy nowy projekt" @@ -15824,6 +15816,10 @@ msgstr "" #~ msgid "Create points/segments" #~ msgstr "Utwórz punkty/segmenty" +#, fuzzy +#~ msgid "Create project?" +#~ msgstr "Utwórz paczkę" + #~ msgid "Create/edit group" #~ msgstr "Utwórz/edytuj grupę" @@ -15991,6 +15987,10 @@ msgstr "" #~ msgid "Distance to features" #~ msgstr "Odległość od obiektów" +#, fuzzy +#~ msgid "Do you want to create a new project (also known as location)?" +#~ msgstr "Czy chcesz zaimportować <%(name)s> do nowo utworzonej Lokacji?" + #~ msgid "Do you want to set the default region extents and resolution now?" #~ msgstr "Czy chcesz teraz zdefiniować zakres i rozdzielczość regionu?" diff --git a/locale/po/grasswxpy_pt.po b/locale/po/grasswxpy_pt.po index 9f8d68a710c..f1e77d70e3b 100644 --- a/locale/po/grasswxpy_pt.po +++ b/locale/po/grasswxpy_pt.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: grasswxpy_pt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-08-26 13:29+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Portuguese \n" @@ -203,9 +203,9 @@ msgstr "" #: ../gui/wxpython/animation/dialogs.py:415 #: ../gui/wxpython/gmodeler/preferences.py:730 -#: ../gui/wxpython/gui_core/gselect.py:1629 -#: ../gui/wxpython/gui_core/gselect.py:1646 -#: ../gui/wxpython/gui_core/gselect.py:1647 +#: ../gui/wxpython/gui_core/gselect.py:1633 +#: ../gui/wxpython/gui_core/gselect.py:1650 +#: ../gui/wxpython/gui_core/gselect.py:1651 #: ../gui/wxpython/gui_core/widgets.py:1462 #: ../gui/wxpython/vnet/dialogs.py:1679 msgid "Name:" @@ -255,11 +255,11 @@ msgstr "" #: ../gui/wxpython/animation/dialogs.py:1278 #: ../gui/wxpython/gui_core/forms.py:2009 #: ../gui/wxpython/gui_core/forms.py:2120 -#: ../gui/wxpython/gui_core/gselect.py:1245 -#: ../gui/wxpython/gui_core/gselect.py:1561 -#: ../gui/wxpython/gui_core/gselect.py:1578 -#: ../gui/wxpython/gui_core/gselect.py:1631 -#: ../gui/wxpython/gui_core/gselect.py:1666 +#: ../gui/wxpython/gui_core/gselect.py:1249 +#: ../gui/wxpython/gui_core/gselect.py:1565 +#: ../gui/wxpython/gui_core/gselect.py:1582 +#: ../gui/wxpython/gui_core/gselect.py:1635 +#: ../gui/wxpython/gui_core/gselect.py:1670 #: ../gui/wxpython/location_wizard/wizard.py:1446 #: ../gui/wxpython/location_wizard/wizard.py:1801 #: ../gui/wxpython/modules/import_export.py:862 @@ -457,8 +457,8 @@ msgid "File format:" msgstr "" #: ../gui/wxpython/animation/dialogs.py:1194 -#: ../gui/wxpython/gui_core/gselect.py:1576 -#: ../gui/wxpython/gui_core/gselect.py:1664 +#: ../gui/wxpython/gui_core/gselect.py:1580 +#: ../gui/wxpython/gui_core/gselect.py:1668 msgid "Directory:" msgstr "" @@ -2244,7 +2244,7 @@ msgid "Data type" msgstr "Tipo de datos" #: ../gui/wxpython/dbmgr/base.py:3051 ../gui/wxpython/dbmgr/base.py:3203 -#: ../gui/wxpython/dbmgr/base.py:3471 ../gui/wxpython/gui_core/gselect.py:1479 +#: ../gui/wxpython/dbmgr/base.py:3471 ../gui/wxpython/gui_core/gselect.py:1483 msgid "Database" msgstr "Base de dados" @@ -3618,13 +3618,13 @@ msgid "Delete all" msgstr "" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "No" msgstr "" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "Yes" msgstr "" @@ -4736,7 +4736,7 @@ msgid "Enter file content directly instead of specifying a file. Temporary file msgstr "" #: ../gui/wxpython/gui_core/forms.py:2119 -#: ../gui/wxpython/gui_core/gselect.py:1475 +#: ../gui/wxpython/gui_core/gselect.py:1479 msgid "Directory" msgstr "" @@ -5033,182 +5033,182 @@ msgstr "" msgid "No table linked to layer <{}>." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1244 +#: ../gui/wxpython/gui_core/gselect.py:1248 #: ../gui/wxpython/image2target/ii2t_gis_set.py:1017 msgid "Choose GIS Data Directory" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1456 +#: ../gui/wxpython/gui_core/gselect.py:1460 msgid "Output settings" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1458 +#: ../gui/wxpython/gui_core/gselect.py:1462 msgid "Source input" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1465 +#: ../gui/wxpython/gui_core/gselect.py:1469 msgid "Native" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1471 +#: ../gui/wxpython/gui_core/gselect.py:1475 #: ../gui/wxpython/lmgr/workspace.py:517 msgid "File" msgstr "Arquivo" -#: ../gui/wxpython/gui_core/gselect.py:1483 +#: ../gui/wxpython/gui_core/gselect.py:1487 msgid "Protocol" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1494 +#: ../gui/wxpython/gui_core/gselect.py:1498 msgid "Output type" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1496 +#: ../gui/wxpython/gui_core/gselect.py:1500 msgid "Source type" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1514 +#: ../gui/wxpython/gui_core/gselect.py:1518 msgid "All files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1544 +#: ../gui/wxpython/gui_core/gselect.py:1548 msgid "ZIP files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1545 +#: ../gui/wxpython/gui_core/gselect.py:1549 msgid "GZIP files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1546 +#: ../gui/wxpython/gui_core/gselect.py:1550 msgid "TAR files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1550 +#: ../gui/wxpython/gui_core/gselect.py:1554 msgid "TARGZ files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1559 +#: ../gui/wxpython/gui_core/gselect.py:1563 msgid "File:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1560 +#: ../gui/wxpython/gui_core/gselect.py:1564 msgid "Choose file to import" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1577 -#: ../gui/wxpython/gui_core/gselect.py:1665 +#: ../gui/wxpython/gui_core/gselect.py:1581 +#: ../gui/wxpython/gui_core/gselect.py:1669 msgid "Choose input directory" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1598 +#: ../gui/wxpython/gui_core/gselect.py:1602 msgid "Extension:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1630 +#: ../gui/wxpython/gui_core/gselect.py:1634 msgid "Choose file" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1651 -#: ../gui/wxpython/gui_core/gselect.py:2777 +#: ../gui/wxpython/gui_core/gselect.py:1655 +#: ../gui/wxpython/gui_core/gselect.py:2781 msgid "Feature type:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "simple features" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "topological" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1769 -#: ../gui/wxpython/gui_core/gselect.py:1809 -#: ../gui/wxpython/gui_core/gselect.py:1871 -#: ../gui/wxpython/gui_core/gselect.py:1916 +#: ../gui/wxpython/gui_core/gselect.py:1773 +#: ../gui/wxpython/gui_core/gselect.py:1813 +#: ../gui/wxpython/gui_core/gselect.py:1875 +#: ../gui/wxpython/gui_core/gselect.py:1920 msgid "Creation options:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1786 -#: ../gui/wxpython/gui_core/gselect.py:1832 -#: ../gui/wxpython/gui_core/gselect.py:1897 +#: ../gui/wxpython/gui_core/gselect.py:1790 +#: ../gui/wxpython/gui_core/gselect.py:1836 +#: ../gui/wxpython/gui_core/gselect.py:1901 msgid "Format:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1905 +#: ../gui/wxpython/gui_core/gselect.py:1909 msgid "Protocol:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1934 +#: ../gui/wxpython/gui_core/gselect.py:1938 msgid "No settings available" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2066 +#: ../gui/wxpython/gui_core/gselect.py:2070 #: ../gui/wxpython/web_services/dialogs.py:302 msgid "No data source defined, settings are not saved." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2098 +#: ../gui/wxpython/gui_core/gselect.py:2102 msgid "PostgreSQL/PostGIS login was not set. Set it via module, please." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2253 +#: ../gui/wxpython/gui_core/gselect.py:2257 #, python-brace-format msgid "Getting raster <{table}> SRID from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2508 +#: ../gui/wxpython/gui_core/gselect.py:2512 #, python-brace-format msgid "Getting list of tables from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2597 +#: ../gui/wxpython/gui_core/gselect.py:2601 #, python-brace-format msgid "Getting list of tables columns data types from PostGIS DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2628 +#: ../gui/wxpython/gui_core/gselect.py:2632 #, python-brace-format msgid "PostgreSQL DB <{psql}> program was not found. Please, install it." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2648 +#: ../gui/wxpython/gui_core/gselect.py:2652 #: ../gui/wxpython/modules/import_export.py:506 msgid "The Python GDAL package is missing. Please install it." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "LineString" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 #: ../gui/wxpython/psmap/dialogs.py:6221 ../gui/wxpython/psmap/toolbars.py:103 #: ../gui/wxpython/vdigit/preferences.py:729 msgid "Point" msgstr "Ponto" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "Polygon" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2982 +#: ../gui/wxpython/gui_core/gselect.py:2986 msgid "No vector map selected in layer manager. Operation canceled." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3001 +#: ../gui/wxpython/gui_core/gselect.py:3005 msgid "Input vector map is not selected" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3005 +#: ../gui/wxpython/gui_core/gselect.py:3009 #, python-format msgid "Input vector map <%s> and selected map <%s> in layer manager are different. Operation canceled." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3121 +#: ../gui/wxpython/gui_core/gselect.py:3125 #, python-format msgid "Unable to import C imagery library functions: %s\n" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3199 +#: ../gui/wxpython/gui_core/gselect.py:3203 msgid "No vector map selected" msgstr "" @@ -15082,14 +15082,6 @@ msgid "" "\n" msgstr "" -#, fuzzy -#~ msgid "Do you want to create a new project (also known as location)?" -#~ msgstr "Pretende criar uma GRASS location <%s>?" - -#, fuzzy -#~ msgid "Create project?" -#~ msgstr "Criar nova location?" - #~ msgid "2D vector to 3D vector" #~ msgstr "Vector 2D para 3D" @@ -15324,6 +15316,10 @@ msgstr "" #~ msgid "Create points/segments" #~ msgstr "Criar pontos/segmentos" +#, fuzzy +#~ msgid "Create project?" +#~ msgstr "Criar nova location?" + #~ msgid "Create/edit group" #~ msgstr "Criar/editar grupo" @@ -15386,6 +15382,10 @@ msgstr "" #~ msgid "Dissolve boundaries" #~ msgstr "Dissolver fronteiras/contornos" +#, fuzzy +#~ msgid "Do you want to create a new project (also known as location)?" +#~ msgstr "Pretende criar uma GRASS location <%s>?" + #~ msgid "Dominance's diversity" #~ msgstr "Diversidade de dominância" diff --git a/locale/po/grasswxpy_pt_BR.po b/locale/po/grasswxpy_pt_BR.po index 5c640178400..ccc72015070 100644 --- a/locale/po/grasswxpy_pt_BR.po +++ b/locale/po/grasswxpy_pt_BR.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: grasswxpy_pt_BR\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-08-26 14:19+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Portuguese (Brazil) \n" @@ -201,9 +201,9 @@ msgstr "Selecionar visualização 2D ou 3D" #: ../gui/wxpython/animation/dialogs.py:415 #: ../gui/wxpython/gmodeler/preferences.py:730 -#: ../gui/wxpython/gui_core/gselect.py:1629 -#: ../gui/wxpython/gui_core/gselect.py:1646 -#: ../gui/wxpython/gui_core/gselect.py:1647 +#: ../gui/wxpython/gui_core/gselect.py:1633 +#: ../gui/wxpython/gui_core/gselect.py:1650 +#: ../gui/wxpython/gui_core/gselect.py:1651 #: ../gui/wxpython/gui_core/widgets.py:1462 #: ../gui/wxpython/vnet/dialogs.py:1679 msgid "Name:" @@ -253,11 +253,11 @@ msgstr "Selecione o arquivo de espaço de trabalho para importar os parâmetros #: ../gui/wxpython/animation/dialogs.py:1278 #: ../gui/wxpython/gui_core/forms.py:2009 #: ../gui/wxpython/gui_core/forms.py:2120 -#: ../gui/wxpython/gui_core/gselect.py:1245 -#: ../gui/wxpython/gui_core/gselect.py:1561 -#: ../gui/wxpython/gui_core/gselect.py:1578 -#: ../gui/wxpython/gui_core/gselect.py:1631 -#: ../gui/wxpython/gui_core/gselect.py:1666 +#: ../gui/wxpython/gui_core/gselect.py:1249 +#: ../gui/wxpython/gui_core/gselect.py:1565 +#: ../gui/wxpython/gui_core/gselect.py:1582 +#: ../gui/wxpython/gui_core/gselect.py:1635 +#: ../gui/wxpython/gui_core/gselect.py:1670 #: ../gui/wxpython/location_wizard/wizard.py:1446 #: ../gui/wxpython/location_wizard/wizard.py:1801 #: ../gui/wxpython/modules/import_export.py:862 @@ -455,8 +455,8 @@ msgid "File format:" msgstr "Formato do arquivo:" #: ../gui/wxpython/animation/dialogs.py:1194 -#: ../gui/wxpython/gui_core/gselect.py:1576 -#: ../gui/wxpython/gui_core/gselect.py:1664 +#: ../gui/wxpython/gui_core/gselect.py:1580 +#: ../gui/wxpython/gui_core/gselect.py:1668 msgid "Directory:" msgstr "Diretório:" @@ -2275,7 +2275,7 @@ msgid "Data type" msgstr "" #: ../gui/wxpython/dbmgr/base.py:3051 ../gui/wxpython/dbmgr/base.py:3203 -#: ../gui/wxpython/dbmgr/base.py:3471 ../gui/wxpython/gui_core/gselect.py:1479 +#: ../gui/wxpython/dbmgr/base.py:3471 ../gui/wxpython/gui_core/gselect.py:1483 msgid "Database" msgstr "" @@ -3679,13 +3679,13 @@ msgid "Delete all" msgstr "Apagar todos" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "No" msgstr "Não" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "Yes" msgstr "Sim" @@ -4827,7 +4827,7 @@ msgid "Enter file content directly instead of specifying a file. Temporary file msgstr "Insira o conteúdo do arquivo diretamente em vez de especificar um arquivo. O arquivo temporário será criado automaticamente." #: ../gui/wxpython/gui_core/forms.py:2119 -#: ../gui/wxpython/gui_core/gselect.py:1475 +#: ../gui/wxpython/gui_core/gselect.py:1479 msgid "Directory" msgstr "Diretório" @@ -5134,182 +5134,182 @@ msgstr "" msgid "No table linked to layer <{}>." msgstr "Nenhuma tabela vinculada à camada <{}>." -#: ../gui/wxpython/gui_core/gselect.py:1244 +#: ../gui/wxpython/gui_core/gselect.py:1248 #: ../gui/wxpython/image2target/ii2t_gis_set.py:1017 msgid "Choose GIS Data Directory" msgstr "Escolha o Diretório de Dados GIS" -#: ../gui/wxpython/gui_core/gselect.py:1456 +#: ../gui/wxpython/gui_core/gselect.py:1460 msgid "Output settings" msgstr "Configurações de saída" -#: ../gui/wxpython/gui_core/gselect.py:1458 +#: ../gui/wxpython/gui_core/gselect.py:1462 msgid "Source input" msgstr "Entrada de origem" -#: ../gui/wxpython/gui_core/gselect.py:1465 +#: ../gui/wxpython/gui_core/gselect.py:1469 msgid "Native" msgstr "Nativo" -#: ../gui/wxpython/gui_core/gselect.py:1471 +#: ../gui/wxpython/gui_core/gselect.py:1475 #: ../gui/wxpython/lmgr/workspace.py:517 msgid "File" msgstr "Arquivo" -#: ../gui/wxpython/gui_core/gselect.py:1483 +#: ../gui/wxpython/gui_core/gselect.py:1487 msgid "Protocol" msgstr "Protocolo" -#: ../gui/wxpython/gui_core/gselect.py:1494 +#: ../gui/wxpython/gui_core/gselect.py:1498 msgid "Output type" msgstr "Tipo de saída" -#: ../gui/wxpython/gui_core/gselect.py:1496 +#: ../gui/wxpython/gui_core/gselect.py:1500 msgid "Source type" msgstr "Tipo de origem" -#: ../gui/wxpython/gui_core/gselect.py:1514 +#: ../gui/wxpython/gui_core/gselect.py:1518 msgid "All files" msgstr "Todos os arquivos" -#: ../gui/wxpython/gui_core/gselect.py:1544 +#: ../gui/wxpython/gui_core/gselect.py:1548 msgid "ZIP files" msgstr "Arquivos ZIP" -#: ../gui/wxpython/gui_core/gselect.py:1545 +#: ../gui/wxpython/gui_core/gselect.py:1549 msgid "GZIP files" msgstr "Arquivos GZIP" -#: ../gui/wxpython/gui_core/gselect.py:1546 +#: ../gui/wxpython/gui_core/gselect.py:1550 msgid "TAR files" msgstr "Arquivos TAR" -#: ../gui/wxpython/gui_core/gselect.py:1550 +#: ../gui/wxpython/gui_core/gselect.py:1554 msgid "TARGZ files" msgstr "Arquivos TARGZ" -#: ../gui/wxpython/gui_core/gselect.py:1559 +#: ../gui/wxpython/gui_core/gselect.py:1563 msgid "File:" msgstr "Arquivo:" -#: ../gui/wxpython/gui_core/gselect.py:1560 +#: ../gui/wxpython/gui_core/gselect.py:1564 msgid "Choose file to import" msgstr "Escolha o arquivo para importar" -#: ../gui/wxpython/gui_core/gselect.py:1577 -#: ../gui/wxpython/gui_core/gselect.py:1665 +#: ../gui/wxpython/gui_core/gselect.py:1581 +#: ../gui/wxpython/gui_core/gselect.py:1669 msgid "Choose input directory" msgstr "Escolha o diretório de entrada" -#: ../gui/wxpython/gui_core/gselect.py:1598 +#: ../gui/wxpython/gui_core/gselect.py:1602 msgid "Extension:" msgstr "Extensão:" -#: ../gui/wxpython/gui_core/gselect.py:1630 +#: ../gui/wxpython/gui_core/gselect.py:1634 msgid "Choose file" msgstr "Escolha o arquivo" -#: ../gui/wxpython/gui_core/gselect.py:1651 -#: ../gui/wxpython/gui_core/gselect.py:2777 +#: ../gui/wxpython/gui_core/gselect.py:1655 +#: ../gui/wxpython/gui_core/gselect.py:2781 msgid "Feature type:" msgstr "Tipo de feição:" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "simple features" msgstr "feições simples" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "topological" msgstr "topológica" -#: ../gui/wxpython/gui_core/gselect.py:1769 -#: ../gui/wxpython/gui_core/gselect.py:1809 -#: ../gui/wxpython/gui_core/gselect.py:1871 -#: ../gui/wxpython/gui_core/gselect.py:1916 +#: ../gui/wxpython/gui_core/gselect.py:1773 +#: ../gui/wxpython/gui_core/gselect.py:1813 +#: ../gui/wxpython/gui_core/gselect.py:1875 +#: ../gui/wxpython/gui_core/gselect.py:1920 msgid "Creation options:" msgstr "Opções de criação:" -#: ../gui/wxpython/gui_core/gselect.py:1786 -#: ../gui/wxpython/gui_core/gselect.py:1832 -#: ../gui/wxpython/gui_core/gselect.py:1897 +#: ../gui/wxpython/gui_core/gselect.py:1790 +#: ../gui/wxpython/gui_core/gselect.py:1836 +#: ../gui/wxpython/gui_core/gselect.py:1901 msgid "Format:" msgstr "Formato:" -#: ../gui/wxpython/gui_core/gselect.py:1905 +#: ../gui/wxpython/gui_core/gselect.py:1909 msgid "Protocol:" msgstr "Protocolo:" -#: ../gui/wxpython/gui_core/gselect.py:1934 +#: ../gui/wxpython/gui_core/gselect.py:1938 msgid "No settings available" msgstr "Nenhuma configuração disponível" -#: ../gui/wxpython/gui_core/gselect.py:2066 +#: ../gui/wxpython/gui_core/gselect.py:2070 #: ../gui/wxpython/web_services/dialogs.py:302 msgid "No data source defined, settings are not saved." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2098 +#: ../gui/wxpython/gui_core/gselect.py:2102 msgid "PostgreSQL/PostGIS login was not set. Set it via module, please." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2253 +#: ../gui/wxpython/gui_core/gselect.py:2257 #, python-brace-format msgid "Getting raster <{table}> SRID from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2508 +#: ../gui/wxpython/gui_core/gselect.py:2512 #, python-brace-format msgid "Getting list of tables from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2597 +#: ../gui/wxpython/gui_core/gselect.py:2601 #, python-brace-format msgid "Getting list of tables columns data types from PostGIS DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2628 +#: ../gui/wxpython/gui_core/gselect.py:2632 #, python-brace-format msgid "PostgreSQL DB <{psql}> program was not found. Please, install it." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2648 +#: ../gui/wxpython/gui_core/gselect.py:2652 #: ../gui/wxpython/modules/import_export.py:506 msgid "The Python GDAL package is missing. Please install it." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "LineString" msgstr "LineString" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 #: ../gui/wxpython/psmap/dialogs.py:6221 ../gui/wxpython/psmap/toolbars.py:103 #: ../gui/wxpython/vdigit/preferences.py:729 msgid "Point" msgstr "Ponto" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "Polygon" msgstr "Polígono" -#: ../gui/wxpython/gui_core/gselect.py:2982 +#: ../gui/wxpython/gui_core/gselect.py:2986 msgid "No vector map selected in layer manager. Operation canceled." msgstr "Nenhum mapa vetorial selecionado no gerenciador de camadas. Operação cancelada." -#: ../gui/wxpython/gui_core/gselect.py:3001 +#: ../gui/wxpython/gui_core/gselect.py:3005 msgid "Input vector map is not selected" msgstr "O mapa vetorial de entrada não está selecionado" -#: ../gui/wxpython/gui_core/gselect.py:3005 +#: ../gui/wxpython/gui_core/gselect.py:3009 #, python-format msgid "Input vector map <%s> and selected map <%s> in layer manager are different. Operation canceled." msgstr "O mapa vetorial de entrada <%s> e o mapa selecionado <%s> no gerenciador de camadas são diferentes. Operação cancelada." -#: ../gui/wxpython/gui_core/gselect.py:3121 +#: ../gui/wxpython/gui_core/gselect.py:3125 #, python-format msgid "Unable to import C imagery library functions: %s\n" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3199 +#: ../gui/wxpython/gui_core/gselect.py:3203 msgid "No vector map selected" msgstr "Nenhum mapa vetorial selecionado" @@ -15442,18 +15442,6 @@ msgstr "" "Equação de regressão para mapa raster <%(rast1)s> vs. <%(rast2)s>:\n" "\n" -#, fuzzy -#~ msgid "Do you want to create a new project (also known as location)?" -#~ msgstr "Quer cancelar o download da location?" - -#, fuzzy -#~ msgid "Create project?" -#~ msgstr "Criar a tabela?" - -#, fuzzy -#~ msgid "Create new project (location) in current GRASS database" -#~ msgstr "Cria um novo mapset na location atual, altera o mapset atual." - #~ msgid " (readonly)" #~ msgstr "(somente leitura)" @@ -16314,6 +16302,10 @@ msgstr "" #~ msgid "Create new project (location)" #~ msgstr "Criar uma nova location" +#, fuzzy +#~ msgid "Create new project (location) in current GRASS database" +#~ msgstr "Cria um novo mapset na location atual, altera o mapset atual." + #~ msgid "Create new workspace" #~ msgstr "Criar nova área de trabalho" @@ -16327,6 +16319,10 @@ msgstr "" #~ msgid "Create points/segments" #~ msgstr "Criar pontos/segmentos" +#, fuzzy +#~ msgid "Create project?" +#~ msgstr "Criar a tabela?" + #~ msgid "Create user mapset" #~ msgstr "Criar mapset do usuário" @@ -16609,6 +16605,10 @@ msgstr "" #~ msgid "Do you really want to delete map <{m}> of type <{etype}> from mapset <{mapset}> in location <{loc}>?" #~ msgstr "Deseja realmente apagar o mapa <{m}>, tipo <{etype}>, do mapset <{mapset}> e location <{loc}>?" +#, fuzzy +#~ msgid "Do you want to create a new project (also known as location)?" +#~ msgstr "Quer cancelar o download da location?" + #~ msgid "Documents" #~ msgstr "Documentos" diff --git a/locale/po/grasswxpy_ro.po b/locale/po/grasswxpy_ro.po index 5215f030d37..0d538d99dce 100644 --- a/locale/po/grasswxpy_ro.po +++ b/locale/po/grasswxpy_ro.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: grasswxpy_ro\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-08-26 14:19+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Romanian \n" @@ -200,9 +200,9 @@ msgstr "" #: ../gui/wxpython/animation/dialogs.py:415 #: ../gui/wxpython/gmodeler/preferences.py:730 -#: ../gui/wxpython/gui_core/gselect.py:1629 -#: ../gui/wxpython/gui_core/gselect.py:1646 -#: ../gui/wxpython/gui_core/gselect.py:1647 +#: ../gui/wxpython/gui_core/gselect.py:1633 +#: ../gui/wxpython/gui_core/gselect.py:1650 +#: ../gui/wxpython/gui_core/gselect.py:1651 #: ../gui/wxpython/gui_core/widgets.py:1462 #: ../gui/wxpython/vnet/dialogs.py:1679 msgid "Name:" @@ -252,11 +252,11 @@ msgstr "" #: ../gui/wxpython/animation/dialogs.py:1278 #: ../gui/wxpython/gui_core/forms.py:2009 #: ../gui/wxpython/gui_core/forms.py:2120 -#: ../gui/wxpython/gui_core/gselect.py:1245 -#: ../gui/wxpython/gui_core/gselect.py:1561 -#: ../gui/wxpython/gui_core/gselect.py:1578 -#: ../gui/wxpython/gui_core/gselect.py:1631 -#: ../gui/wxpython/gui_core/gselect.py:1666 +#: ../gui/wxpython/gui_core/gselect.py:1249 +#: ../gui/wxpython/gui_core/gselect.py:1565 +#: ../gui/wxpython/gui_core/gselect.py:1582 +#: ../gui/wxpython/gui_core/gselect.py:1635 +#: ../gui/wxpython/gui_core/gselect.py:1670 #: ../gui/wxpython/location_wizard/wizard.py:1446 #: ../gui/wxpython/location_wizard/wizard.py:1801 #: ../gui/wxpython/modules/import_export.py:862 @@ -454,8 +454,8 @@ msgid "File format:" msgstr "Format fișier:" #: ../gui/wxpython/animation/dialogs.py:1194 -#: ../gui/wxpython/gui_core/gselect.py:1576 -#: ../gui/wxpython/gui_core/gselect.py:1664 +#: ../gui/wxpython/gui_core/gselect.py:1580 +#: ../gui/wxpython/gui_core/gselect.py:1668 msgid "Directory:" msgstr "" @@ -2275,7 +2275,7 @@ msgid "Data type" msgstr "Tipul datei" #: ../gui/wxpython/dbmgr/base.py:3051 ../gui/wxpython/dbmgr/base.py:3203 -#: ../gui/wxpython/dbmgr/base.py:3471 ../gui/wxpython/gui_core/gselect.py:1479 +#: ../gui/wxpython/dbmgr/base.py:3471 ../gui/wxpython/gui_core/gselect.py:1483 msgid "Database" msgstr "Bază de date" @@ -3676,13 +3676,13 @@ msgid "Delete all" msgstr "Șterge tot" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "No" msgstr "Nu" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "Yes" msgstr "Da" @@ -4818,7 +4818,7 @@ msgid "Enter file content directly instead of specifying a file. Temporary file msgstr "" #: ../gui/wxpython/gui_core/forms.py:2119 -#: ../gui/wxpython/gui_core/gselect.py:1475 +#: ../gui/wxpython/gui_core/gselect.py:1479 msgid "Directory" msgstr "Director" @@ -5119,182 +5119,182 @@ msgstr "" msgid "No table linked to layer <{}>." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1244 +#: ../gui/wxpython/gui_core/gselect.py:1248 #: ../gui/wxpython/image2target/ii2t_gis_set.py:1017 msgid "Choose GIS Data Directory" msgstr "Alege directorul de lucru:" -#: ../gui/wxpython/gui_core/gselect.py:1456 +#: ../gui/wxpython/gui_core/gselect.py:1460 msgid "Output settings" msgstr "Setările de ieșire" -#: ../gui/wxpython/gui_core/gselect.py:1458 +#: ../gui/wxpython/gui_core/gselect.py:1462 msgid "Source input" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1465 +#: ../gui/wxpython/gui_core/gselect.py:1469 msgid "Native" msgstr "Nativ" -#: ../gui/wxpython/gui_core/gselect.py:1471 +#: ../gui/wxpython/gui_core/gselect.py:1475 #: ../gui/wxpython/lmgr/workspace.py:517 msgid "File" msgstr "Fișier" -#: ../gui/wxpython/gui_core/gselect.py:1483 +#: ../gui/wxpython/gui_core/gselect.py:1487 msgid "Protocol" msgstr "Protocol" -#: ../gui/wxpython/gui_core/gselect.py:1494 +#: ../gui/wxpython/gui_core/gselect.py:1498 msgid "Output type" msgstr "Tipul de ieșire" -#: ../gui/wxpython/gui_core/gselect.py:1496 +#: ../gui/wxpython/gui_core/gselect.py:1500 msgid "Source type" msgstr "Tipul sursei:" -#: ../gui/wxpython/gui_core/gselect.py:1514 +#: ../gui/wxpython/gui_core/gselect.py:1518 msgid "All files" msgstr "Toate fișierele" -#: ../gui/wxpython/gui_core/gselect.py:1544 +#: ../gui/wxpython/gui_core/gselect.py:1548 msgid "ZIP files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1545 +#: ../gui/wxpython/gui_core/gselect.py:1549 msgid "GZIP files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1546 +#: ../gui/wxpython/gui_core/gselect.py:1550 msgid "TAR files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1550 +#: ../gui/wxpython/gui_core/gselect.py:1554 msgid "TARGZ files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1559 +#: ../gui/wxpython/gui_core/gselect.py:1563 msgid "File:" msgstr "Fișier:" -#: ../gui/wxpython/gui_core/gselect.py:1560 +#: ../gui/wxpython/gui_core/gselect.py:1564 msgid "Choose file to import" msgstr "Alege fișierul pentru import" -#: ../gui/wxpython/gui_core/gselect.py:1577 -#: ../gui/wxpython/gui_core/gselect.py:1665 +#: ../gui/wxpython/gui_core/gselect.py:1581 +#: ../gui/wxpython/gui_core/gselect.py:1669 msgid "Choose input directory" msgstr "Alege directorul de intrare" -#: ../gui/wxpython/gui_core/gselect.py:1598 +#: ../gui/wxpython/gui_core/gselect.py:1602 msgid "Extension:" msgstr "Extensie:" -#: ../gui/wxpython/gui_core/gselect.py:1630 +#: ../gui/wxpython/gui_core/gselect.py:1634 msgid "Choose file" msgstr "Alege fișier" -#: ../gui/wxpython/gui_core/gselect.py:1651 -#: ../gui/wxpython/gui_core/gselect.py:2777 +#: ../gui/wxpython/gui_core/gselect.py:1655 +#: ../gui/wxpython/gui_core/gselect.py:2781 msgid "Feature type:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "simple features" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "topological" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1769 -#: ../gui/wxpython/gui_core/gselect.py:1809 -#: ../gui/wxpython/gui_core/gselect.py:1871 -#: ../gui/wxpython/gui_core/gselect.py:1916 +#: ../gui/wxpython/gui_core/gselect.py:1773 +#: ../gui/wxpython/gui_core/gselect.py:1813 +#: ../gui/wxpython/gui_core/gselect.py:1875 +#: ../gui/wxpython/gui_core/gselect.py:1920 msgid "Creation options:" msgstr "Crearea opțiunilor:" -#: ../gui/wxpython/gui_core/gselect.py:1786 -#: ../gui/wxpython/gui_core/gselect.py:1832 -#: ../gui/wxpython/gui_core/gselect.py:1897 +#: ../gui/wxpython/gui_core/gselect.py:1790 +#: ../gui/wxpython/gui_core/gselect.py:1836 +#: ../gui/wxpython/gui_core/gselect.py:1901 msgid "Format:" msgstr "Format:" -#: ../gui/wxpython/gui_core/gselect.py:1905 +#: ../gui/wxpython/gui_core/gselect.py:1909 msgid "Protocol:" msgstr "Protocol:" -#: ../gui/wxpython/gui_core/gselect.py:1934 +#: ../gui/wxpython/gui_core/gselect.py:1938 msgid "No settings available" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2066 +#: ../gui/wxpython/gui_core/gselect.py:2070 #: ../gui/wxpython/web_services/dialogs.py:302 msgid "No data source defined, settings are not saved." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2098 +#: ../gui/wxpython/gui_core/gselect.py:2102 msgid "PostgreSQL/PostGIS login was not set. Set it via module, please." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2253 +#: ../gui/wxpython/gui_core/gselect.py:2257 #, python-brace-format msgid "Getting raster <{table}> SRID from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2508 +#: ../gui/wxpython/gui_core/gselect.py:2512 #, python-brace-format msgid "Getting list of tables from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2597 +#: ../gui/wxpython/gui_core/gselect.py:2601 #, python-brace-format msgid "Getting list of tables columns data types from PostGIS DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2628 +#: ../gui/wxpython/gui_core/gselect.py:2632 #, python-brace-format msgid "PostgreSQL DB <{psql}> program was not found. Please, install it." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2648 +#: ../gui/wxpython/gui_core/gselect.py:2652 #: ../gui/wxpython/modules/import_export.py:506 msgid "The Python GDAL package is missing. Please install it." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "LineString" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 #: ../gui/wxpython/psmap/dialogs.py:6221 ../gui/wxpython/psmap/toolbars.py:103 #: ../gui/wxpython/vdigit/preferences.py:729 msgid "Point" msgstr "Punct" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "Polygon" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2982 +#: ../gui/wxpython/gui_core/gselect.py:2986 msgid "No vector map selected in layer manager. Operation canceled." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3001 +#: ../gui/wxpython/gui_core/gselect.py:3005 msgid "Input vector map is not selected" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3005 +#: ../gui/wxpython/gui_core/gselect.py:3009 #, python-format msgid "Input vector map <%s> and selected map <%s> in layer manager are different. Operation canceled." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3121 +#: ../gui/wxpython/gui_core/gselect.py:3125 #, python-format msgid "Unable to import C imagery library functions: %s\n" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3199 +#: ../gui/wxpython/gui_core/gselect.py:3203 msgid "No vector map selected" msgstr "" @@ -15332,18 +15332,6 @@ msgid "" "\n" msgstr "" -#, fuzzy -#~ msgid "Do you want to create a new project (also known as location)?" -#~ msgstr "Doriți să creați locația GRASS <%s>?" - -#, fuzzy -#~ msgid "Create project?" -#~ msgstr "Creați tabel?" - -#, fuzzy -#~ msgid "Create new project (location) in current GRASS database" -#~ msgstr "Crează mapset nou în locația curentă, schimbați mapset-ul curent." - #~ msgid " (readonly)" #~ msgstr "(doar citire)" @@ -15893,6 +15881,10 @@ msgstr "" #~ msgid "Create new project (location)" #~ msgstr "Crează locație nouă" +#, fuzzy +#~ msgid "Create new project (location) in current GRASS database" +#~ msgstr "Crează mapset nou în locația curentă, schimbați mapset-ul curent." + #~ msgid "Create new workspace" #~ msgstr "Crează spațiu de lucru nou" @@ -15905,6 +15897,10 @@ msgstr "" #~ msgid "Create points/segments" #~ msgstr "Crează puncte/segmente" +#, fuzzy +#~ msgid "Create project?" +#~ msgstr "Creați tabel?" + #~ msgid "Create stationing" #~ msgstr "Crează staționare" @@ -16083,6 +16079,10 @@ msgstr "" #~ msgid "Distance to features" #~ msgstr "Distanța la trăsături" +#, fuzzy +#~ msgid "Do you want to create a new project (also known as location)?" +#~ msgstr "Doriți să creați locația GRASS <%s>?" + #~ msgid "Do you want to set the default region extents and resolution now?" #~ msgstr "Doriți să setați extinderea regiunii și rezoluția acum?" diff --git a/locale/po/grasswxpy_ru.po b/locale/po/grasswxpy_ru.po index 8a71f6b3d6e..5eb66cff407 100644 --- a/locale/po/grasswxpy_ru.po +++ b/locale/po/grasswxpy_ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: grasswxpy_ru\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2023-06-28 19:08+0000\n" "Last-Translator: Sergey Kazorin \n" "Language-Team: Russian \n" @@ -198,9 +198,9 @@ msgstr "Выберите двухмерный или трёхмерный вид #: ../gui/wxpython/animation/dialogs.py:415 #: ../gui/wxpython/gmodeler/preferences.py:730 -#: ../gui/wxpython/gui_core/gselect.py:1629 -#: ../gui/wxpython/gui_core/gselect.py:1646 -#: ../gui/wxpython/gui_core/gselect.py:1647 +#: ../gui/wxpython/gui_core/gselect.py:1633 +#: ../gui/wxpython/gui_core/gselect.py:1650 +#: ../gui/wxpython/gui_core/gselect.py:1651 #: ../gui/wxpython/gui_core/widgets.py:1462 #: ../gui/wxpython/vnet/dialogs.py:1679 msgid "Name:" @@ -252,11 +252,11 @@ msgstr "Выберите файл проекта для импорта пара #: ../gui/wxpython/animation/dialogs.py:1278 #: ../gui/wxpython/gui_core/forms.py:2009 #: ../gui/wxpython/gui_core/forms.py:2120 -#: ../gui/wxpython/gui_core/gselect.py:1245 -#: ../gui/wxpython/gui_core/gselect.py:1561 -#: ../gui/wxpython/gui_core/gselect.py:1578 -#: ../gui/wxpython/gui_core/gselect.py:1631 -#: ../gui/wxpython/gui_core/gselect.py:1666 +#: ../gui/wxpython/gui_core/gselect.py:1249 +#: ../gui/wxpython/gui_core/gselect.py:1565 +#: ../gui/wxpython/gui_core/gselect.py:1582 +#: ../gui/wxpython/gui_core/gselect.py:1635 +#: ../gui/wxpython/gui_core/gselect.py:1670 #: ../gui/wxpython/location_wizard/wizard.py:1446 #: ../gui/wxpython/location_wizard/wizard.py:1801 #: ../gui/wxpython/modules/import_export.py:862 @@ -454,8 +454,8 @@ msgid "File format:" msgstr "Формат файла:" #: ../gui/wxpython/animation/dialogs.py:1194 -#: ../gui/wxpython/gui_core/gselect.py:1576 -#: ../gui/wxpython/gui_core/gselect.py:1664 +#: ../gui/wxpython/gui_core/gselect.py:1580 +#: ../gui/wxpython/gui_core/gselect.py:1668 msgid "Directory:" msgstr "Каталог:" @@ -2314,7 +2314,7 @@ msgid "Data type" msgstr "Тип данных" #: ../gui/wxpython/dbmgr/base.py:3051 ../gui/wxpython/dbmgr/base.py:3203 -#: ../gui/wxpython/dbmgr/base.py:3471 ../gui/wxpython/gui_core/gselect.py:1479 +#: ../gui/wxpython/dbmgr/base.py:3471 ../gui/wxpython/gui_core/gselect.py:1483 msgid "Database" msgstr "База данных" @@ -3726,13 +3726,13 @@ msgid "Delete all" msgstr "Удалить всё" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "No" msgstr "Нет" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "Yes" msgstr "Да" @@ -4875,7 +4875,7 @@ msgid "Enter file content directly instead of specifying a file. Temporary file msgstr "Введите значения напрямую вместо указания файла. Временный файл будет создан автоматически." #: ../gui/wxpython/gui_core/forms.py:2119 -#: ../gui/wxpython/gui_core/gselect.py:1475 +#: ../gui/wxpython/gui_core/gselect.py:1479 msgid "Directory" msgstr "Каталог" @@ -5184,182 +5184,182 @@ msgstr "" msgid "No table linked to layer <{}>." msgstr "Таблицы не связаны со слоем <{}>." -#: ../gui/wxpython/gui_core/gselect.py:1244 +#: ../gui/wxpython/gui_core/gselect.py:1248 #: ../gui/wxpython/image2target/ii2t_gis_set.py:1017 msgid "Choose GIS Data Directory" msgstr "Выбор каталога данных ГИС" -#: ../gui/wxpython/gui_core/gselect.py:1456 +#: ../gui/wxpython/gui_core/gselect.py:1460 msgid "Output settings" msgstr "Параметры вывода" -#: ../gui/wxpython/gui_core/gselect.py:1458 +#: ../gui/wxpython/gui_core/gselect.py:1462 msgid "Source input" msgstr "Источник" -#: ../gui/wxpython/gui_core/gselect.py:1465 +#: ../gui/wxpython/gui_core/gselect.py:1469 msgid "Native" msgstr "Оригинальный" -#: ../gui/wxpython/gui_core/gselect.py:1471 +#: ../gui/wxpython/gui_core/gselect.py:1475 #: ../gui/wxpython/lmgr/workspace.py:517 msgid "File" msgstr "Файл" -#: ../gui/wxpython/gui_core/gselect.py:1483 +#: ../gui/wxpython/gui_core/gselect.py:1487 msgid "Protocol" msgstr "Протокол" -#: ../gui/wxpython/gui_core/gselect.py:1494 +#: ../gui/wxpython/gui_core/gselect.py:1498 msgid "Output type" msgstr "Тип вывода" -#: ../gui/wxpython/gui_core/gselect.py:1496 +#: ../gui/wxpython/gui_core/gselect.py:1500 msgid "Source type" msgstr "Тип источника" -#: ../gui/wxpython/gui_core/gselect.py:1514 +#: ../gui/wxpython/gui_core/gselect.py:1518 msgid "All files" msgstr "Все файлы" -#: ../gui/wxpython/gui_core/gselect.py:1544 +#: ../gui/wxpython/gui_core/gselect.py:1548 msgid "ZIP files" msgstr "Файлы ZIP" -#: ../gui/wxpython/gui_core/gselect.py:1545 +#: ../gui/wxpython/gui_core/gselect.py:1549 msgid "GZIP files" msgstr "Файлы GZIP" -#: ../gui/wxpython/gui_core/gselect.py:1546 +#: ../gui/wxpython/gui_core/gselect.py:1550 msgid "TAR files" msgstr "Файлы TAR" -#: ../gui/wxpython/gui_core/gselect.py:1550 +#: ../gui/wxpython/gui_core/gselect.py:1554 msgid "TARGZ files" msgstr "Файлы TARGZ" -#: ../gui/wxpython/gui_core/gselect.py:1559 +#: ../gui/wxpython/gui_core/gselect.py:1563 msgid "File:" msgstr "Файл:" -#: ../gui/wxpython/gui_core/gselect.py:1560 +#: ../gui/wxpython/gui_core/gselect.py:1564 msgid "Choose file to import" msgstr "Выбор файлов для импорта" -#: ../gui/wxpython/gui_core/gselect.py:1577 -#: ../gui/wxpython/gui_core/gselect.py:1665 +#: ../gui/wxpython/gui_core/gselect.py:1581 +#: ../gui/wxpython/gui_core/gselect.py:1669 msgid "Choose input directory" msgstr "Выбор входного каталога" -#: ../gui/wxpython/gui_core/gselect.py:1598 +#: ../gui/wxpython/gui_core/gselect.py:1602 msgid "Extension:" msgstr "Расширение:" -#: ../gui/wxpython/gui_core/gselect.py:1630 +#: ../gui/wxpython/gui_core/gselect.py:1634 msgid "Choose file" msgstr "Выбор файла" -#: ../gui/wxpython/gui_core/gselect.py:1651 -#: ../gui/wxpython/gui_core/gselect.py:2777 +#: ../gui/wxpython/gui_core/gselect.py:1655 +#: ../gui/wxpython/gui_core/gselect.py:2781 msgid "Feature type:" msgstr "Тип объекта:" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "simple features" msgstr "простые объекты" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "topological" msgstr "топологические" -#: ../gui/wxpython/gui_core/gselect.py:1769 -#: ../gui/wxpython/gui_core/gselect.py:1809 -#: ../gui/wxpython/gui_core/gselect.py:1871 -#: ../gui/wxpython/gui_core/gselect.py:1916 +#: ../gui/wxpython/gui_core/gselect.py:1773 +#: ../gui/wxpython/gui_core/gselect.py:1813 +#: ../gui/wxpython/gui_core/gselect.py:1875 +#: ../gui/wxpython/gui_core/gselect.py:1920 msgid "Creation options:" msgstr "Параметры создания:" -#: ../gui/wxpython/gui_core/gselect.py:1786 -#: ../gui/wxpython/gui_core/gselect.py:1832 -#: ../gui/wxpython/gui_core/gselect.py:1897 +#: ../gui/wxpython/gui_core/gselect.py:1790 +#: ../gui/wxpython/gui_core/gselect.py:1836 +#: ../gui/wxpython/gui_core/gselect.py:1901 msgid "Format:" msgstr "Формат:" -#: ../gui/wxpython/gui_core/gselect.py:1905 +#: ../gui/wxpython/gui_core/gselect.py:1909 msgid "Protocol:" msgstr "Протокол:" -#: ../gui/wxpython/gui_core/gselect.py:1934 +#: ../gui/wxpython/gui_core/gselect.py:1938 msgid "No settings available" msgstr "Параметры недоступны" -#: ../gui/wxpython/gui_core/gselect.py:2066 +#: ../gui/wxpython/gui_core/gselect.py:2070 #: ../gui/wxpython/web_services/dialogs.py:302 msgid "No data source defined, settings are not saved." msgstr "Источник данных не определён, параметры не сохранены." -#: ../gui/wxpython/gui_core/gselect.py:2098 +#: ../gui/wxpython/gui_core/gselect.py:2102 msgid "PostgreSQL/PostGIS login was not set. Set it via module, please." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2253 +#: ../gui/wxpython/gui_core/gselect.py:2257 #, python-brace-format msgid "Getting raster <{table}> SRID from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2508 +#: ../gui/wxpython/gui_core/gselect.py:2512 #, python-brace-format msgid "Getting list of tables from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2597 +#: ../gui/wxpython/gui_core/gselect.py:2601 #, python-brace-format msgid "Getting list of tables columns data types from PostGIS DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2628 +#: ../gui/wxpython/gui_core/gselect.py:2632 #, python-brace-format msgid "PostgreSQL DB <{psql}> program was not found. Please, install it." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2648 +#: ../gui/wxpython/gui_core/gselect.py:2652 #: ../gui/wxpython/modules/import_export.py:506 msgid "The Python GDAL package is missing. Please install it." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "LineString" msgstr "Строки линии" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 #: ../gui/wxpython/psmap/dialogs.py:6221 ../gui/wxpython/psmap/toolbars.py:103 #: ../gui/wxpython/vdigit/preferences.py:729 msgid "Point" msgstr "Точка" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "Polygon" msgstr "Полигон" -#: ../gui/wxpython/gui_core/gselect.py:2982 +#: ../gui/wxpython/gui_core/gselect.py:2986 msgid "No vector map selected in layer manager. Operation canceled." msgstr "Векторная карта в диспетчере слоёв не выбрана. Операция отменена." -#: ../gui/wxpython/gui_core/gselect.py:3001 +#: ../gui/wxpython/gui_core/gselect.py:3005 msgid "Input vector map is not selected" msgstr "Входная векторная карта не выбрана" -#: ../gui/wxpython/gui_core/gselect.py:3005 +#: ../gui/wxpython/gui_core/gselect.py:3009 #, python-format msgid "Input vector map <%s> and selected map <%s> in layer manager are different. Operation canceled." msgstr "Входная векторная карта <%s> и карта <%s>, выбранная в диспетчере слоёв, отличаются друг от друга. Операция отменена." -#: ../gui/wxpython/gui_core/gselect.py:3121 +#: ../gui/wxpython/gui_core/gselect.py:3125 #, python-format msgid "Unable to import C imagery library functions: %s\n" msgstr "Не удалось импортировать функции изображений библиотеки C: %s\n" -#: ../gui/wxpython/gui_core/gselect.py:3199 +#: ../gui/wxpython/gui_core/gselect.py:3203 msgid "No vector map selected" msgstr "Векторные карты не выбраны" @@ -15618,34 +15618,6 @@ msgstr "" "Уравнение регрессии для растровых карт <%(rast1)s> и <%(rast2)s>:\n" "\n" -#, fuzzy -#~ msgid "Do you want to create a new project (also known as location)?" -#~ msgstr "Создать область?" - -#, fuzzy -#~ msgid "Create project?" -#~ msgstr "Создание области" - -#~ msgid "Restrict edits to the current mapset only" -#~ msgstr "Ограничить изменения только текущим набором" - -#~ msgid "Allow edits outside of the current mapset" -#~ msgstr "Позволять внесение изменений вне текущего набора" - -#~ msgid "Add existing or create new database" -#~ msgstr "Добавить существующую или создать новую базу данных" - -#, fuzzy -#~ msgid "Create new project (location) in current GRASS database" -#~ msgstr "Создать новую область в текущей базе данных GRASS" - -#, fuzzy -#~ msgid "Download sample project (location) to current GRASS database" -#~ msgstr "Загрузить область выборки в текущую базу данных GRASS" - -#~ msgid "GRASS GIS" -#~ msgstr "ГИС GRASS" - #~ msgid " Feature type: " #~ msgstr " Тип объекта: " @@ -15849,6 +15821,9 @@ msgstr "" #~ msgid "Add default servers" #~ msgstr "Добавить серверы по умолчанию" +#~ msgid "Add existing or create new database" +#~ msgstr "Добавить существующую или создать новую базу данных" + #~ msgid "Add imported layers into layer tree ({mightNotWork})" #~ msgstr "Добавить импортированные слои в дерево слоёв ({mightNotWork})" @@ -15936,6 +15911,9 @@ msgstr "" #~ msgid "Allocates subnets for nearest centers. Center node must be opened (costs >= 0). Costs of center node are used in calculation." #~ msgstr "Определяет подсети для ближайших центров. Центральный узел должен быть открыт (costs >= 0). Стоимости центрального узла используются в вычислениях." +#~ msgid "Allow edits outside of the current mapset" +#~ msgstr "Позволять внесение изменений вне текущего набора" + #~ msgid "Allows creation and/or modification of raster map layer support files." #~ msgstr "Создание и/или модификация вспомогательных файлов для растровых слоев карты." @@ -16563,6 +16541,10 @@ msgstr "" #~ msgid "Create new project (location)" #~ msgstr "Создание новой области" +#, fuzzy +#~ msgid "Create new project (location) in current GRASS database" +#~ msgstr "Создать новую область в текущей базе данных GRASS" + #~ msgid "Create new workspace" #~ msgstr "Создать новый проект" @@ -16575,6 +16557,10 @@ msgstr "" #~ msgid "Create points/segments" #~ msgstr "Создание точек/сегментов" +#, fuzzy +#~ msgid "Create project?" +#~ msgstr "Создание области" + #~ msgid "Create stationing" #~ msgstr "Создание представления сети опорных точек" @@ -16889,6 +16875,10 @@ msgstr "" #~ msgid "Do you want to create GRASS location <%s>?" #~ msgstr "Вы хотите создать новую область GRASS <%s>?" +#, fuzzy +#~ msgid "Do you want to create a new project (also known as location)?" +#~ msgstr "Создать область?" + #~ msgid "Do you want to import {}to the newly created location?" #~ msgstr "Импортировать {}во вновь созданную область?" @@ -16916,6 +16906,10 @@ msgstr "" #~ msgid "Download sample location" #~ msgstr "Загрузить пример области" +#, fuzzy +#~ msgid "Download sample project (location) to current GRASS database" +#~ msgstr "Загрузить область выборки в текущую базу данных GRASS" + #~ msgid "Downloads and imports data from OGC WMS and OGC WMTS web mapping servers." #~ msgstr "Загрузка и импорт данных с серверов картографических веб-служб OGC WMS и OGC WMTS." @@ -17242,6 +17236,9 @@ msgstr "" #~ msgid "GPS data import" #~ msgstr "Импорт данных GPS" +#~ msgid "GRASS GIS" +#~ msgstr "ГИС GRASS" + #, python-format #~ msgid "GRASS GIS %s Startup%s" #~ msgstr "Запуск ГИС GRASS %s%s" @@ -18674,6 +18671,9 @@ msgstr "" #~ msgid "Rescales the range of category values in a raster map layer." #~ msgstr "Изменяет диапазон значений категорий в растровом слое карты." +#~ msgid "Restrict edits to the current mapset only" +#~ msgstr "Ограничить изменения только текущим набором" + #~ msgid "Richness" #~ msgstr "Богатство" diff --git a/locale/po/grasswxpy_si.po b/locale/po/grasswxpy_si.po index 6cbd77862a7..f4ba5988de6 100644 --- a/locale/po/grasswxpy_si.po +++ b/locale/po/grasswxpy_si.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: grasslibs_si\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2017-05-23 21:08+0200\n" "Last-Translator: \n" "Language-Team: Sinhala (https://www.transifex.com/grass-gis/teams/45198/si/)\n" @@ -198,9 +198,9 @@ msgstr "" #: ../gui/wxpython/animation/dialogs.py:415 #: ../gui/wxpython/gmodeler/preferences.py:730 -#: ../gui/wxpython/gui_core/gselect.py:1629 -#: ../gui/wxpython/gui_core/gselect.py:1646 -#: ../gui/wxpython/gui_core/gselect.py:1647 +#: ../gui/wxpython/gui_core/gselect.py:1633 +#: ../gui/wxpython/gui_core/gselect.py:1650 +#: ../gui/wxpython/gui_core/gselect.py:1651 #: ../gui/wxpython/gui_core/widgets.py:1462 #: ../gui/wxpython/vnet/dialogs.py:1679 msgid "Name:" @@ -250,11 +250,11 @@ msgstr "" #: ../gui/wxpython/animation/dialogs.py:1278 #: ../gui/wxpython/gui_core/forms.py:2009 #: ../gui/wxpython/gui_core/forms.py:2120 -#: ../gui/wxpython/gui_core/gselect.py:1245 -#: ../gui/wxpython/gui_core/gselect.py:1561 -#: ../gui/wxpython/gui_core/gselect.py:1578 -#: ../gui/wxpython/gui_core/gselect.py:1631 -#: ../gui/wxpython/gui_core/gselect.py:1666 +#: ../gui/wxpython/gui_core/gselect.py:1249 +#: ../gui/wxpython/gui_core/gselect.py:1565 +#: ../gui/wxpython/gui_core/gselect.py:1582 +#: ../gui/wxpython/gui_core/gselect.py:1635 +#: ../gui/wxpython/gui_core/gselect.py:1670 #: ../gui/wxpython/location_wizard/wizard.py:1446 #: ../gui/wxpython/location_wizard/wizard.py:1801 #: ../gui/wxpython/modules/import_export.py:862 @@ -452,8 +452,8 @@ msgid "File format:" msgstr "" #: ../gui/wxpython/animation/dialogs.py:1194 -#: ../gui/wxpython/gui_core/gselect.py:1576 -#: ../gui/wxpython/gui_core/gselect.py:1664 +#: ../gui/wxpython/gui_core/gselect.py:1580 +#: ../gui/wxpython/gui_core/gselect.py:1668 msgid "Directory:" msgstr "" @@ -2219,7 +2219,7 @@ msgid "Data type" msgstr "" #: ../gui/wxpython/dbmgr/base.py:3051 ../gui/wxpython/dbmgr/base.py:3203 -#: ../gui/wxpython/dbmgr/base.py:3471 ../gui/wxpython/gui_core/gselect.py:1479 +#: ../gui/wxpython/dbmgr/base.py:3471 ../gui/wxpython/gui_core/gselect.py:1483 msgid "Database" msgstr "" @@ -3589,13 +3589,13 @@ msgid "Delete all" msgstr "" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "No" msgstr "" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "Yes" msgstr "" @@ -4700,7 +4700,7 @@ msgid "Enter file content directly instead of specifying a file. Temporary file msgstr "" #: ../gui/wxpython/gui_core/forms.py:2119 -#: ../gui/wxpython/gui_core/gselect.py:1475 +#: ../gui/wxpython/gui_core/gselect.py:1479 msgid "Directory" msgstr "" @@ -4994,182 +4994,182 @@ msgstr "" msgid "No table linked to layer <{}>." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1244 +#: ../gui/wxpython/gui_core/gselect.py:1248 #: ../gui/wxpython/image2target/ii2t_gis_set.py:1017 msgid "Choose GIS Data Directory" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1456 +#: ../gui/wxpython/gui_core/gselect.py:1460 msgid "Output settings" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1458 +#: ../gui/wxpython/gui_core/gselect.py:1462 msgid "Source input" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1465 +#: ../gui/wxpython/gui_core/gselect.py:1469 msgid "Native" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1471 +#: ../gui/wxpython/gui_core/gselect.py:1475 #: ../gui/wxpython/lmgr/workspace.py:517 msgid "File" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1483 +#: ../gui/wxpython/gui_core/gselect.py:1487 msgid "Protocol" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1494 +#: ../gui/wxpython/gui_core/gselect.py:1498 msgid "Output type" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1496 +#: ../gui/wxpython/gui_core/gselect.py:1500 msgid "Source type" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1514 +#: ../gui/wxpython/gui_core/gselect.py:1518 msgid "All files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1544 +#: ../gui/wxpython/gui_core/gselect.py:1548 msgid "ZIP files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1545 +#: ../gui/wxpython/gui_core/gselect.py:1549 msgid "GZIP files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1546 +#: ../gui/wxpython/gui_core/gselect.py:1550 msgid "TAR files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1550 +#: ../gui/wxpython/gui_core/gselect.py:1554 msgid "TARGZ files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1559 +#: ../gui/wxpython/gui_core/gselect.py:1563 msgid "File:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1560 +#: ../gui/wxpython/gui_core/gselect.py:1564 msgid "Choose file to import" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1577 -#: ../gui/wxpython/gui_core/gselect.py:1665 +#: ../gui/wxpython/gui_core/gselect.py:1581 +#: ../gui/wxpython/gui_core/gselect.py:1669 msgid "Choose input directory" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1598 +#: ../gui/wxpython/gui_core/gselect.py:1602 msgid "Extension:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1630 +#: ../gui/wxpython/gui_core/gselect.py:1634 msgid "Choose file" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1651 -#: ../gui/wxpython/gui_core/gselect.py:2777 +#: ../gui/wxpython/gui_core/gselect.py:1655 +#: ../gui/wxpython/gui_core/gselect.py:2781 msgid "Feature type:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "simple features" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "topological" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1769 -#: ../gui/wxpython/gui_core/gselect.py:1809 -#: ../gui/wxpython/gui_core/gselect.py:1871 -#: ../gui/wxpython/gui_core/gselect.py:1916 +#: ../gui/wxpython/gui_core/gselect.py:1773 +#: ../gui/wxpython/gui_core/gselect.py:1813 +#: ../gui/wxpython/gui_core/gselect.py:1875 +#: ../gui/wxpython/gui_core/gselect.py:1920 msgid "Creation options:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1786 -#: ../gui/wxpython/gui_core/gselect.py:1832 -#: ../gui/wxpython/gui_core/gselect.py:1897 +#: ../gui/wxpython/gui_core/gselect.py:1790 +#: ../gui/wxpython/gui_core/gselect.py:1836 +#: ../gui/wxpython/gui_core/gselect.py:1901 msgid "Format:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1905 +#: ../gui/wxpython/gui_core/gselect.py:1909 msgid "Protocol:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1934 +#: ../gui/wxpython/gui_core/gselect.py:1938 msgid "No settings available" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2066 +#: ../gui/wxpython/gui_core/gselect.py:2070 #: ../gui/wxpython/web_services/dialogs.py:302 msgid "No data source defined, settings are not saved." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2098 +#: ../gui/wxpython/gui_core/gselect.py:2102 msgid "PostgreSQL/PostGIS login was not set. Set it via module, please." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2253 +#: ../gui/wxpython/gui_core/gselect.py:2257 #, python-brace-format msgid "Getting raster <{table}> SRID from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2508 +#: ../gui/wxpython/gui_core/gselect.py:2512 #, python-brace-format msgid "Getting list of tables from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2597 +#: ../gui/wxpython/gui_core/gselect.py:2601 #, python-brace-format msgid "Getting list of tables columns data types from PostGIS DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2628 +#: ../gui/wxpython/gui_core/gselect.py:2632 #, python-brace-format msgid "PostgreSQL DB <{psql}> program was not found. Please, install it." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2648 +#: ../gui/wxpython/gui_core/gselect.py:2652 #: ../gui/wxpython/modules/import_export.py:506 msgid "The Python GDAL package is missing. Please install it." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "LineString" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 #: ../gui/wxpython/psmap/dialogs.py:6221 ../gui/wxpython/psmap/toolbars.py:103 #: ../gui/wxpython/vdigit/preferences.py:729 msgid "Point" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "Polygon" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2982 +#: ../gui/wxpython/gui_core/gselect.py:2986 msgid "No vector map selected in layer manager. Operation canceled." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3001 +#: ../gui/wxpython/gui_core/gselect.py:3005 msgid "Input vector map is not selected" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3005 +#: ../gui/wxpython/gui_core/gselect.py:3009 #, python-format msgid "Input vector map <%s> and selected map <%s> in layer manager are different. Operation canceled." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3121 +#: ../gui/wxpython/gui_core/gselect.py:3125 #, python-format msgid "Unable to import C imagery library functions: %s\n" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3199 +#: ../gui/wxpython/gui_core/gselect.py:3203 msgid "No vector map selected" msgstr "" diff --git a/locale/po/grasswxpy_sl.po b/locale/po/grasswxpy_sl.po index 627190c27fe..84b901bbd4c 100644 --- a/locale/po/grasswxpy_sl.po +++ b/locale/po/grasswxpy_sl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -197,9 +197,9 @@ msgstr "" #: ../gui/wxpython/animation/dialogs.py:415 #: ../gui/wxpython/gmodeler/preferences.py:730 -#: ../gui/wxpython/gui_core/gselect.py:1629 -#: ../gui/wxpython/gui_core/gselect.py:1646 -#: ../gui/wxpython/gui_core/gselect.py:1647 +#: ../gui/wxpython/gui_core/gselect.py:1633 +#: ../gui/wxpython/gui_core/gselect.py:1650 +#: ../gui/wxpython/gui_core/gselect.py:1651 #: ../gui/wxpython/gui_core/widgets.py:1462 #: ../gui/wxpython/vnet/dialogs.py:1679 msgid "Name:" @@ -249,11 +249,11 @@ msgstr "" #: ../gui/wxpython/animation/dialogs.py:1278 #: ../gui/wxpython/gui_core/forms.py:2009 #: ../gui/wxpython/gui_core/forms.py:2120 -#: ../gui/wxpython/gui_core/gselect.py:1245 -#: ../gui/wxpython/gui_core/gselect.py:1561 -#: ../gui/wxpython/gui_core/gselect.py:1578 -#: ../gui/wxpython/gui_core/gselect.py:1631 -#: ../gui/wxpython/gui_core/gselect.py:1666 +#: ../gui/wxpython/gui_core/gselect.py:1249 +#: ../gui/wxpython/gui_core/gselect.py:1565 +#: ../gui/wxpython/gui_core/gselect.py:1582 +#: ../gui/wxpython/gui_core/gselect.py:1635 +#: ../gui/wxpython/gui_core/gselect.py:1670 #: ../gui/wxpython/location_wizard/wizard.py:1446 #: ../gui/wxpython/location_wizard/wizard.py:1801 #: ../gui/wxpython/modules/import_export.py:862 @@ -451,8 +451,8 @@ msgid "File format:" msgstr "" #: ../gui/wxpython/animation/dialogs.py:1194 -#: ../gui/wxpython/gui_core/gselect.py:1576 -#: ../gui/wxpython/gui_core/gselect.py:1664 +#: ../gui/wxpython/gui_core/gselect.py:1580 +#: ../gui/wxpython/gui_core/gselect.py:1668 msgid "Directory:" msgstr "" @@ -2218,7 +2218,7 @@ msgid "Data type" msgstr "" #: ../gui/wxpython/dbmgr/base.py:3051 ../gui/wxpython/dbmgr/base.py:3203 -#: ../gui/wxpython/dbmgr/base.py:3471 ../gui/wxpython/gui_core/gselect.py:1479 +#: ../gui/wxpython/dbmgr/base.py:3471 ../gui/wxpython/gui_core/gselect.py:1483 msgid "Database" msgstr "" @@ -3588,13 +3588,13 @@ msgid "Delete all" msgstr "" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "No" msgstr "" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "Yes" msgstr "" @@ -4699,7 +4699,7 @@ msgid "Enter file content directly instead of specifying a file. Temporary file msgstr "" #: ../gui/wxpython/gui_core/forms.py:2119 -#: ../gui/wxpython/gui_core/gselect.py:1475 +#: ../gui/wxpython/gui_core/gselect.py:1479 msgid "Directory" msgstr "" @@ -4993,182 +4993,182 @@ msgstr "" msgid "No table linked to layer <{}>." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1244 +#: ../gui/wxpython/gui_core/gselect.py:1248 #: ../gui/wxpython/image2target/ii2t_gis_set.py:1017 msgid "Choose GIS Data Directory" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1456 +#: ../gui/wxpython/gui_core/gselect.py:1460 msgid "Output settings" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1458 +#: ../gui/wxpython/gui_core/gselect.py:1462 msgid "Source input" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1465 +#: ../gui/wxpython/gui_core/gselect.py:1469 msgid "Native" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1471 +#: ../gui/wxpython/gui_core/gselect.py:1475 #: ../gui/wxpython/lmgr/workspace.py:517 msgid "File" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1483 +#: ../gui/wxpython/gui_core/gselect.py:1487 msgid "Protocol" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1494 +#: ../gui/wxpython/gui_core/gselect.py:1498 msgid "Output type" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1496 +#: ../gui/wxpython/gui_core/gselect.py:1500 msgid "Source type" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1514 +#: ../gui/wxpython/gui_core/gselect.py:1518 msgid "All files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1544 +#: ../gui/wxpython/gui_core/gselect.py:1548 msgid "ZIP files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1545 +#: ../gui/wxpython/gui_core/gselect.py:1549 msgid "GZIP files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1546 +#: ../gui/wxpython/gui_core/gselect.py:1550 msgid "TAR files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1550 +#: ../gui/wxpython/gui_core/gselect.py:1554 msgid "TARGZ files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1559 +#: ../gui/wxpython/gui_core/gselect.py:1563 msgid "File:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1560 +#: ../gui/wxpython/gui_core/gselect.py:1564 msgid "Choose file to import" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1577 -#: ../gui/wxpython/gui_core/gselect.py:1665 +#: ../gui/wxpython/gui_core/gselect.py:1581 +#: ../gui/wxpython/gui_core/gselect.py:1669 msgid "Choose input directory" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1598 +#: ../gui/wxpython/gui_core/gselect.py:1602 msgid "Extension:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1630 +#: ../gui/wxpython/gui_core/gselect.py:1634 msgid "Choose file" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1651 -#: ../gui/wxpython/gui_core/gselect.py:2777 +#: ../gui/wxpython/gui_core/gselect.py:1655 +#: ../gui/wxpython/gui_core/gselect.py:2781 msgid "Feature type:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "simple features" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "topological" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1769 -#: ../gui/wxpython/gui_core/gselect.py:1809 -#: ../gui/wxpython/gui_core/gselect.py:1871 -#: ../gui/wxpython/gui_core/gselect.py:1916 +#: ../gui/wxpython/gui_core/gselect.py:1773 +#: ../gui/wxpython/gui_core/gselect.py:1813 +#: ../gui/wxpython/gui_core/gselect.py:1875 +#: ../gui/wxpython/gui_core/gselect.py:1920 msgid "Creation options:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1786 -#: ../gui/wxpython/gui_core/gselect.py:1832 -#: ../gui/wxpython/gui_core/gselect.py:1897 +#: ../gui/wxpython/gui_core/gselect.py:1790 +#: ../gui/wxpython/gui_core/gselect.py:1836 +#: ../gui/wxpython/gui_core/gselect.py:1901 msgid "Format:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1905 +#: ../gui/wxpython/gui_core/gselect.py:1909 msgid "Protocol:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1934 +#: ../gui/wxpython/gui_core/gselect.py:1938 msgid "No settings available" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2066 +#: ../gui/wxpython/gui_core/gselect.py:2070 #: ../gui/wxpython/web_services/dialogs.py:302 msgid "No data source defined, settings are not saved." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2098 +#: ../gui/wxpython/gui_core/gselect.py:2102 msgid "PostgreSQL/PostGIS login was not set. Set it via module, please." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2253 +#: ../gui/wxpython/gui_core/gselect.py:2257 #, python-brace-format msgid "Getting raster <{table}> SRID from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2508 +#: ../gui/wxpython/gui_core/gselect.py:2512 #, python-brace-format msgid "Getting list of tables from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2597 +#: ../gui/wxpython/gui_core/gselect.py:2601 #, python-brace-format msgid "Getting list of tables columns data types from PostGIS DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2628 +#: ../gui/wxpython/gui_core/gselect.py:2632 #, python-brace-format msgid "PostgreSQL DB <{psql}> program was not found. Please, install it." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2648 +#: ../gui/wxpython/gui_core/gselect.py:2652 #: ../gui/wxpython/modules/import_export.py:506 msgid "The Python GDAL package is missing. Please install it." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "LineString" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 #: ../gui/wxpython/psmap/dialogs.py:6221 ../gui/wxpython/psmap/toolbars.py:103 #: ../gui/wxpython/vdigit/preferences.py:729 msgid "Point" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "Polygon" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2982 +#: ../gui/wxpython/gui_core/gselect.py:2986 msgid "No vector map selected in layer manager. Operation canceled." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3001 +#: ../gui/wxpython/gui_core/gselect.py:3005 msgid "Input vector map is not selected" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3005 +#: ../gui/wxpython/gui_core/gselect.py:3009 #, python-format msgid "Input vector map <%s> and selected map <%s> in layer manager are different. Operation canceled." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3121 +#: ../gui/wxpython/gui_core/gselect.py:3125 #, python-format msgid "Unable to import C imagery library functions: %s\n" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3199 +#: ../gui/wxpython/gui_core/gselect.py:3203 msgid "No vector map selected" msgstr "" diff --git a/locale/po/grasswxpy_sv.po b/locale/po/grasswxpy_sv.po index f34c7e633f5..977b87b89f4 100644 --- a/locale/po/grasswxpy_sv.po +++ b/locale/po/grasswxpy_sv.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-10-26 23:01+0000\n" "Last-Translator: Daniel Nylander \n" "Language-Team: Swedish \n" @@ -198,9 +198,9 @@ msgstr "Välj 2D- eller 3D-vy" #: ../gui/wxpython/animation/dialogs.py:415 #: ../gui/wxpython/gmodeler/preferences.py:730 -#: ../gui/wxpython/gui_core/gselect.py:1629 -#: ../gui/wxpython/gui_core/gselect.py:1646 -#: ../gui/wxpython/gui_core/gselect.py:1647 +#: ../gui/wxpython/gui_core/gselect.py:1633 +#: ../gui/wxpython/gui_core/gselect.py:1650 +#: ../gui/wxpython/gui_core/gselect.py:1651 #: ../gui/wxpython/gui_core/widgets.py:1462 #: ../gui/wxpython/vnet/dialogs.py:1679 msgid "Name:" @@ -252,11 +252,11 @@ msgstr "Välj arbetsytafil för att importera 3D-vyparametrar" #: ../gui/wxpython/animation/dialogs.py:1278 #: ../gui/wxpython/gui_core/forms.py:2009 #: ../gui/wxpython/gui_core/forms.py:2120 -#: ../gui/wxpython/gui_core/gselect.py:1245 -#: ../gui/wxpython/gui_core/gselect.py:1561 -#: ../gui/wxpython/gui_core/gselect.py:1578 -#: ../gui/wxpython/gui_core/gselect.py:1631 -#: ../gui/wxpython/gui_core/gselect.py:1666 +#: ../gui/wxpython/gui_core/gselect.py:1249 +#: ../gui/wxpython/gui_core/gselect.py:1565 +#: ../gui/wxpython/gui_core/gselect.py:1582 +#: ../gui/wxpython/gui_core/gselect.py:1635 +#: ../gui/wxpython/gui_core/gselect.py:1670 #: ../gui/wxpython/location_wizard/wizard.py:1446 #: ../gui/wxpython/location_wizard/wizard.py:1801 #: ../gui/wxpython/modules/import_export.py:862 @@ -454,8 +454,8 @@ msgid "File format:" msgstr "Filformat:" #: ../gui/wxpython/animation/dialogs.py:1194 -#: ../gui/wxpython/gui_core/gselect.py:1576 -#: ../gui/wxpython/gui_core/gselect.py:1664 +#: ../gui/wxpython/gui_core/gselect.py:1580 +#: ../gui/wxpython/gui_core/gselect.py:1668 msgid "Directory:" msgstr "Directory:" @@ -2274,7 +2274,7 @@ msgid "Data type" msgstr "Datatyp" #: ../gui/wxpython/dbmgr/base.py:3051 ../gui/wxpython/dbmgr/base.py:3203 -#: ../gui/wxpython/dbmgr/base.py:3471 ../gui/wxpython/gui_core/gselect.py:1479 +#: ../gui/wxpython/dbmgr/base.py:3471 ../gui/wxpython/gui_core/gselect.py:1483 msgid "Database" msgstr "Databas" @@ -3683,13 +3683,13 @@ msgid "Delete all" msgstr "Radera alla" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "No" msgstr "Nej" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "Yes" msgstr "Ja" @@ -4808,7 +4808,7 @@ msgid "Enter file content directly instead of specifying a file. Temporary file msgstr "Ange filinnehållet direkt i stället för att ange en fil. En temporär fil skapas automatiskt." #: ../gui/wxpython/gui_core/forms.py:2119 -#: ../gui/wxpython/gui_core/gselect.py:1475 +#: ../gui/wxpython/gui_core/gselect.py:1479 msgid "Directory" msgstr "Katalog" @@ -5112,182 +5112,182 @@ msgstr "" msgid "No table linked to layer <{}>." msgstr "Ingen tabell kopplad till lager <{}>." -#: ../gui/wxpython/gui_core/gselect.py:1244 +#: ../gui/wxpython/gui_core/gselect.py:1248 #: ../gui/wxpython/image2target/ii2t_gis_set.py:1017 msgid "Choose GIS Data Directory" msgstr "Välj GIS-datakatalog" -#: ../gui/wxpython/gui_core/gselect.py:1456 +#: ../gui/wxpython/gui_core/gselect.py:1460 msgid "Output settings" msgstr "Inställningar för utmatning" -#: ../gui/wxpython/gui_core/gselect.py:1458 +#: ../gui/wxpython/gui_core/gselect.py:1462 msgid "Source input" msgstr "Ingång för källa" -#: ../gui/wxpython/gui_core/gselect.py:1465 +#: ../gui/wxpython/gui_core/gselect.py:1469 msgid "Native" msgstr "Inbyggd" -#: ../gui/wxpython/gui_core/gselect.py:1471 +#: ../gui/wxpython/gui_core/gselect.py:1475 #: ../gui/wxpython/lmgr/workspace.py:517 msgid "File" msgstr "Arkiv" -#: ../gui/wxpython/gui_core/gselect.py:1483 +#: ../gui/wxpython/gui_core/gselect.py:1487 msgid "Protocol" msgstr "Protokoll" -#: ../gui/wxpython/gui_core/gselect.py:1494 +#: ../gui/wxpython/gui_core/gselect.py:1498 msgid "Output type" msgstr "Utmatningstyp" -#: ../gui/wxpython/gui_core/gselect.py:1496 +#: ../gui/wxpython/gui_core/gselect.py:1500 msgid "Source type" msgstr "Källtyp" -#: ../gui/wxpython/gui_core/gselect.py:1514 +#: ../gui/wxpython/gui_core/gselect.py:1518 msgid "All files" msgstr "Alla filer" -#: ../gui/wxpython/gui_core/gselect.py:1544 +#: ../gui/wxpython/gui_core/gselect.py:1548 msgid "ZIP files" msgstr "ZIP-filer" -#: ../gui/wxpython/gui_core/gselect.py:1545 +#: ../gui/wxpython/gui_core/gselect.py:1549 msgid "GZIP files" msgstr "GZIP-filer" -#: ../gui/wxpython/gui_core/gselect.py:1546 +#: ../gui/wxpython/gui_core/gselect.py:1550 msgid "TAR files" msgstr "TAR-filer" -#: ../gui/wxpython/gui_core/gselect.py:1550 +#: ../gui/wxpython/gui_core/gselect.py:1554 msgid "TARGZ files" msgstr "TARGZ-filer" -#: ../gui/wxpython/gui_core/gselect.py:1559 +#: ../gui/wxpython/gui_core/gselect.py:1563 msgid "File:" msgstr "Fil:" -#: ../gui/wxpython/gui_core/gselect.py:1560 +#: ../gui/wxpython/gui_core/gselect.py:1564 msgid "Choose file to import" msgstr "Välj fil att importera" -#: ../gui/wxpython/gui_core/gselect.py:1577 -#: ../gui/wxpython/gui_core/gselect.py:1665 +#: ../gui/wxpython/gui_core/gselect.py:1581 +#: ../gui/wxpython/gui_core/gselect.py:1669 msgid "Choose input directory" msgstr "Välj katalog för inmatning" -#: ../gui/wxpython/gui_core/gselect.py:1598 +#: ../gui/wxpython/gui_core/gselect.py:1602 msgid "Extension:" msgstr "Förlängning:" -#: ../gui/wxpython/gui_core/gselect.py:1630 +#: ../gui/wxpython/gui_core/gselect.py:1634 msgid "Choose file" msgstr "Välj fil" -#: ../gui/wxpython/gui_core/gselect.py:1651 -#: ../gui/wxpython/gui_core/gselect.py:2777 +#: ../gui/wxpython/gui_core/gselect.py:1655 +#: ../gui/wxpython/gui_core/gselect.py:2781 msgid "Feature type:" msgstr "Typ av funktion:" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "simple features" msgstr "enkla funktioner" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "topological" msgstr "topologisk" -#: ../gui/wxpython/gui_core/gselect.py:1769 -#: ../gui/wxpython/gui_core/gselect.py:1809 -#: ../gui/wxpython/gui_core/gselect.py:1871 -#: ../gui/wxpython/gui_core/gselect.py:1916 +#: ../gui/wxpython/gui_core/gselect.py:1773 +#: ../gui/wxpython/gui_core/gselect.py:1813 +#: ../gui/wxpython/gui_core/gselect.py:1875 +#: ../gui/wxpython/gui_core/gselect.py:1920 msgid "Creation options:" msgstr "Alternativ för skapande:" -#: ../gui/wxpython/gui_core/gselect.py:1786 -#: ../gui/wxpython/gui_core/gselect.py:1832 -#: ../gui/wxpython/gui_core/gselect.py:1897 +#: ../gui/wxpython/gui_core/gselect.py:1790 +#: ../gui/wxpython/gui_core/gselect.py:1836 +#: ../gui/wxpython/gui_core/gselect.py:1901 msgid "Format:" msgstr "Format:" -#: ../gui/wxpython/gui_core/gselect.py:1905 +#: ../gui/wxpython/gui_core/gselect.py:1909 msgid "Protocol:" msgstr "Protokoll:" -#: ../gui/wxpython/gui_core/gselect.py:1934 +#: ../gui/wxpython/gui_core/gselect.py:1938 msgid "No settings available" msgstr "Inga inställningar tillgängliga" -#: ../gui/wxpython/gui_core/gselect.py:2066 +#: ../gui/wxpython/gui_core/gselect.py:2070 #: ../gui/wxpython/web_services/dialogs.py:302 msgid "No data source defined, settings are not saved." msgstr "Ingen datakälla definierad, inställningarna sparas inte." -#: ../gui/wxpython/gui_core/gselect.py:2098 +#: ../gui/wxpython/gui_core/gselect.py:2102 msgid "PostgreSQL/PostGIS login was not set. Set it via module, please." msgstr "PostgreSQL / PostGIS-inloggning var inte inställd. Ställ in den via -modulen, tack." -#: ../gui/wxpython/gui_core/gselect.py:2253 +#: ../gui/wxpython/gui_core/gselect.py:2257 #, python-brace-format msgid "Getting raster <{table}> SRID from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "Att få raster <{table}> SRID från PostgreSQL DB <{db}>, värd <{host}> misslyckades. {error}." -#: ../gui/wxpython/gui_core/gselect.py:2508 +#: ../gui/wxpython/gui_core/gselect.py:2512 #, python-brace-format msgid "Getting list of tables from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "Att få en lista över tabeller från PostgreSQL DB <{db}>, värd <{host}> misslyckades. {error}." -#: ../gui/wxpython/gui_core/gselect.py:2597 +#: ../gui/wxpython/gui_core/gselect.py:2601 #, python-brace-format msgid "Getting list of tables columns data types from PostGIS DB <{db}>, host <{host}> failed. {error}." msgstr "Hämta lista över tabeller kolumner datatyper från PostGIS DB <{db}>, värd <{host}> misslyckades. {error}." -#: ../gui/wxpython/gui_core/gselect.py:2628 +#: ../gui/wxpython/gui_core/gselect.py:2632 #, python-brace-format msgid "PostgreSQL DB <{psql}> program was not found. Please, install it." msgstr "PostgreSQL DB <{psql}> -programmet hittades inte. Snälla, installera det." -#: ../gui/wxpython/gui_core/gselect.py:2648 +#: ../gui/wxpython/gui_core/gselect.py:2652 #: ../gui/wxpython/modules/import_export.py:506 msgid "The Python GDAL package is missing. Please install it." msgstr "Python GDAL-paketet saknas. Installera det." -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "LineString" msgstr "LinjeString" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 #: ../gui/wxpython/psmap/dialogs.py:6221 ../gui/wxpython/psmap/toolbars.py:103 #: ../gui/wxpython/vdigit/preferences.py:729 msgid "Point" msgstr "Punkt" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "Polygon" msgstr "Polygon" -#: ../gui/wxpython/gui_core/gselect.py:2982 +#: ../gui/wxpython/gui_core/gselect.py:2986 msgid "No vector map selected in layer manager. Operation canceled." msgstr "Ingen vektorkarta vald i lagerhanteraren. Åtgärden avbröts." -#: ../gui/wxpython/gui_core/gselect.py:3001 +#: ../gui/wxpython/gui_core/gselect.py:3005 msgid "Input vector map is not selected" msgstr "Ingångsvektorkarta är inte vald" -#: ../gui/wxpython/gui_core/gselect.py:3005 +#: ../gui/wxpython/gui_core/gselect.py:3009 #, python-format msgid "Input vector map <%s> and selected map <%s> in layer manager are different. Operation canceled." msgstr "Inmatad vektorkarta <%s> och vald karta <%s> i lagerhanteraren är olika. Åtgärden avbröts." -#: ../gui/wxpython/gui_core/gselect.py:3121 +#: ../gui/wxpython/gui_core/gselect.py:3125 #, python-format msgid "Unable to import C imagery library functions: %s\n" msgstr "Det går inte att importera funktioner från C-bildbiblioteket: %s\n" -#: ../gui/wxpython/gui_core/gselect.py:3199 +#: ../gui/wxpython/gui_core/gselect.py:3203 msgid "No vector map selected" msgstr "Ingen vektorkarta vald" @@ -15375,26 +15375,26 @@ msgstr "" "Regressionsekvation för rasterkartan <%(rast1)s> vs. <%(rast2)s>:\n" "\n" -#~ msgid "Do you want to create a new project (also known as location)?" -#~ msgstr "Vill du skapa ett nytt projekt (även känt som plats)?" - -#~ msgid "Create project?" -#~ msgstr "Skapa projekt?" - -#~ msgid "Restrict edits to the current mapset only" -#~ msgstr "Begränsa redigeringar till endast den aktuella kartuppsättningen" +#~ msgid "Add existing or create new database" +#~ msgstr "Lägg till befintlig eller skapa ny databas" #~ msgid "Allow edits outside of the current mapset" #~ msgstr "Tillåt redigeringar utanför den aktuella kartuppsättningen" -#~ msgid "Add existing or create new database" -#~ msgstr "Lägg till befintlig eller skapa ny databas" - #~ msgid "Create new project (location) in current GRASS database" #~ msgstr "Skapa ett nytt projekt (plats) i den aktuella GRASS-databasen" +#~ msgid "Create project?" +#~ msgstr "Skapa projekt?" + +#~ msgid "Do you want to create a new project (also known as location)?" +#~ msgstr "Vill du skapa ett nytt projekt (även känt som plats)?" + #~ msgid "Download sample project (location) to current GRASS database" #~ msgstr "Hämta ner exempelprojekt (plats) till aktuell GRASS-databas" #~ msgid "GRASS GIS" #~ msgstr "GRASS GIS" + +#~ msgid "Restrict edits to the current mapset only" +#~ msgstr "Begränsa redigeringar till endast den aktuella kartuppsättningen" diff --git a/locale/po/grasswxpy_ta.po b/locale/po/grasswxpy_ta.po index b4a84410f51..c0ed88be827 100644 --- a/locale/po/grasswxpy_ta.po +++ b/locale/po/grasswxpy_ta.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: grasslibs_ta\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-08-26 14:19+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Tamil \n" @@ -202,9 +202,9 @@ msgstr "" #: ../gui/wxpython/animation/dialogs.py:415 #: ../gui/wxpython/gmodeler/preferences.py:730 -#: ../gui/wxpython/gui_core/gselect.py:1629 -#: ../gui/wxpython/gui_core/gselect.py:1646 -#: ../gui/wxpython/gui_core/gselect.py:1647 +#: ../gui/wxpython/gui_core/gselect.py:1633 +#: ../gui/wxpython/gui_core/gselect.py:1650 +#: ../gui/wxpython/gui_core/gselect.py:1651 #: ../gui/wxpython/gui_core/widgets.py:1462 #: ../gui/wxpython/vnet/dialogs.py:1679 msgid "Name:" @@ -254,11 +254,11 @@ msgstr "" #: ../gui/wxpython/animation/dialogs.py:1278 #: ../gui/wxpython/gui_core/forms.py:2009 #: ../gui/wxpython/gui_core/forms.py:2120 -#: ../gui/wxpython/gui_core/gselect.py:1245 -#: ../gui/wxpython/gui_core/gselect.py:1561 -#: ../gui/wxpython/gui_core/gselect.py:1578 -#: ../gui/wxpython/gui_core/gselect.py:1631 -#: ../gui/wxpython/gui_core/gselect.py:1666 +#: ../gui/wxpython/gui_core/gselect.py:1249 +#: ../gui/wxpython/gui_core/gselect.py:1565 +#: ../gui/wxpython/gui_core/gselect.py:1582 +#: ../gui/wxpython/gui_core/gselect.py:1635 +#: ../gui/wxpython/gui_core/gselect.py:1670 #: ../gui/wxpython/location_wizard/wizard.py:1446 #: ../gui/wxpython/location_wizard/wizard.py:1801 #: ../gui/wxpython/modules/import_export.py:862 @@ -456,8 +456,8 @@ msgid "File format:" msgstr "" #: ../gui/wxpython/animation/dialogs.py:1194 -#: ../gui/wxpython/gui_core/gselect.py:1576 -#: ../gui/wxpython/gui_core/gselect.py:1664 +#: ../gui/wxpython/gui_core/gselect.py:1580 +#: ../gui/wxpython/gui_core/gselect.py:1668 msgid "Directory:" msgstr "அடைவு:" @@ -2231,7 +2231,7 @@ msgid "Data type" msgstr "" #: ../gui/wxpython/dbmgr/base.py:3051 ../gui/wxpython/dbmgr/base.py:3203 -#: ../gui/wxpython/dbmgr/base.py:3471 ../gui/wxpython/gui_core/gselect.py:1479 +#: ../gui/wxpython/dbmgr/base.py:3471 ../gui/wxpython/gui_core/gselect.py:1483 msgid "Database" msgstr "" @@ -3601,13 +3601,13 @@ msgid "Delete all" msgstr "அனைத்தையும் அழி" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "No" msgstr "" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "Yes" msgstr "" @@ -4713,7 +4713,7 @@ msgid "Enter file content directly instead of specifying a file. Temporary file msgstr "" #: ../gui/wxpython/gui_core/forms.py:2119 -#: ../gui/wxpython/gui_core/gselect.py:1475 +#: ../gui/wxpython/gui_core/gselect.py:1479 msgid "Directory" msgstr "அடைவு" @@ -5007,182 +5007,182 @@ msgstr "" msgid "No table linked to layer <{}>." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1244 +#: ../gui/wxpython/gui_core/gselect.py:1248 #: ../gui/wxpython/image2target/ii2t_gis_set.py:1017 msgid "Choose GIS Data Directory" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1456 +#: ../gui/wxpython/gui_core/gselect.py:1460 msgid "Output settings" msgstr "வெளியீடு அமைப்புகள்" -#: ../gui/wxpython/gui_core/gselect.py:1458 +#: ../gui/wxpython/gui_core/gselect.py:1462 msgid "Source input" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1465 +#: ../gui/wxpython/gui_core/gselect.py:1469 msgid "Native" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1471 +#: ../gui/wxpython/gui_core/gselect.py:1475 #: ../gui/wxpython/lmgr/workspace.py:517 msgid "File" msgstr "கோப்பு" -#: ../gui/wxpython/gui_core/gselect.py:1483 +#: ../gui/wxpython/gui_core/gselect.py:1487 msgid "Protocol" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1494 +#: ../gui/wxpython/gui_core/gselect.py:1498 msgid "Output type" msgstr "வெளியீடு வகை" -#: ../gui/wxpython/gui_core/gselect.py:1496 +#: ../gui/wxpython/gui_core/gselect.py:1500 msgid "Source type" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1514 +#: ../gui/wxpython/gui_core/gselect.py:1518 msgid "All files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1544 +#: ../gui/wxpython/gui_core/gselect.py:1548 msgid "ZIP files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1545 +#: ../gui/wxpython/gui_core/gselect.py:1549 msgid "GZIP files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1546 +#: ../gui/wxpython/gui_core/gselect.py:1550 msgid "TAR files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1550 +#: ../gui/wxpython/gui_core/gselect.py:1554 msgid "TARGZ files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1559 +#: ../gui/wxpython/gui_core/gselect.py:1563 msgid "File:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1560 +#: ../gui/wxpython/gui_core/gselect.py:1564 msgid "Choose file to import" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1577 -#: ../gui/wxpython/gui_core/gselect.py:1665 +#: ../gui/wxpython/gui_core/gselect.py:1581 +#: ../gui/wxpython/gui_core/gselect.py:1669 msgid "Choose input directory" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1598 +#: ../gui/wxpython/gui_core/gselect.py:1602 msgid "Extension:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1630 +#: ../gui/wxpython/gui_core/gselect.py:1634 msgid "Choose file" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1651 -#: ../gui/wxpython/gui_core/gselect.py:2777 +#: ../gui/wxpython/gui_core/gselect.py:1655 +#: ../gui/wxpython/gui_core/gselect.py:2781 msgid "Feature type:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "simple features" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "topological" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1769 -#: ../gui/wxpython/gui_core/gselect.py:1809 -#: ../gui/wxpython/gui_core/gselect.py:1871 -#: ../gui/wxpython/gui_core/gselect.py:1916 +#: ../gui/wxpython/gui_core/gselect.py:1773 +#: ../gui/wxpython/gui_core/gselect.py:1813 +#: ../gui/wxpython/gui_core/gselect.py:1875 +#: ../gui/wxpython/gui_core/gselect.py:1920 msgid "Creation options:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1786 -#: ../gui/wxpython/gui_core/gselect.py:1832 -#: ../gui/wxpython/gui_core/gselect.py:1897 +#: ../gui/wxpython/gui_core/gselect.py:1790 +#: ../gui/wxpython/gui_core/gselect.py:1836 +#: ../gui/wxpython/gui_core/gselect.py:1901 msgid "Format:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1905 +#: ../gui/wxpython/gui_core/gselect.py:1909 msgid "Protocol:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1934 +#: ../gui/wxpython/gui_core/gselect.py:1938 msgid "No settings available" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2066 +#: ../gui/wxpython/gui_core/gselect.py:2070 #: ../gui/wxpython/web_services/dialogs.py:302 msgid "No data source defined, settings are not saved." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2098 +#: ../gui/wxpython/gui_core/gselect.py:2102 msgid "PostgreSQL/PostGIS login was not set. Set it via module, please." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2253 +#: ../gui/wxpython/gui_core/gselect.py:2257 #, python-brace-format msgid "Getting raster <{table}> SRID from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2508 +#: ../gui/wxpython/gui_core/gselect.py:2512 #, python-brace-format msgid "Getting list of tables from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2597 +#: ../gui/wxpython/gui_core/gselect.py:2601 #, python-brace-format msgid "Getting list of tables columns data types from PostGIS DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2628 +#: ../gui/wxpython/gui_core/gselect.py:2632 #, python-brace-format msgid "PostgreSQL DB <{psql}> program was not found. Please, install it." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2648 +#: ../gui/wxpython/gui_core/gselect.py:2652 #: ../gui/wxpython/modules/import_export.py:506 msgid "The Python GDAL package is missing. Please install it." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "LineString" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 #: ../gui/wxpython/psmap/dialogs.py:6221 ../gui/wxpython/psmap/toolbars.py:103 #: ../gui/wxpython/vdigit/preferences.py:729 msgid "Point" msgstr "புள்ளி" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "Polygon" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2982 +#: ../gui/wxpython/gui_core/gselect.py:2986 msgid "No vector map selected in layer manager. Operation canceled." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3001 +#: ../gui/wxpython/gui_core/gselect.py:3005 msgid "Input vector map is not selected" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3005 +#: ../gui/wxpython/gui_core/gselect.py:3009 #, python-format msgid "Input vector map <%s> and selected map <%s> in layer manager are different. Operation canceled." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3121 +#: ../gui/wxpython/gui_core/gselect.py:3125 #, python-format msgid "Unable to import C imagery library functions: %s\n" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3199 +#: ../gui/wxpython/gui_core/gselect.py:3203 msgid "No vector map selected" msgstr "" diff --git a/locale/po/grasswxpy_th.po b/locale/po/grasswxpy_th.po index 7dcc1165426..e574bf8258a 100644 --- a/locale/po/grasswxpy_th.po +++ b/locale/po/grasswxpy_th.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: grasswxpy_th\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2008-01-05 15:19+0700\n" "Last-Translator: \n" "Language-Team: Thai \n" @@ -199,9 +199,9 @@ msgstr "" #: ../gui/wxpython/animation/dialogs.py:415 #: ../gui/wxpython/gmodeler/preferences.py:730 -#: ../gui/wxpython/gui_core/gselect.py:1629 -#: ../gui/wxpython/gui_core/gselect.py:1646 -#: ../gui/wxpython/gui_core/gselect.py:1647 +#: ../gui/wxpython/gui_core/gselect.py:1633 +#: ../gui/wxpython/gui_core/gselect.py:1650 +#: ../gui/wxpython/gui_core/gselect.py:1651 #: ../gui/wxpython/gui_core/widgets.py:1462 #: ../gui/wxpython/vnet/dialogs.py:1679 msgid "Name:" @@ -251,11 +251,11 @@ msgstr "" #: ../gui/wxpython/animation/dialogs.py:1278 #: ../gui/wxpython/gui_core/forms.py:2009 #: ../gui/wxpython/gui_core/forms.py:2120 -#: ../gui/wxpython/gui_core/gselect.py:1245 -#: ../gui/wxpython/gui_core/gselect.py:1561 -#: ../gui/wxpython/gui_core/gselect.py:1578 -#: ../gui/wxpython/gui_core/gselect.py:1631 -#: ../gui/wxpython/gui_core/gselect.py:1666 +#: ../gui/wxpython/gui_core/gselect.py:1249 +#: ../gui/wxpython/gui_core/gselect.py:1565 +#: ../gui/wxpython/gui_core/gselect.py:1582 +#: ../gui/wxpython/gui_core/gselect.py:1635 +#: ../gui/wxpython/gui_core/gselect.py:1670 #: ../gui/wxpython/location_wizard/wizard.py:1446 #: ../gui/wxpython/location_wizard/wizard.py:1801 #: ../gui/wxpython/modules/import_export.py:862 @@ -453,8 +453,8 @@ msgid "File format:" msgstr "" #: ../gui/wxpython/animation/dialogs.py:1194 -#: ../gui/wxpython/gui_core/gselect.py:1576 -#: ../gui/wxpython/gui_core/gselect.py:1664 +#: ../gui/wxpython/gui_core/gselect.py:1580 +#: ../gui/wxpython/gui_core/gselect.py:1668 msgid "Directory:" msgstr "" @@ -2224,7 +2224,7 @@ msgid "Data type" msgstr "ชนิดข้อมูล" #: ../gui/wxpython/dbmgr/base.py:3051 ../gui/wxpython/dbmgr/base.py:3203 -#: ../gui/wxpython/dbmgr/base.py:3471 ../gui/wxpython/gui_core/gselect.py:1479 +#: ../gui/wxpython/dbmgr/base.py:3471 ../gui/wxpython/gui_core/gselect.py:1483 msgid "Database" msgstr "" @@ -3595,13 +3595,13 @@ msgid "Delete all" msgstr "ลบทั้งหมด" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "No" msgstr "" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "Yes" msgstr "" @@ -4706,7 +4706,7 @@ msgid "Enter file content directly instead of specifying a file. Temporary file msgstr "" #: ../gui/wxpython/gui_core/forms.py:2119 -#: ../gui/wxpython/gui_core/gselect.py:1475 +#: ../gui/wxpython/gui_core/gselect.py:1479 msgid "Directory" msgstr "" @@ -5000,182 +5000,182 @@ msgstr "" msgid "No table linked to layer <{}>." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1244 +#: ../gui/wxpython/gui_core/gselect.py:1248 #: ../gui/wxpython/image2target/ii2t_gis_set.py:1017 msgid "Choose GIS Data Directory" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1456 +#: ../gui/wxpython/gui_core/gselect.py:1460 msgid "Output settings" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1458 +#: ../gui/wxpython/gui_core/gselect.py:1462 msgid "Source input" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1465 +#: ../gui/wxpython/gui_core/gselect.py:1469 msgid "Native" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1471 +#: ../gui/wxpython/gui_core/gselect.py:1475 #: ../gui/wxpython/lmgr/workspace.py:517 msgid "File" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1483 +#: ../gui/wxpython/gui_core/gselect.py:1487 msgid "Protocol" msgstr "ระเบียบการ" -#: ../gui/wxpython/gui_core/gselect.py:1494 +#: ../gui/wxpython/gui_core/gselect.py:1498 msgid "Output type" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1496 +#: ../gui/wxpython/gui_core/gselect.py:1500 msgid "Source type" msgstr "ชนิดของแหล่งข้อมูล" -#: ../gui/wxpython/gui_core/gselect.py:1514 +#: ../gui/wxpython/gui_core/gselect.py:1518 msgid "All files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1544 +#: ../gui/wxpython/gui_core/gselect.py:1548 msgid "ZIP files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1545 +#: ../gui/wxpython/gui_core/gselect.py:1549 msgid "GZIP files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1546 +#: ../gui/wxpython/gui_core/gselect.py:1550 msgid "TAR files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1550 +#: ../gui/wxpython/gui_core/gselect.py:1554 msgid "TARGZ files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1559 +#: ../gui/wxpython/gui_core/gselect.py:1563 msgid "File:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1560 +#: ../gui/wxpython/gui_core/gselect.py:1564 msgid "Choose file to import" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1577 -#: ../gui/wxpython/gui_core/gselect.py:1665 +#: ../gui/wxpython/gui_core/gselect.py:1581 +#: ../gui/wxpython/gui_core/gselect.py:1669 msgid "Choose input directory" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1598 +#: ../gui/wxpython/gui_core/gselect.py:1602 msgid "Extension:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1630 +#: ../gui/wxpython/gui_core/gselect.py:1634 msgid "Choose file" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1651 -#: ../gui/wxpython/gui_core/gselect.py:2777 +#: ../gui/wxpython/gui_core/gselect.py:1655 +#: ../gui/wxpython/gui_core/gselect.py:2781 msgid "Feature type:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "simple features" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "topological" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1769 -#: ../gui/wxpython/gui_core/gselect.py:1809 -#: ../gui/wxpython/gui_core/gselect.py:1871 -#: ../gui/wxpython/gui_core/gselect.py:1916 +#: ../gui/wxpython/gui_core/gselect.py:1773 +#: ../gui/wxpython/gui_core/gselect.py:1813 +#: ../gui/wxpython/gui_core/gselect.py:1875 +#: ../gui/wxpython/gui_core/gselect.py:1920 msgid "Creation options:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1786 -#: ../gui/wxpython/gui_core/gselect.py:1832 -#: ../gui/wxpython/gui_core/gselect.py:1897 +#: ../gui/wxpython/gui_core/gselect.py:1790 +#: ../gui/wxpython/gui_core/gselect.py:1836 +#: ../gui/wxpython/gui_core/gselect.py:1901 msgid "Format:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1905 +#: ../gui/wxpython/gui_core/gselect.py:1909 msgid "Protocol:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1934 +#: ../gui/wxpython/gui_core/gselect.py:1938 msgid "No settings available" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2066 +#: ../gui/wxpython/gui_core/gselect.py:2070 #: ../gui/wxpython/web_services/dialogs.py:302 msgid "No data source defined, settings are not saved." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2098 +#: ../gui/wxpython/gui_core/gselect.py:2102 msgid "PostgreSQL/PostGIS login was not set. Set it via module, please." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2253 +#: ../gui/wxpython/gui_core/gselect.py:2257 #, python-brace-format msgid "Getting raster <{table}> SRID from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2508 +#: ../gui/wxpython/gui_core/gselect.py:2512 #, python-brace-format msgid "Getting list of tables from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2597 +#: ../gui/wxpython/gui_core/gselect.py:2601 #, python-brace-format msgid "Getting list of tables columns data types from PostGIS DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2628 +#: ../gui/wxpython/gui_core/gselect.py:2632 #, python-brace-format msgid "PostgreSQL DB <{psql}> program was not found. Please, install it." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2648 +#: ../gui/wxpython/gui_core/gselect.py:2652 #: ../gui/wxpython/modules/import_export.py:506 msgid "The Python GDAL package is missing. Please install it." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "LineString" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 #: ../gui/wxpython/psmap/dialogs.py:6221 ../gui/wxpython/psmap/toolbars.py:103 #: ../gui/wxpython/vdigit/preferences.py:729 msgid "Point" msgstr "จุด" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "Polygon" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2982 +#: ../gui/wxpython/gui_core/gselect.py:2986 msgid "No vector map selected in layer manager. Operation canceled." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3001 +#: ../gui/wxpython/gui_core/gselect.py:3005 msgid "Input vector map is not selected" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3005 +#: ../gui/wxpython/gui_core/gselect.py:3009 #, python-format msgid "Input vector map <%s> and selected map <%s> in layer manager are different. Operation canceled." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3121 +#: ../gui/wxpython/gui_core/gselect.py:3125 #, python-format msgid "Unable to import C imagery library functions: %s\n" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3199 +#: ../gui/wxpython/gui_core/gselect.py:3203 msgid "No vector map selected" msgstr "" @@ -15001,10 +15001,6 @@ msgid "" "\n" msgstr "" -#, fuzzy -#~ msgid "Create project?" -#~ msgstr "สร้าง mapset ใหม่" - #, fuzzy #~ msgid ":" #~ msgstr "X:" @@ -15212,6 +15208,10 @@ msgstr "" #~ msgid "Create points/segments" #~ msgstr "สร้าง จุด/ชิ้นส่วน" +#, fuzzy +#~ msgid "Create project?" +#~ msgstr "สร้าง mapset ใหม่" + #~ msgid "Create stationing" #~ msgstr "สร้าง Stationing" diff --git a/locale/po/grasswxpy_tr.po b/locale/po/grasswxpy_tr.po index 2c5cb9505fc..c1819bbfa97 100644 --- a/locale/po/grasswxpy_tr.po +++ b/locale/po/grasswxpy_tr.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: grasswxpy_tr\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2010-12-01 03:06+0200\n" "Last-Translator: Fatih \n" "Language-Team: Türkçe \n" @@ -201,9 +201,9 @@ msgstr "" #: ../gui/wxpython/animation/dialogs.py:415 #: ../gui/wxpython/gmodeler/preferences.py:730 -#: ../gui/wxpython/gui_core/gselect.py:1629 -#: ../gui/wxpython/gui_core/gselect.py:1646 -#: ../gui/wxpython/gui_core/gselect.py:1647 +#: ../gui/wxpython/gui_core/gselect.py:1633 +#: ../gui/wxpython/gui_core/gselect.py:1650 +#: ../gui/wxpython/gui_core/gselect.py:1651 #: ../gui/wxpython/gui_core/widgets.py:1462 #: ../gui/wxpython/vnet/dialogs.py:1679 msgid "Name:" @@ -253,11 +253,11 @@ msgstr "" #: ../gui/wxpython/animation/dialogs.py:1278 #: ../gui/wxpython/gui_core/forms.py:2009 #: ../gui/wxpython/gui_core/forms.py:2120 -#: ../gui/wxpython/gui_core/gselect.py:1245 -#: ../gui/wxpython/gui_core/gselect.py:1561 -#: ../gui/wxpython/gui_core/gselect.py:1578 -#: ../gui/wxpython/gui_core/gselect.py:1631 -#: ../gui/wxpython/gui_core/gselect.py:1666 +#: ../gui/wxpython/gui_core/gselect.py:1249 +#: ../gui/wxpython/gui_core/gselect.py:1565 +#: ../gui/wxpython/gui_core/gselect.py:1582 +#: ../gui/wxpython/gui_core/gselect.py:1635 +#: ../gui/wxpython/gui_core/gselect.py:1670 #: ../gui/wxpython/location_wizard/wizard.py:1446 #: ../gui/wxpython/location_wizard/wizard.py:1801 #: ../gui/wxpython/modules/import_export.py:862 @@ -455,8 +455,8 @@ msgid "File format:" msgstr "" #: ../gui/wxpython/animation/dialogs.py:1194 -#: ../gui/wxpython/gui_core/gselect.py:1576 -#: ../gui/wxpython/gui_core/gselect.py:1664 +#: ../gui/wxpython/gui_core/gselect.py:1580 +#: ../gui/wxpython/gui_core/gselect.py:1668 msgid "Directory:" msgstr "Dizin" @@ -2241,7 +2241,7 @@ msgid "Data type" msgstr "Veri tipi" #: ../gui/wxpython/dbmgr/base.py:3051 ../gui/wxpython/dbmgr/base.py:3203 -#: ../gui/wxpython/dbmgr/base.py:3471 ../gui/wxpython/gui_core/gselect.py:1479 +#: ../gui/wxpython/dbmgr/base.py:3471 ../gui/wxpython/gui_core/gselect.py:1483 msgid "Database" msgstr "Veritabanı" @@ -3620,13 +3620,13 @@ msgid "Delete all" msgstr "Tümünü sil" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "No" msgstr "" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "Yes" msgstr "Evet" @@ -4746,7 +4746,7 @@ msgid "Enter file content directly instead of specifying a file. Temporary file msgstr "" #: ../gui/wxpython/gui_core/forms.py:2119 -#: ../gui/wxpython/gui_core/gselect.py:1475 +#: ../gui/wxpython/gui_core/gselect.py:1479 msgid "Directory" msgstr "" @@ -5042,182 +5042,182 @@ msgstr "" msgid "No table linked to layer <{}>." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1244 +#: ../gui/wxpython/gui_core/gselect.py:1248 #: ../gui/wxpython/image2target/ii2t_gis_set.py:1017 msgid "Choose GIS Data Directory" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1456 +#: ../gui/wxpython/gui_core/gselect.py:1460 msgid "Output settings" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1458 +#: ../gui/wxpython/gui_core/gselect.py:1462 msgid "Source input" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1465 +#: ../gui/wxpython/gui_core/gselect.py:1469 msgid "Native" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1471 +#: ../gui/wxpython/gui_core/gselect.py:1475 #: ../gui/wxpython/lmgr/workspace.py:517 msgid "File" msgstr "Dosya" -#: ../gui/wxpython/gui_core/gselect.py:1483 +#: ../gui/wxpython/gui_core/gselect.py:1487 msgid "Protocol" msgstr "Protokol" -#: ../gui/wxpython/gui_core/gselect.py:1494 +#: ../gui/wxpython/gui_core/gselect.py:1498 msgid "Output type" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1496 +#: ../gui/wxpython/gui_core/gselect.py:1500 msgid "Source type" msgstr "Kaynak tipi" -#: ../gui/wxpython/gui_core/gselect.py:1514 +#: ../gui/wxpython/gui_core/gselect.py:1518 msgid "All files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1544 +#: ../gui/wxpython/gui_core/gselect.py:1548 msgid "ZIP files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1545 +#: ../gui/wxpython/gui_core/gselect.py:1549 msgid "GZIP files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1546 +#: ../gui/wxpython/gui_core/gselect.py:1550 msgid "TAR files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1550 +#: ../gui/wxpython/gui_core/gselect.py:1554 msgid "TARGZ files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1559 +#: ../gui/wxpython/gui_core/gselect.py:1563 msgid "File:" msgstr "Dosya" -#: ../gui/wxpython/gui_core/gselect.py:1560 +#: ../gui/wxpython/gui_core/gselect.py:1564 msgid "Choose file to import" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1577 -#: ../gui/wxpython/gui_core/gselect.py:1665 +#: ../gui/wxpython/gui_core/gselect.py:1581 +#: ../gui/wxpython/gui_core/gselect.py:1669 msgid "Choose input directory" msgstr "Girdi dizinini seç" -#: ../gui/wxpython/gui_core/gselect.py:1598 +#: ../gui/wxpython/gui_core/gselect.py:1602 msgid "Extension:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1630 +#: ../gui/wxpython/gui_core/gselect.py:1634 msgid "Choose file" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1651 -#: ../gui/wxpython/gui_core/gselect.py:2777 +#: ../gui/wxpython/gui_core/gselect.py:1655 +#: ../gui/wxpython/gui_core/gselect.py:2781 msgid "Feature type:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "simple features" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "topological" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1769 -#: ../gui/wxpython/gui_core/gselect.py:1809 -#: ../gui/wxpython/gui_core/gselect.py:1871 -#: ../gui/wxpython/gui_core/gselect.py:1916 +#: ../gui/wxpython/gui_core/gselect.py:1773 +#: ../gui/wxpython/gui_core/gselect.py:1813 +#: ../gui/wxpython/gui_core/gselect.py:1875 +#: ../gui/wxpython/gui_core/gselect.py:1920 msgid "Creation options:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1786 -#: ../gui/wxpython/gui_core/gselect.py:1832 -#: ../gui/wxpython/gui_core/gselect.py:1897 +#: ../gui/wxpython/gui_core/gselect.py:1790 +#: ../gui/wxpython/gui_core/gselect.py:1836 +#: ../gui/wxpython/gui_core/gselect.py:1901 msgid "Format:" msgstr "Format:" -#: ../gui/wxpython/gui_core/gselect.py:1905 +#: ../gui/wxpython/gui_core/gselect.py:1909 msgid "Protocol:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1934 +#: ../gui/wxpython/gui_core/gselect.py:1938 msgid "No settings available" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2066 +#: ../gui/wxpython/gui_core/gselect.py:2070 #: ../gui/wxpython/web_services/dialogs.py:302 msgid "No data source defined, settings are not saved." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2098 +#: ../gui/wxpython/gui_core/gselect.py:2102 msgid "PostgreSQL/PostGIS login was not set. Set it via module, please." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2253 +#: ../gui/wxpython/gui_core/gselect.py:2257 #, python-brace-format msgid "Getting raster <{table}> SRID from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2508 +#: ../gui/wxpython/gui_core/gselect.py:2512 #, python-brace-format msgid "Getting list of tables from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2597 +#: ../gui/wxpython/gui_core/gselect.py:2601 #, python-brace-format msgid "Getting list of tables columns data types from PostGIS DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2628 +#: ../gui/wxpython/gui_core/gselect.py:2632 #, python-brace-format msgid "PostgreSQL DB <{psql}> program was not found. Please, install it." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2648 +#: ../gui/wxpython/gui_core/gselect.py:2652 #: ../gui/wxpython/modules/import_export.py:506 msgid "The Python GDAL package is missing. Please install it." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "LineString" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 #: ../gui/wxpython/psmap/dialogs.py:6221 ../gui/wxpython/psmap/toolbars.py:103 #: ../gui/wxpython/vdigit/preferences.py:729 msgid "Point" msgstr "Nokta" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "Polygon" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2982 +#: ../gui/wxpython/gui_core/gselect.py:2986 msgid "No vector map selected in layer manager. Operation canceled." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3001 +#: ../gui/wxpython/gui_core/gselect.py:3005 msgid "Input vector map is not selected" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3005 +#: ../gui/wxpython/gui_core/gselect.py:3009 #, python-format msgid "Input vector map <%s> and selected map <%s> in layer manager are different. Operation canceled." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3121 +#: ../gui/wxpython/gui_core/gselect.py:3125 #, python-format msgid "Unable to import C imagery library functions: %s\n" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3199 +#: ../gui/wxpython/gui_core/gselect.py:3203 msgid "No vector map selected" msgstr "" @@ -15114,14 +15114,6 @@ msgid "" "\n" msgstr "" -#, fuzzy -#~ msgid "Do you want to create a new project (also known as location)?" -#~ msgstr "<%s> GRASS mevkisini oluşturmak istiyormusun?" - -#, fuzzy -#~ msgid "Create project?" -#~ msgstr "Yeni Mevki oluşturayım mı?" - #, python-format #~ msgid "%s. cleaning tool moved down" #~ msgstr "*********** %s. temizleme aracı aşağı taşındı" @@ -15429,6 +15421,10 @@ msgstr "" #~ msgid "Create points/segments" #~ msgstr "Nokta/parça oluştur" +#, fuzzy +#~ msgid "Create project?" +#~ msgstr "Yeni Mevki oluşturayım mı?" + #~ msgid "Create/edit group" #~ msgstr "Grup oluştur/düzenle" @@ -15518,6 +15514,10 @@ msgstr "" #~ msgid "Dissolves adjacent or overlapping features sharing a common category number or attribute." #~ msgstr "Ortak kategori numarası veya özniteliği paylaşan komşu alanlar arasındaki sınırları çözer. " +#, fuzzy +#~ msgid "Do you want to create a new project (also known as location)?" +#~ msgstr "<%s> GRASS mevkisini oluşturmak istiyormusun?" + #~ msgid "Do you want to set the default region extents and resolution now?" #~ msgstr "Varsayılan bölge sınırları ve çözünürlüğünü şimdi ayarlamak istermisin?" diff --git a/locale/po/grasswxpy_uk.po b/locale/po/grasswxpy_uk.po index fa89b47530c..30308e27fca 100644 --- a/locale/po/grasswxpy_uk.po +++ b/locale/po/grasswxpy_uk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: grasslibs_uk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2017-05-23 21:08+0200\n" "Last-Translator: \n" "Language-Team: Ukrainian (https://www.transifex.com/grass-gis/teams/45198/uk/)\n" @@ -198,9 +198,9 @@ msgstr "" #: ../gui/wxpython/animation/dialogs.py:415 #: ../gui/wxpython/gmodeler/preferences.py:730 -#: ../gui/wxpython/gui_core/gselect.py:1629 -#: ../gui/wxpython/gui_core/gselect.py:1646 -#: ../gui/wxpython/gui_core/gselect.py:1647 +#: ../gui/wxpython/gui_core/gselect.py:1633 +#: ../gui/wxpython/gui_core/gselect.py:1650 +#: ../gui/wxpython/gui_core/gselect.py:1651 #: ../gui/wxpython/gui_core/widgets.py:1462 #: ../gui/wxpython/vnet/dialogs.py:1679 msgid "Name:" @@ -250,11 +250,11 @@ msgstr "" #: ../gui/wxpython/animation/dialogs.py:1278 #: ../gui/wxpython/gui_core/forms.py:2009 #: ../gui/wxpython/gui_core/forms.py:2120 -#: ../gui/wxpython/gui_core/gselect.py:1245 -#: ../gui/wxpython/gui_core/gselect.py:1561 -#: ../gui/wxpython/gui_core/gselect.py:1578 -#: ../gui/wxpython/gui_core/gselect.py:1631 -#: ../gui/wxpython/gui_core/gselect.py:1666 +#: ../gui/wxpython/gui_core/gselect.py:1249 +#: ../gui/wxpython/gui_core/gselect.py:1565 +#: ../gui/wxpython/gui_core/gselect.py:1582 +#: ../gui/wxpython/gui_core/gselect.py:1635 +#: ../gui/wxpython/gui_core/gselect.py:1670 #: ../gui/wxpython/location_wizard/wizard.py:1446 #: ../gui/wxpython/location_wizard/wizard.py:1801 #: ../gui/wxpython/modules/import_export.py:862 @@ -452,8 +452,8 @@ msgid "File format:" msgstr "" #: ../gui/wxpython/animation/dialogs.py:1194 -#: ../gui/wxpython/gui_core/gselect.py:1576 -#: ../gui/wxpython/gui_core/gselect.py:1664 +#: ../gui/wxpython/gui_core/gselect.py:1580 +#: ../gui/wxpython/gui_core/gselect.py:1668 msgid "Directory:" msgstr "" @@ -2219,7 +2219,7 @@ msgid "Data type" msgstr "" #: ../gui/wxpython/dbmgr/base.py:3051 ../gui/wxpython/dbmgr/base.py:3203 -#: ../gui/wxpython/dbmgr/base.py:3471 ../gui/wxpython/gui_core/gselect.py:1479 +#: ../gui/wxpython/dbmgr/base.py:3471 ../gui/wxpython/gui_core/gselect.py:1483 msgid "Database" msgstr "" @@ -3589,13 +3589,13 @@ msgid "Delete all" msgstr "" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "No" msgstr "" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "Yes" msgstr "" @@ -4700,7 +4700,7 @@ msgid "Enter file content directly instead of specifying a file. Temporary file msgstr "" #: ../gui/wxpython/gui_core/forms.py:2119 -#: ../gui/wxpython/gui_core/gselect.py:1475 +#: ../gui/wxpython/gui_core/gselect.py:1479 msgid "Directory" msgstr "" @@ -4994,182 +4994,182 @@ msgstr "" msgid "No table linked to layer <{}>." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1244 +#: ../gui/wxpython/gui_core/gselect.py:1248 #: ../gui/wxpython/image2target/ii2t_gis_set.py:1017 msgid "Choose GIS Data Directory" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1456 +#: ../gui/wxpython/gui_core/gselect.py:1460 msgid "Output settings" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1458 +#: ../gui/wxpython/gui_core/gselect.py:1462 msgid "Source input" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1465 +#: ../gui/wxpython/gui_core/gselect.py:1469 msgid "Native" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1471 +#: ../gui/wxpython/gui_core/gselect.py:1475 #: ../gui/wxpython/lmgr/workspace.py:517 msgid "File" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1483 +#: ../gui/wxpython/gui_core/gselect.py:1487 msgid "Protocol" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1494 +#: ../gui/wxpython/gui_core/gselect.py:1498 msgid "Output type" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1496 +#: ../gui/wxpython/gui_core/gselect.py:1500 msgid "Source type" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1514 +#: ../gui/wxpython/gui_core/gselect.py:1518 msgid "All files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1544 +#: ../gui/wxpython/gui_core/gselect.py:1548 msgid "ZIP files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1545 +#: ../gui/wxpython/gui_core/gselect.py:1549 msgid "GZIP files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1546 +#: ../gui/wxpython/gui_core/gselect.py:1550 msgid "TAR files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1550 +#: ../gui/wxpython/gui_core/gselect.py:1554 msgid "TARGZ files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1559 +#: ../gui/wxpython/gui_core/gselect.py:1563 msgid "File:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1560 +#: ../gui/wxpython/gui_core/gselect.py:1564 msgid "Choose file to import" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1577 -#: ../gui/wxpython/gui_core/gselect.py:1665 +#: ../gui/wxpython/gui_core/gselect.py:1581 +#: ../gui/wxpython/gui_core/gselect.py:1669 msgid "Choose input directory" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1598 +#: ../gui/wxpython/gui_core/gselect.py:1602 msgid "Extension:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1630 +#: ../gui/wxpython/gui_core/gselect.py:1634 msgid "Choose file" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1651 -#: ../gui/wxpython/gui_core/gselect.py:2777 +#: ../gui/wxpython/gui_core/gselect.py:1655 +#: ../gui/wxpython/gui_core/gselect.py:2781 msgid "Feature type:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "simple features" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "topological" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1769 -#: ../gui/wxpython/gui_core/gselect.py:1809 -#: ../gui/wxpython/gui_core/gselect.py:1871 -#: ../gui/wxpython/gui_core/gselect.py:1916 +#: ../gui/wxpython/gui_core/gselect.py:1773 +#: ../gui/wxpython/gui_core/gselect.py:1813 +#: ../gui/wxpython/gui_core/gselect.py:1875 +#: ../gui/wxpython/gui_core/gselect.py:1920 msgid "Creation options:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1786 -#: ../gui/wxpython/gui_core/gselect.py:1832 -#: ../gui/wxpython/gui_core/gselect.py:1897 +#: ../gui/wxpython/gui_core/gselect.py:1790 +#: ../gui/wxpython/gui_core/gselect.py:1836 +#: ../gui/wxpython/gui_core/gselect.py:1901 msgid "Format:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1905 +#: ../gui/wxpython/gui_core/gselect.py:1909 msgid "Protocol:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1934 +#: ../gui/wxpython/gui_core/gselect.py:1938 msgid "No settings available" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2066 +#: ../gui/wxpython/gui_core/gselect.py:2070 #: ../gui/wxpython/web_services/dialogs.py:302 msgid "No data source defined, settings are not saved." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2098 +#: ../gui/wxpython/gui_core/gselect.py:2102 msgid "PostgreSQL/PostGIS login was not set. Set it via module, please." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2253 +#: ../gui/wxpython/gui_core/gselect.py:2257 #, python-brace-format msgid "Getting raster <{table}> SRID from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2508 +#: ../gui/wxpython/gui_core/gselect.py:2512 #, python-brace-format msgid "Getting list of tables from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2597 +#: ../gui/wxpython/gui_core/gselect.py:2601 #, python-brace-format msgid "Getting list of tables columns data types from PostGIS DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2628 +#: ../gui/wxpython/gui_core/gselect.py:2632 #, python-brace-format msgid "PostgreSQL DB <{psql}> program was not found. Please, install it." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2648 +#: ../gui/wxpython/gui_core/gselect.py:2652 #: ../gui/wxpython/modules/import_export.py:506 msgid "The Python GDAL package is missing. Please install it." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "LineString" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 #: ../gui/wxpython/psmap/dialogs.py:6221 ../gui/wxpython/psmap/toolbars.py:103 #: ../gui/wxpython/vdigit/preferences.py:729 msgid "Point" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "Polygon" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2982 +#: ../gui/wxpython/gui_core/gselect.py:2986 msgid "No vector map selected in layer manager. Operation canceled." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3001 +#: ../gui/wxpython/gui_core/gselect.py:3005 msgid "Input vector map is not selected" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3005 +#: ../gui/wxpython/gui_core/gselect.py:3009 #, python-format msgid "Input vector map <%s> and selected map <%s> in layer manager are different. Operation canceled." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3121 +#: ../gui/wxpython/gui_core/gselect.py:3125 #, python-format msgid "Unable to import C imagery library functions: %s\n" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3199 +#: ../gui/wxpython/gui_core/gselect.py:3203 msgid "No vector map selected" msgstr "" diff --git a/locale/po/grasswxpy_vi.po b/locale/po/grasswxpy_vi.po index f2922ddb9c6..6e8e856fc64 100644 --- a/locale/po/grasswxpy_vi.po +++ b/locale/po/grasswxpy_vi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: grasswxpy_vi\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2010-08-27 16:40+0700\n" "Last-Translator: \n" "Language-Team: American English \n" @@ -200,9 +200,9 @@ msgstr "" #: ../gui/wxpython/animation/dialogs.py:415 #: ../gui/wxpython/gmodeler/preferences.py:730 -#: ../gui/wxpython/gui_core/gselect.py:1629 -#: ../gui/wxpython/gui_core/gselect.py:1646 -#: ../gui/wxpython/gui_core/gselect.py:1647 +#: ../gui/wxpython/gui_core/gselect.py:1633 +#: ../gui/wxpython/gui_core/gselect.py:1650 +#: ../gui/wxpython/gui_core/gselect.py:1651 #: ../gui/wxpython/gui_core/widgets.py:1462 #: ../gui/wxpython/vnet/dialogs.py:1679 msgid "Name:" @@ -252,11 +252,11 @@ msgstr "" #: ../gui/wxpython/animation/dialogs.py:1278 #: ../gui/wxpython/gui_core/forms.py:2009 #: ../gui/wxpython/gui_core/forms.py:2120 -#: ../gui/wxpython/gui_core/gselect.py:1245 -#: ../gui/wxpython/gui_core/gselect.py:1561 -#: ../gui/wxpython/gui_core/gselect.py:1578 -#: ../gui/wxpython/gui_core/gselect.py:1631 -#: ../gui/wxpython/gui_core/gselect.py:1666 +#: ../gui/wxpython/gui_core/gselect.py:1249 +#: ../gui/wxpython/gui_core/gselect.py:1565 +#: ../gui/wxpython/gui_core/gselect.py:1582 +#: ../gui/wxpython/gui_core/gselect.py:1635 +#: ../gui/wxpython/gui_core/gselect.py:1670 #: ../gui/wxpython/location_wizard/wizard.py:1446 #: ../gui/wxpython/location_wizard/wizard.py:1801 #: ../gui/wxpython/modules/import_export.py:862 @@ -454,8 +454,8 @@ msgid "File format:" msgstr "" #: ../gui/wxpython/animation/dialogs.py:1194 -#: ../gui/wxpython/gui_core/gselect.py:1576 -#: ../gui/wxpython/gui_core/gselect.py:1664 +#: ../gui/wxpython/gui_core/gselect.py:1580 +#: ../gui/wxpython/gui_core/gselect.py:1668 msgid "Directory:" msgstr "" @@ -2225,7 +2225,7 @@ msgid "Data type" msgstr "" #: ../gui/wxpython/dbmgr/base.py:3051 ../gui/wxpython/dbmgr/base.py:3203 -#: ../gui/wxpython/dbmgr/base.py:3471 ../gui/wxpython/gui_core/gselect.py:1479 +#: ../gui/wxpython/dbmgr/base.py:3471 ../gui/wxpython/gui_core/gselect.py:1483 msgid "Database" msgstr "" @@ -3595,13 +3595,13 @@ msgid "Delete all" msgstr "" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "No" msgstr "" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "Yes" msgstr "" @@ -4708,7 +4708,7 @@ msgid "Enter file content directly instead of specifying a file. Temporary file msgstr "" #: ../gui/wxpython/gui_core/forms.py:2119 -#: ../gui/wxpython/gui_core/gselect.py:1475 +#: ../gui/wxpython/gui_core/gselect.py:1479 msgid "Directory" msgstr "" @@ -5003,182 +5003,182 @@ msgstr "" msgid "No table linked to layer <{}>." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1244 +#: ../gui/wxpython/gui_core/gselect.py:1248 #: ../gui/wxpython/image2target/ii2t_gis_set.py:1017 msgid "Choose GIS Data Directory" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1456 +#: ../gui/wxpython/gui_core/gselect.py:1460 msgid "Output settings" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1458 +#: ../gui/wxpython/gui_core/gselect.py:1462 msgid "Source input" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1465 +#: ../gui/wxpython/gui_core/gselect.py:1469 msgid "Native" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1471 +#: ../gui/wxpython/gui_core/gselect.py:1475 #: ../gui/wxpython/lmgr/workspace.py:517 msgid "File" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1483 +#: ../gui/wxpython/gui_core/gselect.py:1487 msgid "Protocol" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1494 +#: ../gui/wxpython/gui_core/gselect.py:1498 msgid "Output type" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1496 +#: ../gui/wxpython/gui_core/gselect.py:1500 msgid "Source type" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1514 +#: ../gui/wxpython/gui_core/gselect.py:1518 msgid "All files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1544 +#: ../gui/wxpython/gui_core/gselect.py:1548 msgid "ZIP files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1545 +#: ../gui/wxpython/gui_core/gselect.py:1549 msgid "GZIP files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1546 +#: ../gui/wxpython/gui_core/gselect.py:1550 msgid "TAR files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1550 +#: ../gui/wxpython/gui_core/gselect.py:1554 msgid "TARGZ files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1559 +#: ../gui/wxpython/gui_core/gselect.py:1563 msgid "File:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1560 +#: ../gui/wxpython/gui_core/gselect.py:1564 msgid "Choose file to import" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1577 -#: ../gui/wxpython/gui_core/gselect.py:1665 +#: ../gui/wxpython/gui_core/gselect.py:1581 +#: ../gui/wxpython/gui_core/gselect.py:1669 msgid "Choose input directory" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1598 +#: ../gui/wxpython/gui_core/gselect.py:1602 msgid "Extension:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1630 +#: ../gui/wxpython/gui_core/gselect.py:1634 msgid "Choose file" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1651 -#: ../gui/wxpython/gui_core/gselect.py:2777 +#: ../gui/wxpython/gui_core/gselect.py:1655 +#: ../gui/wxpython/gui_core/gselect.py:2781 msgid "Feature type:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "simple features" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "topological" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1769 -#: ../gui/wxpython/gui_core/gselect.py:1809 -#: ../gui/wxpython/gui_core/gselect.py:1871 -#: ../gui/wxpython/gui_core/gselect.py:1916 +#: ../gui/wxpython/gui_core/gselect.py:1773 +#: ../gui/wxpython/gui_core/gselect.py:1813 +#: ../gui/wxpython/gui_core/gselect.py:1875 +#: ../gui/wxpython/gui_core/gselect.py:1920 msgid "Creation options:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1786 -#: ../gui/wxpython/gui_core/gselect.py:1832 -#: ../gui/wxpython/gui_core/gselect.py:1897 +#: ../gui/wxpython/gui_core/gselect.py:1790 +#: ../gui/wxpython/gui_core/gselect.py:1836 +#: ../gui/wxpython/gui_core/gselect.py:1901 msgid "Format:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1905 +#: ../gui/wxpython/gui_core/gselect.py:1909 msgid "Protocol:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1934 +#: ../gui/wxpython/gui_core/gselect.py:1938 msgid "No settings available" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2066 +#: ../gui/wxpython/gui_core/gselect.py:2070 #: ../gui/wxpython/web_services/dialogs.py:302 msgid "No data source defined, settings are not saved." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2098 +#: ../gui/wxpython/gui_core/gselect.py:2102 msgid "PostgreSQL/PostGIS login was not set. Set it via module, please." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2253 +#: ../gui/wxpython/gui_core/gselect.py:2257 #, python-brace-format msgid "Getting raster <{table}> SRID from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2508 +#: ../gui/wxpython/gui_core/gselect.py:2512 #, python-brace-format msgid "Getting list of tables from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2597 +#: ../gui/wxpython/gui_core/gselect.py:2601 #, python-brace-format msgid "Getting list of tables columns data types from PostGIS DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2628 +#: ../gui/wxpython/gui_core/gselect.py:2632 #, python-brace-format msgid "PostgreSQL DB <{psql}> program was not found. Please, install it." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2648 +#: ../gui/wxpython/gui_core/gselect.py:2652 #: ../gui/wxpython/modules/import_export.py:506 msgid "The Python GDAL package is missing. Please install it." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "LineString" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 #: ../gui/wxpython/psmap/dialogs.py:6221 ../gui/wxpython/psmap/toolbars.py:103 #: ../gui/wxpython/vdigit/preferences.py:729 msgid "Point" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "Polygon" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2982 +#: ../gui/wxpython/gui_core/gselect.py:2986 msgid "No vector map selected in layer manager. Operation canceled." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3001 +#: ../gui/wxpython/gui_core/gselect.py:3005 msgid "Input vector map is not selected" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3005 +#: ../gui/wxpython/gui_core/gselect.py:3009 #, python-format msgid "Input vector map <%s> and selected map <%s> in layer manager are different. Operation canceled." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3121 +#: ../gui/wxpython/gui_core/gselect.py:3125 #, python-format msgid "Unable to import C imagery library functions: %s\n" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3199 +#: ../gui/wxpython/gui_core/gselect.py:3203 msgid "No vector map selected" msgstr "" diff --git a/locale/po/grasswxpy_zh.po b/locale/po/grasswxpy_zh.po index 4edbb2179f8..297a7818905 100644 --- a/locale/po/grasswxpy_zh.po +++ b/locale/po/grasswxpy_zh.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: GRASS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-15 15:40+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2025-08-26 14:19+0000\n" "Last-Translator: Edouard Choiniere \n" "Language-Team: Chinese (Simplified) \n" @@ -195,9 +195,9 @@ msgstr "选择二维或三维视图" #: ../gui/wxpython/animation/dialogs.py:415 #: ../gui/wxpython/gmodeler/preferences.py:730 -#: ../gui/wxpython/gui_core/gselect.py:1629 -#: ../gui/wxpython/gui_core/gselect.py:1646 -#: ../gui/wxpython/gui_core/gselect.py:1647 +#: ../gui/wxpython/gui_core/gselect.py:1633 +#: ../gui/wxpython/gui_core/gselect.py:1650 +#: ../gui/wxpython/gui_core/gselect.py:1651 #: ../gui/wxpython/gui_core/widgets.py:1462 #: ../gui/wxpython/vnet/dialogs.py:1679 msgid "Name:" @@ -247,11 +247,11 @@ msgstr "" #: ../gui/wxpython/animation/dialogs.py:1278 #: ../gui/wxpython/gui_core/forms.py:2009 #: ../gui/wxpython/gui_core/forms.py:2120 -#: ../gui/wxpython/gui_core/gselect.py:1245 -#: ../gui/wxpython/gui_core/gselect.py:1561 -#: ../gui/wxpython/gui_core/gselect.py:1578 -#: ../gui/wxpython/gui_core/gselect.py:1631 -#: ../gui/wxpython/gui_core/gselect.py:1666 +#: ../gui/wxpython/gui_core/gselect.py:1249 +#: ../gui/wxpython/gui_core/gselect.py:1565 +#: ../gui/wxpython/gui_core/gselect.py:1582 +#: ../gui/wxpython/gui_core/gselect.py:1635 +#: ../gui/wxpython/gui_core/gselect.py:1670 #: ../gui/wxpython/location_wizard/wizard.py:1446 #: ../gui/wxpython/location_wizard/wizard.py:1801 #: ../gui/wxpython/modules/import_export.py:862 @@ -449,8 +449,8 @@ msgid "File format:" msgstr "" #: ../gui/wxpython/animation/dialogs.py:1194 -#: ../gui/wxpython/gui_core/gselect.py:1576 -#: ../gui/wxpython/gui_core/gselect.py:1664 +#: ../gui/wxpython/gui_core/gselect.py:1580 +#: ../gui/wxpython/gui_core/gselect.py:1668 msgid "Directory:" msgstr "" @@ -2240,7 +2240,7 @@ msgid "Data type" msgstr "" #: ../gui/wxpython/dbmgr/base.py:3051 ../gui/wxpython/dbmgr/base.py:3203 -#: ../gui/wxpython/dbmgr/base.py:3471 ../gui/wxpython/gui_core/gselect.py:1479 +#: ../gui/wxpython/dbmgr/base.py:3471 ../gui/wxpython/gui_core/gselect.py:1483 msgid "Database" msgstr "" @@ -3622,13 +3622,13 @@ msgid "Delete all" msgstr "全部删除" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "No" msgstr "否" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "Yes" msgstr "是" @@ -4759,7 +4759,7 @@ msgid "Enter file content directly instead of specifying a file. Temporary file msgstr "" #: ../gui/wxpython/gui_core/forms.py:2119 -#: ../gui/wxpython/gui_core/gselect.py:1475 +#: ../gui/wxpython/gui_core/gselect.py:1479 msgid "Directory" msgstr "目录" @@ -5056,182 +5056,182 @@ msgstr "" msgid "No table linked to layer <{}>." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1244 +#: ../gui/wxpython/gui_core/gselect.py:1248 #: ../gui/wxpython/image2target/ii2t_gis_set.py:1017 msgid "Choose GIS Data Directory" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1456 +#: ../gui/wxpython/gui_core/gselect.py:1460 msgid "Output settings" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1458 +#: ../gui/wxpython/gui_core/gselect.py:1462 msgid "Source input" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1465 +#: ../gui/wxpython/gui_core/gselect.py:1469 msgid "Native" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1471 +#: ../gui/wxpython/gui_core/gselect.py:1475 #: ../gui/wxpython/lmgr/workspace.py:517 msgid "File" msgstr "文件" -#: ../gui/wxpython/gui_core/gselect.py:1483 +#: ../gui/wxpython/gui_core/gselect.py:1487 msgid "Protocol" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1494 +#: ../gui/wxpython/gui_core/gselect.py:1498 msgid "Output type" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1496 +#: ../gui/wxpython/gui_core/gselect.py:1500 msgid "Source type" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1514 +#: ../gui/wxpython/gui_core/gselect.py:1518 msgid "All files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1544 +#: ../gui/wxpython/gui_core/gselect.py:1548 msgid "ZIP files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1545 +#: ../gui/wxpython/gui_core/gselect.py:1549 msgid "GZIP files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1546 +#: ../gui/wxpython/gui_core/gselect.py:1550 msgid "TAR files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1550 +#: ../gui/wxpython/gui_core/gselect.py:1554 msgid "TARGZ files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1559 +#: ../gui/wxpython/gui_core/gselect.py:1563 msgid "File:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1560 +#: ../gui/wxpython/gui_core/gselect.py:1564 msgid "Choose file to import" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1577 -#: ../gui/wxpython/gui_core/gselect.py:1665 +#: ../gui/wxpython/gui_core/gselect.py:1581 +#: ../gui/wxpython/gui_core/gselect.py:1669 msgid "Choose input directory" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1598 +#: ../gui/wxpython/gui_core/gselect.py:1602 msgid "Extension:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1630 +#: ../gui/wxpython/gui_core/gselect.py:1634 msgid "Choose file" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1651 -#: ../gui/wxpython/gui_core/gselect.py:2777 +#: ../gui/wxpython/gui_core/gselect.py:1655 +#: ../gui/wxpython/gui_core/gselect.py:2781 msgid "Feature type:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "simple features" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "topological" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1769 -#: ../gui/wxpython/gui_core/gselect.py:1809 -#: ../gui/wxpython/gui_core/gselect.py:1871 -#: ../gui/wxpython/gui_core/gselect.py:1916 +#: ../gui/wxpython/gui_core/gselect.py:1773 +#: ../gui/wxpython/gui_core/gselect.py:1813 +#: ../gui/wxpython/gui_core/gselect.py:1875 +#: ../gui/wxpython/gui_core/gselect.py:1920 msgid "Creation options:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1786 -#: ../gui/wxpython/gui_core/gselect.py:1832 -#: ../gui/wxpython/gui_core/gselect.py:1897 +#: ../gui/wxpython/gui_core/gselect.py:1790 +#: ../gui/wxpython/gui_core/gselect.py:1836 +#: ../gui/wxpython/gui_core/gselect.py:1901 msgid "Format:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1905 +#: ../gui/wxpython/gui_core/gselect.py:1909 msgid "Protocol:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1934 +#: ../gui/wxpython/gui_core/gselect.py:1938 msgid "No settings available" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2066 +#: ../gui/wxpython/gui_core/gselect.py:2070 #: ../gui/wxpython/web_services/dialogs.py:302 msgid "No data source defined, settings are not saved." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2098 +#: ../gui/wxpython/gui_core/gselect.py:2102 msgid "PostgreSQL/PostGIS login was not set. Set it via module, please." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2253 +#: ../gui/wxpython/gui_core/gselect.py:2257 #, python-brace-format msgid "Getting raster <{table}> SRID from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2508 +#: ../gui/wxpython/gui_core/gselect.py:2512 #, python-brace-format msgid "Getting list of tables from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2597 +#: ../gui/wxpython/gui_core/gselect.py:2601 #, python-brace-format msgid "Getting list of tables columns data types from PostGIS DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2628 +#: ../gui/wxpython/gui_core/gselect.py:2632 #, python-brace-format msgid "PostgreSQL DB <{psql}> program was not found. Please, install it." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2648 +#: ../gui/wxpython/gui_core/gselect.py:2652 #: ../gui/wxpython/modules/import_export.py:506 msgid "The Python GDAL package is missing. Please install it." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "LineString" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 #: ../gui/wxpython/psmap/dialogs.py:6221 ../gui/wxpython/psmap/toolbars.py:103 #: ../gui/wxpython/vdigit/preferences.py:729 msgid "Point" msgstr "点" -#: ../gui/wxpython/gui_core/gselect.py:2769 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "Polygon" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2982 +#: ../gui/wxpython/gui_core/gselect.py:2986 msgid "No vector map selected in layer manager. Operation canceled." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3001 +#: ../gui/wxpython/gui_core/gselect.py:3005 msgid "Input vector map is not selected" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3005 +#: ../gui/wxpython/gui_core/gselect.py:3009 #, python-format msgid "Input vector map <%s> and selected map <%s> in layer manager are different. Operation canceled." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3121 +#: ../gui/wxpython/gui_core/gselect.py:3125 #, python-format msgid "Unable to import C imagery library functions: %s\n" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3199 +#: ../gui/wxpython/gui_core/gselect.py:3203 msgid "No vector map selected" msgstr "" @@ -15222,18 +15222,6 @@ msgstr "" "栅格地图<%(rast1)s>对<%(rast2)s>的回归方程:\n" "\n" -#, fuzzy -#~ msgid "Do you want to create a new project (also known as location)?" -#~ msgstr "创建GRASS地点<%s>?" - -#, fuzzy -#~ msgid "Create project?" -#~ msgstr "创建图层包" - -#, fuzzy -#~ msgid "Create new project (location) in current GRASS database" -#~ msgstr "在当前地点下创建新地图集或切换当前地图集。" - #~ msgid "&Database" #~ msgstr "数据库(&D)" @@ -15858,6 +15846,10 @@ msgstr "" #~ msgid "Create new project (location)" #~ msgstr "创建新地点" +#, fuzzy +#~ msgid "Create new project (location) in current GRASS database" +#~ msgstr "在当前地点下创建新地图集或切换当前地图集。" + #~ msgid "Create new workspace" #~ msgstr "创建新工作区" @@ -15870,6 +15862,10 @@ msgstr "" #~ msgid "Create points/segments" #~ msgstr "创建点/线段" +#, fuzzy +#~ msgid "Create project?" +#~ msgstr "创建图层包" + #~ msgid "Create stationing" #~ msgstr "创建站点" @@ -16063,6 +16059,10 @@ msgstr "" #~ msgid "Distance to features" #~ msgstr "要素距离" +#, fuzzy +#~ msgid "Do you want to create a new project (also known as location)?" +#~ msgstr "创建GRASS地点<%s>?" + #~ msgid "Do you want to set the default region extents and resolution now?" #~ msgstr "现在设置地域范围和分辨率?" diff --git a/locale/po/grasswxpy_zh_CN.po b/locale/po/grasswxpy_zh_CN.po index 74f02373192..98a58ed5cf3 100644 --- a/locale/po/grasswxpy_zh_CN.po +++ b/locale/po/grasswxpy_zh_CN.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: grasslibs_zh_CN\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-06-21 12:47+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: 2017-01-25 08:24+0000\n" "Last-Translator: \n" "Language-Team: Chinese (China) (https://www.transifex.com/grass-gis/teams/45198/zh_CN/)\n" @@ -49,22 +49,22 @@ msgstr "" msgid "No animation to export." msgstr "" -#: ../gui/wxpython/animation/controller.py:538 +#: ../gui/wxpython/animation/controller.py:540 msgid "Preparing export, please wait..." msgstr "" -#: ../gui/wxpython/animation/controller.py:587 -#: ../gui/wxpython/animation/frame.py:632 +#: ../gui/wxpython/animation/controller.py:589 +#: ../gui/wxpython/animation/frame.py:630 #, python-format msgid "%(from)s %(dash)s %(to)s" msgstr "" -#: ../gui/wxpython/animation/controller.py:597 +#: ../gui/wxpython/animation/controller.py:599 #, python-format msgid "%(start)s %(unit)s" msgstr "" -#: ../gui/wxpython/animation/controller.py:619 +#: ../gui/wxpython/animation/controller.py:621 msgid "Exporting animation, please wait..." msgstr "" @@ -199,10 +199,10 @@ msgstr "" #: ../gui/wxpython/animation/dialogs.py:415 #: ../gui/wxpython/gmodeler/preferences.py:730 -#: ../gui/wxpython/gui_core/gselect.py:1629 -#: ../gui/wxpython/gui_core/gselect.py:1646 -#: ../gui/wxpython/gui_core/gselect.py:1647 -#: ../gui/wxpython/gui_core/widgets.py:1437 +#: ../gui/wxpython/gui_core/gselect.py:1633 +#: ../gui/wxpython/gui_core/gselect.py:1650 +#: ../gui/wxpython/gui_core/gselect.py:1651 +#: ../gui/wxpython/gui_core/widgets.py:1462 #: ../gui/wxpython/vnet/dialogs.py:1679 msgid "Name:" msgstr "" @@ -251,17 +251,17 @@ msgstr "" #: ../gui/wxpython/animation/dialogs.py:1278 #: ../gui/wxpython/gui_core/forms.py:2009 #: ../gui/wxpython/gui_core/forms.py:2120 -#: ../gui/wxpython/gui_core/gselect.py:1245 -#: ../gui/wxpython/gui_core/gselect.py:1561 -#: ../gui/wxpython/gui_core/gselect.py:1578 -#: ../gui/wxpython/gui_core/gselect.py:1631 -#: ../gui/wxpython/gui_core/gselect.py:1666 +#: ../gui/wxpython/gui_core/gselect.py:1249 +#: ../gui/wxpython/gui_core/gselect.py:1565 +#: ../gui/wxpython/gui_core/gselect.py:1582 +#: ../gui/wxpython/gui_core/gselect.py:1635 +#: ../gui/wxpython/gui_core/gselect.py:1670 #: ../gui/wxpython/location_wizard/wizard.py:1446 #: ../gui/wxpython/location_wizard/wizard.py:1801 -#: ../gui/wxpython/modules/import_export.py:860 -#: ../gui/wxpython/nviz/tools.py:676 ../gui/wxpython/psmap/dialogs.py:2749 +#: ../gui/wxpython/modules/import_export.py:862 +#: ../gui/wxpython/nviz/tools.py:675 ../gui/wxpython/psmap/dialogs.py:2749 #: ../gui/wxpython/psmap/dialogs.py:3055 ../gui/wxpython/psmap/dialogs.py:5796 -#: ../gui/wxpython/tplot/frame.py:376 +#: ../gui/wxpython/tplot/frame.py:375 msgid "Browse" msgstr "" @@ -322,7 +322,7 @@ msgstr "" msgid "List of animations" msgstr "" -#: ../gui/wxpython/animation/dialogs.py:786 ../gui/wxpython/dbmgr/base.py:2426 +#: ../gui/wxpython/animation/dialogs.py:786 ../gui/wxpython/dbmgr/base.py:2435 #: ../gui/wxpython/psmap/dialogs.py:1825 msgid "Add" msgstr "" @@ -349,12 +349,12 @@ msgstr "" msgid "Format" msgstr "" -#: ../gui/wxpython/animation/dialogs.py:952 ../gui/wxpython/nviz/tools.py:829 +#: ../gui/wxpython/animation/dialogs.py:952 ../gui/wxpython/nviz/tools.py:828 msgid "Decorations" msgstr "" #: ../gui/wxpython/animation/dialogs.py:957 -#: ../gui/wxpython/lmgr/layertree.py:771 ../gui/wxpython/tplot/frame.py:396 +#: ../gui/wxpython/lmgr/layertree.py:771 ../gui/wxpython/tplot/frame.py:395 msgid "Export" msgstr "" @@ -440,7 +440,7 @@ msgstr "" msgid "Export to:" msgstr "" -#: ../gui/wxpython/animation/dialogs.py:1185 ../gui/wxpython/nviz/tools.py:680 +#: ../gui/wxpython/animation/dialogs.py:1185 ../gui/wxpython/nviz/tools.py:679 msgid "File prefix:" msgstr "" @@ -448,13 +448,13 @@ msgstr "" msgid "animation_" msgstr "" -#: ../gui/wxpython/animation/dialogs.py:1187 ../gui/wxpython/nviz/tools.py:693 +#: ../gui/wxpython/animation/dialogs.py:1187 ../gui/wxpython/nviz/tools.py:692 msgid "File format:" msgstr "" #: ../gui/wxpython/animation/dialogs.py:1194 -#: ../gui/wxpython/gui_core/gselect.py:1576 -#: ../gui/wxpython/gui_core/gselect.py:1664 +#: ../gui/wxpython/gui_core/gselect.py:1580 +#: ../gui/wxpython/gui_core/gselect.py:1668 msgid "Directory:" msgstr "" @@ -553,7 +553,7 @@ msgid "Exported animation file <{file}> exists. Do you want to overwrite it?" msgstr "" #: ../gui/wxpython/animation/dialogs.py:1574 -#: ../gui/wxpython/datacatalog/tree.py:160 ../gui/wxpython/gcp/manager.py:1737 +#: ../gui/wxpython/datacatalog/tree.py:161 ../gui/wxpython/gcp/manager.py:1737 #: ../gui/wxpython/gui_core/dialogs.py:531 #: ../gui/wxpython/lmgr/layertree.py:1086 #: ../gui/wxpython/modules/colorrules.py:675 @@ -607,7 +607,7 @@ msgstr "" #: ../gui/wxpython/animation/dialogs.py:1900 #: ../gui/wxpython/gui_core/preferences.py:972 -#: ../gui/wxpython/nviz/preferences.py:230 ../gui/wxpython/nviz/tools.py:518 +#: ../gui/wxpython/nviz/preferences.py:228 ../gui/wxpython/nviz/tools.py:517 #: ../gui/wxpython/web_services/widgets.py:325 msgid "Background color:" msgstr "" @@ -657,30 +657,30 @@ msgstr "" msgid "Animation Tool" msgstr "" -#: ../gui/wxpython/animation/frame.py:174 ../gui/wxpython/mapswipe/frame.py:266 +#: ../gui/wxpython/animation/frame.py:172 ../gui/wxpython/mapswipe/frame.py:266 msgid "Main Toolbar" msgstr "" -#: ../gui/wxpython/animation/frame.py:193 +#: ../gui/wxpython/animation/frame.py:191 msgid "Animation Toolbar" msgstr "" -#: ../gui/wxpython/animation/frame.py:213 ../gui/wxpython/lmgr/frame.py:188 +#: ../gui/wxpython/animation/frame.py:211 ../gui/wxpython/lmgr/frame.py:188 #: ../gui/wxpython/main_window/frame.py:598 #: ../gui/wxpython/mapswipe/frame.py:310 msgid "Misc Toolbar" msgstr "" -#: ../gui/wxpython/animation/frame.py:316 +#: ../gui/wxpython/animation/frame.py:314 msgid "Loading data" msgstr "" -#: ../gui/wxpython/animation/frame.py:325 +#: ../gui/wxpython/animation/frame.py:323 #, python-brace-format msgid " ({c} out of {p})" msgstr "" -#: ../gui/wxpython/animation/frame.py:638 +#: ../gui/wxpython/animation/frame.py:636 #, python-format msgid "to %(to)s" msgstr "" @@ -691,7 +691,7 @@ msgid "%s=, %s=, %s= and %s= are mutually exclusive." msgstr "" #: ../gui/wxpython/animation/g.gui.animation.py:137 -msgid "Animation Tool - GRASS GIS" +msgid "Animation Tool - GRASS" msgstr "" #: ../gui/wxpython/animation/nviztask.py:40 @@ -714,15 +714,15 @@ msgstr "" msgid "No map series nor space-time dataset is added." msgstr "" -#: ../gui/wxpython/animation/provider.py:444 +#: ../gui/wxpython/animation/provider.py:451 msgid "Rendering map layers" msgstr "" -#: ../gui/wxpython/animation/provider.py:562 +#: ../gui/wxpython/animation/provider.py:569 msgid "Overlaying map layers" msgstr "" -#: ../gui/wxpython/animation/provider.py:793 +#: ../gui/wxpython/animation/provider.py:800 #, python-brace-format msgid "Directory {t} not removed." msgstr "" @@ -742,7 +742,7 @@ msgstr "" #: ../gui/wxpython/animation/temporal_manager.py:249 #: ../gui/wxpython/animation/utils.py:72 ../gui/wxpython/animation/utils.py:80 -#: ../gui/wxpython/timeline/frame.py:497 ../gui/wxpython/tplot/frame.py:1155 +#: ../gui/wxpython/timeline/frame.py:497 ../gui/wxpython/tplot/frame.py:1158 #, python-format msgid "Space time dataset <%s> not found." msgstr "" @@ -764,11 +764,11 @@ msgstr "" msgid "Play back" msgstr "" -#: ../gui/wxpython/animation/toolbars.py:31 ../gui/wxpython/nviz/tools.py:580 +#: ../gui/wxpython/animation/toolbars.py:31 ../gui/wxpython/nviz/tools.py:579 msgid "Stop" msgstr "" -#: ../gui/wxpython/animation/toolbars.py:32 ../gui/wxpython/nviz/tools.py:578 +#: ../gui/wxpython/animation/toolbars.py:32 ../gui/wxpython/nviz/tools.py:577 msgid "Pause" msgstr "" @@ -863,7 +863,7 @@ msgstr "" #: ../gui/wxpython/core/gcmd.py:146 ../gui/wxpython/core/workspace.py:1756 #: ../gui/wxpython/gmodeler/model_convert.py:238 -#: ../gui/wxpython/mapwin/buffered.py:2152 +#: ../gui/wxpython/mapwin/buffered.py:2153 #: ../gui/wxpython/wxplot/dialogs.py:940 msgid "Warning" msgstr "" @@ -871,7 +871,7 @@ msgstr "" #: ../gui/wxpython/core/gcmd.py:153 #: ../gui/wxpython/image2target/ii2t_gis_set.py:714 #: ../gui/wxpython/image2target/ii2t_gis_set.py:760 -#: ../gui/wxpython/lmgr/frame.py:2319 ../gui/wxpython/main_window/frame.py:2427 +#: ../gui/wxpython/lmgr/frame.py:2320 ../gui/wxpython/main_window/frame.py:2429 msgid "Message" msgstr "" @@ -898,7 +898,7 @@ msgstr "" msgid "Error in %s" msgstr "" -#: ../gui/wxpython/core/gconsole.py:580 +#: ../gui/wxpython/core/gconsole.py:581 #, python-format msgid "" "Unable to run command:\n" @@ -907,43 +907,43 @@ msgid "" "Option <%(opt)s>: read from standard input is not supported by wxGUI" msgstr "" -#: ../gui/wxpython/core/gconsole.py:617 +#: ../gui/wxpython/core/gconsole.py:618 #, python-format msgid "Module <%s> not found." msgstr "" -#: ../gui/wxpython/core/gconsole.py:756 ../gui/wxpython/gmodeler/panels.py:314 +#: ../gui/wxpython/core/gconsole.py:757 ../gui/wxpython/gmodeler/panels.py:314 #, python-format msgid "%d sec" msgstr "" -#: ../gui/wxpython/core/gconsole.py:759 ../gui/wxpython/gmodeler/panels.py:317 +#: ../gui/wxpython/core/gconsole.py:760 ../gui/wxpython/gmodeler/panels.py:317 #, python-format msgid "%(min)d min %(sec)d sec" msgstr "" -#: ../gui/wxpython/core/gconsole.py:765 +#: ../gui/wxpython/core/gconsole.py:766 #: ../gui/wxpython/gmodeler/model_items.py:282 #: ../gui/wxpython/gmodeler/model_items.py:387 -#: ../gui/wxpython/gmodeler/panels.py:323 ../gui/wxpython/gui_core/ghelp.py:262 +#: ../gui/wxpython/gmodeler/panels.py:323 ../gui/wxpython/gui_core/ghelp.py:263 #: ../gui/wxpython/startup/guiutils.py:586 msgid "unknown" msgstr "" -#: ../gui/wxpython/core/gconsole.py:771 +#: ../gui/wxpython/core/gconsole.py:772 msgid "Please note that the data are left in inconsistent state and may be corrupted" msgstr "" -#: ../gui/wxpython/core/gconsole.py:775 +#: ../gui/wxpython/core/gconsole.py:776 msgid "Command aborted" msgstr "" -#: ../gui/wxpython/core/gconsole.py:778 +#: ../gui/wxpython/core/gconsole.py:779 #, python-brace-format msgid "Command ended with non-zero return code {returncode}" msgstr "" -#: ../gui/wxpython/core/gconsole.py:783 ../gui/wxpython/gmodeler/panels.py:330 +#: ../gui/wxpython/core/gconsole.py:784 ../gui/wxpython/gmodeler/panels.py:330 msgid "Command finished" msgstr "" @@ -1065,7 +1065,7 @@ msgstr "" msgid "Expand all" msgstr "" -#: ../gui/wxpython/core/settings.py:795 ../gui/wxpython/dbmgr/base.py:1446 +#: ../gui/wxpython/core/settings.py:795 ../gui/wxpython/dbmgr/base.py:1455 msgid "Edit selected record" msgstr "" @@ -1267,39 +1267,39 @@ msgstr "" msgid "hectares" msgstr "" -#: ../gui/wxpython/core/utils.py:60 +#: ../gui/wxpython/core/utils.py:61 #, python-format msgid "Syntax error: %s" msgstr "" -#: ../gui/wxpython/core/utils.py:344 +#: ../gui/wxpython/core/utils.py:345 #, python-format msgid "Vector map <%(map)s>: %(msg)s\n" msgstr "" -#: ../gui/wxpython/core/utils.py:836 +#: ../gui/wxpython/core/utils.py:840 #, python-format msgid "" "%s: line skipped - unable to parse '%s'\n" "Reason: %s\n" msgstr "" -#: ../gui/wxpython/core/utils.py:842 +#: ../gui/wxpython/core/utils.py:846 #, python-format msgid "Duplicated key: %s\n" msgstr "" -#: ../gui/wxpython/core/utils.py:846 +#: ../gui/wxpython/core/utils.py:850 #, python-brace-format msgid "Unable to open file '{name}': {error}\n" msgstr "" -#: ../gui/wxpython/core/utils.py:871 +#: ../gui/wxpython/core/utils.py:875 #, python-brace-format msgid "Unable to create file '{name}': {error}\n" msgstr "" -#: ../gui/wxpython/core/utils.py:945 ../gui/wxpython/gui_core/forms.py:1917 +#: ../gui/wxpython/core/utils.py:949 ../gui/wxpython/gui_core/forms.py:1917 msgid "Select Color" msgstr "" @@ -1322,65 +1322,56 @@ msgstr "" msgid " row %d:" msgstr "" -#: ../gui/wxpython/datacatalog/catalog.py:52 +#: ../gui/wxpython/datacatalog/catalog.py:55 msgid "Data catalog" msgstr "" -#: ../gui/wxpython/datacatalog/catalog.py:205 -#: ../gui/wxpython/location_wizard/wizard.py:328 -msgid "Choose GRASS data directory:" -msgstr "" - -#: ../gui/wxpython/datacatalog/catalog.py:216 -msgid "Do you want to create a new project (also known as location)?" +#: ../gui/wxpython/datacatalog/catalog.py:217 +msgid "Choose GRASS project:" msgstr "" -#: ../gui/wxpython/datacatalog/catalog.py:221 -msgid "Create project?" -msgstr "" - -#: ../gui/wxpython/datacatalog/catalog.py:318 +#: ../gui/wxpython/datacatalog/catalog.py:314 msgid "Link external raster data [r.external]" msgstr "" -#: ../gui/wxpython/datacatalog/catalog.py:324 +#: ../gui/wxpython/datacatalog/catalog.py:320 msgid "Link external vector data [v.external]" msgstr "" -#: ../gui/wxpython/datacatalog/catalog.py:332 +#: ../gui/wxpython/datacatalog/catalog.py:328 msgid "Set raster output format [r.external.out]" msgstr "" -#: ../gui/wxpython/datacatalog/catalog.py:338 +#: ../gui/wxpython/datacatalog/catalog.py:334 msgid "Set vector output format [v.external.out]" msgstr "" -#: ../gui/wxpython/datacatalog/catalog.py:346 +#: ../gui/wxpython/datacatalog/catalog.py:342 msgid "Unpack GRASS raster map [r.unpack]" msgstr "" -#: ../gui/wxpython/datacatalog/catalog.py:350 +#: ../gui/wxpython/datacatalog/catalog.py:346 msgid "Unpack GRASS vector map [v.unpack]" msgstr "" -#: ../gui/wxpython/datacatalog/catalog.py:357 +#: ../gui/wxpython/datacatalog/catalog.py:353 msgid "Create raster map from x,y,z data [r.in.xyz]" msgstr "" -#: ../gui/wxpython/datacatalog/catalog.py:363 +#: ../gui/wxpython/datacatalog/catalog.py:359 msgid "Create vector map from x,y,z data [v.in.ascii]" msgstr "" -#: ../gui/wxpython/datacatalog/catalog.py:369 +#: ../gui/wxpython/datacatalog/catalog.py:365 msgid "Link external data" msgstr "" -#: ../gui/wxpython/datacatalog/catalog.py:372 +#: ../gui/wxpython/datacatalog/catalog.py:368 msgid "More options..." msgstr "" #: ../gui/wxpython/datacatalog/dialogs.py:44 -#: ../gui/wxpython/modules/import_export.py:966 +#: ../gui/wxpython/modules/import_export.py:968 msgid "Reprojection" msgstr "" @@ -1420,14 +1411,15 @@ msgid "Data Catalog" msgstr "" #: ../gui/wxpython/datacatalog/frame.py:42 -msgid "Close GRASS GIS Data Catalog" +msgid "Close GRASS Data Catalog" msgstr "" #: ../gui/wxpython/datacatalog/g.gui.datacatalog.py:50 -msgid "Data Catalog - GRASS GIS" +msgid "Data Catalog - GRASS" msgstr "" #: ../gui/wxpython/datacatalog/infomanager.py:36 +#: ../gui/wxpython/datacatalog/toolbars.py:34 msgid "Create new project" msgstr "" @@ -1438,13 +1430,13 @@ msgstr "" #: ../gui/wxpython/datacatalog/infomanager.py:40 #, python-brace-format msgid "" -"GRASS GIS helps you organize your data using projects (locations) which contain mapsets (subprojects). All data in one project is in the same coordinate reference system (CRS).\n" +"GRASS helps you organize your data using projects (locations) which contain mapsets (subprojects). All data in one project is in the same coordinate reference system (CRS).\n" "\n" "You are currently in mapset PERMANENT in default project {loc} which uses WGS 84 (EPSG:4326). Consider creating a new project with a CRS specific to your area. You can do it now or anytime later from the toolbar above." msgstr "" #: ../gui/wxpython/datacatalog/infomanager.py:54 -#: ../gui/wxpython/modules/import_export.py:600 +#: ../gui/wxpython/modules/import_export.py:602 msgid "Import vector data" msgstr "" @@ -1475,7 +1467,7 @@ msgstr "" #: ../gui/wxpython/datacatalog/infomanager.py:84 #, python-brace-format -msgid "{string} GRASS GIS has started in a temporary project. To continue, use Data Catalog below to switch to a different project." +msgid "{string} GRASS has started in a temporary project. To continue, use Data Catalog below to switch to a different project." msgstr "" #: ../gui/wxpython/datacatalog/infomanager.py:94 @@ -1484,7 +1476,7 @@ msgstr "" #: ../gui/wxpython/datacatalog/infomanager.py:96 #, python-brace-format -msgid "Last used mapset in path '{mapsetpath}' is currently in use. GRASS GIS has started in a temporary project. To continue, use Data Catalog below to switch to a different project or remove lock file and switch to the last used mapset." +msgid "Last used mapset in path '{mapsetpath}' is currently in use. GRASS has started in a temporary project. To continue, use Data Catalog below to switch to a different project or remove lock file and switch to the last used mapset." msgstr "" #: ../gui/wxpython/datacatalog/infomanager.py:109 @@ -1511,96 +1503,84 @@ msgid "Reload current GRASS mapset only" msgstr "" #: ../gui/wxpython/datacatalog/toolbars.py:26 -msgid "Restrict edits to the current mapset only" -msgstr "" - -#: ../gui/wxpython/datacatalog/toolbars.py:29 -msgid "Allow edits outside of the current mapset" -msgstr "" - -#: ../gui/wxpython/datacatalog/toolbars.py:32 -msgid "Add existing or create new database" -msgstr "" - -#: ../gui/wxpython/datacatalog/toolbars.py:35 msgid "Create new mapset in current project" msgstr "" -#: ../gui/wxpython/datacatalog/toolbars.py:39 -msgid "Create new project (location) in current GRASS database" +#: ../gui/wxpython/datacatalog/toolbars.py:30 +msgid "Add an existing project" msgstr "" -#: ../gui/wxpython/datacatalog/toolbars.py:43 -msgid "Download sample project (location) to current GRASS database" +#: ../gui/wxpython/datacatalog/toolbars.py:38 +msgid "Download sample project" msgstr "" -#: ../gui/wxpython/datacatalog/toolbars.py:46 +#: ../gui/wxpython/datacatalog/toolbars.py:41 msgid "Import raster data [r.import]" msgstr "" -#: ../gui/wxpython/datacatalog/toolbars.py:49 +#: ../gui/wxpython/datacatalog/toolbars.py:44 msgid "Import vector data [v.import]" msgstr "" -#: ../gui/wxpython/datacatalog/toolbars.py:52 +#: ../gui/wxpython/datacatalog/toolbars.py:47 msgid "Select another import option" msgstr "" -#: ../gui/wxpython/datacatalog/toolbars.py:62 -#: ../gui/wxpython/gui_core/menu.py:186 ../gui/wxpython/history/browser.py:387 +#: ../gui/wxpython/datacatalog/toolbars.py:57 +#: ../gui/wxpython/gui_core/menu.py:187 ../gui/wxpython/history/browser.py:387 #: ../gui/wxpython/modules/extensions.py:76 msgid "Search" msgstr "" -#: ../gui/wxpython/datacatalog/toolbars.py:80 +#: ../gui/wxpython/datacatalog/toolbars.py:75 msgid "Type to search database by map type or name. Use Python regular expressions to refine your search." msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:96 +#: ../gui/wxpython/datacatalog/tree.py:97 #, python-brace-format msgid "Failed to read mapsets from project <{l}>." msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:122 +#: ../gui/wxpython/datacatalog/tree.py:123 #, python-brace-format msgid "Failed to read maps from project <{l}>." msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:157 +#: ../gui/wxpython/datacatalog/tree.py:158 #, python-brace-format msgid "Map of type {elem} <{name}> already exists in mapset <{mapset}>. Do you want to overwrite it?" msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:184 +#: ../gui/wxpython/datacatalog/tree.py:185 msgid "name unknown" msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:186 +#: ../gui/wxpython/datacatalog/tree.py:187 #, python-brace-format msgid "{name} (current)" msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:188 +#: ../gui/wxpython/datacatalog/tree.py:189 #, python-brace-format msgid "{name} (in use, owner: {owner})" msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:192 +#: ../gui/wxpython/datacatalog/tree.py:193 #, python-brace-format msgid "{name} (in use)" msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:194 +#: ../gui/wxpython/datacatalog/tree.py:195 #, python-brace-format msgid "{name} (owner: {owner})" msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:198 +#: ../gui/wxpython/datacatalog/tree.py:199 #, python-brace-format msgid "{name}" msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:874 +#: ../gui/wxpython/datacatalog/tree.py:893 #, python-brace-format msgid "" "Map <{map_name}@{map_mapset}> is not in the current project. To be able to display it you need to switch to <{map_location}> project. Note that if you switch there all current Map Displays will be closed.\n" @@ -1608,246 +1588,246 @@ msgid "" "Do you want to switch anyway?" msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:884 +#: ../gui/wxpython/datacatalog/tree.py:903 msgid "Map in a different project" msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:1003 +#: ../gui/wxpython/datacatalog/tree.py:1022 #, python-brace-format msgid "{c} maps marked for moving." msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:1005 +#: ../gui/wxpython/datacatalog/tree.py:1024 #, python-brace-format msgid "Map <{layer}> marked for moving." msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:1018 +#: ../gui/wxpython/datacatalog/tree.py:1037 #, python-brace-format msgid "{c} maps marked for copying." msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:1020 +#: ../gui/wxpython/datacatalog/tree.py:1039 #, python-brace-format msgid "Map <{layer}> marked for copying." msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:1035 -#: ../gui/wxpython/datacatalog/tree.py:1372 +#: ../gui/wxpython/datacatalog/tree.py:1054 +#: ../gui/wxpython/datacatalog/tree.py:1391 msgid "New name" msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:1036 +#: ../gui/wxpython/datacatalog/tree.py:1055 msgid "Rename map" msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:1185 +#: ../gui/wxpython/datacatalog/tree.py:1204 msgid "Cannot rename mapset" msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:1198 +#: ../gui/wxpython/datacatalog/tree.py:1217 #, python-brace-format msgid "Renaming mapset <{oldmapset}> to <{newmapset}> completed" msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:1210 +#: ../gui/wxpython/datacatalog/tree.py:1229 msgid "Cannot rename location" msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:1222 +#: ../gui/wxpython/datacatalog/tree.py:1241 #, python-brace-format msgid "Renaming project <{oldlocation}> to <{newlocation}> completed" msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:1234 +#: ../gui/wxpython/datacatalog/tree.py:1253 #, python-brace-format msgid "Renaming map <{name}>..." msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:1244 +#: ../gui/wxpython/datacatalog/tree.py:1263 #, python-brace-format msgid "{cmd} -- completed" msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:1260 +#: ../gui/wxpython/datacatalog/tree.py:1279 msgid "No map selected for copying." msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:1262 +#: ../gui/wxpython/datacatalog/tree.py:1281 msgid "No map selected for moving." msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:1284 #: ../gui/wxpython/datacatalog/tree.py:1303 +#: ../gui/wxpython/datacatalog/tree.py:1322 #, python-brace-format msgid "New name for <{n}>" msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:1287 #: ../gui/wxpython/datacatalog/tree.py:1306 -#: ../gui/wxpython/datacatalog/tree.py:1373 +#: ../gui/wxpython/datacatalog/tree.py:1325 +#: ../gui/wxpython/datacatalog/tree.py:1392 msgid "Select new name" msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:1324 +#: ../gui/wxpython/datacatalog/tree.py:1343 #, python-brace-format msgid "Copying <{name}>..." msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:1326 +#: ../gui/wxpython/datacatalog/tree.py:1345 #, python-brace-format msgid "Moving <{name}>..." msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:1340 +#: ../gui/wxpython/datacatalog/tree.py:1359 msgid "Copying completed" msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:1346 +#: ../gui/wxpython/datacatalog/tree.py:1365 msgid "Moving completed" msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:1362 +#: ../gui/wxpython/datacatalog/tree.py:1381 msgid "Reprojection is not implemented for 3D rasters" msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:1443 -#: ../gui/wxpython/datacatalog/tree.py:1559 +#: ../gui/wxpython/datacatalog/tree.py:1462 +#: ../gui/wxpython/datacatalog/tree.py:1582 msgid "g.remove completed" msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:1523 +#: ../gui/wxpython/datacatalog/tree.py:1546 #, python-brace-format msgid "Do you really want to delete map(s) <{m}>?" msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:1527 +#: ../gui/wxpython/datacatalog/tree.py:1550 #, python-brace-format msgid "Do you really want to delete {n} maps?" msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:1528 +#: ../gui/wxpython/datacatalog/tree.py:1551 msgid "Delete map" msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:1529 +#: ../gui/wxpython/datacatalog/tree.py:1552 #, python-brace-format msgid "Deleting {name}..." msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:1720 +#: ../gui/wxpython/datacatalog/tree.py:1743 msgid "To move or copy maps to other mapsets, unlock editing of other mapsets" msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:1734 +#: ../gui/wxpython/datacatalog/tree.py:1757 msgid "To move or copy maps to other project, please drag them to a mapset in the destination project" msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:2061 +#: ../gui/wxpython/datacatalog/tree.py:2085 msgid "&Cut" msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:2067 ../gui/wxpython/history/tree.py:219 +#: ../gui/wxpython/datacatalog/tree.py:2091 ../gui/wxpython/history/tree.py:219 msgid "&Copy" msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:2071 +#: ../gui/wxpython/datacatalog/tree.py:2095 msgid "Copy &name" msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:2075 -#: ../gui/wxpython/datacatalog/tree.py:2118 -#: ../gui/wxpython/datacatalog/tree.py:2222 +#: ../gui/wxpython/datacatalog/tree.py:2099 +#: ../gui/wxpython/datacatalog/tree.py:2142 +#: ../gui/wxpython/datacatalog/tree.py:2246 msgid "&Paste" msgstr "" #. GTC Delete mapset -#: ../gui/wxpython/datacatalog/tree.py:2081 +#: ../gui/wxpython/datacatalog/tree.py:2105 #: ../gui/wxpython/image2target/ii2t_gis_set.py:242 msgid "&Delete" msgstr "" #. GTC Rename mapset -#: ../gui/wxpython/datacatalog/tree.py:2086 ../gui/wxpython/dbmgr/base.py:2481 +#: ../gui/wxpython/datacatalog/tree.py:2110 ../gui/wxpython/dbmgr/base.py:2490 #: ../gui/wxpython/image2target/ii2t_gis_set.py:235 msgid "&Rename" msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:2099 +#: ../gui/wxpython/datacatalog/tree.py:2123 msgid "&Display layers" msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:2101 +#: ../gui/wxpython/datacatalog/tree.py:2125 msgid "&Display layer" msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:2105 +#: ../gui/wxpython/datacatalog/tree.py:2129 msgid "Show &metadata" msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:2124 +#: ../gui/wxpython/datacatalog/tree.py:2148 msgid "&Switch mapset" msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:2134 +#: ../gui/wxpython/datacatalog/tree.py:2158 msgid "&Delete mapset" msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:2140 +#: ../gui/wxpython/datacatalog/tree.py:2164 msgid "&Rename mapset" msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:2146 -#: ../gui/wxpython/datacatalog/tree.py:2177 -#: ../gui/wxpython/datacatalog/tree.py:2212 +#: ../gui/wxpython/datacatalog/tree.py:2170 +#: ../gui/wxpython/datacatalog/tree.py:2201 +#: ../gui/wxpython/datacatalog/tree.py:2236 msgid "Re&load maps" msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:2150 +#: ../gui/wxpython/datacatalog/tree.py:2174 msgid "&Copy path to mapset" msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:2161 +#: ../gui/wxpython/datacatalog/tree.py:2185 msgid "&Create mapset" msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:2165 +#: ../gui/wxpython/datacatalog/tree.py:2189 msgid "&Delete project" msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:2171 +#: ../gui/wxpython/datacatalog/tree.py:2195 msgid "&Rename project" msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:2190 +#: ../gui/wxpython/datacatalog/tree.py:2214 msgid "&Create new project (location)" msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:2194 +#: ../gui/wxpython/datacatalog/tree.py:2218 msgid "&Download sample project (location)" msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:2199 +#: ../gui/wxpython/datacatalog/tree.py:2223 msgid "&Remove GRASS database from data catalog" msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:2206 +#: ../gui/wxpython/datacatalog/tree.py:2230 msgid "&Delete GRASS database from disk" msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:2236 +#: ../gui/wxpython/datacatalog/tree.py:2260 msgid "&Delete projects (locations)" msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:2248 +#: ../gui/wxpython/datacatalog/tree.py:2272 msgid "&Delete mapsets" msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:2254 +#: ../gui/wxpython/datacatalog/tree.py:2278 msgid "&Copy paths to mapsets" msgstr "" -#: ../gui/wxpython/datacatalog/tree.py:2264 ../gui/wxpython/history/tree.py:233 +#: ../gui/wxpython/datacatalog/tree.py:2288 ../gui/wxpython/history/tree.py:233 msgid "No available options" msgstr "" @@ -1883,9 +1863,9 @@ msgstr "" msgid "Viewing limit: 100000 records." msgstr "" -#: ../gui/wxpython/dbmgr/base.py:375 ../gui/wxpython/dbmgr/base.py:963 -#: ../gui/wxpython/dbmgr/base.py:1131 ../gui/wxpython/dbmgr/base.py:1485 -#: ../gui/wxpython/dbmgr/base.py:2166 ../gui/wxpython/dbmgr/manager.py:239 +#: ../gui/wxpython/dbmgr/base.py:375 ../gui/wxpython/dbmgr/base.py:972 +#: ../gui/wxpython/dbmgr/base.py:1140 ../gui/wxpython/dbmgr/base.py:1494 +#: ../gui/wxpython/dbmgr/base.py:2175 ../gui/wxpython/dbmgr/manager.py:237 #, python-format msgid "Number of loaded records: %d" msgstr "" @@ -1906,230 +1886,230 @@ msgid "" "Details: %(detail)s" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:506 +#: ../gui/wxpython/dbmgr/base.py:515 msgid "Sort ascending" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:507 +#: ../gui/wxpython/dbmgr/base.py:516 msgid "Sort descending" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:512 +#: ../gui/wxpython/dbmgr/base.py:521 msgid "Calculate (only numeric columns)" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:514 +#: ../gui/wxpython/dbmgr/base.py:523 msgid "Field calculator" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:516 ../gui/wxpython/wxplot/dialogs.py:295 +#: ../gui/wxpython/dbmgr/base.py:525 ../gui/wxpython/wxplot/dialogs.py:295 msgid "Statistics" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:521 ../gui/wxpython/dbmgr/base.py:2372 +#: ../gui/wxpython/dbmgr/base.py:530 ../gui/wxpython/dbmgr/base.py:2381 #: ../gui/wxpython/modules/colorrules.py:1129 msgid "Add column" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:533 +#: ../gui/wxpython/dbmgr/base.py:542 msgid "Area size" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:534 +#: ../gui/wxpython/dbmgr/base.py:543 msgid "Line length" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:535 +#: ../gui/wxpython/dbmgr/base.py:544 msgid "Compactness of an area" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:538 +#: ../gui/wxpython/dbmgr/base.py:547 msgid "Fractal dimension of boundary defining a polygon" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:540 +#: ../gui/wxpython/dbmgr/base.py:549 msgid "Perimeter length of an area" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:541 +#: ../gui/wxpython/dbmgr/base.py:550 msgid "Number of features for each category" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:542 +#: ../gui/wxpython/dbmgr/base.py:551 msgid "Slope steepness of 3D line" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:543 +#: ../gui/wxpython/dbmgr/base.py:552 msgid "Line sinuousity" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:544 +#: ../gui/wxpython/dbmgr/base.py:553 msgid "Line azimuth" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:671 +#: ../gui/wxpython/dbmgr/base.py:680 #, python-format msgid "Add column to table <%s>" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:1062 +#: ../gui/wxpython/dbmgr/base.py:1071 msgid "Unable to add column to the table. No column name defined." msgstr "" -#: ../gui/wxpython/dbmgr/base.py:1076 +#: ../gui/wxpython/dbmgr/base.py:1085 #, python-format msgid "Column <%(column)s> already exists in table <%(table)s>." msgstr "" -#: ../gui/wxpython/dbmgr/base.py:1165 +#: ../gui/wxpython/dbmgr/base.py:1174 msgid "Attribute data - right-click to edit/manage records" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:1180 ../gui/wxpython/dbmgr/base.py:2325 -#: ../gui/wxpython/dbmgr/base.py:3042 ../gui/wxpython/dbmgr/base.py:3205 -#: ../gui/wxpython/dbmgr/base.py:3474 +#: ../gui/wxpython/dbmgr/base.py:1189 ../gui/wxpython/dbmgr/base.py:2334 +#: ../gui/wxpython/dbmgr/base.py:3051 ../gui/wxpython/dbmgr/base.py:3214 +#: ../gui/wxpython/dbmgr/base.py:3483 msgid "Table" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:1182 ../gui/wxpython/dbmgr/base.py:2327 +#: ../gui/wxpython/dbmgr/base.py:1191 ../gui/wxpython/dbmgr/base.py:2336 msgid " (read-only)" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:1199 +#: ../gui/wxpython/dbmgr/base.py:1208 msgid "SQL Query" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:1223 +#: ../gui/wxpython/dbmgr/base.py:1232 msgid "Simple" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:1226 +#: ../gui/wxpython/dbmgr/base.py:1235 msgid "Apply SELECT statement and reload data records" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:1256 ../gui/wxpython/dbmgr/base.py:1282 -#: ../gui/wxpython/dbmgr/sqlbuilder.py:500 +#: ../gui/wxpython/dbmgr/base.py:1265 ../gui/wxpython/dbmgr/base.py:1291 +#: ../gui/wxpython/dbmgr/sqlbuilder.py:498 #, python-format msgid "Example: %s" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:1267 +#: ../gui/wxpython/dbmgr/base.py:1276 msgid "Builder" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:1270 +#: ../gui/wxpython/dbmgr/base.py:1279 msgid "SQL Builder" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:1454 ../gui/wxpython/dbmgr/base.py:1636 +#: ../gui/wxpython/dbmgr/base.py:1463 ../gui/wxpython/dbmgr/base.py:1645 msgid "Insert new record" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:1455 +#: ../gui/wxpython/dbmgr/base.py:1464 msgid "Delete selected record(s)" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:1456 +#: ../gui/wxpython/dbmgr/base.py:1465 msgid "Delete all records" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:1462 ../gui/wxpython/gui_core/dialogs.py:838 +#: ../gui/wxpython/dbmgr/base.py:1471 ../gui/wxpython/gui_core/dialogs.py:838 #: ../gui/wxpython/gui_core/dialogs.py:896 #: ../gui/wxpython/gui_core/dialogs.py:1607 -#: ../gui/wxpython/gui_core/widgets.py:1129 +#: ../gui/wxpython/gui_core/widgets.py:1154 msgid "Select all" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:1463 ../gui/wxpython/gui_core/dialogs.py:1609 -#: ../gui/wxpython/gui_core/widgets.py:1130 +#: ../gui/wxpython/dbmgr/base.py:1472 ../gui/wxpython/gui_core/dialogs.py:1609 +#: ../gui/wxpython/gui_core/widgets.py:1155 msgid "Deselect all" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:1465 +#: ../gui/wxpython/dbmgr/base.py:1474 #: ../gui/wxpython/gui_core/preferences.py:1617 msgid "Highlight selected features" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:1466 +#: ../gui/wxpython/dbmgr/base.py:1475 msgid "Highlight selected features and zoom" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:1470 ../gui/wxpython/dbmgr/base.py:1997 +#: ../gui/wxpython/dbmgr/base.py:1479 ../gui/wxpython/dbmgr/base.py:2006 msgid "Extract selected features" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:1471 +#: ../gui/wxpython/dbmgr/base.py:1480 msgid "Delete selected features" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:1479 ../gui/wxpython/dbmgr/base.py:2662 +#: ../gui/wxpython/dbmgr/base.py:1488 ../gui/wxpython/dbmgr/base.py:2671 #: ../gui/wxpython/gmodeler/dialogs.py:925 #: ../gui/wxpython/gmodeler/dialogs.py:1079 #: ../gui/wxpython/vdigit/dialogs.py:306 msgid "Reload" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:1532 +#: ../gui/wxpython/dbmgr/base.py:1541 msgid "Update existing record" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:1560 ../gui/wxpython/dbmgr/base.py:1675 +#: ../gui/wxpython/dbmgr/base.py:1569 ../gui/wxpython/dbmgr/base.py:1684 #, python-format msgid "Value '%(value)s' needs to be entered as %(type)s." msgstr "" -#: ../gui/wxpython/dbmgr/base.py:1575 +#: ../gui/wxpython/dbmgr/base.py:1584 #, python-format msgid "" "Unable to update existing record.\n" "%s" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:1650 +#: ../gui/wxpython/dbmgr/base.py:1659 #, python-format msgid "Record with category number %d already exists in the table." msgstr "" -#: ../gui/wxpython/dbmgr/base.py:1662 +#: ../gui/wxpython/dbmgr/base.py:1671 #, python-format msgid "Category number (column %s) is missing." msgstr "" -#: ../gui/wxpython/dbmgr/base.py:1683 +#: ../gui/wxpython/dbmgr/base.py:1692 #, python-format msgid "Column '%(column)s' does not exist." msgstr "" -#: ../gui/wxpython/dbmgr/base.py:1698 +#: ../gui/wxpython/dbmgr/base.py:1707 #, python-format msgid "" "Unable to insert new record.\n" "%s" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:1749 +#: ../gui/wxpython/dbmgr/base.py:1758 #, python-format msgid "Selected data records (%d) will be permanently deleted from table. Do you want to delete them?" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:1753 ../gui/wxpython/dbmgr/base.py:1803 +#: ../gui/wxpython/dbmgr/base.py:1762 ../gui/wxpython/dbmgr/base.py:1812 msgid "Delete records" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:1799 +#: ../gui/wxpython/dbmgr/base.py:1808 #, python-format msgid "All data records (%d) will be permanently deleted from table. Do you want to delete them?" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:1992 +#: ../gui/wxpython/dbmgr/base.py:2001 msgid "Nothing to extract." msgstr "" -#: ../gui/wxpython/dbmgr/base.py:2032 +#: ../gui/wxpython/dbmgr/base.py:2041 msgid "Nothing to delete." msgstr "" -#: ../gui/wxpython/dbmgr/base.py:2111 ../gui/wxpython/dbmgr/base.py:2147 +#: ../gui/wxpython/dbmgr/base.py:2120 ../gui/wxpython/dbmgr/base.py:2156 #, python-format msgid "" "Loading attribute data failed.\n" @@ -2137,7 +2117,7 @@ msgid "" "%s" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:2127 +#: ../gui/wxpython/dbmgr/base.py:2136 #, python-format msgid "" "Loading attribute data failed.\n" @@ -2146,69 +2126,69 @@ msgid "" "%s" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:2344 ../gui/wxpython/dbmgr/sqlbuilder.py:107 +#: ../gui/wxpython/dbmgr/base.py:2353 ../gui/wxpython/dbmgr/sqlbuilder.py:105 msgid "Database connection" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:2361 +#: ../gui/wxpython/dbmgr/base.py:2370 #, python-format msgid "Table <%s> - right-click to delete column(s)" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:2386 ../gui/wxpython/dbmgr/base.py:2448 -#: ../gui/wxpython/dbmgr/dialogs.py:797 +#: ../gui/wxpython/dbmgr/base.py:2395 ../gui/wxpython/dbmgr/base.py:2457 +#: ../gui/wxpython/dbmgr/dialogs.py:802 msgid "Column" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:2404 ../gui/wxpython/dbmgr/dialogs.py:809 +#: ../gui/wxpython/dbmgr/base.py:2413 ../gui/wxpython/dbmgr/dialogs.py:814 #: ../gui/wxpython/gmodeler/preferences.py:289 msgid "Type" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:2418 ../gui/wxpython/dbmgr/dialogs.py:820 +#: ../gui/wxpython/dbmgr/base.py:2427 ../gui/wxpython/dbmgr/dialogs.py:825 msgid "Length" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:2434 +#: ../gui/wxpython/dbmgr/base.py:2443 msgid "Rename column" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:2470 ../gui/wxpython/gmodeler/dialogs.py:388 +#: ../gui/wxpython/dbmgr/base.py:2479 ../gui/wxpython/gmodeler/dialogs.py:388 msgid "To" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:2588 +#: ../gui/wxpython/dbmgr/base.py:2597 msgid "Unable to rename column. No column name defined." msgstr "" -#: ../gui/wxpython/dbmgr/base.py:2597 +#: ../gui/wxpython/dbmgr/base.py:2606 #, python-format msgid "Unable to rename column <%(column)s> to <%(columnTo)s>. Column already exists in the table <%(table)s>." msgstr "" -#: ../gui/wxpython/dbmgr/base.py:2620 +#: ../gui/wxpython/dbmgr/base.py:2629 #, python-format msgid "Unable to rename column. Column <%(column)s> doesn't exist in the table <%(table)s>." msgstr "" -#: ../gui/wxpython/dbmgr/base.py:2652 +#: ../gui/wxpython/dbmgr/base.py:2661 msgid "Drop selected column" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:2660 +#: ../gui/wxpython/dbmgr/base.py:2669 msgid "Drop all columns" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:2690 +#: ../gui/wxpython/dbmgr/base.py:2699 #, python-format msgid "Selected %s will PERMANENTLY removed from table. Do you want to drop the column?" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:2694 ../gui/wxpython/dbmgr/base.py:2743 +#: ../gui/wxpython/dbmgr/base.py:2703 ../gui/wxpython/dbmgr/base.py:2752 msgid "Drop column(s)" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:2739 +#: ../gui/wxpython/dbmgr/base.py:2748 #, python-format msgid "" "Selected columns\n" @@ -2216,158 +2196,158 @@ msgid "" "will PERMANENTLY removed from table. Do you want to drop the columns?" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:2861 +#: ../gui/wxpython/dbmgr/base.py:2870 msgid "List of layers" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:2940 ../gui/wxpython/dbmgr/base.py:3394 -#: ../gui/wxpython/dbmgr/base.py:3861 +#: ../gui/wxpython/dbmgr/base.py:2949 ../gui/wxpython/dbmgr/base.py:3403 +#: ../gui/wxpython/dbmgr/base.py:3870 #, python-format msgid "Drop also linked attribute table (%s)" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:2984 +#: ../gui/wxpython/dbmgr/base.py:2993 msgid "Column name" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:2984 +#: ../gui/wxpython/dbmgr/base.py:2993 msgid "Data length" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:2984 ../gui/wxpython/gmodeler/panels.py:1351 +#: ../gui/wxpython/dbmgr/base.py:2993 ../gui/wxpython/gmodeler/panels.py:1351 #: ../gui/wxpython/gmodeler/panels.py:1407 msgid "Data type" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:3042 ../gui/wxpython/dbmgr/base.py:3194 -#: ../gui/wxpython/dbmgr/base.py:3462 ../gui/wxpython/gui_core/gselect.py:1479 +#: ../gui/wxpython/dbmgr/base.py:3051 ../gui/wxpython/dbmgr/base.py:3203 +#: ../gui/wxpython/dbmgr/base.py:3471 ../gui/wxpython/gui_core/gselect.py:1483 msgid "Database" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:3042 ../gui/wxpython/dbmgr/base.py:3183 -#: ../gui/wxpython/dbmgr/base.py:3451 +#: ../gui/wxpython/dbmgr/base.py:3051 ../gui/wxpython/dbmgr/base.py:3192 +#: ../gui/wxpython/dbmgr/base.py:3460 msgid "Driver" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:3042 +#: ../gui/wxpython/dbmgr/base.py:3051 msgid "Key" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:3042 ../gui/wxpython/dbmgr/base.py:3170 -#: ../gui/wxpython/dbmgr/base.py:3439 ../gui/wxpython/dbmgr/dialogs.py:509 +#: ../gui/wxpython/dbmgr/base.py:3051 ../gui/wxpython/dbmgr/base.py:3179 +#: ../gui/wxpython/dbmgr/base.py:3448 ../gui/wxpython/dbmgr/dialogs.py:509 #: ../gui/wxpython/vdigit/dialogs.py:127 ../gui/wxpython/vdigit/dialogs.py:573 #: ../gui/wxpython/vdigit/preferences.py:529 msgid "Layer" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:3150 +#: ../gui/wxpython/dbmgr/base.py:3159 msgid "Add layer" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:3160 +#: ../gui/wxpython/dbmgr/base.py:3169 msgid "Layer description" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:3216 ../gui/wxpython/dbmgr/base.py:3279 -#: ../gui/wxpython/dbmgr/base.py:3485 +#: ../gui/wxpython/dbmgr/base.py:3225 ../gui/wxpython/dbmgr/base.py:3288 +#: ../gui/wxpython/dbmgr/base.py:3494 msgid "Key column" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:3229 +#: ../gui/wxpython/dbmgr/base.py:3238 msgid "Insert record for each category into table" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:3252 +#: ../gui/wxpython/dbmgr/base.py:3261 msgid "You need to add categories by v.category module." msgstr "" -#: ../gui/wxpython/dbmgr/base.py:3257 +#: ../gui/wxpython/dbmgr/base.py:3266 msgid "Table description" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:3268 +#: ../gui/wxpython/dbmgr/base.py:3277 msgid "Table name" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:3293 +#: ../gui/wxpython/dbmgr/base.py:3302 msgid "&Create table" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:3296 -#: ../gui/wxpython/web_services/dialogs.py:533 +#: ../gui/wxpython/dbmgr/base.py:3305 +#: ../gui/wxpython/web_services/dialogs.py:534 msgid "&Add layer" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:3299 +#: ../gui/wxpython/dbmgr/base.py:3308 msgid "&Set default" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:3368 +#: ../gui/wxpython/dbmgr/base.py:3377 msgid "Remove layer" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:3371 +#: ../gui/wxpython/dbmgr/base.py:3380 msgid "Layer to remove" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:3402 +#: ../gui/wxpython/dbmgr/base.py:3411 msgid "&Remove layer" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:3431 +#: ../gui/wxpython/dbmgr/base.py:3440 msgid "Modify layer" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:3534 +#: ../gui/wxpython/dbmgr/base.py:3543 msgid "&Modify layer" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:3577 +#: ../gui/wxpython/dbmgr/base.py:3586 msgid "" "Unable to get list of tables.\n" "Please use db.connect to set database parameters." msgstr "" -#: ../gui/wxpython/dbmgr/base.py:3683 +#: ../gui/wxpython/dbmgr/base.py:3692 msgid "Unable to create new table. Table name or key column name is missing." msgstr "" -#: ../gui/wxpython/dbmgr/base.py:3693 +#: ../gui/wxpython/dbmgr/base.py:3702 #, python-format msgid "Unable to create new table. Table <%s> already exists in the database." msgstr "" -#: ../gui/wxpython/dbmgr/base.py:3738 +#: ../gui/wxpython/dbmgr/base.py:3747 #, python-format msgid "Unable to add new layer to vector map <%(vector)s>. Layer %(layer)d already exists." msgstr "" -#: ../gui/wxpython/dbmgr/base.py:3926 +#: ../gui/wxpython/dbmgr/base.py:3935 msgid "Field statistics" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:3949 +#: ../gui/wxpython/dbmgr/base.py:3958 msgid "Copy statistics the clipboard (Ctrl+C)" msgstr "" -#: ../gui/wxpython/dbmgr/base.py:4010 +#: ../gui/wxpython/dbmgr/base.py:4019 msgid "Statistics is not support for DBF tables." msgstr "" -#: ../gui/wxpython/dbmgr/base.py:4038 +#: ../gui/wxpython/dbmgr/base.py:4096 msgid "Unable to calculate statistics." msgstr "" -#: ../gui/wxpython/dbmgr/base.py:4047 +#: ../gui/wxpython/dbmgr/base.py:4105 #, python-format msgid "Unable to calculate statistics. Invalid number of lines %d (should be %d)." msgstr "" -#: ../gui/wxpython/dbmgr/base.py:4074 +#: ../gui/wxpython/dbmgr/base.py:4132 msgid "Unable to calculate standard deviation." msgstr "" -#: ../gui/wxpython/dbmgr/base.py:4082 +#: ../gui/wxpython/dbmgr/base.py:4140 #, python-format msgid "Field statistics <%s>" msgstr "" @@ -2430,8 +2410,12 @@ msgstr "" msgid "Category" msgstr "" +#: ../gui/wxpython/dbmgr/dialogs.py:670 +msgid "YYYY-MM-DD" +msgstr "" + #: ../gui/wxpython/dbmgr/g.gui.dbmgr.py:48 -#: ../gui/wxpython/dbmgr/sqlbuilder.py:72 +#: ../gui/wxpython/dbmgr/sqlbuilder.py:70 #: ../gui/wxpython/iclass/g.gui.iclass.py:95 ../gui/wxpython/nviz/wxnviz.py:709 #, python-format msgid "Vector map <%s> not found" @@ -2443,7 +2427,7 @@ msgid "Loading attribute data for vector map <%s>..." msgstr "" #: ../gui/wxpython/dbmgr/g.gui.dbmgr.py:55 -msgid "Attribute Table Manager - GRASS GIS" +msgid "Attribute Table Manager - GRASS" msgstr "" #: ../gui/wxpython/dbmgr/manager.py:92 @@ -2455,120 +2439,120 @@ msgstr "" msgid "{document} (read-only)" msgstr "" -#: ../gui/wxpython/dbmgr/manager.py:114 +#: ../gui/wxpython/dbmgr/manager.py:112 #, python-format msgid "Database connection for vector map <%s> is not defined in DB file. You can define new connection in 'Manage layers' tab." msgstr "" -#: ../gui/wxpython/dbmgr/manager.py:123 +#: ../gui/wxpython/dbmgr/manager.py:121 msgid "Please wait, loading attribute data..." msgstr "" -#: ../gui/wxpython/dbmgr/manager.py:133 +#: ../gui/wxpython/dbmgr/manager.py:131 msgid "Browse data" msgstr "" -#: ../gui/wxpython/dbmgr/manager.py:139 +#: ../gui/wxpython/dbmgr/manager.py:137 msgid "Manage tables" msgstr "" -#: ../gui/wxpython/dbmgr/manager.py:144 +#: ../gui/wxpython/dbmgr/manager.py:142 msgid "Manage layers" msgstr "" -#: ../gui/wxpython/dbmgr/manager.py:155 +#: ../gui/wxpython/dbmgr/manager.py:153 msgid "Close Attribute Table Manager" msgstr "" -#: ../gui/wxpython/dbmgr/manager.py:157 +#: ../gui/wxpython/dbmgr/manager.py:155 msgid "Reload currently selected attribute data" msgstr "" -#: ../gui/wxpython/dbmgr/manager.py:160 +#: ../gui/wxpython/dbmgr/manager.py:158 msgid "Reload all attribute data (drop current selection)" msgstr "" -#: ../gui/wxpython/dbmgr/sqlbuilder.py:121 +#: ../gui/wxpython/dbmgr/sqlbuilder.py:119 msgid "Query" msgstr "" -#: ../gui/wxpython/dbmgr/sqlbuilder.py:141 +#: ../gui/wxpython/dbmgr/sqlbuilder.py:139 msgid "Set SQL statement to default" msgstr "" -#: ../gui/wxpython/dbmgr/sqlbuilder.py:143 +#: ../gui/wxpython/dbmgr/sqlbuilder.py:141 msgid "Apply SQL statement" msgstr "" -#: ../gui/wxpython/dbmgr/sqlbuilder.py:145 +#: ../gui/wxpython/dbmgr/sqlbuilder.py:143 msgid "Close the dialog" msgstr "" -#: ../gui/wxpython/dbmgr/sqlbuilder.py:221 +#: ../gui/wxpython/dbmgr/sqlbuilder.py:219 msgid "Columns" msgstr "" -#: ../gui/wxpython/dbmgr/sqlbuilder.py:238 +#: ../gui/wxpython/dbmgr/sqlbuilder.py:236 msgid "Interactive insertion" msgstr "" -#: ../gui/wxpython/dbmgr/sqlbuilder.py:252 +#: ../gui/wxpython/dbmgr/sqlbuilder.py:250 msgid "Values" msgstr "" -#: ../gui/wxpython/dbmgr/sqlbuilder.py:265 +#: ../gui/wxpython/dbmgr/sqlbuilder.py:263 msgid "Get all values" msgstr "" -#: ../gui/wxpython/dbmgr/sqlbuilder.py:269 +#: ../gui/wxpython/dbmgr/sqlbuilder.py:267 msgid "Get sample" msgstr "" -#: ../gui/wxpython/dbmgr/sqlbuilder.py:271 +#: ../gui/wxpython/dbmgr/sqlbuilder.py:269 msgid "Get first 256 unique values as sample" msgstr "" -#: ../gui/wxpython/dbmgr/sqlbuilder.py:286 +#: ../gui/wxpython/dbmgr/sqlbuilder.py:284 msgid "Go to:" msgstr "" -#: ../gui/wxpython/dbmgr/sqlbuilder.py:298 +#: ../gui/wxpython/dbmgr/sqlbuilder.py:296 msgid "Close dialog on apply" msgstr "" -#: ../gui/wxpython/dbmgr/sqlbuilder.py:473 -#: ../gui/wxpython/dbmgr/sqlbuilder.py:627 -#: ../gui/wxpython/dbmgr/sqlbuilder.py:877 +#: ../gui/wxpython/dbmgr/sqlbuilder.py:471 +#: ../gui/wxpython/dbmgr/sqlbuilder.py:625 +#: ../gui/wxpython/dbmgr/sqlbuilder.py:875 #, python-format msgid "GRASS SQL Builder (%(type)s) - <%(map)s>" msgstr "" -#: ../gui/wxpython/dbmgr/sqlbuilder.py:479 +#: ../gui/wxpython/dbmgr/sqlbuilder.py:477 msgid "Column to show (SELECT clause)" msgstr "" -#: ../gui/wxpython/dbmgr/sqlbuilder.py:480 -#: ../gui/wxpython/dbmgr/sqlbuilder.py:634 +#: ../gui/wxpython/dbmgr/sqlbuilder.py:478 +#: ../gui/wxpython/dbmgr/sqlbuilder.py:632 msgid "Constraint for query (WHERE clause)" msgstr "" -#: ../gui/wxpython/dbmgr/sqlbuilder.py:504 +#: ../gui/wxpython/dbmgr/sqlbuilder.py:502 msgid "Verify" msgstr "" -#: ../gui/wxpython/dbmgr/sqlbuilder.py:505 +#: ../gui/wxpython/dbmgr/sqlbuilder.py:503 msgid "Verify SQL statement" msgstr "" -#: ../gui/wxpython/dbmgr/sqlbuilder.py:513 +#: ../gui/wxpython/dbmgr/sqlbuilder.py:511 msgid "SQL statement not verified" msgstr "" -#: ../gui/wxpython/dbmgr/sqlbuilder.py:559 +#: ../gui/wxpython/dbmgr/sqlbuilder.py:557 msgid "SQL statement is not valid" msgstr "" -#: ../gui/wxpython/dbmgr/sqlbuilder.py:560 +#: ../gui/wxpython/dbmgr/sqlbuilder.py:558 #, python-format msgid "" "SQL statement is not valid.\n" @@ -2576,31 +2560,31 @@ msgid "" "%s" msgstr "" -#: ../gui/wxpython/dbmgr/sqlbuilder.py:562 +#: ../gui/wxpython/dbmgr/sqlbuilder.py:560 msgid "SQL statement is valid" msgstr "" -#: ../gui/wxpython/dbmgr/sqlbuilder.py:633 +#: ../gui/wxpython/dbmgr/sqlbuilder.py:631 msgid "Column to set (SET clause)" msgstr "" -#: ../gui/wxpython/dbmgr/sqlbuilder.py:635 +#: ../gui/wxpython/dbmgr/sqlbuilder.py:633 msgid "Calculate column value to set" msgstr "" -#: ../gui/wxpython/dbmgr/sqlbuilder.py:723 +#: ../gui/wxpython/dbmgr/sqlbuilder.py:721 msgid "Functions" msgstr "" -#: ../gui/wxpython/dbmgr/sqlbuilder.py:760 +#: ../gui/wxpython/dbmgr/sqlbuilder.py:758 msgid "SQL statement was not applied" msgstr "" -#: ../gui/wxpython/dbmgr/sqlbuilder.py:762 +#: ../gui/wxpython/dbmgr/sqlbuilder.py:760 msgid "SQL statement applied" msgstr "" -#: ../gui/wxpython/dbmgr/sqlbuilder.py:795 +#: ../gui/wxpython/dbmgr/sqlbuilder.py:793 msgid "Dbf driver does not support usage of SQL functions." msgstr "" @@ -2651,17 +2635,17 @@ msgid "Select source mapset:" msgstr "" #: ../gui/wxpython/gcp/manager.py:490 -#: ../gui/wxpython/image2target/ii2t_manager.py:512 +#: ../gui/wxpython/image2target/ii2t_manager.py:511 msgid "You must select a valid location before selecting a mapset" msgstr "" #: ../gui/wxpython/gcp/manager.py:503 -#: ../gui/wxpython/image2target/ii2t_manager.py:525 +#: ../gui/wxpython/image2target/ii2t_manager.py:524 msgid "You must select a valid location and mapset in order to continue" msgstr "" #: ../gui/wxpython/gcp/manager.py:524 -#: ../gui/wxpython/image2target/ii2t_manager.py:546 +#: ../gui/wxpython/image2target/ii2t_manager.py:545 msgid "Select image/map group to georectify" msgstr "" @@ -2670,24 +2654,24 @@ msgid "Select/create group:" msgstr "" #: ../gui/wxpython/gcp/manager.py:565 -#: ../gui/wxpython/image2target/ii2t_manager.py:587 +#: ../gui/wxpython/image2target/ii2t_manager.py:586 msgid "Create group if none exists" msgstr "" #: ../gui/wxpython/gcp/manager.py:573 ../gui/wxpython/iclass/dialogs.py:92 -#: ../gui/wxpython/image2target/ii2t_manager.py:595 +#: ../gui/wxpython/image2target/ii2t_manager.py:594 msgid "Create/edit group..." msgstr "" #: ../gui/wxpython/gcp/manager.py:576 -#: ../gui/wxpython/image2target/ii2t_manager.py:598 +#: ../gui/wxpython/image2target/ii2t_manager.py:597 msgid "Add vector map to group..." msgstr "" -#: ../gui/wxpython/gcp/manager.py:592 ../gui/wxpython/gcp/manager.py:3192 -#: ../gui/wxpython/image2target/ii2t_manager.py:614 -#: ../gui/wxpython/image2target/ii2t_manager.py:3152 -#: ../gui/wxpython/photo2image/ip2i_manager.py:2284 +#: ../gui/wxpython/gcp/manager.py:592 ../gui/wxpython/gcp/manager.py:3189 +#: ../gui/wxpython/image2target/ii2t_manager.py:613 +#: ../gui/wxpython/image2target/ii2t_manager.py:3149 +#: ../gui/wxpython/photo2image/ip2i_manager.py:2283 msgid "Extension for output maps:" msgstr "" @@ -2696,17 +2680,17 @@ msgid "No vector maps." msgstr "" #: ../gui/wxpython/gcp/manager.py:674 -#: ../gui/wxpython/image2target/ii2t_manager.py:683 +#: ../gui/wxpython/image2target/ii2t_manager.py:682 msgid "You must select a valid image/map group in order to continue" msgstr "" #: ../gui/wxpython/gcp/manager.py:682 -#: ../gui/wxpython/image2target/ii2t_manager.py:691 +#: ../gui/wxpython/image2target/ii2t_manager.py:690 msgid "You must enter an map name extension in order to continue" msgstr "" #: ../gui/wxpython/gcp/manager.py:743 -#: ../gui/wxpython/image2target/ii2t_manager.py:752 +#: ../gui/wxpython/image2target/ii2t_manager.py:751 msgid "Select maps to display for ground control point (GCP) creation" msgstr "" @@ -2714,34 +2698,34 @@ msgstr "" msgid "Map Display Web Service Layer(s)" msgstr "" -#: ../gui/wxpython/gcp/manager.py:755 ../gui/wxpython/gcp/manager.py:3085 -#: ../gui/wxpython/image2target/ii2t_manager.py:763 -#: ../gui/wxpython/image2target/ii2t_manager.py:3046 -#: ../gui/wxpython/photo2image/ip2i_manager.py:2196 +#: ../gui/wxpython/gcp/manager.py:755 ../gui/wxpython/gcp/manager.py:3082 +#: ../gui/wxpython/image2target/ii2t_manager.py:762 +#: ../gui/wxpython/image2target/ii2t_manager.py:3043 +#: ../gui/wxpython/photo2image/ip2i_manager.py:2195 msgid "Select source map to display:" msgstr "" -#: ../gui/wxpython/gcp/manager.py:781 ../gui/wxpython/gcp/manager.py:3099 -#: ../gui/wxpython/image2target/ii2t_manager.py:789 -#: ../gui/wxpython/image2target/ii2t_manager.py:3063 -#: ../gui/wxpython/photo2image/ip2i_manager.py:2213 +#: ../gui/wxpython/gcp/manager.py:781 ../gui/wxpython/gcp/manager.py:3096 +#: ../gui/wxpython/image2target/ii2t_manager.py:788 +#: ../gui/wxpython/image2target/ii2t_manager.py:3060 +#: ../gui/wxpython/photo2image/ip2i_manager.py:2212 msgid "Select target raster map to display:" msgstr "" -#: ../gui/wxpython/gcp/manager.py:808 ../gui/wxpython/gcp/manager.py:3113 -#: ../gui/wxpython/image2target/ii2t_manager.py:815 -#: ../gui/wxpython/image2target/ii2t_manager.py:3080 +#: ../gui/wxpython/gcp/manager.py:808 ../gui/wxpython/gcp/manager.py:3110 +#: ../gui/wxpython/image2target/ii2t_manager.py:814 +#: ../gui/wxpython/image2target/ii2t_manager.py:3077 msgid "Select target vector map to display:" msgstr "" #: ../gui/wxpython/gcp/manager.py:868 -#: ../gui/wxpython/image2target/ii2t_manager.py:875 +#: ../gui/wxpython/image2target/ii2t_manager.py:874 msgid "You must select a source map in order to continue" msgstr "" #: ../gui/wxpython/gcp/manager.py:893 ../gui/wxpython/gcp/manager.py:918 -#: ../gui/wxpython/image2target/ii2t_manager.py:900 -#: ../gui/wxpython/image2target/ii2t_manager.py:934 +#: ../gui/wxpython/image2target/ii2t_manager.py:899 +#: ../gui/wxpython/image2target/ii2t_manager.py:933 #, python-format msgid "" "No maps in selected group <%s>.\n" @@ -2749,42 +2733,42 @@ msgid "" msgstr "" #: ../gui/wxpython/gcp/manager.py:995 ../gui/wxpython/gcp/mapdisplay.py:50 -#: ../gui/wxpython/image2target/ii2t_manager.py:971 +#: ../gui/wxpython/image2target/ii2t_manager.py:970 msgid "Manage Ground Control Points" msgstr "" #: ../gui/wxpython/gcp/manager.py:1287 -#: ../gui/wxpython/image2target/ii2t_manager.py:1273 -#: ../gui/wxpython/photo2image/ip2i_manager.py:669 +#: ../gui/wxpython/image2target/ii2t_manager.py:1272 +#: ../gui/wxpython/photo2image/ip2i_manager.py:670 #, python-format msgid "At least %d GCPs required. Operation canceled." msgstr "" #: ../gui/wxpython/gcp/manager.py:1431 ../gui/wxpython/gcp/toolbars.py:106 -#: ../gui/wxpython/image2target/ii2t_manager.py:1413 +#: ../gui/wxpython/image2target/ii2t_manager.py:1412 #: ../gui/wxpython/image2target/ii2t_toolbars.py:106 -#: ../gui/wxpython/photo2image/ip2i_manager.py:811 +#: ../gui/wxpython/photo2image/ip2i_manager.py:812 #: ../gui/wxpython/photo2image/ip2i_toolbars.py:106 msgid "source" msgstr "" #: ../gui/wxpython/gcp/manager.py:1433 ../gui/wxpython/gcp/toolbars.py:106 -#: ../gui/wxpython/image2target/ii2t_manager.py:1415 +#: ../gui/wxpython/image2target/ii2t_manager.py:1414 #: ../gui/wxpython/image2target/ii2t_toolbars.py:106 -#: ../gui/wxpython/photo2image/ip2i_manager.py:813 +#: ../gui/wxpython/photo2image/ip2i_manager.py:814 #: ../gui/wxpython/photo2image/ip2i_toolbars.py:106 msgid "target" msgstr "" #: ../gui/wxpython/gcp/manager.py:1436 -#: ../gui/wxpython/image2target/ii2t_manager.py:1418 -#: ../gui/wxpython/photo2image/ip2i_manager.py:816 +#: ../gui/wxpython/image2target/ii2t_manager.py:1417 +#: ../gui/wxpython/photo2image/ip2i_manager.py:817 msgid "Set GCP coordinates" msgstr "" #: ../gui/wxpython/gcp/manager.py:1438 -#: ../gui/wxpython/image2target/ii2t_manager.py:1420 -#: ../gui/wxpython/photo2image/ip2i_manager.py:818 +#: ../gui/wxpython/image2target/ii2t_manager.py:1419 +#: ../gui/wxpython/photo2image/ip2i_manager.py:819 #, python-format msgid "" "Set %(coor)s coordinates for GCP No. %(key)s? \n" @@ -2794,37 +2778,37 @@ msgid "" msgstr "" #: ../gui/wxpython/gcp/manager.py:1524 -#: ../gui/wxpython/photo2image/ip2i_manager.py:486 -#: ../gui/wxpython/photo2image/ip2i_manager.py:903 +#: ../gui/wxpython/photo2image/ip2i_manager.py:487 +#: ../gui/wxpython/photo2image/ip2i_manager.py:904 msgid "Writing POINTS file failed" msgstr "" #: ../gui/wxpython/gcp/manager.py:1535 -#: ../gui/wxpython/photo2image/ip2i_manager.py:915 +#: ../gui/wxpython/photo2image/ip2i_manager.py:916 #, python-format msgid "POINTS file saved for group <%s>" msgstr "" #: ../gui/wxpython/gcp/manager.py:1549 -#: ../gui/wxpython/image2target/ii2t_manager.py:1574 -#: ../gui/wxpython/photo2image/ip2i_manager.py:929 +#: ../gui/wxpython/image2target/ii2t_manager.py:1573 +#: ../gui/wxpython/photo2image/ip2i_manager.py:930 msgid "source mapwin not defined" msgstr "" #: ../gui/wxpython/gcp/manager.py:1552 -#: ../gui/wxpython/image2target/ii2t_manager.py:1577 -#: ../gui/wxpython/photo2image/ip2i_manager.py:932 +#: ../gui/wxpython/image2target/ii2t_manager.py:1576 +#: ../gui/wxpython/photo2image/ip2i_manager.py:933 msgid "target mapwin not defined" msgstr "" #: ../gui/wxpython/gcp/manager.py:1581 -#: ../gui/wxpython/photo2image/ip2i_manager.py:961 +#: ../gui/wxpython/photo2image/ip2i_manager.py:962 msgid "Reading POINTS file failed" msgstr "" #: ../gui/wxpython/gcp/manager.py:1671 -#: ../gui/wxpython/image2target/ii2t_manager.py:1698 -#: ../gui/wxpython/photo2image/ip2i_manager.py:1051 +#: ../gui/wxpython/image2target/ii2t_manager.py:1697 +#: ../gui/wxpython/photo2image/ip2i_manager.py:1052 #, python-format msgid "" "Insufficient points defined and active (checked) for selected rectification method (order: %d).\n" @@ -2839,357 +2823,357 @@ msgid "The {map_type} map {map_name} exists. Do you want to overwrite?" msgstr "" #: ../gui/wxpython/gcp/manager.py:1769 -#: ../gui/wxpython/image2target/ii2t_manager.py:1725 -#: ../gui/wxpython/photo2image/ip2i_manager.py:1079 +#: ../gui/wxpython/image2target/ii2t_manager.py:1724 +#: ../gui/wxpython/photo2image/ip2i_manager.py:1080 msgid "Rectifying images, please wait..." msgstr "" #: ../gui/wxpython/gcp/manager.py:1819 -#: ../gui/wxpython/image2target/ii2t_manager.py:1762 +#: ../gui/wxpython/image2target/ii2t_manager.py:1761 #, python-format msgid "Transforming <%s>..." msgstr "" #: ../gui/wxpython/gcp/manager.py:1825 -#: ../gui/wxpython/image2target/ii2t_manager.py:1768 +#: ../gui/wxpython/image2target/ii2t_manager.py:1767 #, python-format msgid "Rectifying vector map <%s>, please wait..." msgstr "" #: ../gui/wxpython/gcp/manager.py:1860 -#: ../gui/wxpython/image2target/ii2t_manager.py:1802 +#: ../gui/wxpython/image2target/ii2t_manager.py:1801 #, python-format msgid "Georectification of vector map <%s> failed" msgstr "" #: ../gui/wxpython/gcp/manager.py:1869 -#: ../gui/wxpython/image2target/ii2t_manager.py:1811 -#: ../gui/wxpython/photo2image/ip2i_manager.py:1134 +#: ../gui/wxpython/image2target/ii2t_manager.py:1810 +#: ../gui/wxpython/photo2image/ip2i_manager.py:1135 msgid "GCP Manager settings" msgstr "" #: ../gui/wxpython/gcp/manager.py:1921 -#: ../gui/wxpython/image2target/ii2t_manager.py:1863 -#: ../gui/wxpython/photo2image/ip2i_manager.py:1180 +#: ../gui/wxpython/image2target/ii2t_manager.py:1862 +#: ../gui/wxpython/photo2image/ip2i_manager.py:1181 msgid "Quit GCP Manager" msgstr "" #: ../gui/wxpython/gcp/manager.py:1922 -#: ../gui/wxpython/image2target/ii2t_manager.py:1864 -#: ../gui/wxpython/photo2image/ip2i_manager.py:1181 +#: ../gui/wxpython/image2target/ii2t_manager.py:1863 +#: ../gui/wxpython/photo2image/ip2i_manager.py:1182 msgid "Save ground control points?" msgstr "" #: ../gui/wxpython/gcp/manager.py:2003 -#: ../gui/wxpython/photo2image/ip2i_manager.py:1260 +#: ../gui/wxpython/photo2image/ip2i_manager.py:1261 msgid "" "Could not calculate RMS Error.\n" "Possible error with m.transform." msgstr "" #: ../gui/wxpython/gcp/manager.py:2135 -#: ../gui/wxpython/photo2image/ip2i_manager.py:1392 +#: ../gui/wxpython/photo2image/ip2i_manager.py:1393 msgid "" "Could not calculate new extends.\n" "Possible error with m.transform." msgstr "" #: ../gui/wxpython/gcp/manager.py:2264 -#: ../gui/wxpython/image2target/ii2t_manager.py:2206 -#: ../gui/wxpython/photo2image/ip2i_manager.py:1521 +#: ../gui/wxpython/image2target/ii2t_manager.py:2205 +#: ../gui/wxpython/photo2image/ip2i_manager.py:1522 msgid "Adjust source display to target display" msgstr "" #: ../gui/wxpython/gcp/manager.py:2270 -#: ../gui/wxpython/image2target/ii2t_manager.py:2212 -#: ../gui/wxpython/photo2image/ip2i_manager.py:1527 +#: ../gui/wxpython/image2target/ii2t_manager.py:2211 +#: ../gui/wxpython/photo2image/ip2i_manager.py:1528 msgid "Adjust target display to source display" msgstr "" -#: ../gui/wxpython/gcp/manager.py:2380 ../gui/wxpython/gcp/manager.py:2399 -#: ../gui/wxpython/image2target/ii2t_manager.py:2322 -#: ../gui/wxpython/image2target/ii2t_manager.py:2343 -#: ../gui/wxpython/photo2image/ip2i_manager.py:1638 -#: ../gui/wxpython/photo2image/ip2i_manager.py:1657 +#: ../gui/wxpython/gcp/manager.py:2378 ../gui/wxpython/gcp/manager.py:2397 +#: ../gui/wxpython/image2target/ii2t_manager.py:2319 +#: ../gui/wxpython/image2target/ii2t_manager.py:2340 +#: ../gui/wxpython/photo2image/ip2i_manager.py:1637 +#: ../gui/wxpython/photo2image/ip2i_manager.py:1656 #: ../gui/wxpython/vnet/vnet_data.py:252 ../gui/wxpython/vnet/widgets.py:101 msgid "use" msgstr "" +#: ../gui/wxpython/gcp/manager.py:2379 ../gui/wxpython/gcp/manager.py:2398 +#: ../gui/wxpython/image2target/ii2t_manager.py:2320 +#: ../gui/wxpython/image2target/ii2t_manager.py:2341 +msgid "source E" +msgstr "" + +#: ../gui/wxpython/gcp/manager.py:2380 ../gui/wxpython/gcp/manager.py:2399 +#: ../gui/wxpython/image2target/ii2t_manager.py:2321 +#: ../gui/wxpython/image2target/ii2t_manager.py:2342 +msgid "source N" +msgstr "" + #: ../gui/wxpython/gcp/manager.py:2381 ../gui/wxpython/gcp/manager.py:2400 #: ../gui/wxpython/image2target/ii2t_manager.py:2323 #: ../gui/wxpython/image2target/ii2t_manager.py:2344 -msgid "source E" +msgid "target E" msgstr "" #: ../gui/wxpython/gcp/manager.py:2382 ../gui/wxpython/gcp/manager.py:2401 #: ../gui/wxpython/image2target/ii2t_manager.py:2324 #: ../gui/wxpython/image2target/ii2t_manager.py:2345 -msgid "source N" +msgid "target N" msgstr "" #: ../gui/wxpython/gcp/manager.py:2383 ../gui/wxpython/gcp/manager.py:2402 #: ../gui/wxpython/image2target/ii2t_manager.py:2326 #: ../gui/wxpython/image2target/ii2t_manager.py:2347 -msgid "target E" +#: ../gui/wxpython/photo2image/ip2i_manager.py:1642 +#: ../gui/wxpython/photo2image/ip2i_manager.py:1661 +msgid "Forward error" msgstr "" #: ../gui/wxpython/gcp/manager.py:2384 ../gui/wxpython/gcp/manager.py:2403 #: ../gui/wxpython/image2target/ii2t_manager.py:2327 #: ../gui/wxpython/image2target/ii2t_manager.py:2348 -msgid "target N" -msgstr "" - -#: ../gui/wxpython/gcp/manager.py:2385 ../gui/wxpython/gcp/manager.py:2404 -#: ../gui/wxpython/image2target/ii2t_manager.py:2329 -#: ../gui/wxpython/image2target/ii2t_manager.py:2350 #: ../gui/wxpython/photo2image/ip2i_manager.py:1643 #: ../gui/wxpython/photo2image/ip2i_manager.py:1662 -msgid "Forward error" -msgstr "" - -#: ../gui/wxpython/gcp/manager.py:2386 ../gui/wxpython/gcp/manager.py:2405 -#: ../gui/wxpython/image2target/ii2t_manager.py:2330 -#: ../gui/wxpython/image2target/ii2t_manager.py:2351 -#: ../gui/wxpython/photo2image/ip2i_manager.py:1644 -#: ../gui/wxpython/photo2image/ip2i_manager.py:1663 msgid "Backward error" msgstr "" -#: ../gui/wxpython/gcp/manager.py:2540 -#: ../gui/wxpython/image2target/ii2t_manager.py:2488 -#: ../gui/wxpython/photo2image/ip2i_manager.py:1798 +#: ../gui/wxpython/gcp/manager.py:2538 +#: ../gui/wxpython/image2target/ii2t_manager.py:2485 +#: ../gui/wxpython/photo2image/ip2i_manager.py:1797 msgid "Invalid coordinate value. Operation canceled." msgstr "" -#: ../gui/wxpython/gcp/manager.py:2597 -#: ../gui/wxpython/image2target/ii2t_manager.py:2547 +#: ../gui/wxpython/gcp/manager.py:2595 +#: ../gui/wxpython/image2target/ii2t_manager.py:2544 msgid "Create vector map group" msgstr "" -#: ../gui/wxpython/gcp/manager.py:2665 -#: ../gui/wxpython/image2target/ii2t_manager.py:2625 +#: ../gui/wxpython/gcp/manager.py:2663 +#: ../gui/wxpython/image2target/ii2t_manager.py:2622 msgid "Select vector map(s) to add to group:" msgstr "" -#: ../gui/wxpython/gcp/manager.py:2724 -#: ../gui/wxpython/image2target/ii2t_manager.py:2679 -#: ../gui/wxpython/photo2image/ip2i_manager.py:1844 +#: ../gui/wxpython/gcp/manager.py:2721 +#: ../gui/wxpython/image2target/ii2t_manager.py:2676 +#: ../gui/wxpython/photo2image/ip2i_manager.py:1843 msgid "Edit GCP" msgstr "" -#: ../gui/wxpython/gcp/manager.py:2738 -#: ../gui/wxpython/image2target/ii2t_manager.py:2693 -#: ../gui/wxpython/photo2image/ip2i_manager.py:1858 +#: ../gui/wxpython/gcp/manager.py:2735 +#: ../gui/wxpython/image2target/ii2t_manager.py:2690 +#: ../gui/wxpython/photo2image/ip2i_manager.py:1857 msgid "Ground Control Point No." msgstr "" -#: ../gui/wxpython/gcp/manager.py:2759 -#: ../gui/wxpython/image2target/ii2t_manager.py:2715 +#: ../gui/wxpython/gcp/manager.py:2756 +#: ../gui/wxpython/image2target/ii2t_manager.py:2712 msgid "source E:" msgstr "" -#: ../gui/wxpython/gcp/manager.py:2760 -#: ../gui/wxpython/image2target/ii2t_manager.py:2716 +#: ../gui/wxpython/gcp/manager.py:2757 +#: ../gui/wxpython/image2target/ii2t_manager.py:2713 msgid "target E:" msgstr "" -#: ../gui/wxpython/gcp/manager.py:2761 -#: ../gui/wxpython/image2target/ii2t_manager.py:2717 +#: ../gui/wxpython/gcp/manager.py:2758 +#: ../gui/wxpython/image2target/ii2t_manager.py:2714 msgid "source N:" msgstr "" -#: ../gui/wxpython/gcp/manager.py:2762 -#: ../gui/wxpython/image2target/ii2t_manager.py:2718 +#: ../gui/wxpython/gcp/manager.py:2759 +#: ../gui/wxpython/image2target/ii2t_manager.py:2715 msgid "target N:" msgstr "" -#: ../gui/wxpython/gcp/manager.py:2872 -#: ../gui/wxpython/image2target/ii2t_manager.py:2834 +#: ../gui/wxpython/gcp/manager.py:2869 +#: ../gui/wxpython/image2target/ii2t_manager.py:2831 #: ../gui/wxpython/iscatt/dialogs.py:402 -#: ../gui/wxpython/photo2image/ip2i_manager.py:1992 +#: ../gui/wxpython/photo2image/ip2i_manager.py:1991 #: ../gui/wxpython/vnet/dialogs.py:1322 ../gui/wxpython/wxplot/dialogs.py:807 #: ../gui/wxpython/wxplot/dialogs.py:1319 msgid "Apply changes for the current session" msgstr "" -#: ../gui/wxpython/gcp/manager.py:2876 +#: ../gui/wxpython/gcp/manager.py:2873 #: ../gui/wxpython/gui_core/preferences.py:118 -#: ../gui/wxpython/image2target/ii2t_manager.py:2838 +#: ../gui/wxpython/image2target/ii2t_manager.py:2835 #: ../gui/wxpython/iscatt/dialogs.py:406 -#: ../gui/wxpython/photo2image/ip2i_manager.py:1996 +#: ../gui/wxpython/photo2image/ip2i_manager.py:1995 #: ../gui/wxpython/vnet/dialogs.py:1326 ../gui/wxpython/wxplot/dialogs.py:814 #: ../gui/wxpython/wxplot/dialogs.py:1323 msgid "Apply and save changes to user settings file (default for next sessions)" msgstr "" -#: ../gui/wxpython/gcp/manager.py:2881 -#: ../gui/wxpython/image2target/ii2t_manager.py:2843 +#: ../gui/wxpython/gcp/manager.py:2878 +#: ../gui/wxpython/image2target/ii2t_manager.py:2840 #: ../gui/wxpython/iscatt/dialogs.py:411 #: ../gui/wxpython/modules/import_export.py:129 -#: ../gui/wxpython/modules/import_export.py:760 -#: ../gui/wxpython/photo2image/ip2i_manager.py:2001 +#: ../gui/wxpython/modules/import_export.py:762 +#: ../gui/wxpython/photo2image/ip2i_manager.py:2000 #: ../gui/wxpython/vnet/dialogs.py:1331 -#: ../gui/wxpython/web_services/dialogs.py:152 -#: ../gui/wxpython/web_services/dialogs.py:906 +#: ../gui/wxpython/web_services/dialogs.py:153 +#: ../gui/wxpython/web_services/dialogs.py:907 msgid "Close dialog" msgstr "" -#: ../gui/wxpython/gcp/manager.py:2902 -#: ../gui/wxpython/image2target/ii2t_manager.py:2864 -#: ../gui/wxpython/photo2image/ip2i_manager.py:2022 +#: ../gui/wxpython/gcp/manager.py:2899 +#: ../gui/wxpython/image2target/ii2t_manager.py:2861 +#: ../gui/wxpython/photo2image/ip2i_manager.py:2021 #: ../gui/wxpython/psmap/dialogs.py:2726 #: ../gui/wxpython/vdigit/preferences.py:84 msgid "Symbology" msgstr "" -#: ../gui/wxpython/gcp/manager.py:2910 -#: ../gui/wxpython/image2target/ii2t_manager.py:2872 -#: ../gui/wxpython/photo2image/ip2i_manager.py:2030 +#: ../gui/wxpython/gcp/manager.py:2907 +#: ../gui/wxpython/image2target/ii2t_manager.py:2869 +#: ../gui/wxpython/photo2image/ip2i_manager.py:2029 msgid "Highlight highest RMS error only" msgstr "" -#: ../gui/wxpython/gcp/manager.py:2922 -#: ../gui/wxpython/image2target/ii2t_manager.py:2884 -#: ../gui/wxpython/photo2image/ip2i_manager.py:2042 +#: ../gui/wxpython/gcp/manager.py:2919 +#: ../gui/wxpython/image2target/ii2t_manager.py:2881 +#: ../gui/wxpython/photo2image/ip2i_manager.py:2041 msgid "Highlight RMS error > M + SD * factor:" msgstr "" -#: ../gui/wxpython/gcp/manager.py:2926 -#: ../gui/wxpython/image2target/ii2t_manager.py:2888 -#: ../gui/wxpython/photo2image/ip2i_manager.py:2047 +#: ../gui/wxpython/gcp/manager.py:2923 +#: ../gui/wxpython/image2target/ii2t_manager.py:2885 +#: ../gui/wxpython/photo2image/ip2i_manager.py:2046 msgid "" "Highlight GCPs with an RMS error larger than \n" "mean + standard deviation * given factor. \n" "Recommended values for this factor are between 1 and 2." msgstr "" -#: ../gui/wxpython/gcp/manager.py:2945 -#: ../gui/wxpython/image2target/ii2t_manager.py:2907 -#: ../gui/wxpython/photo2image/ip2i_manager.py:2067 +#: ../gui/wxpython/gcp/manager.py:2942 +#: ../gui/wxpython/image2target/ii2t_manager.py:2904 +#: ../gui/wxpython/photo2image/ip2i_manager.py:2066 msgid "Symbol settings" msgstr "" -#: ../gui/wxpython/gcp/manager.py:2953 +#: ../gui/wxpython/gcp/manager.py:2950 #: ../gui/wxpython/gui_core/preferences.py:1625 -#: ../gui/wxpython/image2target/ii2t_manager.py:2915 +#: ../gui/wxpython/image2target/ii2t_manager.py:2912 #: ../gui/wxpython/mapswipe/dialogs.py:290 -#: ../gui/wxpython/nviz/preferences.py:412 -#: ../gui/wxpython/nviz/preferences.py:585 -#: ../gui/wxpython/nviz/preferences.py:667 ../gui/wxpython/nviz/tools.py:1501 -#: ../gui/wxpython/nviz/tools.py:2243 ../gui/wxpython/nviz/tools.py:2406 -#: ../gui/wxpython/photo2image/ip2i_manager.py:2075 +#: ../gui/wxpython/nviz/preferences.py:410 +#: ../gui/wxpython/nviz/preferences.py:583 +#: ../gui/wxpython/nviz/preferences.py:665 ../gui/wxpython/nviz/tools.py:1500 +#: ../gui/wxpython/nviz/tools.py:2242 ../gui/wxpython/nviz/tools.py:2405 +#: ../gui/wxpython/photo2image/ip2i_manager.py:2074 #: ../gui/wxpython/psmap/dialogs.py:2464 ../gui/wxpython/psmap/dialogs.py:2615 msgid "Color:" msgstr "" -#: ../gui/wxpython/gcp/manager.py:2967 -#: ../gui/wxpython/image2target/ii2t_manager.py:2929 -#: ../gui/wxpython/photo2image/ip2i_manager.py:2089 +#: ../gui/wxpython/gcp/manager.py:2964 +#: ../gui/wxpython/image2target/ii2t_manager.py:2926 +#: ../gui/wxpython/photo2image/ip2i_manager.py:2088 msgid "Color for high RMS error:" msgstr "" -#: ../gui/wxpython/gcp/manager.py:2982 -#: ../gui/wxpython/image2target/ii2t_manager.py:2944 -#: ../gui/wxpython/photo2image/ip2i_manager.py:2104 +#: ../gui/wxpython/gcp/manager.py:2979 +#: ../gui/wxpython/image2target/ii2t_manager.py:2941 +#: ../gui/wxpython/photo2image/ip2i_manager.py:2103 msgid "Color for selected GCP:" msgstr "" -#: ../gui/wxpython/gcp/manager.py:2997 -#: ../gui/wxpython/image2target/ii2t_manager.py:2959 -#: ../gui/wxpython/photo2image/ip2i_manager.py:2119 +#: ../gui/wxpython/gcp/manager.py:2994 +#: ../gui/wxpython/image2target/ii2t_manager.py:2956 +#: ../gui/wxpython/photo2image/ip2i_manager.py:2118 msgid "Color for unused GCPs:" msgstr "" -#: ../gui/wxpython/gcp/manager.py:3010 -#: ../gui/wxpython/image2target/ii2t_manager.py:2972 -#: ../gui/wxpython/photo2image/ip2i_manager.py:2132 +#: ../gui/wxpython/gcp/manager.py:3007 +#: ../gui/wxpython/image2target/ii2t_manager.py:2969 +#: ../gui/wxpython/photo2image/ip2i_manager.py:2131 msgid "Show unused GCPs" msgstr "" -#: ../gui/wxpython/gcp/manager.py:3020 +#: ../gui/wxpython/gcp/manager.py:3017 #: ../gui/wxpython/gui_core/preferences.py:1548 -#: ../gui/wxpython/image2target/ii2t_manager.py:2982 -#: ../gui/wxpython/photo2image/ip2i_manager.py:2142 +#: ../gui/wxpython/image2target/ii2t_manager.py:2979 +#: ../gui/wxpython/photo2image/ip2i_manager.py:2141 msgid "Symbol size:" msgstr "" -#: ../gui/wxpython/gcp/manager.py:3032 +#: ../gui/wxpython/gcp/manager.py:3029 #: ../gui/wxpython/gui_core/preferences.py:1515 -#: ../gui/wxpython/image2target/ii2t_manager.py:2994 +#: ../gui/wxpython/image2target/ii2t_manager.py:2991 #: ../gui/wxpython/mapswipe/dialogs.py:335 -#: ../gui/wxpython/photo2image/ip2i_manager.py:2154 +#: ../gui/wxpython/photo2image/ip2i_manager.py:2153 #: ../gui/wxpython/psmap/dialogs.py:6634 ../gui/wxpython/vnet/dialogs.py:1301 msgid "Line width:" msgstr "" -#: ../gui/wxpython/gcp/manager.py:3139 -#: ../gui/wxpython/image2target/ii2t_manager.py:3109 -#: ../gui/wxpython/photo2image/ip2i_manager.py:2241 +#: ../gui/wxpython/gcp/manager.py:3136 +#: ../gui/wxpython/image2target/ii2t_manager.py:3106 +#: ../gui/wxpython/photo2image/ip2i_manager.py:2240 msgid "Rectification" msgstr "" -#: ../gui/wxpython/gcp/manager.py:3147 -#: ../gui/wxpython/image2target/ii2t_manager.py:3117 -#: ../gui/wxpython/photo2image/ip2i_manager.py:2249 +#: ../gui/wxpython/gcp/manager.py:3144 +#: ../gui/wxpython/image2target/ii2t_manager.py:3114 +#: ../gui/wxpython/photo2image/ip2i_manager.py:2248 msgid "Select rectification order" msgstr "" -#: ../gui/wxpython/gcp/manager.py:3148 -#: ../gui/wxpython/image2target/ii2t_manager.py:3118 -#: ../gui/wxpython/photo2image/ip2i_manager.py:2250 +#: ../gui/wxpython/gcp/manager.py:3145 +#: ../gui/wxpython/image2target/ii2t_manager.py:3115 +#: ../gui/wxpython/photo2image/ip2i_manager.py:2249 msgid "1st order" msgstr "" -#: ../gui/wxpython/gcp/manager.py:3148 -#: ../gui/wxpython/image2target/ii2t_manager.py:3118 -#: ../gui/wxpython/photo2image/ip2i_manager.py:2250 +#: ../gui/wxpython/gcp/manager.py:3145 +#: ../gui/wxpython/image2target/ii2t_manager.py:3115 +#: ../gui/wxpython/photo2image/ip2i_manager.py:2249 msgid "2nd order" msgstr "" -#: ../gui/wxpython/gcp/manager.py:3148 -#: ../gui/wxpython/image2target/ii2t_manager.py:3118 -#: ../gui/wxpython/photo2image/ip2i_manager.py:2250 +#: ../gui/wxpython/gcp/manager.py:3145 +#: ../gui/wxpython/image2target/ii2t_manager.py:3115 +#: ../gui/wxpython/photo2image/ip2i_manager.py:2249 msgid "3rd order" msgstr "" -#: ../gui/wxpython/gcp/manager.py:3158 -#: ../gui/wxpython/image2target/ii2t_manager.py:3128 -#: ../gui/wxpython/photo2image/ip2i_manager.py:2260 +#: ../gui/wxpython/gcp/manager.py:3155 +#: ../gui/wxpython/image2target/ii2t_manager.py:3125 +#: ../gui/wxpython/photo2image/ip2i_manager.py:2259 msgid "Select interpolation method:" msgstr "" -#: ../gui/wxpython/gcp/manager.py:3174 -#: ../gui/wxpython/image2target/ii2t_manager.py:3144 -#: ../gui/wxpython/photo2image/ip2i_manager.py:2276 +#: ../gui/wxpython/gcp/manager.py:3171 +#: ../gui/wxpython/image2target/ii2t_manager.py:3141 +#: ../gui/wxpython/photo2image/ip2i_manager.py:2275 msgid "clip to computational region in target location" msgstr "" -#: ../gui/wxpython/gcp/manager.py:3182 +#: ../gui/wxpython/gcp/manager.py:3179 msgid "overwrite result map" msgstr "" -#: ../gui/wxpython/gcp/manager.py:3228 -#: ../gui/wxpython/image2target/ii2t_manager.py:3193 -#: ../gui/wxpython/photo2image/ip2i_manager.py:2325 +#: ../gui/wxpython/gcp/manager.py:3225 +#: ../gui/wxpython/image2target/ii2t_manager.py:3190 +#: ../gui/wxpython/photo2image/ip2i_manager.py:2324 msgid "RMS threshold factor must be > 0" msgstr "" -#: ../gui/wxpython/gcp/manager.py:3233 -#: ../gui/wxpython/image2target/ii2t_manager.py:3198 -#: ../gui/wxpython/photo2image/ip2i_manager.py:2330 +#: ../gui/wxpython/gcp/manager.py:3230 +#: ../gui/wxpython/image2target/ii2t_manager.py:3195 +#: ../gui/wxpython/photo2image/ip2i_manager.py:2329 msgid "" "RMS threshold factor is < 1\n" "Too many points might be highlighted" msgstr "" -#: ../gui/wxpython/gcp/manager.py:3471 -#: ../gui/wxpython/image2target/ii2t_manager.py:3405 -#: ../gui/wxpython/photo2image/ip2i_manager.py:2505 +#: ../gui/wxpython/gcp/manager.py:3468 +#: ../gui/wxpython/image2target/ii2t_manager.py:3402 +#: ../gui/wxpython/photo2image/ip2i_manager.py:2504 #, python-format msgid "GCP Manager settings saved to file '%s'." msgstr "" -#: ../gui/wxpython/gcp/mapdisplay.py:248 ../gui/wxpython/iclass/frame.py:326 +#: ../gui/wxpython/gcp/mapdisplay.py:248 ../gui/wxpython/iclass/frame.py:327 #: ../gui/wxpython/image2target/ii2t_mapdisplay.py:251 #: ../gui/wxpython/mapdisp/frame.py:618 ../gui/wxpython/mapswipe/frame.py:288 #: ../gui/wxpython/photo2image/ip2i_mapdisplay.py:243 @@ -3237,7 +3221,7 @@ msgstr "" #: ../gui/wxpython/gcp/mapdisplay.py:461 ../gui/wxpython/gmodeler/panels.py:994 #: ../gui/wxpython/image2target/ii2t_mapdisplay.py:451 #: ../gui/wxpython/mapdisp/frame.py:757 ../gui/wxpython/mapswipe/frame.py:612 -#: ../gui/wxpython/modules/histogram.py:474 +#: ../gui/wxpython/modules/histogram.py:475 #: ../gui/wxpython/photo2image/ip2i_mapdisplay.py:443 msgid "Choose a file name to save the image (no need to add extension)" msgstr "" @@ -3245,7 +3229,7 @@ msgstr "" #: ../gui/wxpython/gcp/mapdisplay.py:489 #: ../gui/wxpython/image2target/ii2t_mapdisplay.py:479 #: ../gui/wxpython/mapdisp/frame.py:946 -#: ../gui/wxpython/modules/histogram.py:501 +#: ../gui/wxpython/modules/histogram.py:502 #: ../gui/wxpython/photo2image/ip2i_mapdisplay.py:471 #: ../gui/wxpython/psmap/toolbars.py:82 ../gui/wxpython/wxplot/base.py:615 msgid "Page setup" @@ -3254,17 +3238,17 @@ msgstr "" #: ../gui/wxpython/gcp/mapdisplay.py:493 #: ../gui/wxpython/image2target/ii2t_mapdisplay.py:483 #: ../gui/wxpython/mapdisp/frame.py:950 -#: ../gui/wxpython/modules/histogram.py:505 +#: ../gui/wxpython/modules/histogram.py:506 #: ../gui/wxpython/photo2image/ip2i_mapdisplay.py:475 #: ../gui/wxpython/wxplot/base.py:616 msgid "Print preview" msgstr "" #: ../gui/wxpython/gcp/mapdisplay.py:497 -#: ../gui/wxpython/gui_core/toolbars.py:69 +#: ../gui/wxpython/gui_core/toolbars.py:70 #: ../gui/wxpython/image2target/ii2t_mapdisplay.py:487 #: ../gui/wxpython/mapdisp/frame.py:954 -#: ../gui/wxpython/modules/histogram.py:509 +#: ../gui/wxpython/modules/histogram.py:510 #: ../gui/wxpython/photo2image/ip2i_mapdisplay.py:479 #: ../gui/wxpython/wxplot/base.py:617 msgid "Print display" @@ -3278,14 +3262,14 @@ msgstr "" #: ../gui/wxpython/gcp/mapdisplay.py:539 #: ../gui/wxpython/image2target/ii2t_mapdisplay.py:529 -#: ../gui/wxpython/mapdisp/frame.py:1531 +#: ../gui/wxpython/mapdisp/frame.py:1529 #: ../gui/wxpython/photo2image/ip2i_mapdisplay.py:521 msgid "Zoom to default region" msgstr "" #: ../gui/wxpython/gcp/mapdisplay.py:543 #: ../gui/wxpython/image2target/ii2t_mapdisplay.py:533 -#: ../gui/wxpython/mapdisp/frame.py:1532 +#: ../gui/wxpython/mapdisp/frame.py:1530 #: ../gui/wxpython/photo2image/ip2i_mapdisplay.py:525 msgid "Zoom to saved region" msgstr "" @@ -3298,7 +3282,7 @@ msgstr "" #: ../gui/wxpython/gcp/mapdisplay.py:554 #: ../gui/wxpython/image2target/ii2t_mapdisplay.py:544 -#: ../gui/wxpython/mapdisp/frame.py:1544 +#: ../gui/wxpython/mapdisp/frame.py:1542 #: ../gui/wxpython/photo2image/ip2i_mapdisplay.py:536 msgid "Save display geometry to named region" msgstr "" @@ -3424,8 +3408,8 @@ msgstr "" msgid "Intermediate" msgstr "" -#: ../gui/wxpython/gmodeler/canvas.py:368 ../gui/wxpython/nviz/tools.py:1653 -#: ../gui/wxpython/nviz/tools.py:1868 ../gui/wxpython/vdigit/preferences.py:136 +#: ../gui/wxpython/gmodeler/canvas.py:368 ../gui/wxpython/nviz/tools.py:1652 +#: ../gui/wxpython/nviz/tools.py:1867 ../gui/wxpython/vdigit/preferences.py:136 msgid "Display" msgstr "" @@ -3606,13 +3590,13 @@ msgid "Delete all" msgstr "" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "No" msgstr "" #: ../gui/wxpython/gmodeler/dialogs.py:983 -#: ../gui/wxpython/gui_core/gselect.py:2294 +#: ../gui/wxpython/gui_core/gselect.py:2298 #: ../gui/wxpython/location_wizard/wizard.py:981 msgid "Yes" msgstr "" @@ -3627,7 +3611,7 @@ msgstr "" #: ../gui/wxpython/gmodeler/dialogs.py:1212 #: ../gui/wxpython/gmodeler/panels.py:1598 -#: ../gui/wxpython/gui_core/forms.py:604 +#: ../gui/wxpython/gui_core/forms.py:601 #: ../gui/wxpython/modules/mcalc_builder.py:170 msgid "&Run" msgstr "" @@ -3638,13 +3622,13 @@ msgid "Variables" msgstr "" #: ../gui/wxpython/gmodeler/frame.py:31 ../gui/wxpython/gmodeler/panels.py:106 -#: ../gui/wxpython/gui_core/forms.py:1499 ../gui/wxpython/lmgr/toolbars.py:208 +#: ../gui/wxpython/gui_core/forms.py:1496 ../gui/wxpython/lmgr/toolbars.py:208 #: ../gui/wxpython/main_window/frame.py:907 msgid "Graphical Modeler" msgstr "" #: ../gui/wxpython/gmodeler/g.gui.gmodeler.py:56 -msgid "Graphical Modeler - GRASS GIS" +msgid "Graphical Modeler - GRASS" msgstr "" #: ../gui/wxpython/gmodeler/model.py:70 @@ -3784,7 +3768,7 @@ msgstr "" msgid "Writing current settings to model file failed." msgstr "" -#: ../gui/wxpython/gmodeler/panels.py:689 ../gui/wxpython/lmgr/workspace.py:456 +#: ../gui/wxpython/gmodeler/panels.py:689 ../gui/wxpython/lmgr/workspace.py:455 #, python-format msgid "Unable to open file <%s> for writing." msgstr "" @@ -3834,7 +3818,7 @@ msgstr "" msgid "Choose file to save current model" msgstr "" -#: ../gui/wxpython/gmodeler/panels.py:912 ../gui/wxpython/iclass/frame.py:1263 +#: ../gui/wxpython/gmodeler/panels.py:912 ../gui/wxpython/iclass/frame.py:1264 msgid "File already exists" msgstr "" @@ -3923,8 +3907,8 @@ msgstr "" #: ../gui/wxpython/gmodeler/panels.py:1351 #: ../gui/wxpython/gmodeler/panels.py:1401 -#: ../gui/wxpython/gui_core/ghelp.py:438 ../gui/wxpython/gui_core/ghelp.py:441 -#: ../gui/wxpython/gui_core/ghelp.py:513 +#: ../gui/wxpython/gui_core/ghelp.py:439 ../gui/wxpython/gui_core/ghelp.py:442 +#: ../gui/wxpython/gui_core/ghelp.py:514 #: ../gui/wxpython/location_wizard/wizard.py:227 msgid "Name" msgstr "" @@ -4043,7 +4027,7 @@ msgid "Choose file to save" msgstr "" #: ../gui/wxpython/gmodeler/panels.py:1749 -#: ../gui/wxpython/gui_core/pyedit.py:418 ../gui/wxpython/wxplot/profile.py:428 +#: ../gui/wxpython/gui_core/pyedit.py:418 ../gui/wxpython/wxplot/profile.py:427 #, python-format msgid "File <%s> already exists. Do you want to overwrite this file?" msgstr "" @@ -4086,8 +4070,8 @@ msgstr "" #: ../gui/wxpython/gmodeler/preferences.py:140 #: ../gui/wxpython/gmodeler/preferences.py:459 #: ../gui/wxpython/gmodeler/preferences.py:566 -#: ../gui/wxpython/iclass/dialogs.py:398 ../gui/wxpython/nviz/tools.py:1047 -#: ../gui/wxpython/nviz/tools.py:2943 ../gui/wxpython/psmap/dialogs.py:6317 +#: ../gui/wxpython/iclass/dialogs.py:398 ../gui/wxpython/nviz/tools.py:1046 +#: ../gui/wxpython/nviz/tools.py:2942 ../gui/wxpython/psmap/dialogs.py:6317 #: ../gui/wxpython/psmap/dialogs.py:6584 ../gui/wxpython/wxplot/dialogs.py:1068 #: ../gui/wxpython/wxplot/dialogs.py:1130 msgid "Color" @@ -4119,7 +4103,7 @@ msgstr "" #: ../gui/wxpython/gmodeler/preferences.py:502 #: ../gui/wxpython/gmodeler/preferences.py:607 #: ../gui/wxpython/gui_core/dialogs.py:1966 -#: ../gui/wxpython/nviz/preferences.py:569 +#: ../gui/wxpython/nviz/preferences.py:567 #: ../gui/wxpython/psmap/dialogs.py:3797 ../gui/wxpython/rdigit/toolbars.py:90 msgid "Width:" msgstr "" @@ -4128,8 +4112,8 @@ msgstr "" #: ../gui/wxpython/gmodeler/preferences.py:418 #: ../gui/wxpython/gmodeler/preferences.py:525 #: ../gui/wxpython/gmodeler/preferences.py:630 -#: ../gui/wxpython/gui_core/dialogs.py:1971 ../gui/wxpython/nviz/tools.py:420 -#: ../gui/wxpython/nviz/tools.py:1372 ../gui/wxpython/nviz/tools.py:2205 +#: ../gui/wxpython/gui_core/dialogs.py:1971 ../gui/wxpython/nviz/tools.py:419 +#: ../gui/wxpython/nviz/tools.py:1371 ../gui/wxpython/nviz/tools.py:2204 #: ../gui/wxpython/psmap/dialogs.py:3820 ../gui/wxpython/psmap/dialogs.py:4055 #: ../gui/wxpython/psmap/dialogs.py:4887 msgid "Height:" @@ -4137,7 +4121,7 @@ msgstr "" #: ../gui/wxpython/gmodeler/preferences.py:285 #: ../gui/wxpython/lmgr/frame.py:629 ../gui/wxpython/main_window/frame.py:648 -#: ../gui/wxpython/nviz/tools.py:114 +#: ../gui/wxpython/nviz/tools.py:113 msgid "Data" msgstr "" @@ -4480,7 +4464,7 @@ msgstr "" msgid "Use fully-qualified map names" msgstr "" -#: ../gui/wxpython/gui_core/dialogs.py:1487 ../gui/wxpython/nviz/tools.py:772 +#: ../gui/wxpython/gui_core/dialogs.py:1487 ../gui/wxpython/nviz/tools.py:771 msgid "3D raster" msgstr "" @@ -4535,40 +4519,40 @@ msgstr "" msgid "SQL Query Utility" msgstr "" -#: ../gui/wxpython/gui_core/dialogs.py:2025 +#: ../gui/wxpython/gui_core/dialogs.py:2023 msgid " SQL statement " msgstr "" -#: ../gui/wxpython/gui_core/dialogs.py:2073 +#: ../gui/wxpython/gui_core/dialogs.py:2071 msgid "Symbols" msgstr "" -#: ../gui/wxpython/gui_core/dialogs.py:2103 +#: ../gui/wxpython/gui_core/dialogs.py:2101 msgid "Symbol directory:" msgstr "" -#: ../gui/wxpython/gui_core/dialogs.py:2112 +#: ../gui/wxpython/gui_core/dialogs.py:2110 msgid "Symbol name:" msgstr "" -#: ../gui/wxpython/gui_core/dialogs.py:2336 -#: ../gui/wxpython/gui_core/dialogs.py:2368 -msgid "Quit GRASS GIS" +#: ../gui/wxpython/gui_core/dialogs.py:2334 +#: ../gui/wxpython/gui_core/dialogs.py:2363 +msgid "Quit GRASS" msgstr "" -#: ../gui/wxpython/gui_core/dialogs.py:2358 -msgid "Do you want to quit GRASS GIS including shell or just close the GUI?" +#: ../gui/wxpython/gui_core/dialogs.py:2355 +msgid "Do you want to quit GRASS including shell or just close the GUI?" msgstr "" -#: ../gui/wxpython/gui_core/dialogs.py:2361 -msgid "Do you want to quit GRASS GIS?" +#: ../gui/wxpython/gui_core/dialogs.py:2357 +msgid "Do you want to quit GRASS?" msgstr "" -#: ../gui/wxpython/gui_core/dialogs.py:2365 +#: ../gui/wxpython/gui_core/dialogs.py:2361 msgid "Close GUI" msgstr "" -#: ../gui/wxpython/gui_core/dialogs.py:2429 +#: ../gui/wxpython/gui_core/dialogs.py:2423 #: ../gui/wxpython/gui_core/preferences.py:584 #: ../gui/wxpython/gui_core/preferences.py:877 #: ../gui/wxpython/psmap/dialogs.py:3932 ../gui/wxpython/psmap/dialogs.py:4572 @@ -4576,100 +4560,100 @@ msgstr "" msgid "Font settings" msgstr "" -#: ../gui/wxpython/gui_core/dialogs.py:2434 +#: ../gui/wxpython/gui_core/dialogs.py:2428 msgid "Select font:" msgstr "" -#: ../gui/wxpython/gui_core/dialogs.py:2466 +#: ../gui/wxpython/gui_core/dialogs.py:2460 msgid "Character encoding:" msgstr "" -#: ../gui/wxpython/gui_core/dialogs.py:2482 +#: ../gui/wxpython/gui_core/dialogs.py:2476 #: ../gui/wxpython/psmap/dialogs.py:500 ../gui/wxpython/psmap/dialogs.py:4997 msgid "Font size:" msgstr "" -#: ../gui/wxpython/gui_core/dialogs.py:2526 +#: ../gui/wxpython/gui_core/dialogs.py:2520 msgid "Example" msgstr "" -#: ../gui/wxpython/gui_core/forms.py:564 +#: ../gui/wxpython/gui_core/forms.py:561 msgid "Enter parameters for '" msgstr "" -#: ../gui/wxpython/gui_core/forms.py:576 +#: ../gui/wxpython/gui_core/forms.py:573 msgid "Close this window without executing the command (Ctrl+Q)" msgstr "" -#: ../gui/wxpython/gui_core/forms.py:605 +#: ../gui/wxpython/gui_core/forms.py:602 msgid "Run the command (Ctrl+R)" msgstr "" -#: ../gui/wxpython/gui_core/forms.py:617 +#: ../gui/wxpython/gui_core/forms.py:614 #: ../gui/wxpython/modules/mcalc_builder.py:177 msgid "Copy" msgstr "" -#: ../gui/wxpython/gui_core/forms.py:619 +#: ../gui/wxpython/gui_core/forms.py:616 #: ../gui/wxpython/modules/mcalc_builder.py:178 msgid "Copy the current command string to the clipboard" msgstr "" -#: ../gui/wxpython/gui_core/forms.py:628 +#: ../gui/wxpython/gui_core/forms.py:625 msgid "Show manual page of the command (Ctrl+H)" msgstr "" -#: ../gui/wxpython/gui_core/forms.py:666 +#: ../gui/wxpython/gui_core/forms.py:663 msgid "Add created map(s) into layer tree" msgstr "" -#: ../gui/wxpython/gui_core/forms.py:688 +#: ../gui/wxpython/gui_core/forms.py:685 #: ../gui/wxpython/modules/import_export.py:119 msgid "Close dialog on finish" msgstr "" -#: ../gui/wxpython/gui_core/forms.py:695 +#: ../gui/wxpython/gui_core/forms.py:692 msgid "Close dialog when command is successfully finished. Change this settings in Preferences dialog ('Command' tab)." msgstr "" -#: ../gui/wxpython/gui_core/forms.py:893 +#: ../gui/wxpython/gui_core/forms.py:890 #, python-format msgid "'%s' copied to clipboard" msgstr "" -#: ../gui/wxpython/gui_core/forms.py:993 ../gui/wxpython/gui_core/forms.py:1008 +#: ../gui/wxpython/gui_core/forms.py:990 ../gui/wxpython/gui_core/forms.py:1005 msgid "Required" msgstr "" -#: ../gui/wxpython/gui_core/forms.py:996 ../gui/wxpython/gui_core/forms.py:1009 +#: ../gui/wxpython/gui_core/forms.py:993 ../gui/wxpython/gui_core/forms.py:1006 msgid "Optional" msgstr "" -#: ../gui/wxpython/gui_core/forms.py:1083 +#: ../gui/wxpython/gui_core/forms.py:1080 #: ../gui/wxpython/gui_core/forms.py:2315 msgid "Parameterized in model" msgstr "" -#: ../gui/wxpython/gui_core/forms.py:1149 +#: ../gui/wxpython/gui_core/forms.py:1146 #: ../gui/wxpython/location_wizard/wizard.py:214 msgid "This option is required" msgstr "" -#: ../gui/wxpython/gui_core/forms.py:1167 +#: ../gui/wxpython/gui_core/forms.py:1164 msgid "[multiple]" msgstr "" -#: ../gui/wxpython/gui_core/forms.py:1229 +#: ../gui/wxpython/gui_core/forms.py:1226 msgid "valid range" msgstr "" -#: ../gui/wxpython/gui_core/forms.py:1378 +#: ../gui/wxpython/gui_core/forms.py:1375 #: ../gui/wxpython/gui_core/forms.py:2952 -#: ../gui/wxpython/gui_core/toolbars.py:70 +#: ../gui/wxpython/gui_core/toolbars.py:71 msgid "Select font" msgstr "" -#: ../gui/wxpython/gui_core/forms.py:1507 +#: ../gui/wxpython/gui_core/forms.py:1504 #: ../gui/wxpython/gui_core/preferences.py:873 #: ../gui/wxpython/mapdisp/frame.py:83 msgid "Map Display" @@ -4717,13 +4701,13 @@ msgid "Enter file content directly instead of specifying a file. Temporary file msgstr "" #: ../gui/wxpython/gui_core/forms.py:2119 -#: ../gui/wxpython/gui_core/gselect.py:1475 +#: ../gui/wxpython/gui_core/gselect.py:1479 msgid "Directory" msgstr "" #: ../gui/wxpython/gui_core/forms.py:2255 #: ../gui/wxpython/modules/import_export.py:86 -#: ../gui/wxpython/modules/import_export.py:979 +#: ../gui/wxpython/modules/import_export.py:981 msgid "Layer id" msgstr "" @@ -4788,144 +4772,144 @@ msgstr "" msgid "Try to set up GRASS_ADDON_PATH or GRASS_ADDON_BASE variable." msgstr "" -#: ../gui/wxpython/gui_core/ghelp.py:64 -msgid "About GRASS GIS" +#: ../gui/wxpython/gui_core/ghelp.py:65 +msgid "About GRASS" msgstr "" -#: ../gui/wxpython/gui_core/ghelp.py:80 +#: ../gui/wxpython/gui_core/ghelp.py:81 msgid "Info" msgstr "" -#: ../gui/wxpython/gui_core/ghelp.py:81 +#: ../gui/wxpython/gui_core/ghelp.py:82 msgid "Copyright" msgstr "" -#: ../gui/wxpython/gui_core/ghelp.py:82 +#: ../gui/wxpython/gui_core/ghelp.py:83 msgid "License" msgstr "" -#: ../gui/wxpython/gui_core/ghelp.py:83 +#: ../gui/wxpython/gui_core/ghelp.py:84 msgid "Citation" msgstr "" -#: ../gui/wxpython/gui_core/ghelp.py:84 +#: ../gui/wxpython/gui_core/ghelp.py:85 msgid "Authors" msgstr "" -#: ../gui/wxpython/gui_core/ghelp.py:85 +#: ../gui/wxpython/gui_core/ghelp.py:86 msgid "Contributors" msgstr "" -#: ../gui/wxpython/gui_core/ghelp.py:86 +#: ../gui/wxpython/gui_core/ghelp.py:87 msgid "Extra contributors" msgstr "" -#: ../gui/wxpython/gui_core/ghelp.py:87 +#: ../gui/wxpython/gui_core/ghelp.py:88 msgid "Translators" msgstr "" -#: ../gui/wxpython/gui_core/ghelp.py:88 +#: ../gui/wxpython/gui_core/ghelp.py:89 msgid "Translation status" msgstr "" -#: ../gui/wxpython/gui_core/ghelp.py:120 ../gui/wxpython/gui_core/ghelp.py:948 +#: ../gui/wxpython/gui_core/ghelp.py:121 ../gui/wxpython/gui_core/ghelp.py:949 #: ../gui/wxpython/lmgr/frame.py:1462 ../gui/wxpython/main_window/frame.py:1618 msgid "Unable to get GRASS version\n" msgstr "" -#: ../gui/wxpython/gui_core/ghelp.py:134 ../gui/wxpython/lmgr/frame.py:1489 -#: ../gui/wxpython/main_window/frame.py:1645 +#: ../gui/wxpython/gui_core/ghelp.py:135 ../gui/wxpython/lmgr/frame.py:1490 +#: ../gui/wxpython/main_window/frame.py:1646 msgid "unknown version" msgstr "" -#: ../gui/wxpython/gui_core/ghelp.py:147 +#: ../gui/wxpython/gui_core/ghelp.py:148 msgid "Official GRASS site:" msgstr "" -#: ../gui/wxpython/gui_core/ghelp.py:162 +#: ../gui/wxpython/gui_core/ghelp.py:163 msgid "Code Revision" msgstr "" -#: ../gui/wxpython/gui_core/ghelp.py:180 +#: ../gui/wxpython/gui_core/ghelp.py:181 msgid "Build Date" msgstr "" -#: ../gui/wxpython/gui_core/ghelp.py:248 ../gui/wxpython/gui_core/ghelp.py:519 +#: ../gui/wxpython/gui_core/ghelp.py:249 ../gui/wxpython/gui_core/ghelp.py:520 msgid "Language" msgstr "" -#: ../gui/wxpython/gui_core/ghelp.py:282 ../gui/wxpython/gui_core/ghelp.py:310 -#: ../gui/wxpython/gui_core/ghelp.py:363 ../gui/wxpython/gui_core/ghelp.py:431 -#: ../gui/wxpython/gui_core/ghelp.py:505 ../gui/wxpython/gui_core/ghelp.py:663 +#: ../gui/wxpython/gui_core/ghelp.py:283 ../gui/wxpython/gui_core/ghelp.py:311 +#: ../gui/wxpython/gui_core/ghelp.py:364 ../gui/wxpython/gui_core/ghelp.py:432 +#: ../gui/wxpython/gui_core/ghelp.py:506 ../gui/wxpython/gui_core/ghelp.py:664 #, python-format msgid "%s file missing" msgstr "" -#: ../gui/wxpython/gui_core/ghelp.py:336 +#: ../gui/wxpython/gui_core/ghelp.py:337 #, python-brace-format -msgid "Unable to provide citation suggestion, see GRASS GIS website instead. The error was: {0}" +msgid "Unable to provide citation suggestion, see GRASS website instead. The error was: {0}" msgstr "" -#: ../gui/wxpython/gui_core/ghelp.py:416 ../gui/wxpython/gui_core/ghelp.py:488 +#: ../gui/wxpython/gui_core/ghelp.py:417 ../gui/wxpython/gui_core/ghelp.py:489 #, python-format msgid "Error when reading file '%s'." msgstr "" -#: ../gui/wxpython/gui_core/ghelp.py:418 ../gui/wxpython/gui_core/ghelp.py:490 +#: ../gui/wxpython/gui_core/ghelp.py:419 ../gui/wxpython/gui_core/ghelp.py:491 msgid "Lines:" msgstr "" -#: ../gui/wxpython/gui_core/ghelp.py:438 ../gui/wxpython/gui_core/ghelp.py:443 +#: ../gui/wxpython/gui_core/ghelp.py:439 ../gui/wxpython/gui_core/ghelp.py:444 msgid "Country" msgstr "" -#: ../gui/wxpython/gui_core/ghelp.py:438 ../gui/wxpython/gui_core/ghelp.py:442 -#: ../gui/wxpython/gui_core/ghelp.py:516 +#: ../gui/wxpython/gui_core/ghelp.py:439 ../gui/wxpython/gui_core/ghelp.py:443 +#: ../gui/wxpython/gui_core/ghelp.py:517 msgid "E-mail" msgstr "" -#: ../gui/wxpython/gui_core/ghelp.py:444 +#: ../gui/wxpython/gui_core/ghelp.py:445 msgid "OSGeo_ID" msgstr "" -#: ../gui/wxpython/gui_core/ghelp.py:445 +#: ../gui/wxpython/gui_core/ghelp.py:446 msgid "ORCID" msgstr "" -#: ../gui/wxpython/gui_core/ghelp.py:522 +#: ../gui/wxpython/gui_core/ghelp.py:523 msgid "Nation" msgstr "" -#: ../gui/wxpython/gui_core/ghelp.py:565 +#: ../gui/wxpython/gui_core/ghelp.py:566 #, python-format msgid " %d translated" msgstr "" -#: ../gui/wxpython/gui_core/ghelp.py:569 ../gui/wxpython/gui_core/ghelp.py:594 +#: ../gui/wxpython/gui_core/ghelp.py:570 ../gui/wxpython/gui_core/ghelp.py:595 #, python-format msgid " %d fuzzy" msgstr "" -#: ../gui/wxpython/gui_core/ghelp.py:573 ../gui/wxpython/gui_core/ghelp.py:603 +#: ../gui/wxpython/gui_core/ghelp.py:574 ../gui/wxpython/gui_core/ghelp.py:604 #, python-format msgid " %d untranslated" msgstr "" -#: ../gui/wxpython/gui_core/ghelp.py:585 +#: ../gui/wxpython/gui_core/ghelp.py:586 #, python-format msgid "%d translated" msgstr "" -#: ../gui/wxpython/gui_core/ghelp.py:660 +#: ../gui/wxpython/gui_core/ghelp.py:661 #, python-format msgid "File <%s> not found" msgstr "" -#: ../gui/wxpython/gui_core/ghelp.py:832 +#: ../gui/wxpython/gui_core/ghelp.py:833 msgid "&Next" msgstr "" -#: ../gui/wxpython/gui_core/ghelp.py:834 +#: ../gui/wxpython/gui_core/ghelp.py:835 msgid "&Previous" msgstr "" @@ -5011,182 +4995,182 @@ msgstr "" msgid "No table linked to layer <{}>." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1244 -#: ../gui/wxpython/image2target/ii2t_gis_set.py:1015 +#: ../gui/wxpython/gui_core/gselect.py:1248 +#: ../gui/wxpython/image2target/ii2t_gis_set.py:1017 msgid "Choose GIS Data Directory" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1456 +#: ../gui/wxpython/gui_core/gselect.py:1460 msgid "Output settings" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1458 +#: ../gui/wxpython/gui_core/gselect.py:1462 msgid "Source input" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1465 +#: ../gui/wxpython/gui_core/gselect.py:1469 msgid "Native" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1471 -#: ../gui/wxpython/lmgr/workspace.py:518 +#: ../gui/wxpython/gui_core/gselect.py:1475 +#: ../gui/wxpython/lmgr/workspace.py:517 msgid "File" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1483 +#: ../gui/wxpython/gui_core/gselect.py:1487 msgid "Protocol" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1494 +#: ../gui/wxpython/gui_core/gselect.py:1498 msgid "Output type" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1496 +#: ../gui/wxpython/gui_core/gselect.py:1500 msgid "Source type" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1514 +#: ../gui/wxpython/gui_core/gselect.py:1518 msgid "All files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1544 +#: ../gui/wxpython/gui_core/gselect.py:1548 msgid "ZIP files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1545 +#: ../gui/wxpython/gui_core/gselect.py:1549 msgid "GZIP files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1546 +#: ../gui/wxpython/gui_core/gselect.py:1550 msgid "TAR files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1550 +#: ../gui/wxpython/gui_core/gselect.py:1554 msgid "TARGZ files" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1559 +#: ../gui/wxpython/gui_core/gselect.py:1563 msgid "File:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1560 +#: ../gui/wxpython/gui_core/gselect.py:1564 msgid "Choose file to import" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1577 -#: ../gui/wxpython/gui_core/gselect.py:1665 +#: ../gui/wxpython/gui_core/gselect.py:1581 +#: ../gui/wxpython/gui_core/gselect.py:1669 msgid "Choose input directory" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1598 +#: ../gui/wxpython/gui_core/gselect.py:1602 msgid "Extension:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1630 +#: ../gui/wxpython/gui_core/gselect.py:1634 msgid "Choose file" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1651 -#: ../gui/wxpython/gui_core/gselect.py:2775 +#: ../gui/wxpython/gui_core/gselect.py:1655 +#: ../gui/wxpython/gui_core/gselect.py:2781 msgid "Feature type:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "simple features" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1652 +#: ../gui/wxpython/gui_core/gselect.py:1656 msgid "topological" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1769 -#: ../gui/wxpython/gui_core/gselect.py:1809 -#: ../gui/wxpython/gui_core/gselect.py:1871 -#: ../gui/wxpython/gui_core/gselect.py:1916 +#: ../gui/wxpython/gui_core/gselect.py:1773 +#: ../gui/wxpython/gui_core/gselect.py:1813 +#: ../gui/wxpython/gui_core/gselect.py:1875 +#: ../gui/wxpython/gui_core/gselect.py:1920 msgid "Creation options:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1786 -#: ../gui/wxpython/gui_core/gselect.py:1832 -#: ../gui/wxpython/gui_core/gselect.py:1897 +#: ../gui/wxpython/gui_core/gselect.py:1790 +#: ../gui/wxpython/gui_core/gselect.py:1836 +#: ../gui/wxpython/gui_core/gselect.py:1901 msgid "Format:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1905 +#: ../gui/wxpython/gui_core/gselect.py:1909 msgid "Protocol:" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:1934 +#: ../gui/wxpython/gui_core/gselect.py:1938 msgid "No settings available" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2066 -#: ../gui/wxpython/web_services/dialogs.py:301 +#: ../gui/wxpython/gui_core/gselect.py:2070 +#: ../gui/wxpython/web_services/dialogs.py:302 msgid "No data source defined, settings are not saved." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2098 +#: ../gui/wxpython/gui_core/gselect.py:2102 msgid "PostgreSQL/PostGIS login was not set. Set it via module, please." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2253 +#: ../gui/wxpython/gui_core/gselect.py:2257 #, python-brace-format msgid "Getting raster <{table}> SRID from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2508 +#: ../gui/wxpython/gui_core/gselect.py:2512 #, python-brace-format msgid "Getting list of tables from PostgreSQL DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2597 +#: ../gui/wxpython/gui_core/gselect.py:2601 #, python-brace-format msgid "Getting list of tables columns data types from PostGIS DB <{db}>, host <{host}> failed. {error}." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2628 +#: ../gui/wxpython/gui_core/gselect.py:2632 #, python-brace-format msgid "PostgreSQL DB <{psql}> program was not found. Please, install it." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2646 -#: ../gui/wxpython/modules/import_export.py:504 +#: ../gui/wxpython/gui_core/gselect.py:2652 +#: ../gui/wxpython/modules/import_export.py:506 msgid "The Python GDAL package is missing. Please install it." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2767 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "LineString" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2767 +#: ../gui/wxpython/gui_core/gselect.py:2773 #: ../gui/wxpython/psmap/dialogs.py:6221 ../gui/wxpython/psmap/toolbars.py:103 #: ../gui/wxpython/vdigit/preferences.py:729 msgid "Point" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2767 +#: ../gui/wxpython/gui_core/gselect.py:2773 msgid "Polygon" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2980 +#: ../gui/wxpython/gui_core/gselect.py:2986 msgid "No vector map selected in layer manager. Operation canceled." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:2999 +#: ../gui/wxpython/gui_core/gselect.py:3005 msgid "Input vector map is not selected" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3003 +#: ../gui/wxpython/gui_core/gselect.py:3009 #, python-format msgid "Input vector map <%s> and selected map <%s> in layer manager are different. Operation canceled." msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3119 +#: ../gui/wxpython/gui_core/gselect.py:3125 #, python-format msgid "Unable to import C imagery library functions: %s\n" msgstr "" -#: ../gui/wxpython/gui_core/gselect.py:3197 +#: ../gui/wxpython/gui_core/gselect.py:3203 msgid "No vector map selected" msgstr "" @@ -5196,41 +5180,41 @@ msgstr "" msgid "GRASS module '%s' not found. Unable to start map display window." msgstr "" -#: ../gui/wxpython/gui_core/menu.py:189 +#: ../gui/wxpython/gui_core/menu.py:190 msgid "Adva&nced search..." msgstr "" -#: ../gui/wxpython/gui_core/menu.py:192 +#: ../gui/wxpython/gui_core/menu.py:193 #, python-format msgid "Do advanced search using %s tool" msgstr "" -#: ../gui/wxpython/gui_core/menu.py:196 ../gui/wxpython/history/browser.py:381 +#: ../gui/wxpython/gui_core/menu.py:197 ../gui/wxpython/history/browser.py:381 msgid "Double-click to run selected tool" msgstr "" -#: ../gui/wxpython/gui_core/menu.py:199 +#: ../gui/wxpython/gui_core/menu.py:200 msgid "&Run..." msgstr "" -#: ../gui/wxpython/gui_core/menu.py:200 +#: ../gui/wxpython/gui_core/menu.py:201 msgid "Run selected tool from the tree" msgstr "" -#: ../gui/wxpython/gui_core/menu.py:201 +#: ../gui/wxpython/gui_core/menu.py:202 msgid "H&elp" msgstr "" -#: ../gui/wxpython/gui_core/menu.py:202 +#: ../gui/wxpython/gui_core/menu.py:203 msgid "Show manual for selected tool from the tree" msgstr "" -#: ../gui/wxpython/gui_core/menu.py:307 +#: ../gui/wxpython/gui_core/menu.py:308 #, python-format msgid "Documentation for %s is now open in the web browser" msgstr "" -#: ../gui/wxpython/gui_core/menu.py:388 +#: ../gui/wxpython/gui_core/menu.py:389 msgid "&Recent Files" msgstr "" @@ -5349,7 +5333,7 @@ msgid "Align region to resolution" msgstr "" #: ../gui/wxpython/gui_core/preferences.py:557 -#: ../gui/wxpython/nviz/tools.py:117 +#: ../gui/wxpython/nviz/tools.py:116 msgid "Appearance" msgstr "" @@ -5856,122 +5840,122 @@ msgstr "" msgid "Add RGB map layer" msgstr "" -#: ../gui/wxpython/gui_core/toolbars.py:38 +#: ../gui/wxpython/gui_core/toolbars.py:39 msgid "Display map" msgstr "" -#: ../gui/wxpython/gui_core/toolbars.py:38 +#: ../gui/wxpython/gui_core/toolbars.py:39 msgid "Re-render modified map layers only" msgstr "" -#: ../gui/wxpython/gui_core/toolbars.py:42 +#: ../gui/wxpython/gui_core/toolbars.py:43 msgid "Render map" msgstr "" -#: ../gui/wxpython/gui_core/toolbars.py:43 +#: ../gui/wxpython/gui_core/toolbars.py:44 msgid "Force re-rendering all map layers" msgstr "" -#: ../gui/wxpython/gui_core/toolbars.py:47 +#: ../gui/wxpython/gui_core/toolbars.py:48 msgid "Erase display" msgstr "" -#: ../gui/wxpython/gui_core/toolbars.py:48 +#: ../gui/wxpython/gui_core/toolbars.py:49 msgid "Erase display canvas with given background color" msgstr "" -#: ../gui/wxpython/gui_core/toolbars.py:50 +#: ../gui/wxpython/gui_core/toolbars.py:51 msgid "Pointer" msgstr "" -#: ../gui/wxpython/gui_core/toolbars.py:52 +#: ../gui/wxpython/gui_core/toolbars.py:53 msgid "Drag or click mouse to zoom" msgstr "" -#: ../gui/wxpython/gui_core/toolbars.py:52 +#: ../gui/wxpython/gui_core/toolbars.py:53 msgid "Zoom in" msgstr "" -#: ../gui/wxpython/gui_core/toolbars.py:55 +#: ../gui/wxpython/gui_core/toolbars.py:56 msgid "Drag or click mouse to unzoom" msgstr "" -#: ../gui/wxpython/gui_core/toolbars.py:55 +#: ../gui/wxpython/gui_core/toolbars.py:56 msgid "Zoom out" msgstr "" -#: ../gui/wxpython/gui_core/toolbars.py:57 +#: ../gui/wxpython/gui_core/toolbars.py:58 msgid "Return to previous zoom" msgstr "" -#: ../gui/wxpython/gui_core/toolbars.py:60 +#: ../gui/wxpython/gui_core/toolbars.py:61 msgid "Various zoom options" msgstr "" -#: ../gui/wxpython/gui_core/toolbars.py:61 +#: ../gui/wxpython/gui_core/toolbars.py:62 msgid "Zoom to default or saved region, save to named region, ..." msgstr "" -#: ../gui/wxpython/gui_core/toolbars.py:63 +#: ../gui/wxpython/gui_core/toolbars.py:64 msgid "Zoom to selected map layer(s)" msgstr "" -#: ../gui/wxpython/gui_core/toolbars.py:65 +#: ../gui/wxpython/gui_core/toolbars.py:66 msgid "Zoom to computational region extent" msgstr "" -#: ../gui/wxpython/gui_core/toolbars.py:67 +#: ../gui/wxpython/gui_core/toolbars.py:68 msgid "Drag with mouse to pan" msgstr "" -#: ../gui/wxpython/gui_core/toolbars.py:67 +#: ../gui/wxpython/gui_core/toolbars.py:68 msgid "Pan" msgstr "" -#: ../gui/wxpython/gui_core/toolbars.py:68 +#: ../gui/wxpython/gui_core/toolbars.py:69 msgid "Save display to file" msgstr "" -#: ../gui/wxpython/gui_core/toolbars.py:71 +#: ../gui/wxpython/gui_core/toolbars.py:72 msgid "Show manual" msgstr "" -#: ../gui/wxpython/gui_core/toolbars.py:72 ../gui/wxpython/lmgr/layertree.py:56 +#: ../gui/wxpython/gui_core/toolbars.py:73 ../gui/wxpython/lmgr/layertree.py:56 msgid "Quit" msgstr "" -#: ../gui/wxpython/gui_core/toolbars.py:73 ../gui/wxpython/lmgr/layertree.py:57 +#: ../gui/wxpython/gui_core/toolbars.py:74 ../gui/wxpython/lmgr/layertree.py:57 msgid "Add raster map layer" msgstr "" -#: ../gui/wxpython/gui_core/toolbars.py:74 ../gui/wxpython/lmgr/layertree.py:65 +#: ../gui/wxpython/gui_core/toolbars.py:75 ../gui/wxpython/lmgr/layertree.py:65 msgid "Add vector map layer" msgstr "" -#: ../gui/wxpython/gui_core/toolbars.py:77 +#: ../gui/wxpython/gui_core/toolbars.py:78 msgid "Add map elements" msgstr "" -#: ../gui/wxpython/gui_core/toolbars.py:78 +#: ../gui/wxpython/gui_core/toolbars.py:79 msgid "Overlay elements like scale and legend onto map" msgstr "" -#: ../gui/wxpython/gui_core/toolbars.py:81 +#: ../gui/wxpython/gui_core/toolbars.py:82 msgid "Create histogram with d.histogram" msgstr "" -#: ../gui/wxpython/gui_core/toolbars.py:83 -#: ../gui/wxpython/iscatt/toolbars.py:184 ../gui/wxpython/nviz/tools.py:2386 +#: ../gui/wxpython/gui_core/toolbars.py:84 +#: ../gui/wxpython/iscatt/toolbars.py:184 ../gui/wxpython/nviz/tools.py:2385 #: ../gui/wxpython/vnet/dialogs.py:977 msgid "Settings" msgstr "" -#: ../gui/wxpython/gui_core/toolbars.py:85 +#: ../gui/wxpython/gui_core/toolbars.py:86 #: ../gui/wxpython/mapdisp/properties.py:336 msgid "Map Display Settings" msgstr "" -#: ../gui/wxpython/gui_core/toolbars.py:87 +#: ../gui/wxpython/gui_core/toolbars.py:88 msgid "(Un)dock" msgstr "" @@ -6000,8 +5984,8 @@ msgstr "" msgid "No vector map layer selected. Operation canceled." msgstr "" -#: ../gui/wxpython/gui_core/vselect.py:288 ../gui/wxpython/lmgr/frame.py:2318 -#: ../gui/wxpython/main_window/frame.py:2426 +#: ../gui/wxpython/gui_core/vselect.py:288 ../gui/wxpython/lmgr/frame.py:2319 +#: ../gui/wxpython/main_window/frame.py:2428 #: ../gui/wxpython/mapdisp/frame.py:711 msgid "No map layer selected. Operation canceled." msgstr "" @@ -6038,68 +6022,68 @@ msgid "Name <%(name)s> is not a valid name for GRASS map. Please use only ASCII msgstr "" #: ../gui/wxpython/gui_core/widgets.py:889 -#: ../gui/wxpython/image2target/ii2t_gis_set.py:1184 +#: ../gui/wxpython/image2target/ii2t_gis_set.py:1186 #: ../gui/wxpython/location_wizard/wizard.py:300 #: ../gui/wxpython/modules/import_export.py:268 msgid "Invalid name" msgstr "" -#: ../gui/wxpython/gui_core/widgets.py:1237 +#: ../gui/wxpython/gui_core/widgets.py:1262 msgid "Fulltext search" msgstr "" -#: ../gui/wxpython/gui_core/widgets.py:1239 +#: ../gui/wxpython/gui_core/widgets.py:1264 msgid "Type to search in all tools. Press Enter for next match." msgstr "" -#: ../gui/wxpython/gui_core/widgets.py:1301 +#: ../gui/wxpython/gui_core/widgets.py:1326 msgid "Searching, please type more characters." msgstr "" -#: ../gui/wxpython/gui_core/widgets.py:1312 +#: ../gui/wxpython/gui_core/widgets.py:1337 msgid "{} tools matched" msgstr "" -#: ../gui/wxpython/gui_core/widgets.py:1379 +#: ../gui/wxpython/gui_core/widgets.py:1404 msgid "Profiles" msgstr "" -#: ../gui/wxpython/gui_core/widgets.py:1386 +#: ../gui/wxpython/gui_core/widgets.py:1411 msgid "Save current settings" msgstr "" -#: ../gui/wxpython/gui_core/widgets.py:1389 +#: ../gui/wxpython/gui_core/widgets.py:1414 msgid "Delete currently selected settings" msgstr "" -#: ../gui/wxpython/gui_core/widgets.py:1408 +#: ../gui/wxpython/gui_core/widgets.py:1433 msgid "Load:" msgstr "" -#: ../gui/wxpython/gui_core/widgets.py:1424 +#: ../gui/wxpython/gui_core/widgets.py:1449 #, python-format msgid "Settings <%s> not found" msgstr "" -#: ../gui/wxpython/gui_core/widgets.py:1437 -#: ../gui/wxpython/gui_core/widgets.py:1460 +#: ../gui/wxpython/gui_core/widgets.py:1462 +#: ../gui/wxpython/gui_core/widgets.py:1485 msgid "Save settings" msgstr "" -#: ../gui/wxpython/gui_core/widgets.py:1443 +#: ../gui/wxpython/gui_core/widgets.py:1468 msgid "Name not given, settings is not saved." msgstr "" -#: ../gui/wxpython/gui_core/widgets.py:1456 +#: ../gui/wxpython/gui_core/widgets.py:1481 #, python-format msgid "Settings <%s> already exists. Do you want to overwrite the settings?" msgstr "" -#: ../gui/wxpython/gui_core/widgets.py:1508 +#: ../gui/wxpython/gui_core/widgets.py:1533 msgid "No settings is defined. Operation canceled." msgstr "" -#: ../gui/wxpython/gui_core/widgets.py:1544 +#: ../gui/wxpython/gui_core/widgets.py:1569 msgid "Unable to save settings" msgstr "" @@ -6132,7 +6116,7 @@ msgid "Apply" msgstr "" #: ../gui/wxpython/gui_core/wrap.py:296 -#: ../gui/wxpython/web_services/dialogs.py:689 +#: ../gui/wxpython/web_services/dialogs.py:690 msgid "&Apply" msgstr "" @@ -6440,157 +6424,157 @@ msgstr "" msgid "No class selected" msgstr "" -#: ../gui/wxpython/iclass/frame.py:58 +#: ../gui/wxpython/iclass/frame.py:59 #, python-format msgid "" "Loading imagery lib failed.\n" "%s" msgstr "" -#: ../gui/wxpython/iclass/frame.py:107 ../gui/wxpython/iclass/frame.py:1654 -#: ../gui/wxpython/lmgr/frame.py:1687 ../gui/wxpython/main_window/frame.py:1842 +#: ../gui/wxpython/iclass/frame.py:108 ../gui/wxpython/iclass/frame.py:1653 +#: ../gui/wxpython/lmgr/frame.py:1688 ../gui/wxpython/main_window/frame.py:1844 msgid "Supervised Classification Tool" msgstr "" -#: ../gui/wxpython/iclass/frame.py:348 +#: ../gui/wxpython/iclass/frame.py:349 msgid "IClass Toolbar" msgstr "" -#: ../gui/wxpython/iclass/frame.py:370 +#: ../gui/wxpython/iclass/frame.py:371 msgid "IClass Misc Toolbar" msgstr "" -#: ../gui/wxpython/iclass/frame.py:410 +#: ../gui/wxpython/iclass/frame.py:411 msgid "Digitization Toolbar" msgstr "" -#: ../gui/wxpython/iclass/frame.py:440 +#: ../gui/wxpython/iclass/frame.py:441 msgid "Plots" msgstr "" -#: ../gui/wxpython/iclass/frame.py:475 +#: ../gui/wxpython/iclass/frame.py:476 msgid "Preview Display" msgstr "" -#: ../gui/wxpython/iclass/frame.py:478 +#: ../gui/wxpython/iclass/frame.py:479 msgid "Training Areas Display" msgstr "" -#: ../gui/wxpython/iclass/frame.py:558 +#: ../gui/wxpython/iclass/frame.py:559 msgid "Adjust Training Area Display to Preview Display" msgstr "" -#: ../gui/wxpython/iclass/frame.py:562 +#: ../gui/wxpython/iclass/frame.py:563 msgid "Adjust Preview display to Training Area Display" msgstr "" -#: ../gui/wxpython/iclass/frame.py:565 +#: ../gui/wxpython/iclass/frame.py:566 msgid "Display synchronization ON" msgstr "" -#: ../gui/wxpython/iclass/frame.py:567 +#: ../gui/wxpython/iclass/frame.py:568 msgid "Display synchronization OFF" msgstr "" -#: ../gui/wxpython/iclass/frame.py:641 +#: ../gui/wxpython/iclass/frame.py:642 msgid "All changes will be lost. Do you want to continue?" msgstr "" -#: ../gui/wxpython/iclass/frame.py:649 +#: ../gui/wxpython/iclass/frame.py:650 msgid "Import vector map" msgstr "" -#: ../gui/wxpython/iclass/frame.py:668 +#: ../gui/wxpython/iclass/frame.py:669 #, python-format msgid "No areas in vector map <%s>.\n" msgstr "" -#: ../gui/wxpython/iclass/frame.py:672 +#: ../gui/wxpython/iclass/frame.py:673 #, python-format msgid "Vector map <%s> contains points or lines, these features are ignored." msgstr "" -#: ../gui/wxpython/iclass/frame.py:700 +#: ../gui/wxpython/iclass/frame.py:701 #, python-format msgid "Unable to open vector map <%s>" msgstr "" -#: ../gui/wxpython/iclass/frame.py:710 +#: ../gui/wxpython/iclass/frame.py:711 #, python-format msgid "Unable to copy vector features from <%s>" msgstr "" -#: ../gui/wxpython/iclass/frame.py:721 +#: ../gui/wxpython/iclass/frame.py:722 msgid "Unable to open temporary vector map" msgstr "" -#: ../gui/wxpython/iclass/frame.py:818 +#: ../gui/wxpython/iclass/frame.py:819 msgid "No training areas to export." msgstr "" -#: ../gui/wxpython/iclass/frame.py:831 +#: ../gui/wxpython/iclass/frame.py:832 #, python-format msgid "%d training areas (%d classes) exported to vector map <%s>." msgstr "" -#: ../gui/wxpython/iclass/frame.py:1102 +#: ../gui/wxpython/iclass/frame.py:1103 msgid "Failed to create temporary vector map." msgstr "" -#: ../gui/wxpython/iclass/frame.py:1154 +#: ../gui/wxpython/iclass/frame.py:1155 msgid "There was an error initializing signatures. Check GUI console for any error messages." msgstr "" -#: ../gui/wxpython/iclass/frame.py:1205 +#: ../gui/wxpython/iclass/frame.py:1206 #, python-format msgid "No area in category %s. Category skipped." msgstr "" -#: ../gui/wxpython/iclass/frame.py:1210 +#: ../gui/wxpython/iclass/frame.py:1211 msgid "Analysis failed." msgstr "" -#: ../gui/wxpython/iclass/frame.py:1217 +#: ../gui/wxpython/iclass/frame.py:1218 msgid "results" msgstr "" -#: ../gui/wxpython/iclass/frame.py:1223 +#: ../gui/wxpython/iclass/frame.py:1224 msgid "No imagery group selected." msgstr "" -#: ../gui/wxpython/iclass/frame.py:1230 +#: ../gui/wxpython/iclass/frame.py:1231 msgid "Due to recent changes in classes, signatures can be outdated and should be recalculated. Do you still want to continue?" msgstr "" -#: ../gui/wxpython/iclass/frame.py:1234 +#: ../gui/wxpython/iclass/frame.py:1235 msgid "Outdated signatures" msgstr "" -#: ../gui/wxpython/iclass/frame.py:1247 +#: ../gui/wxpython/iclass/frame.py:1248 msgid "Signatures are not valid. Recalculate them and then try again." msgstr "" -#: ../gui/wxpython/iclass/frame.py:1259 +#: ../gui/wxpython/iclass/frame.py:1260 #, python-format msgid "" "A signature file named %s already exists.\n" "Do you want to replace it?" msgstr "" -#: ../gui/wxpython/iclass/frame.py:1310 +#: ../gui/wxpython/iclass/frame.py:1311 msgid "No imagery group selected. Operation canceled." msgstr "" -#: ../gui/wxpython/iclass/frame.py:1321 +#: ../gui/wxpython/iclass/frame.py:1322 #, python-format msgid "Group <%(group)s> does not have enough files (it has %(files)d files). Operation canceled." msgstr "" -#: ../gui/wxpython/iclass/frame.py:1330 +#: ../gui/wxpython/iclass/frame.py:1331 msgid "No areas given. Operation canceled." msgstr "" -#: ../gui/wxpython/iclass/frame.py:1348 +#: ../gui/wxpython/iclass/frame.py:1349 msgid "Vector features are outside raster layers. Operation canceled." msgstr "" @@ -6605,14 +6589,14 @@ msgstr "" #: ../gui/wxpython/iclass/g.gui.iclass.py:88 #: ../gui/wxpython/mapswipe/g.gui.mapswipe.py:79 -#: ../gui/wxpython/modules/histogram.py:405 ../gui/wxpython/nviz/wxnviz.py:597 +#: ../gui/wxpython/modules/histogram.py:406 ../gui/wxpython/nviz/wxnviz.py:597 #: ../gui/wxpython/nviz/wxnviz.py:608 #, python-format msgid "Raster map <%s> not found" msgstr "" #: ../gui/wxpython/iclass/g.gui.iclass.py:111 -msgid "Supervised Classification Tool - GRASS GIS" +msgid "Supervised Classification Tool - GRASS" msgstr "" #: ../gui/wxpython/iclass/g.gui.iclass.py:122 @@ -6696,18 +6680,18 @@ msgstr "" msgid "Add raster map" msgstr "" -#: ../gui/wxpython/icons/icon.py:36 +#: ../gui/wxpython/icons/icon.py:37 #, python-format msgid "Unknown iconset '%s', using default 'grass'...\n" msgstr "" -#: ../gui/wxpython/icons/icon.py:50 +#: ../gui/wxpython/icons/icon.py:51 #, python-format msgid "Unable to load icon theme. Reason: %s. Quitting wxGUI..." msgstr "" #: ../gui/wxpython/image2target/ii2t_gis_set.py:122 -msgid "1. Select GRASS GIS database directory" +msgid "1. Select GRASS database directory" msgstr "" #: ../gui/wxpython/image2target/ii2t_gis_set.py:127 @@ -6719,7 +6703,7 @@ msgid "3. Select GRASS Mapset" msgstr "" #: ../gui/wxpython/image2target/ii2t_gis_set.py:151 -msgid "GRASS GIS database directory contains Locations." +msgid "GRASS database directory contains Locations." msgstr "" #: ../gui/wxpython/image2target/ii2t_gis_set.py:158 @@ -6789,7 +6773,7 @@ msgstr "" #: ../gui/wxpython/image2target/ii2t_gis_set.py:299 #, python-format -msgid "GRASS GIS %s startup%s" +msgid "GRASS %s startup%s" msgstr "" #: ../gui/wxpython/image2target/ii2t_gis_set.py:304 @@ -6816,7 +6800,7 @@ msgid "Invalid line in GISRC file (%s):%s\n" msgstr "" #: ../gui/wxpython/image2target/ii2t_gis_set.py:579 -#: ../gui/wxpython/startup/locdownload.py:421 +#: ../gui/wxpython/startup/locdownload.py:423 #, python-brace-format msgid "Error: {text}" msgstr "" @@ -6836,7 +6820,7 @@ msgid "New mapset:" msgstr "" #: ../gui/wxpython/image2target/ii2t_gis_set.py:632 -#: ../gui/wxpython/image2target/ii2t_gis_set.py:1032 +#: ../gui/wxpython/image2target/ii2t_gis_set.py:1034 #: ../gui/wxpython/startup/guiutils.py:134 msgid "Create new mapset" msgstr "" @@ -6945,21 +6929,21 @@ msgstr "" msgid "No GRASS Location found in '%s'. Create a new Location or choose different GRASS database directory." msgstr "" -#: ../gui/wxpython/image2target/ii2t_gis_set.py:1001 +#: ../gui/wxpython/image2target/ii2t_gis_set.py:1003 #, python-format msgid "Path '%s' doesn't exist." msgstr "" -#: ../gui/wxpython/image2target/ii2t_gis_set.py:1031 +#: ../gui/wxpython/image2target/ii2t_gis_set.py:1033 msgid "Enter name for new mapset:" msgstr "" -#: ../gui/wxpython/image2target/ii2t_gis_set.py:1043 +#: ../gui/wxpython/image2target/ii2t_gis_set.py:1045 #, python-format msgid "Mapset <%s> already exists." msgstr "" -#: ../gui/wxpython/image2target/ii2t_gis_set.py:1050 +#: ../gui/wxpython/image2target/ii2t_gis_set.py:1052 #, python-format msgid "" "Mapset <%s> is reserved for direct read access to OGR layers. Please consider to use another name for your mapset.\n" @@ -6967,16 +6951,16 @@ msgid "" "Are you really sure that you want to create this mapset?" msgstr "" -#: ../gui/wxpython/image2target/ii2t_gis_set.py:1056 +#: ../gui/wxpython/image2target/ii2t_gis_set.py:1058 msgid "Reserved mapset name" msgstr "" -#: ../gui/wxpython/image2target/ii2t_gis_set.py:1084 +#: ../gui/wxpython/image2target/ii2t_gis_set.py:1086 #, python-format msgid "Unable to create new mapset: %s" msgstr "" -#: ../gui/wxpython/image2target/ii2t_gis_set.py:1100 +#: ../gui/wxpython/image2target/ii2t_gis_set.py:1102 #, python-format msgid "" "GRASS is already running in selected mapset <%(mapset)s>\n" @@ -6987,19 +6971,19 @@ msgid "" "Do you want to try to remove .gislock (note that you need permission for this operation) and continue?" msgstr "" -#: ../gui/wxpython/image2target/ii2t_gis_set.py:1107 -#: ../gui/wxpython/image2target/ii2t_gis_set.py:1124 +#: ../gui/wxpython/image2target/ii2t_gis_set.py:1109 +#: ../gui/wxpython/image2target/ii2t_gis_set.py:1126 msgid "Lock file found" msgstr "" -#: ../gui/wxpython/image2target/ii2t_gis_set.py:1119 +#: ../gui/wxpython/image2target/ii2t_gis_set.py:1121 msgid "" "ARE YOU REALLY SURE?\n" "\n" "If you really are running another GRASS session doing this could corrupt your data. Have another look in the processor manager just to be sure..." msgstr "" -#: ../gui/wxpython/image2target/ii2t_gis_set.py:1136 +#: ../gui/wxpython/image2target/ii2t_gis_set.py:1138 #, python-format msgid "" "Unable to remove '%(lock)s'.\n" @@ -7007,64 +6991,64 @@ msgid "" "Details: %(reason)s" msgstr "" -#: ../gui/wxpython/image2target/ii2t_gis_set.py:1180 +#: ../gui/wxpython/image2target/ii2t_gis_set.py:1182 #, python-format msgid "Name <%(name)s> is not a valid name for location or mapset. Please use only ASCII characters excluding %(chars)s and space." msgstr "" -#: ../gui/wxpython/image2target/ii2t_gis_set.py:1257 +#: ../gui/wxpython/image2target/ii2t_gis_set.py:1259 msgid "GRASS needs a directory (GRASS database) in which to store its data. Create one now if you have not already done so. A popular choice is \"grassdata\", located in your home directory. Press Browse button to select the directory." msgstr "" -#: ../gui/wxpython/image2target/ii2t_manager.py:565 +#: ../gui/wxpython/image2target/ii2t_manager.py:564 msgid "Select group:" msgstr "" -#: ../gui/wxpython/image2target/ii2t_manager.py:1547 +#: ../gui/wxpython/image2target/ii2t_manager.py:1546 msgid "Writing CONTROL_POINTS file failed" msgstr "" -#: ../gui/wxpython/image2target/ii2t_manager.py:1559 +#: ../gui/wxpython/image2target/ii2t_manager.py:1558 #, python-format msgid "CONTROL_POINTS file saved for group <%s>" msgstr "" -#: ../gui/wxpython/image2target/ii2t_manager.py:1606 +#: ../gui/wxpython/image2target/ii2t_manager.py:1605 msgid "Reading CONTROL_POINTS file failed" msgstr "" -#: ../gui/wxpython/image2target/ii2t_manager.py:1945 +#: ../gui/wxpython/image2target/ii2t_manager.py:1944 msgid "" "Could not calculate RMS Error.\n" "Possible error with i.ortho.transform." msgstr "" -#: ../gui/wxpython/image2target/ii2t_manager.py:2076 +#: ../gui/wxpython/image2target/ii2t_manager.py:2075 msgid "" "Could not calculate new extends.\n" "Possible error with i.ortho.transform." msgstr "" -#: ../gui/wxpython/image2target/ii2t_manager.py:2325 -#: ../gui/wxpython/image2target/ii2t_manager.py:2346 +#: ../gui/wxpython/image2target/ii2t_manager.py:2322 +#: ../gui/wxpython/image2target/ii2t_manager.py:2343 msgid "source Z" msgstr "" -#: ../gui/wxpython/image2target/ii2t_manager.py:2328 -#: ../gui/wxpython/image2target/ii2t_manager.py:2349 +#: ../gui/wxpython/image2target/ii2t_manager.py:2325 +#: ../gui/wxpython/image2target/ii2t_manager.py:2346 msgid "target Z" msgstr "" -#: ../gui/wxpython/image2target/ii2t_manager.py:2719 +#: ../gui/wxpython/image2target/ii2t_manager.py:2716 msgid "source Z:" msgstr "" -#: ../gui/wxpython/image2target/ii2t_manager.py:2720 +#: ../gui/wxpython/image2target/ii2t_manager.py:2717 msgid "target Z:" msgstr "" #: ../gui/wxpython/image2target/ii2t_mapdisplay.py:50 -msgid "GRASS GIS Manage Ground Control Points" +msgid "GRASS Manage Ground Control Points" msgstr "" #: ../gui/wxpython/iscatt/controllers.py:209 @@ -7406,7 +7390,7 @@ msgid "Remove selected class" msgstr "" #: ../gui/wxpython/lmgr/frame.py:111 ../gui/wxpython/main_window/frame.py:128 -msgid "GRASS GIS" +msgid "GRASS" msgstr "" #: ../gui/wxpython/lmgr/frame.py:143 @@ -7457,9 +7441,9 @@ msgstr "" msgid "Command '%s' not yet implemented in the WxGUI. Try adding it as a command layer instead." msgstr "" -#: ../gui/wxpython/lmgr/frame.py:1180 ../gui/wxpython/lmgr/frame.py:1858 +#: ../gui/wxpython/lmgr/frame.py:1180 ../gui/wxpython/lmgr/frame.py:1859 #: ../gui/wxpython/main_window/frame.py:1336 -#: ../gui/wxpython/main_window/frame.py:2022 +#: ../gui/wxpython/main_window/frame.py:2024 msgid "Selected map layer is not vector." msgstr "" @@ -7546,43 +7530,43 @@ msgstr "" msgid "Choose a working directory" msgstr "" -#: ../gui/wxpython/lmgr/frame.py:1472 ../gui/wxpython/main_window/frame.py:1628 +#: ../gui/wxpython/lmgr/frame.py:1473 ../gui/wxpython/main_window/frame.py:1629 msgid "System Info" msgstr "" -#: ../gui/wxpython/lmgr/frame.py:1488 ../gui/wxpython/main_window/frame.py:1644 +#: ../gui/wxpython/lmgr/frame.py:1489 ../gui/wxpython/main_window/frame.py:1645 msgid "GRASS version" msgstr "" -#: ../gui/wxpython/lmgr/frame.py:1490 ../gui/wxpython/main_window/frame.py:1646 +#: ../gui/wxpython/lmgr/frame.py:1491 ../gui/wxpython/main_window/frame.py:1647 msgid "Code revision" msgstr "" -#: ../gui/wxpython/lmgr/frame.py:1492 ../gui/wxpython/main_window/frame.py:1648 +#: ../gui/wxpython/lmgr/frame.py:1493 ../gui/wxpython/main_window/frame.py:1649 msgid "Build date" msgstr "" -#: ../gui/wxpython/lmgr/frame.py:1494 ../gui/wxpython/main_window/frame.py:1650 +#: ../gui/wxpython/lmgr/frame.py:1495 ../gui/wxpython/main_window/frame.py:1651 msgid "Build platform" msgstr "" -#: ../gui/wxpython/lmgr/frame.py:1506 ../gui/wxpython/main_window/frame.py:1662 +#: ../gui/wxpython/lmgr/frame.py:1507 ../gui/wxpython/main_window/frame.py:1663 msgid "Platform" msgstr "" -#: ../gui/wxpython/lmgr/frame.py:1566 ../gui/wxpython/main_window/frame.py:1722 +#: ../gui/wxpython/lmgr/frame.py:1567 ../gui/wxpython/main_window/frame.py:1724 msgid "Close all Map Displays" msgstr "" -#: ../gui/wxpython/lmgr/frame.py:1584 ../gui/wxpython/main_window/frame.py:1740 +#: ../gui/wxpython/lmgr/frame.py:1585 ../gui/wxpython/main_window/frame.py:1742 msgid "Enter new name:" msgstr "" -#: ../gui/wxpython/lmgr/frame.py:1585 ../gui/wxpython/main_window/frame.py:1741 +#: ../gui/wxpython/lmgr/frame.py:1586 ../gui/wxpython/main_window/frame.py:1743 msgid "Rename Map Display" msgstr "" -#: ../gui/wxpython/lmgr/frame.py:1679 ../gui/wxpython/main_window/frame.py:1834 +#: ../gui/wxpython/lmgr/frame.py:1680 ../gui/wxpython/main_window/frame.py:1836 #, python-format msgid "" "Unable to launch \"Supervised Classification Tool\".\n" @@ -7590,35 +7574,35 @@ msgid "" "Reason: %s" msgstr "" -#: ../gui/wxpython/lmgr/frame.py:1726 ../gui/wxpython/main_window/frame.py:1881 +#: ../gui/wxpython/lmgr/frame.py:1727 ../gui/wxpython/main_window/frame.py:1883 msgid "Unable to start Timeline Tool." msgstr "" -#: ../gui/wxpython/lmgr/frame.py:1736 ../gui/wxpython/main_window/frame.py:1891 +#: ../gui/wxpython/lmgr/frame.py:1737 ../gui/wxpython/main_window/frame.py:1893 msgid "Unable to start Temporal Plot Tool." msgstr "" -#: ../gui/wxpython/lmgr/frame.py:1906 ../gui/wxpython/main_window/frame.py:2068 +#: ../gui/wxpython/lmgr/frame.py:1907 ../gui/wxpython/main_window/frame.py:2070 msgid "Add selected map layers into layer tree" msgstr "" -#: ../gui/wxpython/lmgr/frame.py:1938 ../gui/wxpython/lmgr/frame.py:1976 -#: ../gui/wxpython/main_window/frame.py:2100 -#: ../gui/wxpython/main_window/frame.py:2138 +#: ../gui/wxpython/lmgr/frame.py:1939 ../gui/wxpython/lmgr/frame.py:1977 +#: ../gui/wxpython/main_window/frame.py:2102 +#: ../gui/wxpython/main_window/frame.py:2140 #, python-format msgid "Unsupported map layer type <%s>." msgstr "" -#: ../gui/wxpython/lmgr/frame.py:2119 ../gui/wxpython/main_window/frame.py:2262 +#: ../gui/wxpython/lmgr/frame.py:2120 ../gui/wxpython/main_window/frame.py:2264 msgid "Note that cell values can only be displayed for regions of less than 10,000 cells." msgstr "" -#: ../gui/wxpython/lmgr/frame.py:2214 ../gui/wxpython/lmgr/layertree.py:2128 -#: ../gui/wxpython/main_window/frame.py:2338 +#: ../gui/wxpython/lmgr/frame.py:2215 ../gui/wxpython/lmgr/layertree.py:2128 +#: ../gui/wxpython/main_window/frame.py:2340 msgid "opacity:" msgstr "" -#: ../gui/wxpython/lmgr/frame.py:2223 ../gui/wxpython/main_window/frame.py:2347 +#: ../gui/wxpython/lmgr/frame.py:2224 ../gui/wxpython/main_window/frame.py:2349 #, python-format msgid "" "Do you want to remove map layer(s)\n" @@ -7626,23 +7610,23 @@ msgid "" "from layer tree?" msgstr "" -#: ../gui/wxpython/lmgr/frame.py:2228 ../gui/wxpython/main_window/frame.py:2352 +#: ../gui/wxpython/lmgr/frame.py:2229 ../gui/wxpython/main_window/frame.py:2354 msgid "Do you want to remove selected map layer(s) from layer tree?" msgstr "" -#: ../gui/wxpython/lmgr/frame.py:2234 ../gui/wxpython/main_window/frame.py:2358 +#: ../gui/wxpython/lmgr/frame.py:2235 ../gui/wxpython/main_window/frame.py:2360 msgid "Remove map layer" msgstr "" -#: ../gui/wxpython/lmgr/frame.py:2292 ../gui/wxpython/main_window/frame.py:2400 +#: ../gui/wxpython/lmgr/frame.py:2293 ../gui/wxpython/main_window/frame.py:2402 msgid "Quit GRASS GUI" msgstr "" -#: ../gui/wxpython/lmgr/frame.py:2330 ../gui/wxpython/main_window/frame.py:2438 +#: ../gui/wxpython/lmgr/frame.py:2331 ../gui/wxpython/main_window/frame.py:2440 msgid "Display resolution is currently not constrained to computational settings. It's suggested to constrain map to region geometry. Do you want to constrain the resolution?" msgstr "" -#: ../gui/wxpython/lmgr/frame.py:2341 ../gui/wxpython/main_window/frame.py:2449 +#: ../gui/wxpython/lmgr/frame.py:2342 ../gui/wxpython/main_window/frame.py:2451 msgid "Constrain map to region geometry?" msgstr "" @@ -7812,17 +7796,17 @@ msgid "Unable to create profile of raster map." msgstr "" #: ../gui/wxpython/lmgr/layertree.py:1045 -#: ../gui/wxpython/nviz/mapwindow.py:1782 ../gui/wxpython/nviz/tools.py:895 +#: ../gui/wxpython/nviz/mapwindow.py:1782 ../gui/wxpython/nviz/tools.py:894 #: ../gui/wxpython/psmap/dialogs.py:1635 msgid "Raster map" msgstr "" -#: ../gui/wxpython/lmgr/layertree.py:1049 ../gui/wxpython/nviz/tools.py:1530 +#: ../gui/wxpython/lmgr/layertree.py:1049 ../gui/wxpython/nviz/tools.py:1529 #: ../gui/wxpython/psmap/dialogs.py:3642 msgid "Vector map" msgstr "" -#: ../gui/wxpython/lmgr/layertree.py:1053 ../gui/wxpython/nviz/tools.py:1954 +#: ../gui/wxpython/lmgr/layertree.py:1053 ../gui/wxpython/nviz/tools.py:1953 msgid "3D raster map" msgstr "" @@ -7930,8 +7914,8 @@ msgstr "" msgid "Vector map <%s> added" msgstr "" -#: ../gui/wxpython/lmgr/statusbar.py:80 ../gui/wxpython/nviz/tools.py:1048 -#: ../gui/wxpython/nviz/tools.py:2944 ../gui/wxpython/psmap/dialogs.py:2408 +#: ../gui/wxpython/lmgr/statusbar.py:80 ../gui/wxpython/nviz/tools.py:1047 +#: ../gui/wxpython/nviz/tools.py:2943 ../gui/wxpython/psmap/dialogs.py:2408 msgid "Mask" msgstr "" @@ -7967,8 +7951,8 @@ msgstr "" msgid "Open workspace" msgstr "" -#: ../gui/wxpython/lmgr/toolbars.py:68 ../gui/wxpython/lmgr/workspace.py:394 -#: ../gui/wxpython/lmgr/workspace.py:417 +#: ../gui/wxpython/lmgr/toolbars.py:68 ../gui/wxpython/lmgr/workspace.py:393 +#: ../gui/wxpython/lmgr/workspace.py:416 msgid "Save workspace" msgstr "" @@ -8097,27 +8081,27 @@ msgstr "" msgid "Show 3D view mode manual" msgstr "" -#: ../gui/wxpython/lmgr/workspace.py:74 +#: ../gui/wxpython/lmgr/workspace.py:73 msgid "Current workspace is not empty. Do you want to store current settings to workspace file?" msgstr "" -#: ../gui/wxpython/lmgr/workspace.py:78 +#: ../gui/wxpython/lmgr/workspace.py:77 msgid "Create new workspace?" msgstr "" -#: ../gui/wxpython/lmgr/workspace.py:107 +#: ../gui/wxpython/lmgr/workspace.py:106 msgid "Choose workspace file" msgstr "" -#: ../gui/wxpython/lmgr/workspace.py:109 ../gui/wxpython/lmgr/workspace.py:371 +#: ../gui/wxpython/lmgr/workspace.py:108 ../gui/wxpython/lmgr/workspace.py:370 msgid "GRASS Workspace File (*.gxw)|*.gxw" msgstr "" -#: ../gui/wxpython/lmgr/workspace.py:138 +#: ../gui/wxpython/lmgr/workspace.py:137 msgid "Most likely the database, location or mapset does not exist" msgstr "" -#: ../gui/wxpython/lmgr/workspace.py:141 +#: ../gui/wxpython/lmgr/workspace.py:140 #, python-brace-format msgid "" "Unable to change to location and mapset specified in the workspace.\n" @@ -8127,18 +8111,18 @@ msgid "" "Do you want to proceed with opening the workspace anyway?" msgstr "" -#: ../gui/wxpython/lmgr/workspace.py:150 +#: ../gui/wxpython/lmgr/workspace.py:149 msgid "Proceed with opening of the workspace?" msgstr "" -#: ../gui/wxpython/lmgr/workspace.py:161 +#: ../gui/wxpython/lmgr/workspace.py:160 #, python-format msgid "" "Current location is <%(loc)s>.\n" "Current mapset is <%(mapset)s>." msgstr "" -#: ../gui/wxpython/lmgr/workspace.py:181 +#: ../gui/wxpython/lmgr/workspace.py:180 #, python-format msgid "" "Reading workspace file <%s> failed.\n" @@ -8146,39 +8130,39 @@ msgid "" "Error details: %s" msgstr "" -#: ../gui/wxpython/lmgr/workspace.py:194 +#: ../gui/wxpython/lmgr/workspace.py:193 msgid "Please wait, loading workspace..." msgstr "" -#: ../gui/wxpython/lmgr/workspace.py:369 +#: ../gui/wxpython/lmgr/workspace.py:368 msgid "Choose file to save current workspace" msgstr "" -#: ../gui/wxpython/lmgr/workspace.py:390 ../gui/wxpython/lmgr/workspace.py:413 +#: ../gui/wxpython/lmgr/workspace.py:389 ../gui/wxpython/lmgr/workspace.py:412 #, python-format msgid "Workspace file <%s> already exists. Do you want to overwrite this file?" msgstr "" -#: ../gui/wxpython/lmgr/workspace.py:443 +#: ../gui/wxpython/lmgr/workspace.py:442 #, python-format msgid "" "Writing current settings to workspace file <%s> failed.\n" "Error details: %s" msgstr "" -#: ../gui/wxpython/lmgr/workspace.py:470 +#: ../gui/wxpython/lmgr/workspace.py:469 msgid "Do you want to save changes in the workspace?" msgstr "" -#: ../gui/wxpython/lmgr/workspace.py:472 +#: ../gui/wxpython/lmgr/workspace.py:471 msgid "Do you want to store current settings to workspace file?" msgstr "" -#: ../gui/wxpython/lmgr/workspace.py:525 +#: ../gui/wxpython/lmgr/workspace.py:524 msgid "Workspace" msgstr "" -#: ../gui/wxpython/lmgr/workspace.py:562 +#: ../gui/wxpython/lmgr/workspace.py:561 msgid "File <{}> doesn't exist. It was probably moved or deleted." msgstr "" @@ -8324,6 +8308,10 @@ msgstr "" msgid "Existing project path" msgstr "" +#: ../gui/wxpython/location_wizard/wizard.py:328 +msgid "Choose GRASS data directory:" +msgstr "" + #: ../gui/wxpython/location_wizard/wizard.py:346 msgid "Title of the project is limited only to one line and 256 characters. The rest of the text will be ignored." msgstr "" @@ -8559,12 +8547,12 @@ msgstr "" msgid "IAU code missing." msgstr "" -#: ../gui/wxpython/location_wizard/wizard.py:2736 +#: ../gui/wxpython/location_wizard/wizard.py:2737 #, python-format msgid "File <%s> not found." msgstr "" -#: ../gui/wxpython/location_wizard/wizard.py:2746 +#: ../gui/wxpython/location_wizard/wizard.py:2747 msgid "WKT string missing." msgstr "" @@ -8576,7 +8564,11 @@ msgstr "" msgid "No project provided. Operation canceled." msgstr "" -#: ../gui/wxpython/main_window/frame.py:2000 +#: ../gui/wxpython/main_window/frame.py:1714 +msgid "Close workspace" +msgstr "" + +#: ../gui/wxpython/main_window/frame.py:2002 msgid "Code editor" msgstr "" @@ -8660,53 +8652,53 @@ msgstr "" msgid "No raster or vector map layer selected for querying." msgstr "" -#: ../gui/wxpython/mapdisp/frame.py:1115 +#: ../gui/wxpython/mapdisp/frame.py:1113 #, python-brace-format msgid "Failed to query vector map(s) <{maps}>. Check database settings and topology." msgstr "" -#: ../gui/wxpython/mapdisp/frame.py:1535 +#: ../gui/wxpython/mapdisp/frame.py:1533 msgid "Set computational region extent from display" msgstr "" -#: ../gui/wxpython/mapdisp/frame.py:1539 +#: ../gui/wxpython/mapdisp/frame.py:1537 msgid "Set computational region extent interactively" msgstr "" -#: ../gui/wxpython/mapdisp/frame.py:1542 -#: ../gui/wxpython/mapwin/buffered.py:2095 +#: ../gui/wxpython/mapdisp/frame.py:1540 +#: ../gui/wxpython/mapwin/buffered.py:2096 msgid "Set computational region from named region" msgstr "" -#: ../gui/wxpython/mapdisp/frame.py:1545 +#: ../gui/wxpython/mapdisp/frame.py:1543 msgid "Save computational region to named region" msgstr "" -#: ../gui/wxpython/mapdisp/frame.py:1656 +#: ../gui/wxpython/mapdisp/frame.py:1654 msgid "Raster Digitizer Toolbar" msgstr "" -#: ../gui/wxpython/mapdisp/main.py:187 +#: ../gui/wxpython/mapdisp/main.py:188 #, python-format msgid "Unsupported command %s." msgstr "" -#: ../gui/wxpython/mapdisp/main.py:288 +#: ../gui/wxpython/mapdisp/main.py:289 #, python-format msgid "Unable to read cmdfile '%(cmd)s'. Details: %(det)s" msgstr "" -#: ../gui/wxpython/mapdisp/main.py:654 +#: ../gui/wxpython/mapdisp/main.py:653 #, python-format msgid "Starting map display <%s>..." msgstr "" -#: ../gui/wxpython/mapdisp/main.py:660 +#: ../gui/wxpython/mapdisp/main.py:659 #, python-format msgid "Unable to create file <%s>" msgstr "" -#: ../gui/wxpython/mapdisp/main.py:673 +#: ../gui/wxpython/mapdisp/main.py:672 #, python-format msgid "Stopping map display <%s>..." msgstr "" @@ -8791,7 +8783,7 @@ msgid "Display extent" msgstr "" #: ../gui/wxpython/mapdisp/statusbar.py:939 -#: ../gui/wxpython/web_services/dialogs.py:874 +#: ../gui/wxpython/web_services/dialogs.py:875 msgid "Computational region" msgstr "" @@ -8899,7 +8891,7 @@ msgid "Drag with mouse to rotate 3D scene" msgstr "" #: ../gui/wxpython/mapdisp/toolbars.py:68 -#: ../gui/wxpython/nviz/preferences.py:263 +#: ../gui/wxpython/nviz/preferences.py:261 msgid "Fly-through mode" msgstr "" @@ -8980,7 +8972,7 @@ msgid "Shape:" msgstr "" #: ../gui/wxpython/mapswipe/dialogs.py:356 -#: ../gui/wxpython/nviz/preferences.py:625 +#: ../gui/wxpython/nviz/preferences.py:623 msgid "Size:" msgstr "" @@ -8994,7 +8986,7 @@ msgid "Map <%s> not found. " msgstr "" #: ../gui/wxpython/mapswipe/g.gui.mapswipe.py:87 -msgid "Map Swipe Tool - GRASS GIS" +msgid "Map Swipe Tool - GRASS" msgstr "" #: ../gui/wxpython/mapswipe/toolbars.py:140 @@ -9097,40 +9089,40 @@ msgid "" " Handler was unregistered" msgstr "" -#: ../gui/wxpython/mapwin/buffered.py:280 +#: ../gui/wxpython/mapwin/buffered.py:281 msgid "Copy coordinates to clipboard" msgstr "" -#: ../gui/wxpython/mapwin/buffered.py:314 +#: ../gui/wxpython/mapwin/buffered.py:315 msgid "Resize and move legend" msgstr "" -#: ../gui/wxpython/mapwin/buffered.py:715 +#: ../gui/wxpython/mapwin/buffered.py:716 msgid "Please wait, exporting image..." msgstr "" -#: ../gui/wxpython/mapwin/buffered.py:1042 +#: ../gui/wxpython/mapwin/buffered.py:1043 msgid "Unable to draw registered graphics. The graphics was unregistered." msgstr "" -#: ../gui/wxpython/mapwin/buffered.py:2093 +#: ../gui/wxpython/mapwin/buffered.py:2094 msgid "Zoom to saved region extents" msgstr "" -#: ../gui/wxpython/mapwin/buffered.py:2106 +#: ../gui/wxpython/mapwin/buffered.py:2107 #, python-format msgid "Region <%s> not found. Operation canceled." msgstr "" -#: ../gui/wxpython/mapwin/buffered.py:2135 +#: ../gui/wxpython/mapwin/buffered.py:2136 msgid "Save display extents to region file" msgstr "" -#: ../gui/wxpython/mapwin/buffered.py:2137 +#: ../gui/wxpython/mapwin/buffered.py:2138 msgid "Save computational region to region file" msgstr "" -#: ../gui/wxpython/mapwin/buffered.py:2149 +#: ../gui/wxpython/mapwin/buffered.py:2150 #, python-format msgid "Region file <%s> already exists. Do you want to overwrite it?" msgstr "" @@ -9518,11 +9510,11 @@ msgstr "" msgid "Extension" msgstr "" -#: ../gui/wxpython/modules/histogram.py:298 +#: ../gui/wxpython/modules/histogram.py:299 msgid "Histogram Tool [d.histogram]" msgstr "" -#: ../gui/wxpython/modules/histogram.py:427 +#: ../gui/wxpython/modules/histogram.py:428 msgid "Select font for histogram text" msgstr "" @@ -9544,7 +9536,7 @@ msgid "List of %s layers" msgstr "" #: ../gui/wxpython/modules/import_export.py:81 -#: ../gui/wxpython/modules/import_export.py:1008 +#: ../gui/wxpython/modules/import_export.py:1010 msgid "right click to (un)select all" msgstr "" @@ -9558,13 +9550,13 @@ msgstr "" #: ../gui/wxpython/modules/import_export.py:134 #: ../gui/wxpython/modules/import_export.py:457 -#: ../gui/wxpython/modules/import_export.py:619 +#: ../gui/wxpython/modules/import_export.py:621 msgid "&Import" msgstr "" #: ../gui/wxpython/modules/import_export.py:135 #: ../gui/wxpython/modules/import_export.py:458 -#: ../gui/wxpython/modules/import_export.py:620 +#: ../gui/wxpython/modules/import_export.py:622 msgid "Import selected layers" msgstr "" @@ -9595,84 +9587,84 @@ msgid "Link external raster data" msgstr "" #: ../gui/wxpython/modules/import_export.py:445 -#: ../gui/wxpython/modules/import_export.py:607 +#: ../gui/wxpython/modules/import_export.py:609 msgid "Add linked layers into layer tree" msgstr "" #: ../gui/wxpython/modules/import_export.py:447 -#: ../gui/wxpython/modules/import_export.py:609 -#: ../gui/wxpython/modules/import_export.py:867 +#: ../gui/wxpython/modules/import_export.py:611 +#: ../gui/wxpython/modules/import_export.py:869 msgid "Add imported layers into layer tree" msgstr "" #: ../gui/wxpython/modules/import_export.py:454 -#: ../gui/wxpython/modules/import_export.py:616 +#: ../gui/wxpython/modules/import_export.py:618 msgid "&Link" msgstr "" #: ../gui/wxpython/modules/import_export.py:455 -#: ../gui/wxpython/modules/import_export.py:617 +#: ../gui/wxpython/modules/import_export.py:619 msgid "Link selected layers" msgstr "" #: ../gui/wxpython/modules/import_export.py:478 -#: ../gui/wxpython/modules/import_export.py:640 +#: ../gui/wxpython/modules/import_export.py:642 msgid "No layers selected. Operation canceled." msgstr "" -#: ../gui/wxpython/modules/import_export.py:523 +#: ../gui/wxpython/modules/import_export.py:525 msgid "Unable to determine number of raster bands" msgstr "" -#: ../gui/wxpython/modules/import_export.py:598 +#: ../gui/wxpython/modules/import_export.py:600 msgid "Link external vector data" msgstr "" -#: ../gui/wxpython/modules/import_export.py:752 +#: ../gui/wxpython/modules/import_export.py:754 msgid "Define output format for vector data" msgstr "" -#: ../gui/wxpython/modules/import_export.py:754 +#: ../gui/wxpython/modules/import_export.py:756 msgid "Define output format for raster data" msgstr "" -#: ../gui/wxpython/modules/import_export.py:762 +#: ../gui/wxpython/modules/import_export.py:764 msgid "Set external format and close dialog" msgstr "" -#: ../gui/wxpython/modules/import_export.py:822 +#: ../gui/wxpython/modules/import_export.py:824 msgid "No data source selected." msgstr "" -#: ../gui/wxpython/modules/import_export.py:846 +#: ../gui/wxpython/modules/import_export.py:848 msgid "Import DXF layers" msgstr "" -#: ../gui/wxpython/modules/import_export.py:859 +#: ../gui/wxpython/modules/import_export.py:861 msgid "Choose DXF file to import" msgstr "" -#: ../gui/wxpython/modules/import_export.py:879 +#: ../gui/wxpython/modules/import_export.py:881 msgid "No layers selected." msgstr "" -#: ../gui/wxpython/modules/import_export.py:979 +#: ../gui/wxpython/modules/import_export.py:981 msgid "Name for output GRASS map" msgstr "" -#: ../gui/wxpython/modules/import_export.py:1001 +#: ../gui/wxpython/modules/import_export.py:1003 msgid "Projection of following layers do not match with projection of current location. " msgstr "" -#: ../gui/wxpython/modules/import_export.py:1006 +#: ../gui/wxpython/modules/import_export.py:1008 msgid "Layers to be reprojected" msgstr "" -#: ../gui/wxpython/modules/import_export.py:1019 +#: ../gui/wxpython/modules/import_export.py:1021 msgid "&Import && reproject" msgstr "" -#: ../gui/wxpython/modules/import_export.py:1021 +#: ../gui/wxpython/modules/import_export.py:1023 msgid "Reproject selected layers" msgstr "" @@ -9987,8 +9979,8 @@ msgid "" msgstr "" #: ../gui/wxpython/nviz/mapwindow.py:2392 -#: ../gui/wxpython/nviz/mapwindow.py:2411 ../gui/wxpython/nviz/tools.py:2806 -#: ../gui/wxpython/nviz/tools.py:5177 +#: ../gui/wxpython/nviz/mapwindow.py:2411 ../gui/wxpython/nviz/tools.py:2805 +#: ../gui/wxpython/nviz/tools.py:5178 msgid "constant#" msgstr "" @@ -9996,340 +9988,340 @@ msgstr "" msgid "3D view default settings" msgstr "" -#: ../gui/wxpython/nviz/preferences.py:58 +#: ../gui/wxpython/nviz/preferences.py:56 msgid "Revert settings to default, changes are not applied" msgstr "" -#: ../gui/wxpython/nviz/preferences.py:65 -#: ../gui/wxpython/nviz/preferences.py:69 ../gui/wxpython/nviz/tools.py:111 +#: ../gui/wxpython/nviz/preferences.py:63 +#: ../gui/wxpython/nviz/preferences.py:67 ../gui/wxpython/nviz/tools.py:110 msgid "View" msgstr "" -#: ../gui/wxpython/nviz/preferences.py:79 ../gui/wxpython/nviz/tools.py:349 +#: ../gui/wxpython/nviz/preferences.py:77 ../gui/wxpython/nviz/tools.py:348 msgid "Perspective:" msgstr "" -#: ../gui/wxpython/nviz/preferences.py:84 -#: ../gui/wxpython/nviz/preferences.py:173 -#: ../gui/wxpython/nviz/preferences.py:198 +#: ../gui/wxpython/nviz/preferences.py:82 +#: ../gui/wxpython/nviz/preferences.py:171 +#: ../gui/wxpython/nviz/preferences.py:196 msgid "value:" msgstr "" -#: ../gui/wxpython/nviz/preferences.py:101 +#: ../gui/wxpython/nviz/preferences.py:99 msgid "step:" msgstr "" -#: ../gui/wxpython/nviz/preferences.py:121 -#: ../gui/wxpython/nviz/preferences.py:327 +#: ../gui/wxpython/nviz/preferences.py:119 +#: ../gui/wxpython/nviz/preferences.py:325 msgid "Position:" msgstr "" -#: ../gui/wxpython/nviz/preferences.py:126 -#: ../gui/wxpython/nviz/preferences.py:332 +#: ../gui/wxpython/nviz/preferences.py:124 +#: ../gui/wxpython/nviz/preferences.py:330 msgid "x:" msgstr "" -#: ../gui/wxpython/nviz/preferences.py:168 +#: ../gui/wxpython/nviz/preferences.py:166 msgid "Twist:" msgstr "" -#: ../gui/wxpython/nviz/preferences.py:193 ../gui/wxpython/nviz/tools.py:436 +#: ../gui/wxpython/nviz/preferences.py:191 ../gui/wxpython/nviz/tools.py:435 msgid "Z-exag:" msgstr "" -#: ../gui/wxpython/nviz/preferences.py:223 ../gui/wxpython/nviz/tools.py:510 +#: ../gui/wxpython/nviz/preferences.py:221 ../gui/wxpython/nviz/tools.py:509 msgid "Image Appearance" msgstr "" -#: ../gui/wxpython/nviz/preferences.py:259 +#: ../gui/wxpython/nviz/preferences.py:257 msgid "Fly-through" msgstr "" -#: ../gui/wxpython/nviz/preferences.py:270 +#: ../gui/wxpython/nviz/preferences.py:268 msgid "Move exag:" msgstr "" -#: ../gui/wxpython/nviz/preferences.py:288 +#: ../gui/wxpython/nviz/preferences.py:286 msgid "Turn exag:" msgstr "" -#: ../gui/wxpython/nviz/preferences.py:316 ../gui/wxpython/nviz/tools.py:810 +#: ../gui/wxpython/nviz/preferences.py:314 ../gui/wxpython/nviz/tools.py:809 msgid "Lighting" msgstr "" -#: ../gui/wxpython/nviz/preferences.py:320 +#: ../gui/wxpython/nviz/preferences.py:318 msgid "Light" msgstr "" -#: ../gui/wxpython/nviz/preferences.py:366 +#: ../gui/wxpython/nviz/preferences.py:364 msgid "z:" msgstr "" -#: ../gui/wxpython/nviz/preferences.py:385 ../gui/wxpython/nviz/tools.py:2258 +#: ../gui/wxpython/nviz/preferences.py:383 ../gui/wxpython/nviz/tools.py:2257 msgid "Brightness:" msgstr "" -#: ../gui/wxpython/nviz/preferences.py:399 ../gui/wxpython/nviz/tools.py:2283 +#: ../gui/wxpython/nviz/preferences.py:397 ../gui/wxpython/nviz/tools.py:2282 msgid "Ambient:" msgstr "" -#: ../gui/wxpython/nviz/preferences.py:438 ../gui/wxpython/nviz/tools.py:744 -#: ../gui/wxpython/nviz/tools.py:2346 +#: ../gui/wxpython/nviz/preferences.py:436 ../gui/wxpython/nviz/tools.py:743 +#: ../gui/wxpython/nviz/tools.py:2345 msgid "Surface" msgstr "" -#: ../gui/wxpython/nviz/preferences.py:444 ../gui/wxpython/nviz/tools.py:915 -#: ../gui/wxpython/nviz/tools.py:1974 ../gui/wxpython/timeline/frame.py:139 -#: ../gui/wxpython/tplot/frame.py:402 +#: ../gui/wxpython/nviz/preferences.py:442 ../gui/wxpython/nviz/tools.py:914 +#: ../gui/wxpython/nviz/tools.py:1973 ../gui/wxpython/timeline/frame.py:139 +#: ../gui/wxpython/tplot/frame.py:401 msgid "Draw" msgstr "" -#: ../gui/wxpython/nviz/preferences.py:450 ../gui/wxpython/nviz/tools.py:921 -#: ../gui/wxpython/nviz/tools.py:1981 +#: ../gui/wxpython/nviz/preferences.py:448 ../gui/wxpython/nviz/tools.py:920 +#: ../gui/wxpython/nviz/tools.py:1980 msgid "Mode:" msgstr "" -#: ../gui/wxpython/nviz/preferences.py:458 ../gui/wxpython/nviz/tools.py:929 +#: ../gui/wxpython/nviz/preferences.py:456 ../gui/wxpython/nviz/tools.py:928 msgid "both" msgstr "" -#: ../gui/wxpython/nviz/preferences.py:458 ../gui/wxpython/nviz/tools.py:929 +#: ../gui/wxpython/nviz/preferences.py:456 ../gui/wxpython/nviz/tools.py:928 msgid "coarse" msgstr "" -#: ../gui/wxpython/nviz/preferences.py:458 ../gui/wxpython/nviz/tools.py:929 +#: ../gui/wxpython/nviz/preferences.py:456 ../gui/wxpython/nviz/tools.py:928 msgid "fine" msgstr "" -#: ../gui/wxpython/nviz/preferences.py:469 ../gui/wxpython/nviz/tools.py:1007 +#: ../gui/wxpython/nviz/preferences.py:467 ../gui/wxpython/nviz/tools.py:1006 msgid "Fine mode:" msgstr "" -#: ../gui/wxpython/nviz/preferences.py:475 -#: ../gui/wxpython/nviz/preferences.py:496 ../gui/wxpython/nviz/tools.py:968 -#: ../gui/wxpython/nviz/tools.py:1013 +#: ../gui/wxpython/nviz/preferences.py:473 +#: ../gui/wxpython/nviz/preferences.py:494 ../gui/wxpython/nviz/tools.py:967 +#: ../gui/wxpython/nviz/tools.py:1012 msgid "resolution:" msgstr "" -#: ../gui/wxpython/nviz/preferences.py:488 ../gui/wxpython/nviz/tools.py:963 +#: ../gui/wxpython/nviz/preferences.py:486 ../gui/wxpython/nviz/tools.py:962 msgid "Coarse mode:" msgstr "" -#: ../gui/wxpython/nviz/preferences.py:508 ../gui/wxpython/nviz/tools.py:982 +#: ../gui/wxpython/nviz/preferences.py:506 ../gui/wxpython/nviz/tools.py:981 msgid "style:" msgstr "" -#: ../gui/wxpython/nviz/preferences.py:513 ../gui/wxpython/nviz/tools.py:990 +#: ../gui/wxpython/nviz/preferences.py:511 ../gui/wxpython/nviz/tools.py:989 msgid "surface" msgstr "" -#: ../gui/wxpython/nviz/preferences.py:513 ../gui/wxpython/nviz/tools.py:990 +#: ../gui/wxpython/nviz/preferences.py:511 ../gui/wxpython/nviz/tools.py:989 msgid "wire" msgstr "" -#: ../gui/wxpython/nviz/preferences.py:525 +#: ../gui/wxpython/nviz/preferences.py:523 msgid "wire color:" msgstr "" -#: ../gui/wxpython/nviz/preferences.py:557 ../gui/wxpython/nviz/tools.py:763 +#: ../gui/wxpython/nviz/preferences.py:555 ../gui/wxpython/nviz/tools.py:762 msgid "Vector" msgstr "" -#: ../gui/wxpython/nviz/preferences.py:562 ../gui/wxpython/nviz/tools.py:1566 +#: ../gui/wxpython/nviz/preferences.py:560 ../gui/wxpython/nviz/tools.py:1565 msgid "Vector lines" msgstr "" -#: ../gui/wxpython/nviz/preferences.py:607 ../gui/wxpython/nviz/tools.py:1745 +#: ../gui/wxpython/nviz/preferences.py:605 ../gui/wxpython/nviz/tools.py:1744 msgid "Vector points" msgstr "" -#: ../gui/wxpython/nviz/preferences.py:613 +#: ../gui/wxpython/nviz/preferences.py:611 msgid "Automatic size" msgstr "" -#: ../gui/wxpython/nviz/preferences.py:615 +#: ../gui/wxpython/nviz/preferences.py:613 msgid "Icon size is set automatically based on landscape dimensions." msgstr "" -#: ../gui/wxpython/nviz/preferences.py:642 +#: ../gui/wxpython/nviz/preferences.py:640 msgid "Marker:" msgstr "" -#: ../gui/wxpython/nviz/preferences.py:755 +#: ../gui/wxpython/nviz/preferences.py:753 #, python-format msgid "3D view settings saved to file <%s>." msgstr "" -#: ../gui/wxpython/nviz/tools.py:120 +#: ../gui/wxpython/nviz/tools.py:119 msgid "Analysis" msgstr "" -#: ../gui/wxpython/nviz/tools.py:122 ../gui/wxpython/nviz/tools.py:552 +#: ../gui/wxpython/nviz/tools.py:121 ../gui/wxpython/nviz/tools.py:551 msgid "Animation" msgstr "" -#: ../gui/wxpython/nviz/tools.py:315 +#: ../gui/wxpython/nviz/tools.py:314 msgid "Control View" msgstr "" -#: ../gui/wxpython/nviz/tools.py:337 +#: ../gui/wxpython/nviz/tools.py:336 msgid "Adjusts the distance and angular perspective of the image viewpoint" msgstr "" -#: ../gui/wxpython/nviz/tools.py:365 +#: ../gui/wxpython/nviz/tools.py:364 msgid "Tilts the plane of the surface from the horizontal" msgstr "" -#: ../gui/wxpython/nviz/tools.py:375 ../gui/wxpython/nviz/tools.py:1336 +#: ../gui/wxpython/nviz/tools.py:374 ../gui/wxpython/nviz/tools.py:1335 msgid "Tilt:" msgstr "" -#: ../gui/wxpython/nviz/tools.py:390 +#: ../gui/wxpython/nviz/tools.py:389 msgid "Adjusts the viewing height above the surface (angle of view automatically adjusts to maintain the same center of view)" msgstr "" -#: ../gui/wxpython/nviz/tools.py:403 +#: ../gui/wxpython/nviz/tools.py:402 msgid "Adjusts the relative height of features above the plane of the surface" msgstr "" -#: ../gui/wxpython/nviz/tools.py:461 +#: ../gui/wxpython/nviz/tools.py:460 msgid "Look:" msgstr "" -#: ../gui/wxpython/nviz/tools.py:465 +#: ../gui/wxpython/nviz/tools.py:464 msgid "here" msgstr "" -#: ../gui/wxpython/nviz/tools.py:470 +#: ../gui/wxpython/nviz/tools.py:469 msgid "Allows you to select a point on the surface that becomes the new center of view. Click on the button and then on the surface." msgstr "" -#: ../gui/wxpython/nviz/tools.py:479 +#: ../gui/wxpython/nviz/tools.py:478 msgid "center" msgstr "" -#: ../gui/wxpython/nviz/tools.py:482 +#: ../gui/wxpython/nviz/tools.py:481 msgid "Resets the view to the original default center of view" msgstr "" -#: ../gui/wxpython/nviz/tools.py:487 +#: ../gui/wxpython/nviz/tools.py:486 msgid "top" msgstr "" -#: ../gui/wxpython/nviz/tools.py:492 +#: ../gui/wxpython/nviz/tools.py:491 msgid "Sets the viewer directly over the scene's center position. This top view orients approximately north south." msgstr "" -#: ../gui/wxpython/nviz/tools.py:498 +#: ../gui/wxpython/nviz/tools.py:497 msgid "reset" msgstr "" -#: ../gui/wxpython/nviz/tools.py:499 +#: ../gui/wxpython/nviz/tools.py:498 msgid "Reset to default view" msgstr "" -#: ../gui/wxpython/nviz/tools.py:562 +#: ../gui/wxpython/nviz/tools.py:561 msgid "Press 'Record' button and start changing the view. It is recommended to use fly-through mode (Map Display toolbar) to achieve smooth motion." msgstr "" -#: ../gui/wxpython/nviz/tools.py:574 +#: ../gui/wxpython/nviz/tools.py:573 msgid "Record" msgstr "" -#: ../gui/wxpython/nviz/tools.py:576 +#: ../gui/wxpython/nviz/tools.py:575 msgid "Play" msgstr "" -#: ../gui/wxpython/nviz/tools.py:598 +#: ../gui/wxpython/nviz/tools.py:597 msgid "Total number of frames :" msgstr "" -#: ../gui/wxpython/nviz/tools.py:603 +#: ../gui/wxpython/nviz/tools.py:602 msgid "Frame rate (FPS):" msgstr "" -#: ../gui/wxpython/nviz/tools.py:613 +#: ../gui/wxpython/nviz/tools.py:612 msgid "Frames are recorded with given frequency (FPS). " msgstr "" -#: ../gui/wxpython/nviz/tools.py:665 +#: ../gui/wxpython/nviz/tools.py:664 msgid "Save image sequence" msgstr "" -#: ../gui/wxpython/nviz/tools.py:674 ../gui/wxpython/psmap/dialogs.py:5794 +#: ../gui/wxpython/nviz/tools.py:673 ../gui/wxpython/psmap/dialogs.py:5794 msgid "Choose a directory:" msgstr "" -#: ../gui/wxpython/nviz/tools.py:675 +#: ../gui/wxpython/nviz/tools.py:674 msgid "Choose a directory for images" msgstr "" -#: ../gui/wxpython/nviz/tools.py:689 +#: ../gui/wxpython/nviz/tools.py:688 msgid "Generated files names will look like this: prefix_1.ppm, prefix_2.ppm, ..." msgstr "" -#: ../gui/wxpython/nviz/tools.py:754 ../gui/wxpython/nviz/tools.py:1436 +#: ../gui/wxpython/nviz/tools.py:753 ../gui/wxpython/nviz/tools.py:1435 msgid "Constant surface" msgstr "" -#: ../gui/wxpython/nviz/tools.py:818 +#: ../gui/wxpython/nviz/tools.py:817 msgid "Fringe" msgstr "" -#: ../gui/wxpython/nviz/tools.py:863 ../gui/wxpython/nviz/tools.py:1188 +#: ../gui/wxpython/nviz/tools.py:862 ../gui/wxpython/nviz/tools.py:1187 msgid "Cutting planes" msgstr "" -#: ../gui/wxpython/nviz/tools.py:940 ../gui/wxpython/nviz/tools.py:1207 -#: ../gui/wxpython/nviz/tools.py:1999 +#: ../gui/wxpython/nviz/tools.py:939 ../gui/wxpython/nviz/tools.py:1206 +#: ../gui/wxpython/nviz/tools.py:1998 msgid "Shading:" msgstr "" -#: ../gui/wxpython/nviz/tools.py:945 ../gui/wxpython/nviz/tools.py:2007 +#: ../gui/wxpython/nviz/tools.py:944 ../gui/wxpython/nviz/tools.py:2006 msgid "flat" msgstr "" -#: ../gui/wxpython/nviz/tools.py:945 ../gui/wxpython/nviz/tools.py:2007 +#: ../gui/wxpython/nviz/tools.py:944 ../gui/wxpython/nviz/tools.py:2006 msgid "gouraud" msgstr "" -#: ../gui/wxpython/nviz/tools.py:953 +#: ../gui/wxpython/nviz/tools.py:952 msgid "Set to all" msgstr "" -#: ../gui/wxpython/nviz/tools.py:954 +#: ../gui/wxpython/nviz/tools.py:953 msgid "Use draw settings for all loaded surfaces" msgstr "" -#: ../gui/wxpython/nviz/tools.py:1001 +#: ../gui/wxpython/nviz/tools.py:1000 msgid "Change wire color" msgstr "" -#: ../gui/wxpython/nviz/tools.py:1038 +#: ../gui/wxpython/nviz/tools.py:1037 msgid "Surface attributes" msgstr "" -#: ../gui/wxpython/nviz/tools.py:1049 ../gui/wxpython/nviz/tools.py:2945 +#: ../gui/wxpython/nviz/tools.py:1048 ../gui/wxpython/nviz/tools.py:2944 msgid "Transparency" msgstr "" -#: ../gui/wxpython/nviz/tools.py:1050 ../gui/wxpython/nviz/tools.py:2946 +#: ../gui/wxpython/nviz/tools.py:1049 ../gui/wxpython/nviz/tools.py:2945 msgid "Shininess" msgstr "" -#: ../gui/wxpython/nviz/tools.py:1059 ../gui/wxpython/nviz/tools.py:2961 +#: ../gui/wxpython/nviz/tools.py:1058 ../gui/wxpython/nviz/tools.py:2960 msgid "map" msgstr "" -#: ../gui/wxpython/nviz/tools.py:1063 ../gui/wxpython/nviz/tools.py:2967 +#: ../gui/wxpython/nviz/tools.py:1062 ../gui/wxpython/nviz/tools.py:2966 msgid "unset" msgstr "" -#: ../gui/wxpython/nviz/tools.py:1068 ../gui/wxpython/nviz/tools.py:2972 +#: ../gui/wxpython/nviz/tools.py:1067 ../gui/wxpython/nviz/tools.py:2971 msgid "constant" msgstr "" -#: ../gui/wxpython/nviz/tools.py:1120 ../gui/wxpython/nviz/tools.py:2098 +#: ../gui/wxpython/nviz/tools.py:1119 ../gui/wxpython/nviz/tools.py:2097 #: ../gui/wxpython/psmap/dialogs.py:3759 ../gui/wxpython/psmap/dialogs.py:4523 #: ../gui/wxpython/psmap/dialogs.py:4813 ../gui/wxpython/psmap/dialogs.py:5427 #: ../gui/wxpython/psmap/dialogs.py:5431 ../gui/wxpython/psmap/dialogs.py:5903 @@ -10338,431 +10330,431 @@ msgstr "" msgid "Position" msgstr "" -#: ../gui/wxpython/nviz/tools.py:1125 +#: ../gui/wxpython/nviz/tools.py:1124 msgid "Changes the x, y, and z position of the current surface" msgstr "" -#: ../gui/wxpython/nviz/tools.py:1144 ../gui/wxpython/nviz/tools.py:1412 -#: ../gui/wxpython/nviz/tools.py:2120 ../gui/wxpython/nviz/tools.py:3145 +#: ../gui/wxpython/nviz/tools.py:1143 ../gui/wxpython/nviz/tools.py:1411 +#: ../gui/wxpython/nviz/tools.py:2119 ../gui/wxpython/nviz/tools.py:3144 msgid "Reset" msgstr "" -#: ../gui/wxpython/nviz/tools.py:1145 ../gui/wxpython/nviz/tools.py:2121 +#: ../gui/wxpython/nviz/tools.py:1144 ../gui/wxpython/nviz/tools.py:2120 msgid "Reset to default position" msgstr "" -#: ../gui/wxpython/nviz/tools.py:1195 +#: ../gui/wxpython/nviz/tools.py:1194 msgid "Active cutting plane:" msgstr "" -#: ../gui/wxpython/nviz/tools.py:1212 +#: ../gui/wxpython/nviz/tools.py:1211 msgid "clear" msgstr "" -#: ../gui/wxpython/nviz/tools.py:1213 +#: ../gui/wxpython/nviz/tools.py:1212 msgid "top color" msgstr "" -#: ../gui/wxpython/nviz/tools.py:1214 +#: ../gui/wxpython/nviz/tools.py:1213 msgid "bottom color" msgstr "" -#: ../gui/wxpython/nviz/tools.py:1215 +#: ../gui/wxpython/nviz/tools.py:1214 msgid "blend" msgstr "" -#: ../gui/wxpython/nviz/tools.py:1216 +#: ../gui/wxpython/nviz/tools.py:1215 msgid "shaded" msgstr "" -#: ../gui/wxpython/nviz/tools.py:1229 +#: ../gui/wxpython/nviz/tools.py:1228 msgid "Horizontal X:" msgstr "" -#: ../gui/wxpython/nviz/tools.py:1233 +#: ../gui/wxpython/nviz/tools.py:1232 msgid "Sets the X coordinate of the current cutting plane" msgstr "" -#: ../gui/wxpython/nviz/tools.py:1264 +#: ../gui/wxpython/nviz/tools.py:1263 msgid "Horizontal Y:" msgstr "" -#: ../gui/wxpython/nviz/tools.py:1268 +#: ../gui/wxpython/nviz/tools.py:1267 msgid "Sets the Y coordinate of the current cutting plane" msgstr "" -#: ../gui/wxpython/nviz/tools.py:1300 +#: ../gui/wxpython/nviz/tools.py:1299 msgid "Rotation:" msgstr "" -#: ../gui/wxpython/nviz/tools.py:1304 +#: ../gui/wxpython/nviz/tools.py:1303 msgid "Rotates the current cutting plane about vertical axis" msgstr "" -#: ../gui/wxpython/nviz/tools.py:1340 +#: ../gui/wxpython/nviz/tools.py:1339 msgid "Rotates the current cutting plane about horizontal axis" msgstr "" -#: ../gui/wxpython/nviz/tools.py:1377 +#: ../gui/wxpython/nviz/tools.py:1376 msgid "Sets the Z coordinate of the current cutting plane (only meaningful when tilt is not 0)" msgstr "" -#: ../gui/wxpython/nviz/tools.py:1448 +#: ../gui/wxpython/nviz/tools.py:1447 msgid "New" msgstr "" -#: ../gui/wxpython/nviz/tools.py:1452 ../gui/wxpython/nviz/tools.py:2485 -#: ../gui/wxpython/nviz/tools.py:2547 ../gui/wxpython/psmap/dialogs.py:1859 +#: ../gui/wxpython/nviz/tools.py:1451 ../gui/wxpython/nviz/tools.py:2484 +#: ../gui/wxpython/nviz/tools.py:2546 ../gui/wxpython/psmap/dialogs.py:1859 msgid "Delete" msgstr "" -#: ../gui/wxpython/nviz/tools.py:1464 +#: ../gui/wxpython/nviz/tools.py:1463 msgid "Fine resolution:" msgstr "" -#: ../gui/wxpython/nviz/tools.py:1477 +#: ../gui/wxpython/nviz/tools.py:1476 msgid "Value:" msgstr "" -#: ../gui/wxpython/nviz/tools.py:1489 ../gui/wxpython/nviz/tools.py:3127 +#: ../gui/wxpython/nviz/tools.py:1488 ../gui/wxpython/nviz/tools.py:3126 msgid "Transparency:" msgstr "" -#: ../gui/wxpython/nviz/tools.py:1552 +#: ../gui/wxpython/nviz/tools.py:1551 msgid "Show vector lines" msgstr "" -#: ../gui/wxpython/nviz/tools.py:1572 +#: ../gui/wxpython/nviz/tools.py:1571 msgid "Line:" msgstr "" -#: ../gui/wxpython/nviz/tools.py:1577 +#: ../gui/wxpython/nviz/tools.py:1576 msgid "width:" msgstr "" -#: ../gui/wxpython/nviz/tools.py:1592 ../gui/wxpython/nviz/tools.py:1787 +#: ../gui/wxpython/nviz/tools.py:1591 ../gui/wxpython/nviz/tools.py:1786 msgid "color:" msgstr "" -#: ../gui/wxpython/nviz/tools.py:1608 ../gui/wxpython/nviz/tools.py:1823 +#: ../gui/wxpython/nviz/tools.py:1607 ../gui/wxpython/nviz/tools.py:1822 msgid "use color for thematic mapping" msgstr "" -#: ../gui/wxpython/nviz/tools.py:1611 +#: ../gui/wxpython/nviz/tools.py:1610 msgid "use width for thematic mapping" msgstr "" -#: ../gui/wxpython/nviz/tools.py:1627 ../gui/wxpython/nviz/tools.py:1638 -#: ../gui/wxpython/nviz/tools.py:1845 ../gui/wxpython/nviz/tools.py:1856 +#: ../gui/wxpython/nviz/tools.py:1626 ../gui/wxpython/nviz/tools.py:1637 +#: ../gui/wxpython/nviz/tools.py:1844 ../gui/wxpython/nviz/tools.py:1855 msgid "Set options..." msgstr "" -#: ../gui/wxpython/nviz/tools.py:1662 ../gui/wxpython/nviz/tools.py:5452 -#: ../gui/wxpython/nviz/tools.py:5506 +#: ../gui/wxpython/nviz/tools.py:1661 ../gui/wxpython/nviz/tools.py:5453 +#: ../gui/wxpython/nviz/tools.py:5507 msgid "as 3D" msgstr "" -#: ../gui/wxpython/nviz/tools.py:1662 ../gui/wxpython/nviz/tools.py:5452 -#: ../gui/wxpython/nviz/tools.py:5506 +#: ../gui/wxpython/nviz/tools.py:1661 ../gui/wxpython/nviz/tools.py:5453 +#: ../gui/wxpython/nviz/tools.py:5507 msgid "on surface(s):" msgstr "" -#: ../gui/wxpython/nviz/tools.py:1676 ../gui/wxpython/nviz/tools.py:1877 +#: ../gui/wxpython/nviz/tools.py:1675 ../gui/wxpython/nviz/tools.py:1876 msgid "Height above surface:" msgstr "" -#: ../gui/wxpython/nviz/tools.py:1732 +#: ../gui/wxpython/nviz/tools.py:1731 msgid "Show vector points" msgstr "" -#: ../gui/wxpython/nviz/tools.py:1752 +#: ../gui/wxpython/nviz/tools.py:1751 msgid "Icon:" msgstr "" -#: ../gui/wxpython/nviz/tools.py:1757 ../gui/wxpython/psmap/dialogs.py:2799 +#: ../gui/wxpython/nviz/tools.py:1756 ../gui/wxpython/psmap/dialogs.py:2799 msgid "size:" msgstr "" -#: ../gui/wxpython/nviz/tools.py:1801 ../gui/wxpython/psmap/dialogs.py:2731 +#: ../gui/wxpython/nviz/tools.py:1800 ../gui/wxpython/psmap/dialogs.py:2731 msgid "symbol:" msgstr "" -#: ../gui/wxpython/nviz/tools.py:1826 +#: ../gui/wxpython/nviz/tools.py:1825 msgid "use size for thematic mapping" msgstr "" -#: ../gui/wxpython/nviz/tools.py:1989 +#: ../gui/wxpython/nviz/tools.py:1988 msgid "isosurfaces" msgstr "" -#: ../gui/wxpython/nviz/tools.py:1989 +#: ../gui/wxpython/nviz/tools.py:1988 msgid "slices" msgstr "" -#: ../gui/wxpython/nviz/tools.py:2016 +#: ../gui/wxpython/nviz/tools.py:2015 msgid "Resolution:" msgstr "" -#: ../gui/wxpython/nviz/tools.py:2030 +#: ../gui/wxpython/nviz/tools.py:2029 msgid "Draw wire box" msgstr "" -#: ../gui/wxpython/nviz/tools.py:2043 ../gui/wxpython/nviz/tools.py:4333 +#: ../gui/wxpython/nviz/tools.py:2042 ../gui/wxpython/nviz/tools.py:4334 msgid "List of isosurfaces" msgstr "" -#: ../gui/wxpython/nviz/tools.py:2163 +#: ../gui/wxpython/nviz/tools.py:2162 msgid "Show light model" msgstr "" -#: ../gui/wxpython/nviz/tools.py:2175 +#: ../gui/wxpython/nviz/tools.py:2174 msgid "Light source position" msgstr "" -#: ../gui/wxpython/nviz/tools.py:2192 +#: ../gui/wxpython/nviz/tools.py:2191 msgid "Adjusts the light height" msgstr "" -#: ../gui/wxpython/nviz/tools.py:2237 +#: ../gui/wxpython/nviz/tools.py:2236 msgid "Light color and intensity" msgstr "" -#: ../gui/wxpython/nviz/tools.py:2262 +#: ../gui/wxpython/nviz/tools.py:2261 msgid "Adjusts the brightness of the light" msgstr "" -#: ../gui/wxpython/nviz/tools.py:2287 +#: ../gui/wxpython/nviz/tools.py:2286 msgid "Adjusts the ambient light" msgstr "" -#: ../gui/wxpython/nviz/tools.py:2360 +#: ../gui/wxpython/nviz/tools.py:2359 msgid "Edges with fringe" msgstr "" -#: ../gui/wxpython/nviz/tools.py:2364 +#: ../gui/wxpython/nviz/tools.py:2363 msgid "N && W" msgstr "" -#: ../gui/wxpython/nviz/tools.py:2365 +#: ../gui/wxpython/nviz/tools.py:2364 msgid "N && E" msgstr "" -#: ../gui/wxpython/nviz/tools.py:2366 +#: ../gui/wxpython/nviz/tools.py:2365 msgid "S && W" msgstr "" -#: ../gui/wxpython/nviz/tools.py:2367 +#: ../gui/wxpython/nviz/tools.py:2366 msgid "S && E" msgstr "" -#: ../gui/wxpython/nviz/tools.py:2393 +#: ../gui/wxpython/nviz/tools.py:2392 msgid "Elevation of fringe from bottom:" msgstr "" -#: ../gui/wxpython/nviz/tools.py:2444 ../gui/wxpython/psmap/dialogs.py:6185 +#: ../gui/wxpython/nviz/tools.py:2443 ../gui/wxpython/psmap/dialogs.py:6185 #: ../gui/wxpython/psmap/toolbars.py:102 msgid "North Arrow" msgstr "" -#: ../gui/wxpython/nviz/tools.py:2450 +#: ../gui/wxpython/nviz/tools.py:2449 msgid "Arrow length (in map units):" msgstr "" -#: ../gui/wxpython/nviz/tools.py:2466 +#: ../gui/wxpython/nviz/tools.py:2465 msgid "Arrow color:" msgstr "" -#: ../gui/wxpython/nviz/tools.py:2479 +#: ../gui/wxpython/nviz/tools.py:2478 msgid "Place arrow" msgstr "" -#: ../gui/wxpython/nviz/tools.py:2501 ../gui/wxpython/psmap/toolbars.py:100 +#: ../gui/wxpython/nviz/tools.py:2500 ../gui/wxpython/psmap/toolbars.py:100 msgid "Scale bar" msgstr "" -#: ../gui/wxpython/nviz/tools.py:2507 +#: ../gui/wxpython/nviz/tools.py:2506 msgid "Scale bar length (in map units):" msgstr "" -#: ../gui/wxpython/nviz/tools.py:2523 +#: ../gui/wxpython/nviz/tools.py:2522 msgid "Scale bar color:" msgstr "" -#: ../gui/wxpython/nviz/tools.py:2537 +#: ../gui/wxpython/nviz/tools.py:2536 msgid "Place new scale bar" msgstr "" -#: ../gui/wxpython/nviz/tools.py:2614 +#: ../gui/wxpython/nviz/tools.py:2613 msgid "Do you want to record new animation without saving the previous one?" msgstr "" -#: ../gui/wxpython/nviz/tools.py:2620 +#: ../gui/wxpython/nviz/tools.py:2619 msgid "Animation already exists" msgstr "" -#: ../gui/wxpython/nviz/tools.py:2784 +#: ../gui/wxpython/nviz/tools.py:2783 msgid "No file prefix given." msgstr "" -#: ../gui/wxpython/nviz/tools.py:2787 +#: ../gui/wxpython/nviz/tools.py:2786 #, python-format msgid "Directory %s does not exist." msgstr "" -#: ../gui/wxpython/nviz/tools.py:2927 +#: ../gui/wxpython/nviz/tools.py:2926 msgid "Isosurface attributes" msgstr "" -#: ../gui/wxpython/nviz/tools.py:2934 +#: ../gui/wxpython/nviz/tools.py:2933 msgid "toggle normal direction" msgstr "" -#: ../gui/wxpython/nviz/tools.py:2942 +#: ../gui/wxpython/nviz/tools.py:2941 msgid "Isosurface value" msgstr "" -#: ../gui/wxpython/nviz/tools.py:3052 +#: ../gui/wxpython/nviz/tools.py:3051 msgid "Slice attributes" msgstr "" -#: ../gui/wxpython/nviz/tools.py:3059 +#: ../gui/wxpython/nviz/tools.py:3058 msgid "Slice parallel to axis:" msgstr "" -#: ../gui/wxpython/nviz/tools.py:3212 +#: ../gui/wxpython/nviz/tools.py:3211 msgid "W" msgstr "" -#: ../gui/wxpython/nviz/tools.py:3213 +#: ../gui/wxpython/nviz/tools.py:3212 msgid "N" msgstr "" -#: ../gui/wxpython/nviz/tools.py:3214 +#: ../gui/wxpython/nviz/tools.py:3213 msgid "S" msgstr "" -#: ../gui/wxpython/nviz/tools.py:3215 +#: ../gui/wxpython/nviz/tools.py:3214 msgid "E" msgstr "" -#: ../gui/wxpython/nviz/tools.py:3216 +#: ../gui/wxpython/nviz/tools.py:3215 msgid "NW" msgstr "" -#: ../gui/wxpython/nviz/tools.py:3217 +#: ../gui/wxpython/nviz/tools.py:3216 msgid "NE" msgstr "" -#: ../gui/wxpython/nviz/tools.py:3218 +#: ../gui/wxpython/nviz/tools.py:3217 msgid "SE" msgstr "" -#: ../gui/wxpython/nviz/tools.py:3219 +#: ../gui/wxpython/nviz/tools.py:3218 msgid "SW" msgstr "" -#: ../gui/wxpython/nviz/tools.py:3715 ../gui/wxpython/nviz/tools.py:5570 +#: ../gui/wxpython/nviz/tools.py:3716 ../gui/wxpython/nviz/tools.py:5571 msgid "Level" msgstr "" -#: ../gui/wxpython/nviz/tools.py:4339 +#: ../gui/wxpython/nviz/tools.py:4340 msgid "List of slices" msgstr "" -#: ../gui/wxpython/nviz/tools.py:4522 ../gui/wxpython/nviz/tools.py:4525 +#: ../gui/wxpython/nviz/tools.py:4523 ../gui/wxpython/nviz/tools.py:4526 #, python-brace-format msgid "Level {level}" msgstr "" -#: ../gui/wxpython/nviz/tools.py:4532 ../gui/wxpython/nviz/tools.py:4535 +#: ../gui/wxpython/nviz/tools.py:4533 ../gui/wxpython/nviz/tools.py:4536 #, python-brace-format msgid "Slice parallel to {axis}" msgstr "" -#: ../gui/wxpython/nviz/tools.py:4812 ../gui/wxpython/nviz/tools.py:5583 +#: ../gui/wxpython/nviz/tools.py:4813 ../gui/wxpython/nviz/tools.py:5584 msgid "Slice parallel to" msgstr "" -#: ../gui/wxpython/nviz/tools.py:5030 +#: ../gui/wxpython/nviz/tools.py:5031 #, python-format msgid "Scalebar %d" msgstr "" -#: ../gui/wxpython/nviz/tools.py:5184 +#: ../gui/wxpython/nviz/tools.py:5185 msgid "None" msgstr "" -#: ../gui/wxpython/nviz/tools.py:5185 +#: ../gui/wxpython/nviz/tools.py:5186 msgid "Plane" msgstr "" -#: ../gui/wxpython/nviz/tools.py:5389 +#: ../gui/wxpython/nviz/tools.py:5390 msgid "Vector map is 3D" msgstr "" -#: ../gui/wxpython/nviz/tools.py:5392 +#: ../gui/wxpython/nviz/tools.py:5393 msgid "Vector map is 2D" msgstr "" -#: ../gui/wxpython/nviz/tools.py:5394 +#: ../gui/wxpython/nviz/tools.py:5395 #, python-format msgid "%(features)d features (%(points)d points)" msgstr "" -#: ../gui/wxpython/nviz/tools.py:5454 ../gui/wxpython/nviz/tools.py:5508 +#: ../gui/wxpython/nviz/tools.py:5455 ../gui/wxpython/nviz/tools.py:5509 msgid "on surface" msgstr "" -#: ../gui/wxpython/nviz/tools.py:5605 +#: ../gui/wxpython/nviz/tools.py:5606 msgid "range:" msgstr "" -#: ../gui/wxpython/nviz/tools.py:5680 ../gui/wxpython/nviz/tools.py:5691 +#: ../gui/wxpython/nviz/tools.py:5681 ../gui/wxpython/nviz/tools.py:5692 msgid "North edge:" msgstr "" -#: ../gui/wxpython/nviz/tools.py:5681 ../gui/wxpython/nviz/tools.py:5692 +#: ../gui/wxpython/nviz/tools.py:5682 ../gui/wxpython/nviz/tools.py:5693 msgid "South edge:" msgstr "" -#: ../gui/wxpython/nviz/tools.py:5682 ../gui/wxpython/nviz/tools.py:5689 -#: ../gui/wxpython/nviz/tools.py:5698 +#: ../gui/wxpython/nviz/tools.py:5683 ../gui/wxpython/nviz/tools.py:5690 +#: ../gui/wxpython/nviz/tools.py:5699 msgid "West edge:" msgstr "" -#: ../gui/wxpython/nviz/tools.py:5683 ../gui/wxpython/nviz/tools.py:5690 -#: ../gui/wxpython/nviz/tools.py:5699 +#: ../gui/wxpython/nviz/tools.py:5684 ../gui/wxpython/nviz/tools.py:5691 +#: ../gui/wxpython/nviz/tools.py:5700 msgid "East edge:" msgstr "" -#: ../gui/wxpython/nviz/tools.py:5685 ../gui/wxpython/nviz/tools.py:5696 -#: ../gui/wxpython/nviz/tools.py:5704 +#: ../gui/wxpython/nviz/tools.py:5686 ../gui/wxpython/nviz/tools.py:5697 +#: ../gui/wxpython/nviz/tools.py:5705 msgid "Northing (Y):" msgstr "" -#: ../gui/wxpython/nviz/tools.py:5686 ../gui/wxpython/nviz/tools.py:5695 -#: ../gui/wxpython/nviz/tools.py:5705 +#: ../gui/wxpython/nviz/tools.py:5687 ../gui/wxpython/nviz/tools.py:5696 +#: ../gui/wxpython/nviz/tools.py:5706 msgid "Height (Z):" msgstr "" -#: ../gui/wxpython/nviz/tools.py:5687 ../gui/wxpython/nviz/tools.py:5694 -#: ../gui/wxpython/nviz/tools.py:5703 +#: ../gui/wxpython/nviz/tools.py:5688 ../gui/wxpython/nviz/tools.py:5695 +#: ../gui/wxpython/nviz/tools.py:5704 msgid "Easting (X):" msgstr "" -#: ../gui/wxpython/nviz/tools.py:5700 +#: ../gui/wxpython/nviz/tools.py:5701 msgid "Bottom edge:" msgstr "" -#: ../gui/wxpython/nviz/tools.py:5701 +#: ../gui/wxpython/nviz/tools.py:5702 msgid "Top edge:" msgstr "" -#: ../gui/wxpython/nviz/tools.py:5809 +#: ../gui/wxpython/nviz/tools.py:5810 msgid "Adjusts the distance and direction of the image viewpoint" msgstr "" -#: ../gui/wxpython/nviz/tools.py:5845 +#: ../gui/wxpython/nviz/tools.py:5846 msgid "Adjusts the light direction. Click and drag the puck to change the light direction." msgstr "" @@ -10795,60 +10787,60 @@ msgstr "" msgid "Please provide an output files extension (used by i.rectify)" msgstr "" -#: ../gui/wxpython/photo2image/ip2i_manager.py:290 +#: ../gui/wxpython/photo2image/ip2i_manager.py:291 msgid "Manage Location of Fiducial Points on a Scanned Photo" msgstr "" -#: ../gui/wxpython/photo2image/ip2i_manager.py:413 +#: ../gui/wxpython/photo2image/ip2i_manager.py:414 msgid "A POINTS file exists, renaming it to POINTS_BAK" msgstr "" -#: ../gui/wxpython/photo2image/ip2i_manager.py:440 +#: ../gui/wxpython/photo2image/ip2i_manager.py:441 msgid "Opening CAMERA file failed" msgstr "" -#: ../gui/wxpython/photo2image/ip2i_manager.py:1101 +#: ../gui/wxpython/photo2image/ip2i_manager.py:1102 msgid "Writing output image to group, please wait..." msgstr "" +#: ../gui/wxpython/photo2image/ip2i_manager.py:1638 +#: ../gui/wxpython/photo2image/ip2i_manager.py:1657 +msgid "source X" +msgstr "" + #: ../gui/wxpython/photo2image/ip2i_manager.py:1639 #: ../gui/wxpython/photo2image/ip2i_manager.py:1658 -msgid "source X" +msgid "source Y" msgstr "" #: ../gui/wxpython/photo2image/ip2i_manager.py:1640 #: ../gui/wxpython/photo2image/ip2i_manager.py:1659 -msgid "source Y" +msgid "target X" msgstr "" #: ../gui/wxpython/photo2image/ip2i_manager.py:1641 #: ../gui/wxpython/photo2image/ip2i_manager.py:1660 -msgid "target X" -msgstr "" - -#: ../gui/wxpython/photo2image/ip2i_manager.py:1642 -#: ../gui/wxpython/photo2image/ip2i_manager.py:1661 msgid "target Y" msgstr "" -#: ../gui/wxpython/photo2image/ip2i_manager.py:1879 +#: ../gui/wxpython/photo2image/ip2i_manager.py:1878 msgid "source X:" msgstr "" -#: ../gui/wxpython/photo2image/ip2i_manager.py:1880 +#: ../gui/wxpython/photo2image/ip2i_manager.py:1879 msgid "target X:" msgstr "" -#: ../gui/wxpython/photo2image/ip2i_manager.py:1881 +#: ../gui/wxpython/photo2image/ip2i_manager.py:1880 msgid "source Y:" msgstr "" -#: ../gui/wxpython/photo2image/ip2i_manager.py:1882 +#: ../gui/wxpython/photo2image/ip2i_manager.py:1881 msgid "target Y:" msgstr "" #: ../gui/wxpython/photo2image/ip2i_mapdisplay.py:45 -msgid "GRASS GIS Manage Location of Tick Points on a Scanned Photo" +msgid "GRASS Manage Location of Tick Points on a Scanned Photo" msgstr "" #: ../gui/wxpython/psmap/dialogs.py:303 @@ -10892,7 +10884,7 @@ msgid "Close dialog and apply changes" msgstr "" #: ../gui/wxpython/psmap/dialogs.py:600 ../gui/wxpython/vdigit/dialogs.py:168 -#: ../gui/wxpython/web_services/dialogs.py:690 +#: ../gui/wxpython/web_services/dialogs.py:691 msgid "Apply changes" msgstr "" @@ -11761,7 +11753,7 @@ msgid "labels: " msgstr "" #: ../gui/wxpython/psmap/g.gui.psmap.py:52 -msgid "Cartographic Composer - GRASS GIS" +msgid "Cartographic Composer - GRASS" msgstr "" #: ../gui/wxpython/psmap/instructions.py:157 @@ -11784,17 +11776,17 @@ msgid "" msgstr "" #: ../gui/wxpython/psmap/instructions.py:706 -#: ../gui/wxpython/psmap/instructions.py:929 -#: ../gui/wxpython/psmap/instructions.py:1057 -#: ../gui/wxpython/psmap/instructions.py:1132 -#: ../gui/wxpython/psmap/instructions.py:1317 -#: ../gui/wxpython/psmap/instructions.py:1392 -#: ../gui/wxpython/psmap/instructions.py:1470 -#: ../gui/wxpython/psmap/instructions.py:1576 -#: ../gui/wxpython/psmap/instructions.py:1717 -#: ../gui/wxpython/psmap/instructions.py:1859 -#: ../gui/wxpython/psmap/instructions.py:1909 -#: ../gui/wxpython/psmap/instructions.py:2261 +#: ../gui/wxpython/psmap/instructions.py:933 +#: ../gui/wxpython/psmap/instructions.py:1061 +#: ../gui/wxpython/psmap/instructions.py:1136 +#: ../gui/wxpython/psmap/instructions.py:1321 +#: ../gui/wxpython/psmap/instructions.py:1396 +#: ../gui/wxpython/psmap/instructions.py:1474 +#: ../gui/wxpython/psmap/instructions.py:1580 +#: ../gui/wxpython/psmap/instructions.py:1721 +#: ../gui/wxpython/psmap/instructions.py:1863 +#: ../gui/wxpython/psmap/instructions.py:1913 +#: ../gui/wxpython/psmap/instructions.py:2265 #, python-format msgid "Failed to read instruction %s" msgstr "" @@ -11827,19 +11819,19 @@ msgid "" "new value: %(new1)s %(new2)s" msgstr "" -#: ../gui/wxpython/psmap/instructions.py:840 +#: ../gui/wxpython/psmap/instructions.py:844 #, python-format msgid "" "Failed to read instruction %(file)s.\n" "Unknown format %(for)s" msgstr "" -#: ../gui/wxpython/psmap/instructions.py:856 +#: ../gui/wxpython/psmap/instructions.py:860 #, python-format msgid "Failed to read instruction %s." msgstr "" -#: ../gui/wxpython/psmap/instructions.py:1136 +#: ../gui/wxpython/psmap/instructions.py:1140 #, python-format msgid "Failed to read instruction %(inst)s: file %(file)s not found." msgstr "" @@ -12034,7 +12026,7 @@ msgid "Base raster map <{}> not found in current mapset." msgstr "" #: ../gui/wxpython/rdigit/g.gui.rdigit.py:233 -msgid "Raster Digitizer - GRASS GIS" +msgid "Raster Digitizer - GRASS" msgstr "" #: ../gui/wxpython/rdigit/toolbars.py:28 @@ -12152,19 +12144,18 @@ msgstr "" msgid "Rename configuration file" msgstr "" -#: ../gui/wxpython/rlisetup/functions.py:136 +#: ../gui/wxpython/rlisetup/functions.py:137 #: ../gui/wxpython/rlisetup/wizard.py:1913 msgid "The polygon seems to have 0 areas" msgstr "" -#: ../gui/wxpython/rlisetup/functions.py:152 -#: ../gui/wxpython/rlisetup/wizard.py:1858 +#: ../gui/wxpython/rlisetup/functions.py:153 #, python-format msgid "The raster map <%s> already exists. Please remove or rename the maps with the prefix '%s' or select the option to overwrite existing maps" msgstr "" #: ../gui/wxpython/rlisetup/g.gui.rlisetup.py:48 -msgid "Setup for r.li modules - GRASS GIS" +msgid "Setup for r.li modules - GRASS" msgstr "" #: ../gui/wxpython/rlisetup/sampling_frame.py:234 @@ -12509,6 +12500,11 @@ msgstr "" msgid "Select sample area {areas_count} of {area_num}" msgstr "" +#: ../gui/wxpython/rlisetup/wizard.py:1858 +#, python-brace-format +msgid "The raster map <{map_name}> already exists. Please remove or rename the maps with the prefix '{prefix}' or select the option to overwrite existing maps" +msgstr "" + #: ../gui/wxpython/rlisetup/wizard.py:1916 msgid "Select sample area 1 of " msgstr "" @@ -12835,80 +12831,80 @@ msgstr "" msgid "Current mapset is <%s>." msgstr "" -#: ../gui/wxpython/startup/locdownload.py:150 +#: ../gui/wxpython/startup/locdownload.py:152 msgid "Download in progress, wait until it is finished 0%" msgstr "" -#: ../gui/wxpython/startup/locdownload.py:161 +#: ../gui/wxpython/startup/locdownload.py:163 #, python-brace-format msgid "Download in progress, wait until it is finished {0}%, {1} MB, {2} KB/s, {3:.0f} seconds passed" msgstr "" -#: ../gui/wxpython/startup/locdownload.py:183 +#: ../gui/wxpython/startup/locdownload.py:185 msgid "Downloaded project is not valid" msgstr "" -#: ../gui/wxpython/startup/locdownload.py:227 +#: ../gui/wxpython/startup/locdownload.py:229 msgid "Abort" msgstr "" -#: ../gui/wxpython/startup/locdownload.py:228 -#: ../gui/wxpython/startup/locdownload.py:490 +#: ../gui/wxpython/startup/locdownload.py:230 +#: ../gui/wxpython/startup/locdownload.py:492 msgid "Abort download" msgstr "" -#: ../gui/wxpython/startup/locdownload.py:231 +#: ../gui/wxpython/startup/locdownload.py:233 msgid "Select sample project to download:" msgstr "" -#: ../gui/wxpython/startup/locdownload.py:295 -#: ../gui/wxpython/startup/locdownload.py:305 -#: ../gui/wxpython/startup/locdownload.py:445 +#: ../gui/wxpython/startup/locdownload.py:297 +#: ../gui/wxpython/startup/locdownload.py:307 +#: ../gui/wxpython/startup/locdownload.py:447 msgid "Do&wnload" msgstr "" -#: ../gui/wxpython/startup/locdownload.py:295 +#: ../gui/wxpython/startup/locdownload.py:297 msgid "Download selected project" msgstr "" -#: ../gui/wxpython/startup/locdownload.py:305 -#: ../gui/wxpython/startup/locdownload.py:388 +#: ../gui/wxpython/startup/locdownload.py:307 +#: ../gui/wxpython/startup/locdownload.py:390 msgid "Download" msgstr "" -#: ../gui/wxpython/startup/locdownload.py:312 -#: ../gui/wxpython/startup/locdownload.py:361 +#: ../gui/wxpython/startup/locdownload.py:314 +#: ../gui/wxpython/startup/locdownload.py:363 msgid "Download in progress, wait until it is finished" msgstr "" -#: ../gui/wxpython/startup/locdownload.py:328 +#: ../gui/wxpython/startup/locdownload.py:330 #, python-brace-format msgid "Project name {name} already exists in {path}, download canceled" msgstr "" -#: ../gui/wxpython/startup/locdownload.py:338 +#: ../gui/wxpython/startup/locdownload.py:340 #, python-format msgid "Download failed: %s" msgstr "" -#: ../gui/wxpython/startup/locdownload.py:343 +#: ../gui/wxpython/startup/locdownload.py:345 msgid "Download completed. The downloaded sample data is available now in the data tree" msgstr "" -#: ../gui/wxpython/startup/locdownload.py:384 +#: ../gui/wxpython/startup/locdownload.py:386 #, python-brace-format msgid "Project named {name} already exists, rename it first" msgstr "" -#: ../gui/wxpython/startup/locdownload.py:438 +#: ../gui/wxpython/startup/locdownload.py:440 msgid "Dataset Download" msgstr "" -#: ../gui/wxpython/startup/locdownload.py:446 +#: ../gui/wxpython/startup/locdownload.py:448 msgid "Download selected dataset" msgstr "" -#: ../gui/wxpython/startup/locdownload.py:489 +#: ../gui/wxpython/startup/locdownload.py:491 msgid "Do you want to cancel dataset download?" msgstr "" @@ -12920,7 +12916,7 @@ msgstr "" msgid "Timeline Tool" msgstr "" -#: ../gui/wxpython/timeline/frame.py:141 ../gui/wxpython/tplot/frame.py:404 +#: ../gui/wxpython/timeline/frame.py:141 ../gui/wxpython/tplot/frame.py:403 msgid "Help" msgstr "" @@ -12936,19 +12932,19 @@ msgstr "" msgid "Select space time dataset(s):" msgstr "" -#: ../gui/wxpython/timeline/frame.py:185 ../gui/wxpython/tplot/frame.py:435 -#: ../gui/wxpython/tplot/frame.py:570 +#: ../gui/wxpython/timeline/frame.py:185 ../gui/wxpython/tplot/frame.py:434 +#: ../gui/wxpython/tplot/frame.py:569 #, python-format msgid "Dataset <%s> not found in temporal database" msgstr "" -#: ../gui/wxpython/timeline/frame.py:201 ../gui/wxpython/tplot/frame.py:456 -#: ../gui/wxpython/tplot/frame.py:594 +#: ../gui/wxpython/timeline/frame.py:201 ../gui/wxpython/tplot/frame.py:455 +#: ../gui/wxpython/tplot/frame.py:593 msgid "Datasets have different temporal type (absolute x relative), which is not allowed." msgstr "" -#: ../gui/wxpython/timeline/frame.py:222 ../gui/wxpython/tplot/frame.py:478 -#: ../gui/wxpython/tplot/frame.py:607 +#: ../gui/wxpython/timeline/frame.py:222 ../gui/wxpython/tplot/frame.py:477 +#: ../gui/wxpython/tplot/frame.py:606 msgid "Datasets have different time unit which is not allowed." msgstr "" @@ -12975,31 +12971,31 @@ msgstr "" msgid "Y" msgstr "" -#: ../gui/wxpython/timeline/frame.py:384 ../gui/wxpython/tplot/frame.py:742 +#: ../gui/wxpython/timeline/frame.py:384 ../gui/wxpython/tplot/frame.py:741 #, python-format msgid "Time [%s]" msgstr "" -#: ../gui/wxpython/timeline/frame.py:517 ../gui/wxpython/tplot/frame.py:1175 +#: ../gui/wxpython/timeline/frame.py:517 ../gui/wxpython/tplot/frame.py:1178 #, python-format msgid "Please specify the space time dataset <%s>." msgstr "" -#: ../gui/wxpython/timeline/frame.py:518 ../gui/wxpython/tplot/frame.py:1176 +#: ../gui/wxpython/timeline/frame.py:518 ../gui/wxpython/tplot/frame.py:1179 msgid "Ambiguous dataset name" msgstr "" -#: ../gui/wxpython/timeline/frame.py:609 ../gui/wxpython/tplot/frame.py:1352 +#: ../gui/wxpython/timeline/frame.py:609 ../gui/wxpython/tplot/frame.py:1355 #, python-format msgid "Space time raster dataset: %s" msgstr "" -#: ../gui/wxpython/timeline/frame.py:611 ../gui/wxpython/tplot/frame.py:1354 +#: ../gui/wxpython/timeline/frame.py:611 ../gui/wxpython/tplot/frame.py:1357 #, python-format msgid "Space time vector dataset: %s" msgstr "" -#: ../gui/wxpython/timeline/frame.py:613 ../gui/wxpython/tplot/frame.py:1356 +#: ../gui/wxpython/timeline/frame.py:613 ../gui/wxpython/tplot/frame.py:1359 #, python-format msgid "Space time 3D raster dataset: %s" msgstr "" @@ -13035,175 +13031,175 @@ msgid "" msgstr "" #: ../gui/wxpython/timeline/g.gui.timeline.py:64 -msgid "Timeline Tool - GRASS GIS" +msgid "Timeline Tool - GRASS" msgstr "" -#: ../gui/wxpython/tplot/frame.py:48 +#: ../gui/wxpython/tplot/frame.py:47 #, python-brace-format msgid "The Temporal Plot Tool needs the \"matplotlib\" (python-matplotlib) package to be installed. {0}" msgstr "" -#: ../gui/wxpython/tplot/frame.py:104 +#: ../gui/wxpython/tplot/frame.py:103 msgid "Temporal Plot Tool" msgstr "" -#: ../gui/wxpython/tplot/frame.py:192 +#: ../gui/wxpython/tplot/frame.py:191 msgid "" "Raster temporal dataset (strds)\n" "Press ENTER after typing the name or select with the combobox" msgstr "" -#: ../gui/wxpython/tplot/frame.py:209 +#: ../gui/wxpython/tplot/frame.py:208 msgid "X and Y coordinates separated by comma:" msgstr "" -#: ../gui/wxpython/tplot/frame.py:226 +#: ../gui/wxpython/tplot/frame.py:225 msgid "Coordinates can be obtained for example by right-clicking on Map Display." msgstr "" -#: ../gui/wxpython/tplot/frame.py:233 ../gui/wxpython/tplot/frame.py:299 +#: ../gui/wxpython/tplot/frame.py:232 ../gui/wxpython/tplot/frame.py:298 msgid "Show simple linear regression line" msgstr "" -#: ../gui/wxpython/tplot/frame.py:249 +#: ../gui/wxpython/tplot/frame.py:248 msgid "STRDS" msgstr "" -#: ../gui/wxpython/tplot/frame.py:257 +#: ../gui/wxpython/tplot/frame.py:256 msgid "" "Vector temporal dataset (stvds)\n" "Press ENTER after typing the name or select with the combobox" msgstr "" -#: ../gui/wxpython/tplot/frame.py:277 +#: ../gui/wxpython/tplot/frame.py:276 msgid "Select attribute column" msgstr "" -#: ../gui/wxpython/tplot/frame.py:294 +#: ../gui/wxpython/tplot/frame.py:293 msgid "Select category of vector(s)" msgstr "" -#: ../gui/wxpython/tplot/frame.py:318 +#: ../gui/wxpython/tplot/frame.py:317 msgid "STVDS" msgstr "" -#: ../gui/wxpython/tplot/frame.py:325 +#: ../gui/wxpython/tplot/frame.py:324 msgid "Set title for the plot" msgstr "" -#: ../gui/wxpython/tplot/frame.py:335 +#: ../gui/wxpython/tplot/frame.py:334 msgid "Set label for X axis" msgstr "" -#: ../gui/wxpython/tplot/frame.py:345 +#: ../gui/wxpython/tplot/frame.py:344 msgid "Set label for Y axis" msgstr "" -#: ../gui/wxpython/tplot/frame.py:361 +#: ../gui/wxpython/tplot/frame.py:360 msgid "Labels" msgstr "" -#: ../gui/wxpython/tplot/frame.py:368 +#: ../gui/wxpython/tplot/frame.py:367 msgid "Path for output CSV file with plotted data" msgstr "" -#: ../gui/wxpython/tplot/frame.py:375 +#: ../gui/wxpython/tplot/frame.py:374 msgid "CVS path" msgstr "" -#: ../gui/wxpython/tplot/frame.py:383 +#: ../gui/wxpython/tplot/frame.py:382 msgid "Do you want the CSV header?" msgstr "" -#: ../gui/wxpython/tplot/frame.py:422 ../gui/wxpython/tplot/frame.py:1053 -#: ../gui/wxpython/tplot/frame.py:1060 ../gui/wxpython/tplot/frame.py:1089 -#: ../gui/wxpython/tplot/frame.py:1248 +#: ../gui/wxpython/tplot/frame.py:421 ../gui/wxpython/tplot/frame.py:1056 +#: ../gui/wxpython/tplot/frame.py:1063 ../gui/wxpython/tplot/frame.py:1092 +#: ../gui/wxpython/tplot/frame.py:1251 msgid "Invalid input coordinates" msgstr "" -#: ../gui/wxpython/tplot/frame.py:525 +#: ../gui/wxpython/tplot/frame.py:524 #, python-brace-format msgid "Category {ca} is not on vector map {ma} and it will be not used" msgstr "" -#: ../gui/wxpython/tplot/frame.py:547 +#: ../gui/wxpython/tplot/frame.py:546 msgid "Both coordinates and categories are set, coordinates will be used. The use categories remove text from coordinate form" msgstr "" -#: ../gui/wxpython/tplot/frame.py:557 +#: ../gui/wxpython/tplot/frame.py:556 msgid "With Vector temporal dataset you have to select an attribute column" msgstr "" -#: ../gui/wxpython/tplot/frame.py:627 +#: ../gui/wxpython/tplot/frame.py:626 msgid "Difference number of vector layers and maps in the vector temporal dataset" msgstr "" -#: ../gui/wxpython/tplot/frame.py:671 +#: ../gui/wxpython/tplot/frame.py:670 #, python-brace-format msgid "No connection between vector map {vmap} and layer {la}" msgstr "" -#: ../gui/wxpython/tplot/frame.py:740 +#: ../gui/wxpython/tplot/frame.py:739 #, python-format msgid "Temporal resolution: %s" msgstr "" -#: ../gui/wxpython/tplot/frame.py:852 +#: ../gui/wxpython/tplot/frame.py:855 msgid "Problem getting data from raster temporal dataset. Empty list of values." msgstr "" -#: ../gui/wxpython/tplot/frame.py:911 +#: ../gui/wxpython/tplot/frame.py:914 #, python-brace-format msgid "Problem getting data from vector temporal dataset. Empty list of values for cat {ca}." msgstr "" -#: ../gui/wxpython/tplot/frame.py:968 +#: ../gui/wxpython/tplot/frame.py:971 msgid "Problem getting data from vector temporal dataset. Empty list of values." msgstr "" -#: ../gui/wxpython/tplot/frame.py:1003 +#: ../gui/wxpython/tplot/frame.py:1006 #, python-brace-format msgid "{pa} already exists, do you want to overwrite?" msgstr "" -#: ../gui/wxpython/tplot/frame.py:1006 +#: ../gui/wxpython/tplot/frame.py:1009 msgid "File exists" msgstr "" -#: ../gui/wxpython/tplot/frame.py:1014 +#: ../gui/wxpython/tplot/frame.py:1017 msgid "Please change name of output CSV file or " msgstr "" -#: ../gui/wxpython/tplot/frame.py:1042 +#: ../gui/wxpython/tplot/frame.py:1045 msgid "Incorrect coordinates format, should be: x,y" msgstr "" -#: ../gui/wxpython/tplot/frame.py:1068 +#: ../gui/wxpython/tplot/frame.py:1071 msgid "Seed point outside the current region" msgstr "" -#: ../gui/wxpython/tplot/frame.py:1082 +#: ../gui/wxpython/tplot/frame.py:1085 msgid "Invalid input raster dataset" msgstr "" -#: ../gui/wxpython/tplot/frame.py:1105 +#: ../gui/wxpython/tplot/frame.py:1108 msgid "Invalid input vector dataset" msgstr "" -#: ../gui/wxpython/tplot/frame.py:1238 ../gui/wxpython/tplot/frame.py:1302 +#: ../gui/wxpython/tplot/frame.py:1241 ../gui/wxpython/tplot/frame.py:1305 msgid "Invalid input temporal dataset" msgstr "" -#: ../gui/wxpython/tplot/frame.py:1326 +#: ../gui/wxpython/tplot/frame.py:1329 msgid "Datasets have different number of values" msgstr "" -#: ../gui/wxpython/tplot/frame.py:1359 +#: ../gui/wxpython/tplot/frame.py:1362 #, python-brace-format msgid "Value for {date} is {val}" msgstr "" -#: ../gui/wxpython/tplot/frame.py:1361 +#: ../gui/wxpython/tplot/frame.py:1364 msgid "Press Del to dismiss." msgstr "" @@ -13220,7 +13216,7 @@ msgid "With stvds you have to use 'coordinates' or 'cats' option" msgstr "" #: ../gui/wxpython/tplot/g.gui.tplot.py:173 -msgid "Temporal Plot Tool - GRASS GIS" +msgid "Temporal Plot Tool - GRASS" msgstr "" #: ../gui/wxpython/vdigit/dialogs.py:91 @@ -13236,7 +13232,7 @@ msgid "Ignore changes and close dialog" msgstr "" #: ../gui/wxpython/vdigit/dialogs.py:172 -#: ../gui/wxpython/web_services/dialogs.py:695 +#: ../gui/wxpython/web_services/dialogs.py:696 msgid "Apply changes and close dialog" msgstr "" @@ -13302,7 +13298,7 @@ msgid "Unable to create new vector map <%s>" msgstr "" #: ../gui/wxpython/vdigit/g.gui.vdigit.py:149 -msgid "Vector Digitizer - GRASS GIS" +msgid "Vector Digitizer - GRASS" msgstr "" #: ../gui/wxpython/vdigit/mapwindow.py:549 @@ -14084,43 +14080,48 @@ msgstr "" #, python-format msgid "" "Temporary map '%s' with result was changed outside vector network analysis tool.\n" -"Showed result may not correspond original analysis result." +"Showed result may not correspond to original analysis result." msgstr "" -#: ../gui/wxpython/vnet/vnet_core.py:234 +#: ../gui/wxpython/vnet/vnet_core.py:233 msgid "Result changed outside" msgstr "" -#: ../gui/wxpython/vnet/vnet_core.py:272 +#: ../gui/wxpython/vnet/vnet_core.py:271 msgid "Map can be created only in current mapset" msgstr "" -#: ../gui/wxpython/vnet/vnet_core.py:282 ../gui/wxpython/vnet/vnet_core.py:358 +#: ../gui/wxpython/vnet/vnet_core.py:281 ../gui/wxpython/vnet/vnet_core.py:357 #, python-format msgid "Vector map %s already exists. Do you want to overwrite it?" msgstr "" -#: ../gui/wxpython/vnet/vnet_core.py:285 ../gui/wxpython/vnet/vnet_core.py:361 +#: ../gui/wxpython/vnet/vnet_core.py:284 ../gui/wxpython/vnet/vnet_core.py:360 msgid "Overwrite vector map" msgstr "" -#: ../gui/wxpython/vnet/vnet_core.py:309 +#: ../gui/wxpython/vnet/vnet_core.py:308 msgid "Creation of turntable failed." msgstr "" -#: ../gui/wxpython/vnet/vnet_core.py:328 +#: ../gui/wxpython/vnet/vnet_core.py:327 msgid "Vector map with analysis result does not exist." msgstr "" -#: ../gui/wxpython/vnet/vnet_core.py:348 +#: ../gui/wxpython/vnet/vnet_core.py:347 msgid "Map can be saved only to currently set mapset" msgstr "" -#: ../gui/wxpython/vnet/vnet_core.py:434 ../gui/wxpython/vnet/vnet_core.py:640 +#: ../gui/wxpython/vnet/vnet_core.py:433 #, python-format msgid "Please choose '%s' and '%s' point." msgstr "" +#: ../gui/wxpython/vnet/vnet_core.py:639 +#, python-brace-format +msgid "Please choose '{0}' and '{1}' point." +msgstr "" + #: ../gui/wxpython/vnet/vnet_core.py:648 msgid "Please choose at least two points." msgstr "" @@ -14132,38 +14133,38 @@ msgid "" "Topology column may not correspond to changed situation." msgstr "" -#: ../gui/wxpython/vnet/vnet_core.py:936 +#: ../gui/wxpython/vnet/vnet_core.py:935 msgid "Input changed outside" msgstr "" -#: ../gui/wxpython/vnet/vnet_core.py:1005 +#: ../gui/wxpython/vnet/vnet_core.py:1004 #, python-format msgid "" -"Temporary map %s already exists.\n" +"Temporary map %s already exists.\n" "Do you want to continue in analysis and overwrite it?" msgstr "" -#: ../gui/wxpython/vnet/vnet_core.py:1030 +#: ../gui/wxpython/vnet/vnet_core.py:1029 msgid "Unable to use ctypes. \n" msgstr "" -#: ../gui/wxpython/vnet/vnet_core.py:1031 -#: ../gui/wxpython/vnet/vnet_core.py:1054 +#: ../gui/wxpython/vnet/vnet_core.py:1030 +#: ../gui/wxpython/vnet/vnet_core.py:1053 msgid "Snapping mode can not be activated." msgstr "" -#: ../gui/wxpython/vnet/vnet_core.py:1064 +#: ../gui/wxpython/vnet/vnet_core.py:1063 msgid "Do you really want to activate snapping and overwrite it?" msgstr "" -#: ../gui/wxpython/vnet/vnet_core.py:1073 +#: ../gui/wxpython/vnet/vnet_core.py:1072 #, python-format msgid "" "Temporary map '%s' was changed outside vector analysis tool.\n" "Do you really want to activate snapping and overwrite it? " msgstr "" -#: ../gui/wxpython/vnet/vnet_core.py:1078 +#: ../gui/wxpython/vnet/vnet_core.py:1076 msgid "Overwrite map" msgstr "" @@ -14320,148 +14321,148 @@ msgstr "" msgid "Edit point" msgstr "" -#: ../gui/wxpython/web_services/dialogs.py:105 +#: ../gui/wxpython/web_services/dialogs.py:106 msgid " Server settings " msgstr "" -#: ../gui/wxpython/web_services/dialogs.py:108 +#: ../gui/wxpython/web_services/dialogs.py:109 msgid "Server:" msgstr "" -#: ../gui/wxpython/web_services/dialogs.py:111 +#: ../gui/wxpython/web_services/dialogs.py:112 msgid "&Connect" msgstr "" -#: ../gui/wxpython/web_services/dialogs.py:112 +#: ../gui/wxpython/web_services/dialogs.py:113 msgid "Connect to the server" msgstr "" -#: ../gui/wxpython/web_services/dialogs.py:116 +#: ../gui/wxpython/web_services/dialogs.py:117 msgid "Show advanced connection settings" msgstr "" -#: ../gui/wxpython/web_services/dialogs.py:117 +#: ../gui/wxpython/web_services/dialogs.py:118 msgid "Hide advanced connection settings" msgstr "" -#: ../gui/wxpython/web_services/dialogs.py:134 +#: ../gui/wxpython/web_services/dialogs.py:135 msgid " Layer Manager Settings " msgstr "" -#: ../gui/wxpython/web_services/dialogs.py:138 +#: ../gui/wxpython/web_services/dialogs.py:139 msgid "Output layer name:" msgstr "" -#: ../gui/wxpython/web_services/dialogs.py:264 +#: ../gui/wxpython/web_services/dialogs.py:265 msgid "Username:" msgstr "" -#: ../gui/wxpython/web_services/dialogs.py:267 +#: ../gui/wxpython/web_services/dialogs.py:268 msgid "Password:" msgstr "" -#: ../gui/wxpython/web_services/dialogs.py:379 +#: ../gui/wxpython/web_services/dialogs.py:380 #, python-format msgid "Connecting to <%s>..." msgstr "" -#: ../gui/wxpython/web_services/dialogs.py:447 +#: ../gui/wxpython/web_services/dialogs.py:448 msgid "Available web services" msgstr "" -#: ../gui/wxpython/web_services/dialogs.py:462 +#: ../gui/wxpython/web_services/dialogs.py:463 #, python-format msgid "Connected to <%s>" msgstr "" -#: ../gui/wxpython/web_services/dialogs.py:469 +#: ../gui/wxpython/web_services/dialogs.py:470 #, python-format msgid "Unable to connect to <%s>" msgstr "" -#: ../gui/wxpython/web_services/dialogs.py:524 +#: ../gui/wxpython/web_services/dialogs.py:525 msgid "Add web service layer" msgstr "" -#: ../gui/wxpython/web_services/dialogs.py:535 +#: ../gui/wxpython/web_services/dialogs.py:536 msgid "Add selected web service layers as map layer into layer tree" msgstr "" -#: ../gui/wxpython/web_services/dialogs.py:645 +#: ../gui/wxpython/web_services/dialogs.py:646 msgid "Web service layer properties" msgstr "" -#: ../gui/wxpython/web_services/dialogs.py:694 +#: ../gui/wxpython/web_services/dialogs.py:695 msgid "&OK" msgstr "" -#: ../gui/wxpython/web_services/dialogs.py:854 +#: ../gui/wxpython/web_services/dialogs.py:855 msgid "Name for output raster map:" msgstr "" -#: ../gui/wxpython/web_services/dialogs.py:865 +#: ../gui/wxpython/web_services/dialogs.py:866 msgid "Export region" msgstr "" -#: ../gui/wxpython/web_services/dialogs.py:871 +#: ../gui/wxpython/web_services/dialogs.py:872 msgid "Map display" msgstr "" -#: ../gui/wxpython/web_services/dialogs.py:876 +#: ../gui/wxpython/web_services/dialogs.py:877 msgid "Named region" msgstr "" -#: ../gui/wxpython/web_services/dialogs.py:878 +#: ../gui/wxpython/web_services/dialogs.py:879 msgid "Extent and resolution are based on Map Display geometry." msgstr "" -#: ../gui/wxpython/web_services/dialogs.py:881 +#: ../gui/wxpython/web_services/dialogs.py:882 msgid "Extent and resolution are based on computational region." msgstr "" -#: ../gui/wxpython/web_services/dialogs.py:884 +#: ../gui/wxpython/web_services/dialogs.py:885 msgid "Extent and resolution are based on named region." msgstr "" -#: ../gui/wxpython/web_services/dialogs.py:889 +#: ../gui/wxpython/web_services/dialogs.py:890 msgid "Overwrite existing raster map" msgstr "" -#: ../gui/wxpython/web_services/dialogs.py:894 +#: ../gui/wxpython/web_services/dialogs.py:895 msgid "Choose named region:" msgstr "" -#: ../gui/wxpython/web_services/dialogs.py:908 +#: ../gui/wxpython/web_services/dialogs.py:909 msgid "&Save layer" msgstr "" -#: ../gui/wxpython/web_services/dialogs.py:909 +#: ../gui/wxpython/web_services/dialogs.py:910 msgid "Save web service layer as raster map" msgstr "" -#: ../gui/wxpython/web_services/dialogs.py:1015 +#: ../gui/wxpython/web_services/dialogs.py:1016 msgid "Missing output raster." msgstr "" -#: ../gui/wxpython/web_services/dialogs.py:1018 +#: ../gui/wxpython/web_services/dialogs.py:1019 msgid "Output map can be added only to current mapset." msgstr "" -#: ../gui/wxpython/web_services/dialogs.py:1024 +#: ../gui/wxpython/web_services/dialogs.py:1025 #, python-format msgid "Output map <%s> already exists" msgstr "" -#: ../gui/wxpython/web_services/dialogs.py:1043 +#: ../gui/wxpython/web_services/dialogs.py:1044 #, python-format msgid "Region <%s> does not exist." msgstr "" -#: ../gui/wxpython/web_services/dialogs.py:1071 +#: ../gui/wxpython/web_services/dialogs.py:1072 msgid "Downloading data..." msgstr "" -#: ../gui/wxpython/web_services/dialogs.py:1092 +#: ../gui/wxpython/web_services/dialogs.py:1093 msgid "Unable to fetch data.\n" msgstr "" @@ -14841,74 +14842,74 @@ msgstr "" msgid "Statistics for raster map <%s>" msgstr "" -#: ../gui/wxpython/wxplot/profile.py:65 +#: ../gui/wxpython/wxplot/profile.py:64 msgid "GRASS Profile Analysis Tool" msgstr "" -#: ../gui/wxpython/wxplot/profile.py:82 ../gui/wxpython/wxplot/profile.py:194 +#: ../gui/wxpython/wxplot/profile.py:81 ../gui/wxpython/wxplot/profile.py:193 msgid "Profile of" msgstr "" -#: ../gui/wxpython/wxplot/profile.py:113 +#: ../gui/wxpython/wxplot/profile.py:112 #, python-format msgid "Distance (%s)" msgstr "" -#: ../gui/wxpython/wxplot/profile.py:115 +#: ../gui/wxpython/wxplot/profile.py:114 msgid "Distance along transect" msgstr "" -#: ../gui/wxpython/wxplot/profile.py:116 +#: ../gui/wxpython/wxplot/profile.py:115 msgid "Cell values" msgstr "" -#: ../gui/wxpython/wxplot/profile.py:186 +#: ../gui/wxpython/wxplot/profile.py:185 msgid "Not all points of profile lie inside computational region." msgstr "" -#: ../gui/wxpython/wxplot/profile.py:281 +#: ../gui/wxpython/wxplot/profile.py:280 msgid "Raster values" msgstr "" -#: ../gui/wxpython/wxplot/profile.py:342 +#: ../gui/wxpython/wxplot/profile.py:341 msgid "You must draw a transect to profile in the map display window." msgstr "" -#: ../gui/wxpython/wxplot/profile.py:344 +#: ../gui/wxpython/wxplot/profile.py:343 msgid "Nothing to profile" msgstr "" -#: ../gui/wxpython/wxplot/profile.py:414 +#: ../gui/wxpython/wxplot/profile.py:413 msgid "Choose prefix for file(s) where to save profile values..." msgstr "" -#: ../gui/wxpython/wxplot/profile.py:416 +#: ../gui/wxpython/wxplot/profile.py:415 msgid "Comma separated value (*.csv)|*.csv" msgstr "" -#: ../gui/wxpython/wxplot/profile.py:432 +#: ../gui/wxpython/wxplot/profile.py:431 msgid "Overwrite file?" msgstr "" -#: ../gui/wxpython/wxplot/profile.py:445 +#: ../gui/wxpython/wxplot/profile.py:448 #, python-format msgid "" "Unable to open file <%s> for writing.\n" "Reason: %s" msgstr "" -#: ../gui/wxpython/wxplot/profile.py:460 +#: ../gui/wxpython/wxplot/profile.py:456 #, python-format msgid "" "%d files created:\n" "%s" msgstr "" -#: ../gui/wxpython/wxplot/profile.py:462 +#: ../gui/wxpython/wxplot/profile.py:458 msgid "No files generated." msgstr "" -#: ../gui/wxpython/wxplot/profile.py:469 +#: ../gui/wxpython/wxplot/profile.py:465 msgid "Statistics for Profile(s)" msgstr "" diff --git a/locale/templates/grasslibs.pot b/locale/templates/grasslibs.pot index 687dfa89a50..9fae73a302e 100644 --- a/locale/templates/grasslibs.pot +++ b/locale/templates/grasslibs.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-22 15:39+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/locale/templates/grassmods.pot b/locale/templates/grassmods.pot index e1d1997ba0c..8ced72b79a8 100644 --- a/locale/templates/grassmods.pot +++ b/locale/templates/grassmods.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-22 15:39+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -175,7 +175,7 @@ msgstr "" #: ../general/g.proj/main.c:90 ../general/g.proj/main.c:99 #: ../general/g.proj/main.c:105 ../general/g.proj/main.c:114 #: ../general/g.proj/main.c:126 ../general/g.proj/main.c:135 -#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:244 +#: ../general/g.proj/main.c:191 ../general/g.proj/main.c:245 #: ../general/g.region/main.c:91 ../general/g.region/main.c:97 #: ../general/g.region/main.c:102 ../general/g.region/main.c:108 #: ../general/g.region/main.c:113 ../general/g.region/main.c:118 @@ -301,13 +301,12 @@ msgstr "" #: ../db/db.connect/main.c:144 ../general/g.findfile/main.c:187 #: ../general/g.list/list.c:122 ../general/g.mapset/main.c:119 -#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:54 -#: ../general/g.proj/output.c:360 ../general/g.region/main.c:471 -#: ../general/g.version/main.c:140 ../misc/m.measure/main.c:87 -#: ../raster/r.describe/dumplist.c:38 ../raster/r.distance/report.c:211 -#: ../raster/r.distance/report.c:218 ../raster/r.distance/report.c:225 -#: ../raster/r.info/main.c:147 ../raster/r.proj/main.c:487 -#: ../raster/r.regression.line/main.c:101 +#: ../general/g.mapsets/list.c:13 ../general/g.proj/output.c:351 +#: ../general/g.region/main.c:471 ../general/g.version/main.c:140 +#: ../misc/m.measure/main.c:87 ../raster/r.describe/dumplist.c:38 +#: ../raster/r.distance/report.c:211 ../raster/r.distance/report.c:218 +#: ../raster/r.distance/report.c:225 ../raster/r.info/main.c:147 +#: ../raster/r.proj/main.c:487 ../raster/r.regression.line/main.c:101 #: ../raster/r.regression.multi/main.c:197 #: ../raster/r.regression.multi/main.c:566 #: ../raster/r.stats.quantile/main.c:430 ../raster/r.stats.quantile/main.c:447 @@ -326,7 +325,7 @@ msgstr "" msgid "Failed to initialize JSON object. Out of memory?" msgstr "" -#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:277 +#: ../db/db.connect/main.c:157 ../general/g.proj/main.c:278 #: ../general/g.region/main.c:427 ../general/g.version/main.c:153 #: ../imagery/i.group/main.c:137 ../misc/m.measure/main.c:100 #: ../raster/r.proj/main.c:270 ../raster/r.regression.line/main.c:114 @@ -480,7 +479,7 @@ msgstr "" msgid "Lists all databases for a given driver and location." msgstr "" -#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:383 +#: ../db/db.describe/main.c:140 ../general/g.proj/output.c:374 #: ../general/g.region/main.c:990 ../general/g.version/main.c:409 #: ../imagery/i.group/main.c:301 ../raster/r.category/main.c:412 #: ../raster/r.describe/dumplist.c:71 ../raster/r.info/main.c:1000 @@ -6748,55 +6747,63 @@ msgstr "" msgid "Name of new project (location) to create" msgstr "" -#: ../general/g.proj/main.c:239 -msgid "plain;Human readable text output;shell;shell script style text output;json;JSON (JavaScript Object Notation);wkt;Well-known text output;proj4;PROJ.4 style text output;" +#: ../general/g.proj/main.c:240 +msgid "plain;Human readable text output;shell;shell script style text output;wkt;Well-known text output;projjson;JSON (JavaScript Object Notation) version of WKT;proj4;PROJ.4 style text output;" msgstr "" -#: ../general/g.proj/main.c:271 ../vector/v.what.rast/main.c:159 +#: ../general/g.proj/main.c:272 ../vector/v.what.rast/main.c:159 #, c-format msgid "The format option can only be used with -%c flag" msgstr "" -#: ../general/g.proj/main.c:283 +#: ../general/g.proj/main.c:284 msgid "Flag 'j' is deprecated and will be removed in a future release. Please use format=proj4 instead." msgstr "" -#: ../general/g.proj/main.c:292 +#: ../general/g.proj/main.c:293 msgid "Flag 'w' is deprecated and will be removed in a future release. Please use format=wkt instead." msgstr "" -#: ../general/g.proj/main.c:312 +#: ../general/g.proj/main.c:313 #, c-format msgid "Only one of '%s', '%s', '%s', '%s' or '%s' options may be specified" msgstr "" -#: ../general/g.proj/main.c:364 +#: ../general/g.proj/main.c:365 msgid "Projection files missing" msgstr "" -#: ../general/g.proj/main.c:392 +#: ../general/g.proj/main.c:393 #, c-format msgid "No output format specified. Define one of the options: plain, shell, json, wkt, or proj4 using the -%c flag." msgstr "" -#: ../general/g.proj/main.c:397 +#: ../general/g.proj/main.c:398 #, c-format msgid "No output format specified. Define one of the options: plain, shell, json, or proj4 using the -%c flag." msgstr "" -#: ../general/g.proj/output.c:221 +#: ../general/g.proj/output.c:54 +msgid "JSON output is not available." +msgstr "" + +#: ../general/g.proj/output.c:212 msgid "Unable to convert projection information to PROJ format" msgstr "" -#: ../general/g.proj/output.c:295 +#: ../general/g.proj/output.c:286 #, c-format msgid "Unable to create PROJ definition from srid <%s>" msgstr "" -#: ../general/g.proj/output.c:337 +#: ../general/g.proj/output.c:328 msgid "Unable to convert to WKT" msgstr "" +#: ../general/g.proj/output.c:433 +msgid "Unable to convert to PROJJSON" +msgstr "" + #: ../general/g.region/main.c:67 msgid "computational region" msgstr "" @@ -11413,10 +11420,10 @@ msgstr "" #: ../raster/r.grow.distance/main.c:392 ../raster/r.li/r.li.daemon/daemon.c:743 #: ../raster/r.mfilter/execute.c:82 ../raster/r.mfilter/execute.c:114 #: ../raster/r.mfilter/execute.c:165 ../raster/r.mfilter/getrow.c:24 -#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:786 -#: ../raster/r.path/main.c:822 ../raster/r.path/main.c:954 -#: ../raster/r.path/main.c:1073 ../raster/r.path/main.c:1103 -#: ../raster/r.path/main.c:1207 ../raster/r.thin/io.c:72 +#: ../raster/r.mfilter/getrow.c:31 ../raster/r.path/main.c:789 +#: ../raster/r.path/main.c:825 ../raster/r.path/main.c:957 +#: ../raster/r.path/main.c:1076 ../raster/r.path/main.c:1106 +#: ../raster/r.path/main.c:1210 ../raster/r.thin/io.c:72 #: ../raster/r.thin/io.c:82 ../raster3d/r3.in.v5d/v5d.c:1192 #: ../raster3d/r3.in.v5d/v5d.c:1443 ../raster3d/r3.in.v5d/v5d.c:1523 #: ../raster3d/r3.in.v5d/v5d.c:1848 ../raster3d/r3.in.v5d/v5d.c:1859 @@ -11441,9 +11448,9 @@ msgstr "" #: ../raster/r.clump/minsize.c:268 ../raster/r.clump/minsize.c:308 #: ../raster/r.clump/minsize.c:319 ../raster/r.clump/minsize.c:454 #: ../raster/r.clump/minsize.c:481 ../raster/r.clump/minsize.c:557 -#: ../raster/r.path/main.c:791 ../raster/r.path/main.c:827 -#: ../raster/r.path/main.c:962 ../raster/r.path/main.c:1078 -#: ../raster/r.path/main.c:1108 ../raster/r.path/main.c:1213 +#: ../raster/r.path/main.c:794 ../raster/r.path/main.c:830 +#: ../raster/r.path/main.c:965 ../raster/r.path/main.c:1081 +#: ../raster/r.path/main.c:1111 ../raster/r.path/main.c:1216 msgid "Unable to read from temp file" msgstr "" @@ -19730,7 +19737,7 @@ msgstr "" msgid "Starting point %d is outside the current region" msgstr "" -#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:375 +#: ../raster/r.drain/main.c:331 ../raster/r.path/main.c:378 #, c-format msgid "Starting vector map <%s> contains no points in the current region" msgstr "" @@ -19744,8 +19751,8 @@ msgid "Calculating flow directions..." msgstr "" #: ../raster/r.drain/main.c:485 ../raster/r.in.lidar/main.c:783 -#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:598 -#: ../raster/r.path/main.c:628 ../raster/r.viewshed/grass.cpp:621 +#: ../raster/r.in.pdal/main.cpp:886 ../raster/r.path/main.c:601 +#: ../raster/r.path/main.c:631 ../raster/r.viewshed/grass.cpp:621 msgid "Writing output raster map..." msgstr "" @@ -24883,113 +24890,113 @@ msgstr "" msgid "Do not break lines (faster for single-direction bitmask encoding)" msgstr "" -#: ../raster/r.path/main.c:384 +#: ../raster/r.path/main.c:387 msgid "No start point(s) specified" msgstr "" -#: ../raster/r.path/main.c:394 +#: ../raster/r.path/main.c:397 #, c-format msgid "Reading raster values map <%s> ..." msgstr "" -#: ../raster/r.path/main.c:399 +#: ../raster/r.path/main.c:402 #, c-format msgid "Unable to open temporary file <%s>: %s" msgstr "" -#: ../raster/r.path/main.c:411 ../raster/r.path/main.c:489 -#: ../raster/r.path/main.c:506 +#: ../raster/r.path/main.c:414 ../raster/r.path/main.c:492 +#: ../raster/r.path/main.c:509 msgid "Unable to write to tempfile" msgstr "" -#: ../raster/r.path/main.c:419 +#: ../raster/r.path/main.c:422 msgid "Unable to read range file" msgstr "" -#: ../raster/r.path/main.c:422 +#: ../raster/r.path/main.c:425 #, c-format msgid "Invalid directions map <%s>" msgstr "" -#: ../raster/r.path/main.c:427 +#: ../raster/r.path/main.c:430 msgid "Directional degrees can not be > 360" msgstr "" -#: ../raster/r.path/main.c:433 +#: ../raster/r.path/main.c:436 msgid "Directional degrees divided by 45 can not be > 8" msgstr "" -#: ../raster/r.path/main.c:438 +#: ../raster/r.path/main.c:441 #, c-format msgid "Bitmask encoded directions can not be > %d" msgstr "" -#: ../raster/r.path/main.c:445 +#: ../raster/r.path/main.c:448 msgid "Input direction format assumed to be degrees CCW from East divided by 45" msgstr "" -#: ../raster/r.path/main.c:450 +#: ../raster/r.path/main.c:453 msgid "Input direction format assumed to be bitmask encoded without Knight's move" msgstr "" -#: ../raster/r.path/main.c:456 +#: ../raster/r.path/main.c:459 msgid "Input direction format assumed to be degrees CCW from East" msgstr "" -#: ../raster/r.path/main.c:460 +#: ../raster/r.path/main.c:463 msgid "Input direction format assumed to be bitmask encoded with Knight's move" msgstr "" -#: ../raster/r.path/main.c:465 +#: ../raster/r.path/main.c:468 #, c-format msgid "Unable to detect format of input direction map <%s>" msgstr "" -#: ../raster/r.path/main.c:469 +#: ../raster/r.path/main.c:472 #, c-format msgid "Invalid directions format '%s'" msgstr "" -#: ../raster/r.path/main.c:471 +#: ../raster/r.path/main.c:474 #, c-format msgid "Reading direction map <%s> ..." msgstr "" -#: ../raster/r.path/main.c:525 +#: ../raster/r.path/main.c:528 msgid "Processing start points..." msgstr "" -#: ../raster/r.path/main.c:535 ../vector/v.buffer/main.c:410 +#: ../raster/r.path/main.c:538 ../vector/v.buffer/main.c:410 #: ../vector/v.in.ogr/main.c:881 ../vector/v.overlay/main.c:237 #: ../vector/v.voronoi/main.c:215 msgid "Unable to create temporary vector map" msgstr "" -#: ../raster/r.path/main.c:541 ../raster/r.path/main.c:557 +#: ../raster/r.path/main.c:544 ../raster/r.path/main.c:560 #, c-format msgid "No path at row %d, col %d" msgstr "" -#: ../raster/r.path/main.c:546 ../vector/v.overlay/area_area.c:134 +#: ../raster/r.path/main.c:549 ../vector/v.overlay/area_area.c:134 #: ../vector/v.overlay/line_area.c:255 msgid "Breaking lines..." msgstr "" -#: ../raster/r.path/main.c:684 +#: ../raster/r.path/main.c:687 msgid "Unable to increase point list" msgstr "" -#: ../raster/r.path/main.c:887 +#: ../raster/r.path/main.c:890 #, c-format msgid "No path from row %d, col %d" msgstr "" -#: ../raster/r.path/main.c:901 +#: ../raster/r.path/main.c:904 #, c-format msgid "Invalid direction %d" msgstr "" -#: ../raster/r.path/main.c:999 +#: ../raster/r.path/main.c:1002 msgid "Path is leaving the current region" msgstr "" diff --git a/locale/templates/grasswxpy.pot b/locale/templates/grasswxpy.pot index 2c62ce83af9..e1a710bd64b 100644 --- a/locale/templates/grasswxpy.pot +++ b/locale/templates/grasswxpy.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-22 15:39+0000\n" +"POT-Creation-Date: 2026-03-01 17:30+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n"