From bd88d1563a7024a36cb9dbbc663db314a63f0424 Mon Sep 17 00:00:00 2001 From: Ryo Nakano Date: Fri, 11 Jul 2025 21:07:43 +0900 Subject: [PATCH 1/5] Re-separate the translation domain for metadata into 'extra' --- data/meson.build | 4 ++-- po/POTFILES | 2 -- po/extra/LINGUAS | 19 +++++++++++++++++++ po/extra/POTFILES | 2 ++ po/extra/meson.build | 9 +++++++++ po/meson.build | 2 ++ 6 files changed, 34 insertions(+), 4 deletions(-) create mode 100644 po/extra/LINGUAS create mode 100644 po/extra/POTFILES create mode 100644 po/extra/meson.build diff --git a/data/meson.build b/data/meson.build index 0499325..8df0c5b 100644 --- a/data/meson.build +++ b/data/meson.build @@ -11,7 +11,7 @@ endforeach i18n.merge_file( input: 'atlas.desktop.in', output: meson.project_name() + '.desktop', - po_dir: meson.project_source_root() / 'po', + po_dir: meson.project_source_root() / 'po' / 'extra', type: 'desktop', install: true, install_dir: get_option('datadir') / 'applications' @@ -20,7 +20,7 @@ i18n.merge_file( i18n.merge_file( input: 'atlas.metainfo.xml.in', output: meson.project_name() + '.metainfo.xml', - po_dir: meson.project_source_root() / 'po', + po_dir: meson.project_source_root() / 'po' / 'extra', install: true, install_dir: get_option('datadir') / 'metainfo' ) diff --git a/po/POTFILES b/po/POTFILES index 3a1eb86..d9ae5b6 100644 --- a/po/POTFILES +++ b/po/POTFILES @@ -1,4 +1,2 @@ -data/atlas.desktop.in -data/atlas.metainfo.xml.in src/Application.vala src/MainWindow.vala diff --git a/po/extra/LINGUAS b/po/extra/LINGUAS new file mode 100644 index 0000000..53a18e7 --- /dev/null +++ b/po/extra/LINGUAS @@ -0,0 +1,19 @@ +de +fr +it +ja +lt +nl +pl +pt +ru +sk +tr +uk +fi +es +nb_NO +hi +et +pt_BR +ta diff --git a/po/extra/POTFILES b/po/extra/POTFILES new file mode 100644 index 0000000..aadfde0 --- /dev/null +++ b/po/extra/POTFILES @@ -0,0 +1,2 @@ +data/atlas.desktop.in +data/atlas.metainfo.xml.in diff --git a/po/extra/meson.build b/po/extra/meson.build new file mode 100644 index 0000000..5b3dd0a --- /dev/null +++ b/po/extra/meson.build @@ -0,0 +1,9 @@ +i18n.gettext('extra', + args: [ + '--directory=' + meson.project_source_root(), + '--from-code=UTF-8', + '-cTRANSLATORS' + ], + preset: 'glib', + install: false +) diff --git a/po/meson.build b/po/meson.build index a747597..9d4d136 100644 --- a/po/meson.build +++ b/po/meson.build @@ -6,3 +6,5 @@ i18n.gettext(meson.project_name(), ], preset: 'glib' ) + +subdir('extra') From 7312083f602babd9582a28b0b65ef8e95e08ceef Mon Sep 17 00:00:00 2001 From: Ryo Nakano Date: Sat, 12 Jul 2025 16:44:27 +0900 Subject: [PATCH 2/5] Update translation files --- po/com.github.ryonakano.atlas.pot | 48 ++-------- po/de.po | 53 ++--------- po/es.po | 78 +++++++--------- po/et.po | 81 ++++++++--------- po/extra/de.po | 96 ++++++++++++++++++++ po/extra/es.po | 128 ++++++++++++++++++++++++++ po/extra/et.po | 135 ++++++++++++++++++++++++++++ po/extra/extra.pot | 60 +++++++++++++ po/extra/fi.po | 109 ++++++++++++++++++++++ po/extra/fr.po | 140 +++++++++++++++++++++++++++++ po/extra/hi.po | 124 +++++++++++++++++++++++++ po/extra/it.po | 133 +++++++++++++++++++++++++++ po/extra/ja.po | 141 +++++++++++++++++++++++++++++ po/extra/lt.po | 105 ++++++++++++++++++++++ po/extra/nb_NO.po | 114 +++++++++++++++++++++++ po/extra/nl.po | 114 +++++++++++++++++++++++ po/extra/pl.po | 114 +++++++++++++++++++++++ po/extra/pt.po | 115 ++++++++++++++++++++++++ po/extra/pt_BR.po | 65 ++++++++++++++ po/extra/ru.po | 123 +++++++++++++++++++++++++ po/extra/sk.po | 117 ++++++++++++++++++++++++ po/extra/ta.po | 129 ++++++++++++++++++++++++++ po/extra/tr.po | 131 +++++++++++++++++++++++++++ po/extra/uk.po | 145 ++++++++++++++++++++++++++++++ po/fi.po | 53 ++--------- po/fr.po | 82 ++++++++--------- po/hi.po | 78 +++++++--------- po/it.po | 78 +++++++--------- po/ja.po | 81 ++++++++--------- po/lt.po | 78 +++++++--------- po/nb_NO.po | 78 +++++++--------- po/nl.po | 78 +++++++--------- po/pl.po | 76 +++++++--------- po/pt.po | 78 +++++++--------- po/pt_BR.po | 48 ++-------- po/ru.po | 78 +++++++--------- po/sk.po | 82 ++++++++--------- po/ta.po | 76 +++++++--------- po/tr.po | 80 +++++++---------- po/uk.po | 82 ++++++++--------- 40 files changed, 2905 insertions(+), 899 deletions(-) create mode 100644 po/extra/de.po create mode 100644 po/extra/es.po create mode 100644 po/extra/et.po create mode 100644 po/extra/extra.pot create mode 100644 po/extra/fi.po create mode 100644 po/extra/fr.po create mode 100644 po/extra/hi.po create mode 100644 po/extra/it.po create mode 100644 po/extra/ja.po create mode 100644 po/extra/lt.po create mode 100644 po/extra/nb_NO.po create mode 100644 po/extra/nl.po create mode 100644 po/extra/pl.po create mode 100644 po/extra/pt.po create mode 100644 po/extra/pt_BR.po create mode 100644 po/extra/ru.po create mode 100644 po/extra/sk.po create mode 100644 po/extra/ta.po create mode 100644 po/extra/tr.po create mode 100644 po/extra/uk.po diff --git a/po/com.github.ryonakano.atlas.pot b/po/com.github.ryonakano.atlas.pot index 6e20a17..f4ff30e 100644 --- a/po/com.github.ryonakano.atlas.pot +++ b/po/com.github.ryonakano.atlas.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.ryonakano.atlas\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-07-12 16:38+0900\n" +"POT-Creation-Date: 2025-07-12 16:41+0900\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,52 +17,14 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: data/atlas.desktop.in:2 data/atlas.metainfo.xml.in:10 src/MainWindow.vala:45 -msgid "Atlas" -msgstr "" - -#: data/atlas.desktop.in:3 -msgid "Map" -msgstr "" - -#: data/atlas.desktop.in:4 data/atlas.metainfo.xml.in:11 -msgid "View where to go" -msgstr "" - -#: data/atlas.desktop.in:10 -msgid "Trip;Explore;" -msgstr "" - -#: data/atlas.metainfo.xml.in:13 -msgid "A map app that helps you to see where you want to go." -msgstr "" - -#: data/atlas.metainfo.xml.in:16 -msgid "Features include:" -msgstr "" - -#: data/atlas.metainfo.xml.in:18 -msgid "Search any place" -msgstr "" - -#: data/atlas.metainfo.xml.in:19 -msgid "Jump to your current location instantly" -msgstr "" - -#: data/atlas.metainfo.xml.in:21 -msgid "" -"This is a fork of \"Atlas Maps\" and wouldn't exist without work of Steffen " -"Schuhmann." -msgstr "" - -#: data/atlas.metainfo.xml.in:28 data/atlas.metainfo.xml.in:32 -msgid "See locations on a map" -msgstr "" - #: src/MainWindow.vala:33 msgid "Unknown" msgstr "" +#: src/MainWindow.vala:45 +msgid "Atlas" +msgstr "" + #: src/MainWindow.vala:51 msgid "Move to the current location" msgstr "" diff --git a/po/de.po b/po/de.po index a4c296a..102e754 100644 --- a/po/de.po +++ b/po/de.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.ryonakano.atlas\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-07-12 16:38+0900\n" +"POT-Creation-Date: 2025-07-12 16:41+0900\n" "PO-Revision-Date: 2024-05-03 10:45+0000\n" "Last-Translator: Fill read-only add-on \n" "Language-Team: German \n" @@ -19,53 +19,14 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.5.3\n" -#: data/atlas.desktop.in:2 data/atlas.metainfo.xml.in:10 src/MainWindow.vala:45 -msgid "Atlas" -msgstr "Atlas" - -#: data/atlas.desktop.in:3 -msgid "Map" -msgstr "" - -#: data/atlas.desktop.in:4 data/atlas.metainfo.xml.in:11 -msgid "View where to go" -msgstr "" - -#: data/atlas.desktop.in:10 -msgid "Trip;Explore;" -msgstr "" - -#: data/atlas.metainfo.xml.in:13 -msgid "A map app that helps you to see where you want to go." -msgstr "" - -#: data/atlas.metainfo.xml.in:16 -msgid "Features include:" -msgstr "" - -#: data/atlas.metainfo.xml.in:18 -msgid "Search any place" -msgstr "" - -#: data/atlas.metainfo.xml.in:19 -#, fuzzy -msgid "Jump to your current location instantly" -msgstr "Ihr aktueller Standort wird erkennt …" - -#: data/atlas.metainfo.xml.in:21 -msgid "" -"This is a fork of \"Atlas Maps\" and wouldn't exist without work of Steffen " -"Schuhmann." -msgstr "" - -#: data/atlas.metainfo.xml.in:28 data/atlas.metainfo.xml.in:32 -msgid "See locations on a map" -msgstr "" - #: src/MainWindow.vala:33 msgid "Unknown" msgstr "" +#: src/MainWindow.vala:45 +msgid "Atlas" +msgstr "Atlas" + #: src/MainWindow.vala:51 #, fuzzy msgid "Move to the current location" @@ -124,6 +85,10 @@ msgstr "" msgid "Failed to connect to location service" msgstr "" +#, fuzzy +#~ msgid "Jump to your current location instantly" +#~ msgstr "Ihr aktueller Standort wird erkennt …" + #~ msgid "@APP_NAME@" #~ msgstr "@APP_NAME@" diff --git a/po/es.po b/po/es.po index 558bc23..adbb6b4 100644 --- a/po/es.po +++ b/po/es.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.ryonakano.atlas\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-07-12 16:38+0900\n" +"POT-Creation-Date: 2025-07-12 16:41+0900\n" "PO-Revision-Date: 2024-05-20 12:01+0000\n" "Last-Translator: gallegonovato \n" "Language-Team: Spanish \n" @@ -19,54 +19,14 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.6-dev\n" -#: data/atlas.desktop.in:2 data/atlas.metainfo.xml.in:10 src/MainWindow.vala:45 -msgid "Atlas" -msgstr "Atlas" - -#: data/atlas.desktop.in:3 -msgid "Map" -msgstr "Mapa" - -#: data/atlas.desktop.in:4 data/atlas.metainfo.xml.in:11 -msgid "View where to go" -msgstr "Dónde ir" - -#: data/atlas.desktop.in:10 -msgid "Trip;Explore;" -msgstr "Viaje;Explora;" - -#: data/atlas.metainfo.xml.in:13 -msgid "A map app that helps you to see where you want to go." -msgstr "Una aplicación de mapas que te ayuda a ver a dónde quieres ir." - -#: data/atlas.metainfo.xml.in:16 -msgid "Features include:" -msgstr "Las características incluyen:" - -#: data/atlas.metainfo.xml.in:18 -msgid "Search any place" -msgstr "Busca en cualquier lugar" - -#: data/atlas.metainfo.xml.in:19 -msgid "Jump to your current location instantly" -msgstr "Salta a tu ubicación actual al instante" - -#: data/atlas.metainfo.xml.in:21 -msgid "" -"This is a fork of \"Atlas Maps\" and wouldn't exist without work of Steffen " -"Schuhmann." -msgstr "" -"Se trata de una bifurcación de \"Atlas Maps\" y no existiría sin el trabajo " -"de Steffen Schuhmann." - -#: data/atlas.metainfo.xml.in:28 data/atlas.metainfo.xml.in:32 -msgid "See locations on a map" -msgstr "" - #: src/MainWindow.vala:33 msgid "Unknown" msgstr "Desconocido" +#: src/MainWindow.vala:45 +msgid "Atlas" +msgstr "Atlas" + #: src/MainWindow.vala:51 msgid "Move to the current location" msgstr "Desplazarse a la ubicación actual" @@ -126,6 +86,34 @@ msgstr "Menú principal" msgid "Failed to connect to location service" msgstr "Falló la conexión al servicio de localización" +#~ msgid "Map" +#~ msgstr "Mapa" + +#~ msgid "View where to go" +#~ msgstr "Dónde ir" + +#~ msgid "Trip;Explore;" +#~ msgstr "Viaje;Explora;" + +#~ msgid "A map app that helps you to see where you want to go." +#~ msgstr "Una aplicación de mapas que te ayuda a ver a dónde quieres ir." + +#~ msgid "Features include:" +#~ msgstr "Las características incluyen:" + +#~ msgid "Search any place" +#~ msgstr "Busca en cualquier lugar" + +#~ msgid "Jump to your current location instantly" +#~ msgstr "Salta a tu ubicación actual al instante" + +#~ msgid "" +#~ "This is a fork of \"Atlas Maps\" and wouldn't exist without work of " +#~ "Steffen Schuhmann." +#~ msgstr "" +#~ "Se trata de una bifurcación de \"Atlas Maps\" y no existiría sin el " +#~ "trabajo de Steffen Schuhmann." + #~ msgid "@APP_NAME@" #~ msgstr "@APP_NAME@" diff --git a/po/et.po b/po/et.po index d055ffd..1b7c018 100644 --- a/po/et.po +++ b/po/et.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.ryonakano.atlas\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-07-12 16:38+0900\n" +"POT-Creation-Date: 2025-07-12 16:41+0900\n" "PO-Revision-Date: 2025-07-10 13:01+0000\n" "Last-Translator: Priit Jõerüüt \n" "Language-Team: Estonian , 2022. +# Fill read-only add-on , 2024. +msgid "" +msgstr "" +"Project-Id-Version: com.github.ryonakano.atlas\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-07-12 16:41+0900\n" +"PO-Revision-Date: 2024-05-03 10:45+0000\n" +"Last-Translator: Fill read-only add-on \n" +"Language-Team: German \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.5.3\n" + +#: data/atlas.desktop.in:2 data/atlas.metainfo.xml.in:10 +msgid "Atlas" +msgstr "Atlas" + +#: data/atlas.desktop.in:3 +msgid "Map" +msgstr "" + +#: data/atlas.desktop.in:4 data/atlas.metainfo.xml.in:11 +msgid "View where to go" +msgstr "" + +#: data/atlas.desktop.in:10 +msgid "Trip;Explore;" +msgstr "" + +#: data/atlas.metainfo.xml.in:13 +msgid "A map app that helps you to see where you want to go." +msgstr "" + +#: data/atlas.metainfo.xml.in:16 +msgid "Features include:" +msgstr "" + +#: data/atlas.metainfo.xml.in:18 +msgid "Search any place" +msgstr "" + +#: data/atlas.metainfo.xml.in:19 +#, fuzzy +msgid "Jump to your current location instantly" +msgstr "Ihr aktueller Standort wird erkennt …" + +#: data/atlas.metainfo.xml.in:21 +msgid "" +"This is a fork of \"Atlas Maps\" and wouldn't exist without work of Steffen " +"Schuhmann." +msgstr "" + +#: data/atlas.metainfo.xml.in:28 data/atlas.metainfo.xml.in:32 +msgid "See locations on a map" +msgstr "" + +#, fuzzy +#~ msgid "Move to the current location" +#~ msgstr "Ihr aktueller Standort wird erkennt …" + +#~ msgid "Search Location" +#~ msgstr "Standort suchen" + +#, fuzzy +#~ msgid "System" +#~ msgstr "System" + +#, fuzzy +#~ msgid "Light" +#~ msgstr "Hell" + +#, fuzzy +#~ msgid "Dark" +#~ msgstr "Dunkel" + +#, fuzzy +#~ msgid "Transport" +#~ msgstr "Verkehrskarte" + +#, fuzzy +#~ msgid "Style" +#~ msgstr "Stil:" + +#~ msgid "@APP_NAME@" +#~ msgstr "@APP_NAME@" + +#~ msgid "Preferences" +#~ msgstr "Einstellungen" diff --git a/po/extra/es.po b/po/extra/es.po new file mode 100644 index 0000000..86c07c9 --- /dev/null +++ b/po/extra/es.po @@ -0,0 +1,128 @@ +# Spanish translations for com.github.ryonakano.atlas. +# Copyright (C) 2014-2015 Atlas Developers +# Copyright (C) 2018-2025 Ryo Nakano +# This file is distributed under the same license as the com.github.ryonakano.atlas package. +# gallegonovato , 2023, 2024. +# Fill read-only add-on , 2024. +msgid "" +msgstr "" +"Project-Id-Version: com.github.ryonakano.atlas\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-07-12 16:41+0900\n" +"PO-Revision-Date: 2024-05-20 12:01+0000\n" +"Last-Translator: gallegonovato \n" +"Language-Team: Spanish \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.6-dev\n" + +#: data/atlas.desktop.in:2 data/atlas.metainfo.xml.in:10 +msgid "Atlas" +msgstr "Atlas" + +#: data/atlas.desktop.in:3 +msgid "Map" +msgstr "Mapa" + +#: data/atlas.desktop.in:4 data/atlas.metainfo.xml.in:11 +msgid "View where to go" +msgstr "Dónde ir" + +#: data/atlas.desktop.in:10 +msgid "Trip;Explore;" +msgstr "Viaje;Explora;" + +#: data/atlas.metainfo.xml.in:13 +msgid "A map app that helps you to see where you want to go." +msgstr "Una aplicación de mapas que te ayuda a ver a dónde quieres ir." + +#: data/atlas.metainfo.xml.in:16 +msgid "Features include:" +msgstr "Las características incluyen:" + +#: data/atlas.metainfo.xml.in:18 +msgid "Search any place" +msgstr "Busca en cualquier lugar" + +#: data/atlas.metainfo.xml.in:19 +msgid "Jump to your current location instantly" +msgstr "Salta a tu ubicación actual al instante" + +#: data/atlas.metainfo.xml.in:21 +msgid "" +"This is a fork of \"Atlas Maps\" and wouldn't exist without work of Steffen " +"Schuhmann." +msgstr "" +"Se trata de una bifurcación de \"Atlas Maps\" y no existiría sin el trabajo " +"de Steffen Schuhmann." + +#: data/atlas.metainfo.xml.in:28 data/atlas.metainfo.xml.in:32 +msgid "See locations on a map" +msgstr "" + +#~ msgid "Unknown" +#~ msgstr "Desconocido" + +#~ msgid "Move to the current location" +#~ msgstr "Desplazarse a la ubicación actual" + +#~ msgid "Search Location" +#~ msgstr "Buscar la ubicación" + +#, fuzzy +#~ msgid "No Results Found" +#~ msgstr "No hay resultados" + +#, fuzzy +#~ msgid "System" +#~ msgstr "Sistema" + +#, fuzzy +#~ msgid "Light" +#~ msgstr "Claro" + +#, fuzzy +#~ msgid "Dark" +#~ msgstr "Oscuro" + +#~ msgid "Mapnik" +#~ msgstr "Mapnik" + +#, fuzzy +#~ msgid "Transport" +#~ msgstr "Transporte" + +#, fuzzy +#~ msgid "Style" +#~ msgstr "Estilo" + +#, fuzzy +#~ msgid "Map Source" +#~ msgstr "Fuente del mapa" + +#~ msgid "Main Menu" +#~ msgstr "Menú principal" + +#~ msgid "Failed to connect to location service" +#~ msgstr "Falló la conexión al servicio de localización" + +#~ msgid "@APP_NAME@" +#~ msgstr "@APP_NAME@" + +#~ msgid "App window in the light mode" +#~ msgstr "Ventana de la aplicación en modo claro." + +#~ msgid "App window in the dark mode" +#~ msgstr "Ventana de la aplicación en modo oscuro." + +#~ msgid "Try changing the search term." +#~ msgstr "Prueba a cambiar el término de la búsqueda." + +#~ msgid "Preferences" +#~ msgstr "Preferencias" + +#~ msgid "Search where to go" +#~ msgstr "Buscar un destino" diff --git a/po/extra/et.po b/po/extra/et.po new file mode 100644 index 0000000..dff840c --- /dev/null +++ b/po/extra/et.po @@ -0,0 +1,135 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.ryonakano.atlas package. +# Priit Jõerüüt , 2024, 2025. +# Fill read-only add-on , 2024. +# Priit Jõerüüt , 2025. +msgid "" +msgstr "" +"Project-Id-Version: com.github.ryonakano.atlas\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-07-12 16:41+0900\n" +"PO-Revision-Date: 2025-07-10 13:01+0000\n" +"Last-Translator: Priit Jõerüüt \n" +"Language-Team: Estonian \n" +"Language: et\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.13-dev\n" + +#: data/atlas.desktop.in:2 data/atlas.metainfo.xml.in:10 +msgid "Atlas" +msgstr "Atlas" + +#: data/atlas.desktop.in:3 +msgid "Map" +msgstr "Kaart" + +#: data/atlas.desktop.in:4 data/atlas.metainfo.xml.in:11 +msgid "View where to go" +msgstr "Vaata, kuhu saad jõuda" + +#: data/atlas.desktop.in:10 +msgid "Trip;Explore;" +msgstr "map;atlas;reisima;reisimine;kaart;kaardid;teekond;teekonnad;sõitmine;kõndimine;matkamine;" + +#: data/atlas.metainfo.xml.in:13 +msgid "A map app that helps you to see where you want to go." +msgstr "Kaart, mis aitab sul selgust saada oma teekonnast." + +#: data/atlas.metainfo.xml.in:16 +msgid "Features include:" +msgstr "Funktsionaalsused:" + +#: data/atlas.metainfo.xml.in:18 +msgid "Search any place" +msgstr "Otsi kõiki asukohti" + +#: data/atlas.metainfo.xml.in:19 +msgid "Jump to your current location instantly" +msgstr "Näita lennult praegust asukohta" + +#: data/atlas.metainfo.xml.in:21 +msgid "" +"This is a fork of \"Atlas Maps\" and wouldn't exist without work of Steffen " +"Schuhmann." +msgstr "" +"See rakendus on edasiarendus rakendusest „Atlas Maps“ ning teda poleks " +"olemas ilma Steffen Schuhmanni panuseta." + +#: data/atlas.metainfo.xml.in:28 data/atlas.metainfo.xml.in:32 +msgid "See locations on a map" +msgstr "Vaata asukohti kaardil" + +#~ msgid "Unknown" +#~ msgstr "Teadmata" + +#~ msgid "Move to the current location" +#~ msgstr "Näita praekust asukohta" + +#~ msgid "Search Location" +#~ msgstr "Otsi asukohta" + +#~ msgid "No Results Found" +#~ msgstr "Tulemusi ei leidu" + +#~ msgid "Try a different search" +#~ msgstr "Proovi teistsugust otsingut" + +#, fuzzy +#~ msgid "System" +#~ msgstr "S_üsteemi kujundus" + +#, fuzzy +#~ msgid "Light" +#~ msgstr "_Hele kujundus" + +#, fuzzy +#~ msgid "Dark" +#~ msgstr "_Tume kujundus" + +#~ msgid "Mapnik" +#~ msgstr "Mapnik" + +#, fuzzy +#~ msgid "Transport" +#~ msgstr "_Transport" + +#, fuzzy +#~ msgid "Style" +#~ msgstr "_Kujundus" + +#, fuzzy +#~ msgid "Map Source" +#~ msgstr "K_aardiallikas" + +#~ msgid "Main Menu" +#~ msgstr "Põhimenüü" + +#~ msgid "Failed to connect to location service" +#~ msgstr "Ei õnnestunud luua ühendust asukoha tuvastamise teenusega" + +#~ msgid "Map_nik" +#~ msgstr "Map_nik" + +#~ msgid "@APP_NAME@" +#~ msgstr "@APP_NAME@" + +#~ msgid "App window in the light mode" +#~ msgstr "Heledas kujunduses rakenduse aken" + +#~ msgid "App window in the dark mode" +#~ msgstr "Tumedas kujunduses rakenduse aken" + +#~ msgid "translator-credits" +#~ msgstr "Priit Jõerüüt 2024-2025" + +#, c-format +#~ msgid "_About %s" +#~ msgstr "R_akenduse teave: %s" + +#~ msgid "Try changing the search term." +#~ msgstr "Proovi muuta otsingusõna." diff --git a/po/extra/extra.pot b/po/extra/extra.pot new file mode 100644 index 0000000..3578a27 --- /dev/null +++ b/po/extra/extra.pot @@ -0,0 +1,60 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-07-12 16:41+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/atlas.desktop.in:2 data/atlas.metainfo.xml.in:10 +msgid "Atlas" +msgstr "" + +#: data/atlas.desktop.in:3 +msgid "Map" +msgstr "" + +#: data/atlas.desktop.in:4 data/atlas.metainfo.xml.in:11 +msgid "View where to go" +msgstr "" + +#: data/atlas.desktop.in:10 +msgid "Trip;Explore;" +msgstr "" + +#: data/atlas.metainfo.xml.in:13 +msgid "A map app that helps you to see where you want to go." +msgstr "" + +#: data/atlas.metainfo.xml.in:16 +msgid "Features include:" +msgstr "" + +#: data/atlas.metainfo.xml.in:18 +msgid "Search any place" +msgstr "" + +#: data/atlas.metainfo.xml.in:19 +msgid "Jump to your current location instantly" +msgstr "" + +#: data/atlas.metainfo.xml.in:21 +msgid "" +"This is a fork of \"Atlas Maps\" and wouldn't exist without work of Steffen " +"Schuhmann." +msgstr "" + +#: data/atlas.metainfo.xml.in:28 data/atlas.metainfo.xml.in:32 +msgid "See locations on a map" +msgstr "" diff --git a/po/extra/fi.po b/po/extra/fi.po new file mode 100644 index 0000000..6ac94b8 --- /dev/null +++ b/po/extra/fi.po @@ -0,0 +1,109 @@ +# Finnish translations for com.github.ryonakano.atlas. +# Copyright (C) 2014-2015 Atlas Developers +# Copyright (C) 2018-2025 Ryo Nakano +# This file is distributed under the same license as the com.github.ryonakano.atlas package. +# Jiri Grönroos , 2023. +# Fill read-only add-on , 2024. +msgid "" +msgstr "" +"Project-Id-Version: com.github.ryonakano.atlas\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-07-12 16:41+0900\n" +"PO-Revision-Date: 2024-05-03 10:45+0000\n" +"Last-Translator: Fill read-only add-on \n" +"Language-Team: Finnish \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.5.3\n" + +#: data/atlas.desktop.in:2 data/atlas.metainfo.xml.in:10 +msgid "Atlas" +msgstr "Atlas" + +#: data/atlas.desktop.in:3 +msgid "Map" +msgstr "" + +#: data/atlas.desktop.in:4 data/atlas.metainfo.xml.in:11 +msgid "View where to go" +msgstr "" + +#: data/atlas.desktop.in:10 +msgid "Trip;Explore;" +msgstr "" + +#: data/atlas.metainfo.xml.in:13 +msgid "A map app that helps you to see where you want to go." +msgstr "" + +#: data/atlas.metainfo.xml.in:16 +msgid "Features include:" +msgstr "" + +#: data/atlas.metainfo.xml.in:18 +msgid "Search any place" +msgstr "" + +#: data/atlas.metainfo.xml.in:19 +#, fuzzy +msgid "Jump to your current location instantly" +msgstr "Siirrä nykyiseen sijaintiin" + +#: data/atlas.metainfo.xml.in:21 +msgid "" +"This is a fork of \"Atlas Maps\" and wouldn't exist without work of Steffen " +"Schuhmann." +msgstr "" + +#: data/atlas.metainfo.xml.in:28 data/atlas.metainfo.xml.in:32 +msgid "See locations on a map" +msgstr "" + +#~ msgid "Unknown" +#~ msgstr "Tuntematon" + +#~ msgid "Move to the current location" +#~ msgstr "Siirrä nykyiseen sijaintiin" + +#~ msgid "Search Location" +#~ msgstr "Etsi sijaintia" + +#, fuzzy +#~ msgid "No Results Found" +#~ msgstr "Ei hakutuloksia" + +#, fuzzy +#~ msgid "System" +#~ msgstr "Järjestelmä" + +#, fuzzy +#~ msgid "Light" +#~ msgstr "Vaalea" + +#, fuzzy +#~ msgid "Dark" +#~ msgstr "Tumma" + +#, fuzzy +#~ msgid "Transport" +#~ msgstr "Liikkumiskartta" + +#, fuzzy +#~ msgid "Style" +#~ msgstr "Tyyli:" + +#, fuzzy +#~ msgid "Map Source" +#~ msgstr "Karttalähde:" + +#~ msgid "@APP_NAME@" +#~ msgstr "@APP_NAME@" + +#~ msgid "Try changing the search term." +#~ msgstr "Yritä eri hakuehdoilla." + +#~ msgid "Preferences" +#~ msgstr "Asetukset" diff --git a/po/extra/fr.po b/po/extra/fr.po new file mode 100644 index 0000000..152c9fa --- /dev/null +++ b/po/extra/fr.po @@ -0,0 +1,140 @@ +# French translations for com.github.ryonakano.atlas. +# Copyright (C) 2014-2015 Atlas Developers +# Copyright (C) 2018-2025 Ryo Nakano +# This file is distributed under the same license as the com.github.ryonakano.atlas package. +# Nathan Bonnemains (@NathanBnm), 2021. +# J. Lavoie , 2022. +# rene-coty , 2022, 2023. +# Fill read-only add-on , 2024. +# Lilian THOMAS , 2024. +# Stella and Charlie , 2025. +msgid "" +msgstr "" +"Project-Id-Version: com.github.ryonakano.atlas\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-07-12 16:41+0900\n" +"PO-Revision-Date: 2025-06-11 12:02+0000\n" +"Last-Translator: Stella and Charlie \n" +"Language-Team: French \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 5.12-dev\n" + +#: data/atlas.desktop.in:2 data/atlas.metainfo.xml.in:10 +msgid "Atlas" +msgstr "Atlas" + +#: data/atlas.desktop.in:3 +msgid "Map" +msgstr "Carte" + +#: data/atlas.desktop.in:4 data/atlas.metainfo.xml.in:11 +msgid "View where to go" +msgstr "Visualisez où vous souhaitez vous rendre" + +#: data/atlas.desktop.in:10 +msgid "Trip;Explore;" +msgstr "Voyage;Explorer;" + +#: data/atlas.metainfo.xml.in:13 +msgid "A map app that helps you to see where you want to go." +msgstr "" +"Une application de cartes pour vous aider à visualiser les lieux ou vous " +"souhaitez vous rendre." + +#: data/atlas.metainfo.xml.in:16 +msgid "Features include:" +msgstr "Fonctionnalités incluses :" + +#: data/atlas.metainfo.xml.in:18 +msgid "Search any place" +msgstr "Recherchez n'importe quel lieu" + +#: data/atlas.metainfo.xml.in:19 +msgid "Jump to your current location instantly" +msgstr "Affichez votre position actuelle en un instant" + +#: data/atlas.metainfo.xml.in:21 +msgid "" +"This is a fork of \"Atlas Maps\" and wouldn't exist without work of Steffen " +"Schuhmann." +msgstr "" +"Ceci est un fork de « Atlas Maps » qui n’existerait pas sans le travail de " +"Steffen Schuhmann." + +#: data/atlas.metainfo.xml.in:28 data/atlas.metainfo.xml.in:32 +msgid "See locations on a map" +msgstr "" + +#~ msgid "Unknown" +#~ msgstr "Inconnu" + +#~ msgid "Move to the current location" +#~ msgstr "Se déplacer à la position actuelle" + +#~ msgid "Search Location" +#~ msgstr "Rechercher un lieu" + +#~ msgid "No Results Found" +#~ msgstr "Aucun résultat trouvé" + +#~ msgid "Try a different search" +#~ msgstr "Essayez une recherche différente" + +#, fuzzy +#~ msgid "System" +#~ msgstr "S_ystème" + +#, fuzzy +#~ msgid "Light" +#~ msgstr "Clair" + +#, fuzzy +#~ msgid "Dark" +#~ msgstr "Sombre" + +#, fuzzy +#~ msgid "Transport" +#~ msgstr "_Transports" + +#, fuzzy +#~ msgid "Style" +#~ msgstr "_Style" + +#, fuzzy +#~ msgid "Map Source" +#~ msgstr "Source de la carte" + +#~ msgid "Main Menu" +#~ msgstr "Menu principal" + +#~ msgid "Failed to connect to location service" +#~ msgstr "Echec de la connexion au service de localisation" + +#~ msgid "Map_nik" +#~ msgstr "Map_nik" + +#~ msgid "@APP_NAME@" +#~ msgstr "@APP_NAME@" + +#~ msgid "App window in the light mode" +#~ msgstr "Vue des application en mode clair" + +#~ msgid "App window in the dark mode" +#~ msgstr "Vue des applications en mode sombre" + +#~ msgid "translator-credits" +#~ msgstr "Teamcons https://teamcons.carrd.co" + +#, c-format +#~ msgid "_About %s" +#~ msgstr "_A propos de %s" + +#~ msgid "Preferences" +#~ msgstr "Préférences" + +#~ msgid "Search where to go" +#~ msgstr "Cherchez où vous souhaitez vous rendre" diff --git a/po/extra/hi.po b/po/extra/hi.po new file mode 100644 index 0000000..e617166 --- /dev/null +++ b/po/extra/hi.po @@ -0,0 +1,124 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.ryonakano.atlas package. +# Scrambled777 , 2024. +# Fill read-only add-on , 2024. +msgid "" +msgstr "" +"Project-Id-Version: com.github.ryonakano.atlas\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-07-12 16:41+0900\n" +"PO-Revision-Date: 2024-05-16 13:01+0000\n" +"Last-Translator: Scrambled777 \n" +"Language-Team: Hindi \n" +"Language: hi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 5.6-dev\n" + +#: data/atlas.desktop.in:2 data/atlas.metainfo.xml.in:10 +msgid "Atlas" +msgstr "" + +#: data/atlas.desktop.in:3 +msgid "Map" +msgstr "मानचित्र" + +#: data/atlas.desktop.in:4 data/atlas.metainfo.xml.in:11 +msgid "View where to go" +msgstr "देखें कि कहां जाना है" + +#: data/atlas.desktop.in:10 +msgid "Trip;Explore;" +msgstr "यात्रा;अन्वेषण;" + +#: data/atlas.metainfo.xml.in:13 +msgid "A map app that helps you to see where you want to go." +msgstr "एक मानचित्र ऐप जो आपको यह देखने में मदद करता है कि आप कहां जाना चाहते हैं।" + +#: data/atlas.metainfo.xml.in:16 +msgid "Features include:" +msgstr "शामिल विशेषताएं:" + +#: data/atlas.metainfo.xml.in:18 +msgid "Search any place" +msgstr "कोई भी जगह खोजें" + +#: data/atlas.metainfo.xml.in:19 +msgid "Jump to your current location instantly" +msgstr "तुरंत अपने वर्तमान स्थान पर जाएं" + +#: data/atlas.metainfo.xml.in:21 +msgid "" +"This is a fork of \"Atlas Maps\" and wouldn't exist without work of Steffen " +"Schuhmann." +msgstr "" +"यह \"Atlas Maps\" का एक फोर्क है और जो स्टीफ़न शूहमैन के काम के बिना अस्तित्व में नहीं " +"होता।" + +#: data/atlas.metainfo.xml.in:28 data/atlas.metainfo.xml.in:32 +msgid "See locations on a map" +msgstr "" + +#~ msgid "Unknown" +#~ msgstr "अज्ञात" + +#~ msgid "Move to the current location" +#~ msgstr "वर्तमान स्थान पर जाएं" + +#~ msgid "Search Location" +#~ msgstr "स्थान खोजें" + +#, fuzzy +#~ msgid "No Results Found" +#~ msgstr "कोई खोज परिणाम नहीं" + +#, fuzzy +#~ msgid "System" +#~ msgstr "सिस्टम" + +#, fuzzy +#~ msgid "Light" +#~ msgstr "हल्की" + +#, fuzzy +#~ msgid "Dark" +#~ msgstr "गहरी" + +#~ msgid "Mapnik" +#~ msgstr "मैपनिक" + +#, fuzzy +#~ msgid "Transport" +#~ msgstr "परिवहन" + +#, fuzzy +#~ msgid "Style" +#~ msgstr "शैली" + +#, fuzzy +#~ msgid "Map Source" +#~ msgstr "मानचित्र स्रोत" + +#~ msgid "Main Menu" +#~ msgstr "मुख्य मेनू" + +#~ msgid "Failed to connect to location service" +#~ msgstr "स्थान सेवा से जुड़ने में विफल" + +#~ msgid "@APP_NAME@" +#~ msgstr "@APP_NAME@" + +#~ msgid "App window in the light mode" +#~ msgstr "ऐप खिड़की हल्के मोड में" + +#~ msgid "App window in the dark mode" +#~ msgstr "ऐप खिड़की गहरे मोड में" + +#~ msgid "Try changing the search term." +#~ msgstr "खोज शब्द बदलने का प्रयास करें।" + +#~ msgid "Preferences" +#~ msgstr "प्राथमिकताएं" diff --git a/po/extra/it.po b/po/extra/it.po new file mode 100644 index 0000000..2a6e259 --- /dev/null +++ b/po/extra/it.po @@ -0,0 +1,133 @@ +# Italian translations for com.github.ryonakano.atlas. +# Copyright (C) 2014-2015 Atlas Developers +# Copyright (C) 2018-2025 Ryo Nakano +# This file is distributed under the same license as the com.github.ryonakano.atlas package. +# albanobattistella , 2021, 2022, 2023, 2024, 2025. +# J. Lavoie , 2022. +# Fill read-only add-on , 2024. +msgid "" +msgstr "" +"Project-Id-Version: com.github.ryonakano.atlas\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-07-12 16:41+0900\n" +"PO-Revision-Date: 2025-03-31 04:19+0000\n" +"Last-Translator: albanobattistella \n" +"Language-Team: Italian \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.11-dev\n" + +#: data/atlas.desktop.in:2 data/atlas.metainfo.xml.in:10 +msgid "Atlas" +msgstr "Atlas" + +#: data/atlas.desktop.in:3 +msgid "Map" +msgstr "Mappa" + +#: data/atlas.desktop.in:4 data/atlas.metainfo.xml.in:11 +msgid "View where to go" +msgstr "Visualizza dove vuoi andare" + +#: data/atlas.desktop.in:10 +msgid "Trip;Explore;" +msgstr "Viaggio;Esplora;" + +#: data/atlas.metainfo.xml.in:13 +msgid "A map app that helps you to see where you want to go." +msgstr "Un'app per mappe che ti aiuta a vedere dove vuoi andare." + +#: data/atlas.metainfo.xml.in:16 +msgid "Features include:" +msgstr "Le caratteristiche includono:" + +#: data/atlas.metainfo.xml.in:18 +msgid "Search any place" +msgstr "Cerca qualsiasi luogo" + +#: data/atlas.metainfo.xml.in:19 +msgid "Jump to your current location instantly" +msgstr "Passa istantaneamente alla tua posizione attuale" + +#: data/atlas.metainfo.xml.in:21 +msgid "" +"This is a fork of \"Atlas Maps\" and wouldn't exist without work of Steffen " +"Schuhmann." +msgstr "" +"Questo è un fork di \"Atlas Maps\" e non esisterebbe senza il lavoro di " +"Steffen Schuhmann." + +#: data/atlas.metainfo.xml.in:28 data/atlas.metainfo.xml.in:32 +msgid "See locations on a map" +msgstr "" + +#~ msgid "Unknown" +#~ msgstr "Sconosciuto" + +#~ msgid "Move to the current location" +#~ msgstr "Passa alla posizione corrente" + +#~ msgid "Search Location" +#~ msgstr "Cerca posizione" + +#, fuzzy +#~ msgid "No Results Found" +#~ msgstr "Nessun risultato trovato" + +#, fuzzy +#~ msgid "System" +#~ msgstr "Sistema" + +#, fuzzy +#~ msgid "Light" +#~ msgstr "Chiaro" + +#, fuzzy +#~ msgid "Dark" +#~ msgstr "Scuro" + +#, fuzzy +#~ msgid "Transport" +#~ msgstr "Trasporto" + +#, fuzzy +#~ msgid "Style" +#~ msgstr "Stile" + +#, fuzzy +#~ msgid "Map Source" +#~ msgstr "Fonte mappa" + +#~ msgid "Main Menu" +#~ msgstr "Menu principale" + +#~ msgid "Failed to connect to location service" +#~ msgstr "Impossibile connettersi al servizio di localizzazione" + +#~ msgid "@APP_NAME@" +#~ msgstr "@APP_NAME@" + +#~ msgid "App window in the light mode" +#~ msgstr "Finestra dell'app in modalità chiara" + +#~ msgid "App window in the dark mode" +#~ msgstr "Finestra dell'app in modalità scura" + +#~ msgid "translator-credits" +#~ msgstr "Albano Battistella " + +#, c-format +#~ msgid "_About %s" +#~ msgstr "_Informazioni su %s" + +#~ msgid "Try changing the search term." +#~ msgstr "Prova a cambiare il termine di ricerca." + +#~ msgid "Preferences" +#~ msgstr "Preferenze" + +#~ msgid "Search where to go" +#~ msgstr "Cerca dove andare" diff --git a/po/extra/ja.po b/po/extra/ja.po new file mode 100644 index 0000000..0b19166 --- /dev/null +++ b/po/extra/ja.po @@ -0,0 +1,141 @@ +# Japanese translations for com.github.ryonakano.atlas. +# Copyright (C) 2014-2015 Atlas Developers +# Copyright (C) 2018-2025 Ryo Nakano +# This file is distributed under the same license as the com.github.ryonakano.atlas package. +# Ryo Nakano , 2021, 2022, 2023, 2024, 2025. +# Fill read-only add-on , 2024. +msgid "" +msgstr "" +"Project-Id-Version: com.github.ryonakano.atlas\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-07-12 16:41+0900\n" +"PO-Revision-Date: 2025-07-10 13:01+0000\n" +"Last-Translator: Ryo Nakano \n" +"Language-Team: Japanese \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 5.13-dev\n" + +#: data/atlas.desktop.in:2 data/atlas.metainfo.xml.in:10 +msgid "Atlas" +msgstr "Atlas" + +#: data/atlas.desktop.in:3 +msgid "Map" +msgstr "地図" + +#: data/atlas.desktop.in:4 data/atlas.metainfo.xml.in:11 +msgid "View where to go" +msgstr "行きたい場所を見ましょう" + +#: data/atlas.desktop.in:10 +msgid "Trip;Explore;" +msgstr "旅行;冒険;探索;" + +#: data/atlas.metainfo.xml.in:13 +msgid "A map app that helps you to see where you want to go." +msgstr "行き先を探すのに便利な地図アプリです。" + +#: data/atlas.metainfo.xml.in:16 +msgid "Features include:" +msgstr "含まれる機能:" + +#: data/atlas.metainfo.xml.in:18 +msgid "Search any place" +msgstr "場所を検索できます" + +#: data/atlas.metainfo.xml.in:19 +msgid "Jump to your current location instantly" +msgstr "現在地をすぐに表示できます" + +#: data/atlas.metainfo.xml.in:21 +msgid "" +"This is a fork of \"Atlas Maps\" and wouldn't exist without work of Steffen " +"Schuhmann." +msgstr "" +"このアプリは、\"Atlas Maps\" をフォークして開発されました。Steffen Schuhmann " +"に感謝申し上げます。" + +#: data/atlas.metainfo.xml.in:28 data/atlas.metainfo.xml.in:32 +msgid "See locations on a map" +msgstr "地図上で場所を確認します" + +#~ msgid "Unknown" +#~ msgstr "不明" + +#~ msgid "Move to the current location" +#~ msgstr "現在地に移動" + +#~ msgid "Search Location" +#~ msgstr "場所を検索" + +#~ msgid "No Results Found" +#~ msgstr "見つかりませんでした" + +#~ msgid "Try a different search" +#~ msgstr "他のキーワードを試してください" + +#, fuzzy +#~ msgid "System" +#~ msgstr "システム(_Y)" + +#, fuzzy +#~ msgid "Light" +#~ msgstr "ライト(_L)" + +#, fuzzy +#~ msgid "Dark" +#~ msgstr "ダーク(_D)" + +#~ msgid "Mapnik" +#~ msgstr "Mapnik" + +#, fuzzy +#~ msgid "Transport" +#~ msgstr "交通(_T)" + +#, fuzzy +#~ msgid "Style" +#~ msgstr "スタイル(_S)" + +#, fuzzy +#~ msgid "Map Source" +#~ msgstr "マップ提供元(_M)" + +#~ msgid "Main Menu" +#~ msgstr "メインメニュー" + +#~ msgid "Failed to connect to location service" +#~ msgstr "位置情報サービスに接続できませんでした" + +#~ msgid "Map_nik" +#~ msgstr "Mapnik(_N)" + +#~ msgid "@APP_NAME@" +#~ msgstr "@APP_NAME@" + +#~ msgid "App window in the light mode" +#~ msgstr "ライトモードのアプリウィンドウ" + +#~ msgid "App window in the dark mode" +#~ msgstr "ダークモードのアプリウィンドウ" + +#~ msgid "translator-credits" +#~ msgstr "Ryo Nakano" + +#, c-format +#~ msgid "_About %s" +#~ msgstr "%s について(_A)" + +#~ msgid "Try changing the search term." +#~ msgstr "検索用語を変えてみてください。" + +#~ msgid "Preferences" +#~ msgstr "設定" + +#~ msgid "Search where to go" +#~ msgstr "行きたい場所を検索しましょう" diff --git a/po/extra/lt.po b/po/extra/lt.po new file mode 100644 index 0000000..5839e9a --- /dev/null +++ b/po/extra/lt.po @@ -0,0 +1,105 @@ +# Lithuanian translation for com.github.ryonakano.atlas. +# Copyright (C) 2014-2015 Atlas Developers +# Copyright (C) 2018-2025 Ryo Nakano +# This file is distributed under the same license as the com.github.ryonakano.atlas package. +# PolPolyLingo , 2023 +# Fill read-only add-on , 2024. +msgid "" +msgstr "" +"Project-Id-Version: com.github.ryonakano.atlas\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-07-12 16:41+0900\n" +"PO-Revision-Date: 2024-05-03 10:45+0000\n" +"Last-Translator: Fill read-only add-on \n" +"Language-Team: Lithuanian \n" +"Language: lt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n % 10 == 1 && (n % 100 < 11 || n % 100 > " +"19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? " +"1 : 2);\n" +"X-Generator: Weblate 5.5.3\n" + +#: data/atlas.desktop.in:2 data/atlas.metainfo.xml.in:10 +msgid "Atlas" +msgstr "Atlas" + +#: data/atlas.desktop.in:3 +msgid "Map" +msgstr "Kelialapis" + +#: data/atlas.desktop.in:4 data/atlas.metainfo.xml.in:11 +msgid "View where to go" +msgstr "Nustatykime kelionės tikslą" + +#: data/atlas.desktop.in:10 +msgid "Trip;Explore;" +msgstr "Kelionė;Tyrinėti;" + +#: data/atlas.metainfo.xml.in:13 +msgid "A map app that helps you to see where you want to go." +msgstr "Kelialapio programėlė leidžianti matyti nustatytą kelionės tikslą." + +#: data/atlas.metainfo.xml.in:16 +msgid "Features include:" +msgstr "Išskirtinės savybės:" + +#: data/atlas.metainfo.xml.in:18 +msgid "Search any place" +msgstr "Atsitiktinė vietos paieška" + +#: data/atlas.metainfo.xml.in:19 +msgid "Jump to your current location instantly" +msgstr "Akimirksniu nustatyti mano buvimo vietą" + +#: data/atlas.metainfo.xml.in:21 +msgid "" +"This is a fork of \"Atlas Maps\" and wouldn't exist without work of Steffen " +"Schuhmann." +msgstr "" +"Tai yra atšaka originalaus \"Atlas Maps\", kuri neegzistuotų be Stefano " +"Schuhmano darbo." + +#: data/atlas.metainfo.xml.in:28 data/atlas.metainfo.xml.in:32 +msgid "See locations on a map" +msgstr "" + +#, fuzzy +#~ msgid "Move to the current location" +#~ msgstr "" +#~ "Nustatyti buvimo vietą (when enabled System Settings > Applications > " +#~ "Permissions)" + +#~ msgid "Search Location" +#~ msgstr "Vietos paieška" + +#, fuzzy +#~ msgid "System" +#~ msgstr "Sistema" + +#, fuzzy +#~ msgid "Light" +#~ msgstr "Šviesus" + +#, fuzzy +#~ msgid "Dark" +#~ msgstr "Tamsus" + +#, fuzzy +#~ msgid "Transport" +#~ msgstr "Kelialapis" + +#, fuzzy +#~ msgid "Style" +#~ msgstr "Stilius:" + +#~ msgid "@APP_NAME@" +#~ msgstr "@APP_NAME@" + +#~ msgid "Preferences" +#~ msgstr "Nustatymai" + +#~ msgid "Search where to go" +#~ msgstr "Kelionės paieška" diff --git a/po/extra/nb_NO.po b/po/extra/nb_NO.po new file mode 100644 index 0000000..099381c --- /dev/null +++ b/po/extra/nb_NO.po @@ -0,0 +1,114 @@ +# Norwegian Bokmål translations for com.github.ryonakano.atlas. +# Copyright (C) 2014-2015 Atlas Developers +# Copyright (C) 2018-2025 Ryo Nakano +# This file is distributed under the same license as the com.github.ryonakano.atlas package. +# Allan Nordhøy , 2024. +# Fill read-only add-on , 2024. +msgid "" +msgstr "" +"Project-Id-Version: com.github.ryonakano.atlas\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-07-12 16:41+0900\n" +"PO-Revision-Date: 2024-05-03 10:45+0000\n" +"Last-Translator: Fill read-only add-on \n" +"Language-Team: Norwegian Bokmål \n" +"Language: nb_NO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.5.3\n" + +#: data/atlas.desktop.in:2 data/atlas.metainfo.xml.in:10 +msgid "Atlas" +msgstr "Atlas" + +#: data/atlas.desktop.in:3 +msgid "Map" +msgstr "Kart" + +#: data/atlas.desktop.in:4 data/atlas.metainfo.xml.in:11 +msgid "View where to go" +msgstr "Vis hvor du skal" + +#: data/atlas.desktop.in:10 +msgid "Trip;Explore;" +msgstr "Tur;Utforsker;kart;planlegging;" + +#: data/atlas.metainfo.xml.in:13 +msgid "A map app that helps you to see where you want to go." +msgstr "Et kartprogram som hjelper deg å visualisere hvor du skal." + +#: data/atlas.metainfo.xml.in:16 +msgid "Features include:" +msgstr "Funksjoner:" + +#: data/atlas.metainfo.xml.in:18 +msgid "Search any place" +msgstr "Søk etter steder" + +#: data/atlas.metainfo.xml.in:19 +msgid "Jump to your current location instantly" +msgstr "Hopp til nåværende sted umiddelbart" + +#: data/atlas.metainfo.xml.in:21 +msgid "" +"This is a fork of \"Atlas Maps\" and wouldn't exist without work of Steffen " +"Schuhmann." +msgstr "" +"Dette er en forgrening av «Atlas Maps» og ville ikke eksistert uten Steffen " +"Schuhmann." + +#: data/atlas.metainfo.xml.in:28 data/atlas.metainfo.xml.in:32 +msgid "See locations on a map" +msgstr "" + +#~ msgid "Unknown" +#~ msgstr "Ukjent" + +#~ msgid "Move to the current location" +#~ msgstr "Flytt til nåværende mål" + +#~ msgid "Search Location" +#~ msgstr "Søk etter sted" + +#, fuzzy +#~ msgid "No Results Found" +#~ msgstr "Resultatløst" + +#, fuzzy +#~ msgid "System" +#~ msgstr "System" + +#, fuzzy +#~ msgid "Light" +#~ msgstr "Lys" + +#, fuzzy +#~ msgid "Dark" +#~ msgstr "Mørk" + +#, fuzzy +#~ msgid "Transport" +#~ msgstr "Transportkart" + +#, fuzzy +#~ msgid "Style" +#~ msgstr "Drakt" + +#, fuzzy +#~ msgid "Map Source" +#~ msgstr "Kartkilde:" + +#~ msgid "@APP_NAME@" +#~ msgstr "@APP_NAME@" + +#~ msgid "Try changing the search term." +#~ msgstr "Prøv å endre søket." + +#~ msgid "Preferences" +#~ msgstr "Innstillinger" + +#~ msgid "Search where to go" +#~ msgstr "Søk deg dit du skal" diff --git a/po/extra/nl.po b/po/extra/nl.po new file mode 100644 index 0000000..985a585 --- /dev/null +++ b/po/extra/nl.po @@ -0,0 +1,114 @@ +# Dutch translations for com.github.ryonakano.atlas. +# Copyright (C) 2014-2015 Atlas Developers +# Copyright (C) 2018-2025 Ryo Nakano +# This file is distributed under the same license as the com.github.ryonakano.atlas package. +# Heimen Stoffels , 2022, 2023. +# Philip Goto , 2023. +# Fill read-only add-on , 2024. +msgid "" +msgstr "" +"Project-Id-Version: com.github.ryonakano.atlas\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-07-12 16:41+0900\n" +"PO-Revision-Date: 2024-05-03 10:45+0000\n" +"Last-Translator: Fill read-only add-on \n" +"Language-Team: Dutch \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.5.3\n" + +#: data/atlas.desktop.in:2 data/atlas.metainfo.xml.in:10 +msgid "Atlas" +msgstr "Atlas" + +#: data/atlas.desktop.in:3 +msgid "Map" +msgstr "Kaart" + +#: data/atlas.desktop.in:4 data/atlas.metainfo.xml.in:11 +msgid "View where to go" +msgstr "Bekijk waar je heen moet" + +#: data/atlas.desktop.in:10 +msgid "Trip;Explore;" +msgstr "Reis;Verkennen;Kaart;" + +#: data/atlas.metainfo.xml.in:13 +msgid "A map app that helps you to see where you want to go." +msgstr "Een kaarttoepassing die je naar je bestemming begeleidt." + +#: data/atlas.metainfo.xml.in:16 +msgid "Features include:" +msgstr "Kenmerken:" + +#: data/atlas.metainfo.xml.in:18 +msgid "Search any place" +msgstr "Zoek naar elke willekeurige locatie" + +#: data/atlas.metainfo.xml.in:19 +msgid "Jump to your current location instantly" +msgstr "Ga direct naar je huidige locatie" + +#: data/atlas.metainfo.xml.in:21 +msgid "" +"This is a fork of \"Atlas Maps\" and wouldn't exist without work of Steffen " +"Schuhmann." +msgstr "" +"Dit project is een afsplitsing van Atlas Maps en zou niet bestaan hebben " +"zonder het werk van Steffen Schuhmann." + +#: data/atlas.metainfo.xml.in:28 data/atlas.metainfo.xml.in:32 +msgid "See locations on a map" +msgstr "" + +#~ msgid "Unknown" +#~ msgstr "Onbekend" + +#~ msgid "Move to the current location" +#~ msgstr "Verplaatsen naar huidige locatie" + +#~ msgid "Search Location" +#~ msgstr "Locatie zoeken" + +#, fuzzy +#~ msgid "No Results Found" +#~ msgstr "Er zijn geen zoekresultaten" + +#, fuzzy +#~ msgid "System" +#~ msgstr "Systeem" + +#, fuzzy +#~ msgid "Light" +#~ msgstr "Licht" + +#, fuzzy +#~ msgid "Dark" +#~ msgstr "Donker" + +#, fuzzy +#~ msgid "Transport" +#~ msgstr "OV-kaart" + +#, fuzzy +#~ msgid "Style" +#~ msgstr "Thema:" + +#, fuzzy +#~ msgid "Map Source" +#~ msgstr "Kaartbron:" + +#~ msgid "@APP_NAME@" +#~ msgstr "@APP_NAME@" + +#~ msgid "Try changing the search term." +#~ msgstr "Probeer een andere zoekopdracht." + +#~ msgid "Preferences" +#~ msgstr "Voorkeuren" + +#~ msgid "Search where to go" +#~ msgstr "Zoek je bestemming" diff --git a/po/extra/pl.po b/po/extra/pl.po new file mode 100644 index 0000000..8d0a53a --- /dev/null +++ b/po/extra/pl.po @@ -0,0 +1,114 @@ +# Polish translation for com.github.ryonakano.atlas. +# Copyright (C) 2014-2015 Atlas Developers +# Copyright (C) 2018-2025 Ryo Nakano +# This file is distributed under the same license as the com.github.ryonakano.atlas package. +# PolPolyLingo , 2023 +# Eryk Michalak , 2023. +# Fill read-only add-on , 2024. +msgid "" +msgstr "" +"Project-Id-Version: com.github.ryonakano.atlas\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-07-12 16:41+0900\n" +"PO-Revision-Date: 2024-05-03 10:45+0000\n" +"Last-Translator: Fill read-only add-on \n" +"Language-Team: Polish \n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" +"X-Generator: Weblate 5.5.3\n" + +#: data/atlas.desktop.in:2 data/atlas.metainfo.xml.in:10 +msgid "Atlas" +msgstr "Atlas" + +#: data/atlas.desktop.in:3 +msgid "Map" +msgstr "Mapa" + +#: data/atlas.desktop.in:4 data/atlas.metainfo.xml.in:11 +msgid "View where to go" +msgstr "Wyświetl, dokąd iść" + +#: data/atlas.desktop.in:10 +msgid "Trip;Explore;" +msgstr "Wycieczka; Odkryj;" + +#: data/atlas.metainfo.xml.in:13 +msgid "A map app that helps you to see where you want to go." +msgstr "Aplikacja map, która pomaga zobaczyć, dokąd chcesz iść." + +#: data/atlas.metainfo.xml.in:16 +msgid "Features include:" +msgstr "Funkcje obejmują:" + +#: data/atlas.metainfo.xml.in:18 +msgid "Search any place" +msgstr "Szukaj w dowolnym miejscu" + +#: data/atlas.metainfo.xml.in:19 +msgid "Jump to your current location instantly" +msgstr "Natychmiastowe przejście do bieżącej lokalizacji" + +#: data/atlas.metainfo.xml.in:21 +msgid "" +"This is a fork of \"Atlas Maps\" and wouldn't exist without work of Steffen " +"Schuhmann." +msgstr "" +"To widelec \"Atlas Maps\" i nie istniałby bez pracy Steffena Schuhmanna." + +#: data/atlas.metainfo.xml.in:28 data/atlas.metainfo.xml.in:32 +msgid "See locations on a map" +msgstr "" + +#~ msgid "Unknown" +#~ msgstr "Nieznane" + +#~ msgid "Move to the current location" +#~ msgstr "Przenieś do bieżącej lokalizacji" + +#~ msgid "Search Location" +#~ msgstr "Lokalizacja wyszukiwania" + +#, fuzzy +#~ msgid "No Results Found" +#~ msgstr "Brak wyników wyszukiwania" + +#, fuzzy +#~ msgid "System" +#~ msgstr "System" + +#, fuzzy +#~ msgid "Light" +#~ msgstr "Jasny" + +#, fuzzy +#~ msgid "Dark" +#~ msgstr "Ciemny" + +#, fuzzy +#~ msgid "Transport" +#~ msgstr "Mapa transportu" + +#, fuzzy +#~ msgid "Style" +#~ msgstr "Styl:" + +#, fuzzy +#~ msgid "Map Source" +#~ msgstr "Źródło mapy:" + +#~ msgid "@APP_NAME@" +#~ msgstr "@APP_NAME@" + +#~ msgid "Try changing the search term." +#~ msgstr "Spróbuj zmienić zapytanie wyszukiwania." + +#~ msgid "Preferences" +#~ msgstr "Preferencje" + +#~ msgid "Search where to go" +#~ msgstr "Szukaj gdzie iść" diff --git a/po/extra/pt.po b/po/extra/pt.po new file mode 100644 index 0000000..a07056c --- /dev/null +++ b/po/extra/pt.po @@ -0,0 +1,115 @@ +# Portuguese translations for com.github.ryonakano.atlas. +# Copyright (C) 2014-2015 Atlas Developers +# Copyright (C) 2018-2025 Ryo Nakano +# This file is distributed under the same license as the com.github.ryonakano.atlas package. +# Hugo Carvalho , 2022. +# Felipe Nogueira , 2023. +# Fill read-only add-on , 2024. +msgid "" +msgstr "" +"Project-Id-Version: com.github.ryonakano.atlas\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-07-12 16:41+0900\n" +"PO-Revision-Date: 2024-05-03 10:45+0000\n" +"Last-Translator: Fill read-only add-on \n" +"Language-Team: Portuguese \n" +"Language: pt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 5.5.3\n" + +#: data/atlas.desktop.in:2 data/atlas.metainfo.xml.in:10 +msgid "Atlas" +msgstr "Atlas" + +#: data/atlas.desktop.in:3 +msgid "Map" +msgstr "Mapa" + +#: data/atlas.desktop.in:4 data/atlas.metainfo.xml.in:11 +msgid "View where to go" +msgstr "Veja para onde ir" + +#: data/atlas.desktop.in:10 +msgid "Trip;Explore;" +msgstr "Trip;Explore;Viagem;Explorar;" + +#: data/atlas.metainfo.xml.in:13 +msgid "A map app that helps you to see where you want to go." +msgstr "Uma aplicação de mapa que o ajuda a ver para onde quer ir." + +#: data/atlas.metainfo.xml.in:16 +msgid "Features include:" +msgstr "Funcionalidades incluídas:" + +#: data/atlas.metainfo.xml.in:18 +msgid "Search any place" +msgstr "Procurar qualquer lugar" + +#: data/atlas.metainfo.xml.in:19 +msgid "Jump to your current location instantly" +msgstr "Vá instantaneamente para a sua localização atual" + +#: data/atlas.metainfo.xml.in:21 +msgid "" +"This is a fork of \"Atlas Maps\" and wouldn't exist without work of Steffen " +"Schuhmann." +msgstr "" +"Isto é uma bifurcação do \"Atlas Maps\" e não existiria sem o trabalho de " +"Steffen Schuhmann." + +#: data/atlas.metainfo.xml.in:28 data/atlas.metainfo.xml.in:32 +msgid "See locations on a map" +msgstr "" + +#~ msgid "Unknown" +#~ msgstr "Desconhecido" + +#~ msgid "Move to the current location" +#~ msgstr "Mover para a localização atual" + +#~ msgid "Search Location" +#~ msgstr "Procurar localização" + +#, fuzzy +#~ msgid "No Results Found" +#~ msgstr "Sem resultados de busca" + +#, fuzzy +#~ msgid "System" +#~ msgstr "Sistema" + +#, fuzzy +#~ msgid "Light" +#~ msgstr "Claro" + +#, fuzzy +#~ msgid "Dark" +#~ msgstr "Escuro" + +#, fuzzy +#~ msgid "Transport" +#~ msgstr "Mapa de transporte" + +#, fuzzy +#~ msgid "Style" +#~ msgstr "Estilo:" + +#, fuzzy +#~ msgid "Map Source" +#~ msgstr "Fonte do mapa:" + +#~ msgid "@APP_NAME@" +#~ msgstr "@APP_NAME@" + +#~ msgid "Try changing the search term." +#~ msgstr "Tente alterar o termo de pesquisa." + +#~ msgid "Preferences" +#~ msgstr "Preferências" + +#~ msgid "Search where to go" +#~ msgstr "Procurar para onde ir" diff --git a/po/extra/pt_BR.po b/po/extra/pt_BR.po new file mode 100644 index 0000000..5ec7dd1 --- /dev/null +++ b/po/extra/pt_BR.po @@ -0,0 +1,65 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.ryonakano.atlas package. +# John Peter Sa , 2025. +# Fill read-only add-on , 2025. +msgid "" +msgstr "" +"Project-Id-Version: com.github.ryonakano.atlas\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-07-12 16:41+0900\n" +"PO-Revision-Date: 2025-02-17 04:37+0000\n" +"Last-Translator: Fill read-only add-on \n" +"Language-Team: Portuguese (Brazil) \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 5.10\n" + +#: data/atlas.desktop.in:2 data/atlas.metainfo.xml.in:10 +msgid "Atlas" +msgstr "" + +#: data/atlas.desktop.in:3 +msgid "Map" +msgstr "" + +#: data/atlas.desktop.in:4 data/atlas.metainfo.xml.in:11 +msgid "View where to go" +msgstr "" + +#: data/atlas.desktop.in:10 +msgid "Trip;Explore;" +msgstr "" + +#: data/atlas.metainfo.xml.in:13 +msgid "A map app that helps you to see where you want to go." +msgstr "" + +#: data/atlas.metainfo.xml.in:16 +msgid "Features include:" +msgstr "" + +#: data/atlas.metainfo.xml.in:18 +msgid "Search any place" +msgstr "" + +#: data/atlas.metainfo.xml.in:19 +msgid "Jump to your current location instantly" +msgstr "" + +#: data/atlas.metainfo.xml.in:21 +msgid "" +"This is a fork of \"Atlas Maps\" and wouldn't exist without work of Steffen " +"Schuhmann." +msgstr "" + +#: data/atlas.metainfo.xml.in:28 data/atlas.metainfo.xml.in:32 +msgid "See locations on a map" +msgstr "" + +#~ msgid "@APP_NAME@" +#~ msgstr "@APP_NAME@" diff --git a/po/extra/ru.po b/po/extra/ru.po new file mode 100644 index 0000000..dc1441a --- /dev/null +++ b/po/extra/ru.po @@ -0,0 +1,123 @@ +# Russian translations for com.github.ryonakano.atlas. +# Copyright (C) 2014-2015 Atlas Developers +# Copyright (C) 2018-2025 Ryo Nakano +# This file is distributed under the same license as the com.github.ryonakano.atlas package. +# lenemter , 2022, 2023, 2024. +# Fill read-only add-on , 2024. +msgid "" +msgstr "" +"Project-Id-Version: com.github.ryonakano.atlas\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-07-12 16:41+0900\n" +"PO-Revision-Date: 2024-05-08 14:05+0000\n" +"Last-Translator: lenemter \n" +"Language-Team: Russian \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: Weblate 5.5.4-rc\n" + +#: data/atlas.desktop.in:2 data/atlas.metainfo.xml.in:10 +msgid "Atlas" +msgstr "Atlas" + +#: data/atlas.desktop.in:3 +msgid "Map" +msgstr "Карта" + +#: data/atlas.desktop.in:4 data/atlas.metainfo.xml.in:11 +msgid "View where to go" +msgstr "Смотрите куда идти" + +#: data/atlas.desktop.in:10 +msgid "Trip;Explore;" +msgstr "Путешествие;Исследовать;" + +#: data/atlas.metainfo.xml.in:13 +msgid "A map app that helps you to see where you want to go." +msgstr "Карта, которая помогает вам смотреть куда вы хотите пойти." + +#: data/atlas.metainfo.xml.in:16 +msgid "Features include:" +msgstr "Функции:" + +#: data/atlas.metainfo.xml.in:18 +msgid "Search any place" +msgstr "Ищите любое место" + +#: data/atlas.metainfo.xml.in:19 +msgid "Jump to your current location instantly" +msgstr "Мгновенно переместитесь к вашему текущему местоположению" + +#: data/atlas.metainfo.xml.in:21 +msgid "" +"This is a fork of \"Atlas Maps\" and wouldn't exist without work of Steffen " +"Schuhmann." +msgstr "" +"Это форк приложения «Atlas Maps», и оно не могло бы существовать без работы " +"Steffen Schuhmann." + +#: data/atlas.metainfo.xml.in:28 data/atlas.metainfo.xml.in:32 +msgid "See locations on a map" +msgstr "" + +#~ msgid "Unknown" +#~ msgstr "Неизвестно" + +#~ msgid "Move to the current location" +#~ msgstr "Переместиться к текущему местоположению" + +#~ msgid "Search Location" +#~ msgstr "Искать место" + +#, fuzzy +#~ msgid "No Results Found" +#~ msgstr "Ничего не найдено" + +#, fuzzy +#~ msgid "System" +#~ msgstr "Система" + +#, fuzzy +#~ msgid "Light" +#~ msgstr "Светлый" + +#, fuzzy +#~ msgid "Dark" +#~ msgstr "Тёмный" + +#, fuzzy +#~ msgid "Transport" +#~ msgstr "Карта транспорта" + +#, fuzzy +#~ msgid "Style" +#~ msgstr "Стиль:" + +#, fuzzy +#~ msgid "Map Source" +#~ msgstr "Источник карты:" + +#~ msgid "Failed to connect to location service" +#~ msgstr "Не удалось подключиться к службе местоположения" + +#~ msgid "@APP_NAME@" +#~ msgstr "@APP_NAME@" + +#~ msgid "App window in the light mode" +#~ msgstr "Окно приложения в светлом режиме" + +#~ msgid "App window in the dark mode" +#~ msgstr "Окно приложения в тёмном режиме" + +#~ msgid "Try changing the search term." +#~ msgstr "Попробуйте изменить поисковой запрос." + +#~ msgid "Preferences" +#~ msgstr "Параметры" + +#~ msgid "Search where to go" +#~ msgstr "Ищите куда пойти" diff --git a/po/extra/sk.po b/po/extra/sk.po new file mode 100644 index 0000000..ae767b2 --- /dev/null +++ b/po/extra/sk.po @@ -0,0 +1,117 @@ +# Slovak translations for com.github.ryonakano.atlas. +# Copyright (C) 2014-2015 Atlas Developers +# Copyright (C) 2018-2025 Ryo Nakano +# This file is distributed under the same license as the com.github.ryonakano.atlas package. +# Ryo Nakano , 2022. +# JohnDumpling , 2022, 2023. +# Milan Šalka , 2023. +# Fill read-only add-on , 2024. +msgid "" +msgstr "" +"Project-Id-Version: com.github.ryonakano.atlas\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-07-12 16:41+0900\n" +"PO-Revision-Date: 2024-05-03 10:45+0000\n" +"Last-Translator: Fill read-only add-on \n" +"Language-Team: Slovak \n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=((n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2);\n" +"X-Generator: Weblate 5.5.3\n" + +#: data/atlas.desktop.in:2 data/atlas.metainfo.xml.in:10 +msgid "Atlas" +msgstr "Atlas" + +#: data/atlas.desktop.in:3 +msgid "Map" +msgstr "Mapa" + +#: data/atlas.desktop.in:4 data/atlas.metainfo.xml.in:11 +msgid "View where to go" +msgstr "Zobrazte si, kam chcete ísť" + +#: data/atlas.desktop.in:10 +msgid "Trip;Explore;" +msgstr "Výlet;Objaviť;Preskúmať;" + +#: data/atlas.metainfo.xml.in:13 +msgid "A map app that helps you to see where you want to go." +msgstr "" +"Mapová aplikácia, ktorá vám pomôže zobraziť si miesto, na ktoré sa chystáte " +"ísť." + +#: data/atlas.metainfo.xml.in:16 +msgid "Features include:" +msgstr "Funkcie zahŕňajú:" + +#: data/atlas.metainfo.xml.in:18 +msgid "Search any place" +msgstr "Vyhľadajte akékoľvek miesto" + +#: data/atlas.metainfo.xml.in:19 +msgid "Jump to your current location instantly" +msgstr "Presuňte sa na vašu aktuálnu polohu okamžite jedným klikom" + +#: data/atlas.metainfo.xml.in:21 +msgid "" +"This is a fork of \"Atlas Maps\" and wouldn't exist without work of Steffen " +"Schuhmann." +msgstr "" +"Toto je vetva (fork) aplikácie „Atlas Maps“ a neexistovala by bez práce " +"Steffena Schuhmanna." + +#: data/atlas.metainfo.xml.in:28 data/atlas.metainfo.xml.in:32 +msgid "See locations on a map" +msgstr "" + +#~ msgid "Unknown" +#~ msgstr "Neznáme" + +#~ msgid "Move to the current location" +#~ msgstr "Presunúť sa na aktuálnu polohu" + +#~ msgid "Search Location" +#~ msgstr "Vyhľadať miesto" + +#, fuzzy +#~ msgid "No Results Found" +#~ msgstr "Žiadne výsledky vyhľadávania" + +#, fuzzy +#~ msgid "System" +#~ msgstr "Systém" + +#, fuzzy +#~ msgid "Light" +#~ msgstr "Svetlý" + +#, fuzzy +#~ msgid "Dark" +#~ msgstr "Tmavý" + +#, fuzzy +#~ msgid "Transport" +#~ msgstr "Dopravná mapa" + +#, fuzzy +#~ msgid "Style" +#~ msgstr "Štýl:" + +#, fuzzy +#~ msgid "Map Source" +#~ msgstr "Zdroj mapy:" + +#~ msgid "@APP_NAME@" +#~ msgstr "@APP_NAME@" + +#~ msgid "Try changing the search term." +#~ msgstr "Skúste zmeniť hľadaný výraz." + +#~ msgid "Preferences" +#~ msgstr "Predvoľby" + +#~ msgid "Search where to go" +#~ msgstr "Vyhľadajte miesto, kam chcete ísť" diff --git a/po/extra/ta.po b/po/extra/ta.po new file mode 100644 index 0000000..232bff8 --- /dev/null +++ b/po/extra/ta.po @@ -0,0 +1,129 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the com.github.ryonakano.atlas package. +# தமிழ்நேரம் , 2025. +# Fill read-only add-on , 2025. +msgid "" +msgstr "" +"Project-Id-Version: com.github.ryonakano.atlas\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-07-12 16:41+0900\n" +"PO-Revision-Date: 2025-07-04 15:03+0000\n" +"Last-Translator: தமிழ்நேரம் \n" +"Language-Team: Tamil \n" +"Language: ta\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.13-dev\n" + +#: data/atlas.desktop.in:2 data/atlas.metainfo.xml.in:10 +msgid "Atlas" +msgstr "" + +#: data/atlas.desktop.in:3 +msgid "Map" +msgstr "வரைபடம்" + +#: data/atlas.desktop.in:4 data/atlas.metainfo.xml.in:11 +msgid "View where to go" +msgstr "எங்கு செல்ல வேண்டும் என்று பார்க்கவும்" + +#: data/atlas.desktop.in:10 +msgid "Trip;Explore;" +msgstr "பயணம்; ஆராயுங்கள்;" + +#: data/atlas.metainfo.xml.in:13 +msgid "A map app that helps you to see where you want to go." +msgstr "நீங்கள் எங்கு செல்ல விரும்புகிறீர்கள் என்பதைப் பார்க்க உதவும் வரைபட பயன்பாடு." + +#: data/atlas.metainfo.xml.in:16 +msgid "Features include:" +msgstr "நற்பொருத்தங்கள் பின்வருமாறு:" + +#: data/atlas.metainfo.xml.in:18 +msgid "Search any place" +msgstr "எந்த இடத்தையும் தேடுங்கள்" + +#: data/atlas.metainfo.xml.in:19 +msgid "Jump to your current location instantly" +msgstr "உங்கள் தற்போதைய இருப்பிடத்திற்கு உடனடியாக செல்லவும்" + +#: data/atlas.metainfo.xml.in:21 +msgid "" +"This is a fork of \"Atlas Maps\" and wouldn't exist without work of Steffen " +"Schuhmann." +msgstr "" +"இது \"அட்லச் மேப்ச்\" இன் முட்கரண்டி மற்றும் ச்டெஃபென் சுஅ்மானின் வேலை இல்லாமல் இருக்காது." + +#: data/atlas.metainfo.xml.in:28 data/atlas.metainfo.xml.in:32 +msgid "See locations on a map" +msgstr "" + +#~ msgid "Unknown" +#~ msgstr "தெரியவில்லை" + +#~ msgid "Move to the current location" +#~ msgstr "தற்போதைய இடத்திற்கு செல்லுங்கள்" + +#~ msgid "Search Location" +#~ msgstr "இடம் தேடல்" + +#~ msgid "No Results Found" +#~ msgstr "முடிவுகள் எதுவும் கிடைக்கவில்லை" + +#~ msgid "Try a different search" +#~ msgstr "வேறு தேடலை முயற்சிக்கவும்" + +#, fuzzy +#~ msgid "System" +#~ msgstr "முறைமை" + +#, fuzzy +#~ msgid "Light" +#~ msgstr "விளக்கு" + +#, fuzzy +#~ msgid "Dark" +#~ msgstr "இருண்ட" + +#~ msgid "Mapnik" +#~ msgstr "மேப்னிக்" + +#, fuzzy +#~ msgid "Transport" +#~ msgstr "போக்குவரத்து" + +#, fuzzy +#~ msgid "Style" +#~ msgstr "பாணி" + +#, fuzzy +#~ msgid "Map Source" +#~ msgstr "வரைபட மூலம்" + +#~ msgid "Main Menu" +#~ msgstr "பட்டியல் விளையாடுங்கள்" + +#~ msgid "Failed to connect to location service" +#~ msgstr "இருப்பிட சேவையுடன் இணைக்கத் தவறிவிட்டது" + +#~ msgid "Map_nik" +#~ msgstr "வரைபடம்" + +#~ msgid "@APP_NAME@" +#~ msgstr "@APP_NAME@" + +#~ msgid "App window in the light mode" +#~ msgstr "ஒளி பயன்முறையில் பயன்பாட்டு சாளரம்" + +#~ msgid "App window in the dark mode" +#~ msgstr "இருண்ட பயன்முறையில் பயன்பாட்டு சாளரம்" + +#~ msgid "translator-credits" +#~ msgstr "தமிழ்நேரம் (TamilNeram.github.io)" + +#, c-format +#~ msgid "_About %s" +#~ msgstr "%s பற்றி" diff --git a/po/extra/tr.po b/po/extra/tr.po new file mode 100644 index 0000000..e4a5d15 --- /dev/null +++ b/po/extra/tr.po @@ -0,0 +1,131 @@ +# Turkish translations for com.github.ryonakano.atlas. +# Copyright (C) 2014-2015 Atlas Developers +# Copyright (C) 2018-2025 Ryo Nakano +# This file is distributed under the same license as the com.github.ryonakano.atlas package. +# Oğuz Ersen , 2022, 2023. +# Sabri Ünal , 2023. +# Sabri Ünal , 2024. +# Fill read-only add-on , 2024. +msgid "" +msgstr "" +"Project-Id-Version: com.github.ryonakano.atlas\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-07-12 16:41+0900\n" +"PO-Revision-Date: 2024-06-17 12:09+0000\n" +"Last-Translator: Sabri Ünal \n" +"Language-Team: Turkish \n" +"Language: tr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.6-dev\n" + +#: data/atlas.desktop.in:2 data/atlas.metainfo.xml.in:10 +msgid "Atlas" +msgstr "Atlas" + +#: data/atlas.desktop.in:3 +msgid "Map" +msgstr "Harita" + +#: data/atlas.desktop.in:4 data/atlas.metainfo.xml.in:11 +msgid "View where to go" +msgstr "Nereye gideceğinizi görün" + +#: data/atlas.desktop.in:10 +msgid "Trip;Explore;" +msgstr "Trip;Explore;Gezi;Seyahat;Yolculuk;Keşfet;" + +#: data/atlas.metainfo.xml.in:13 +msgid "A map app that helps you to see where you want to go." +msgstr "" +"Nereye gitmek istediğinizi görmenize yardımcı olan bir harita uygulaması." + +#: data/atlas.metainfo.xml.in:16 +msgid "Features include:" +msgstr "Özellikler:" + +#: data/atlas.metainfo.xml.in:18 +msgid "Search any place" +msgstr "Herhangi bir yeri arayın" + +#: data/atlas.metainfo.xml.in:19 +msgid "Jump to your current location instantly" +msgstr "Geçerli konumunuza anında atlayın" + +#: data/atlas.metainfo.xml.in:21 +msgid "" +"This is a fork of \"Atlas Maps\" and wouldn't exist without work of Steffen " +"Schuhmann." +msgstr "" +"Bu, \"Atlas Maps\" uygulamasının bir çatalıdır ve Steffen Schuhmann'ın " +"çalışmaları olmadan var olamazdı." + +#: data/atlas.metainfo.xml.in:28 data/atlas.metainfo.xml.in:32 +msgid "See locations on a map" +msgstr "" + +#~ msgid "Unknown" +#~ msgstr "Bilinmiyor" + +#~ msgid "Move to the current location" +#~ msgstr "Geçerli konuma git" + +#~ msgid "Search Location" +#~ msgstr "Konum Ara" + +#, fuzzy +#~ msgid "No Results Found" +#~ msgstr "Arama Sonucu Yok" + +#, fuzzy +#~ msgid "System" +#~ msgstr "Sistem" + +#, fuzzy +#~ msgid "Light" +#~ msgstr "Açık" + +#, fuzzy +#~ msgid "Dark" +#~ msgstr "Koyu" + +#~ msgid "Mapnik" +#~ msgstr "Mapnik" + +#, fuzzy +#~ msgid "Transport" +#~ msgstr "Ulaşım" + +#, fuzzy +#~ msgid "Style" +#~ msgstr "Biçem" + +#, fuzzy +#~ msgid "Map Source" +#~ msgstr "Harita Kaynağı" + +#~ msgid "Main Menu" +#~ msgstr "Ana Menü" + +#~ msgid "Failed to connect to location service" +#~ msgstr "Konum hizmetine bağlanamadı" + +#~ msgid "@APP_NAME@" +#~ msgstr "@APP_NAME@" + +#~ msgid "App window in the light mode" +#~ msgstr "Uygulama penceresi açık kipte" + +#~ msgid "App window in the dark mode" +#~ msgstr "Uygulama penceresi koyu kipte" + +#~ msgid "Try changing the search term." +#~ msgstr "Arama terimini değiştirmeyi deneyin." + +#~ msgid "Preferences" +#~ msgstr "Tercihler" + +#~ msgid "Search where to go" +#~ msgstr "Nereye gideceğinizi arayın" diff --git a/po/extra/uk.po b/po/extra/uk.po new file mode 100644 index 0000000..9ac1d32 --- /dev/null +++ b/po/extra/uk.po @@ -0,0 +1,145 @@ +# Ukrainian translations for com.github.ryonakano.atlas. +# Copyright (C) 2014-2015 Atlas Developers +# Copyright (C) 2018-2025 Ryo Nakano +# This file is distributed under the same license as the com.github.ryonakano.atlas package. +# Ihor Hordiichuk , 2022, 2023, 2024, 2025. +# Artem , 2022. +# Fill read-only add-on , 2024. +msgid "" +msgstr "" +"Project-Id-Version: com.github.ryonakano.atlas\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-07-12 16:41+0900\n" +"PO-Revision-Date: 2025-03-25 00:04+0000\n" +"Last-Translator: Ihor Hordiichuk \n" +"Language-Team: Ukrainian \n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: Weblate 5.11-dev\n" + +#: data/atlas.desktop.in:2 data/atlas.metainfo.xml.in:10 +msgid "Atlas" +msgstr "Atlas" + +#: data/atlas.desktop.in:3 +msgid "Map" +msgstr "Мапа" + +#: data/atlas.desktop.in:4 data/atlas.metainfo.xml.in:11 +msgid "View where to go" +msgstr "Переглядайте, куди йти" + +#: data/atlas.desktop.in:10 +msgid "Trip;Explore;" +msgstr "Подорож;Відкриття;Trip;Explore;" + +#: data/atlas.metainfo.xml.in:13 +msgid "A map app that helps you to see where you want to go." +msgstr "" +"Картографічний застосунок, який допоможе вам дізнатися, як дістатися " +"потрібного місця." + +#: data/atlas.metainfo.xml.in:16 +msgid "Features include:" +msgstr "До особливостей належать:" + +#: data/atlas.metainfo.xml.in:18 +msgid "Search any place" +msgstr "Пошук будь-якого місця" + +#: data/atlas.metainfo.xml.in:19 +msgid "Jump to your current location instantly" +msgstr "Миттєвий перехід до свого поточного місцеперебування" + +#: data/atlas.metainfo.xml.in:21 +msgid "" +"This is a fork of \"Atlas Maps\" and wouldn't exist without work of Steffen " +"Schuhmann." +msgstr "" +"Це відгалуження «Atlas Maps», і проєкт не існував би без роботи Steffen " +"Schuhmann." + +#: data/atlas.metainfo.xml.in:28 data/atlas.metainfo.xml.in:32 +msgid "See locations on a map" +msgstr "" + +#~ msgid "Unknown" +#~ msgstr "Невідомо" + +#~ msgid "Move to the current location" +#~ msgstr "Перейти до поточного розташування" + +#~ msgid "Search Location" +#~ msgstr "Пошук розташування" + +#~ msgid "No Results Found" +#~ msgstr "Нічого не знайдено" + +#~ msgid "Try a different search" +#~ msgstr "Введіть інший запит" + +#, fuzzy +#~ msgid "System" +#~ msgstr "С_истемний" + +#, fuzzy +#~ msgid "Light" +#~ msgstr "_Світлий" + +#, fuzzy +#~ msgid "Dark" +#~ msgstr "_Темний" + +#~ msgid "Mapnik" +#~ msgstr "Mapnik" + +#, fuzzy +#~ msgid "Transport" +#~ msgstr "_Транспорт" + +#, fuzzy +#~ msgid "Style" +#~ msgstr "_Стиль" + +#, fuzzy +#~ msgid "Map Source" +#~ msgstr "_Джерело мапи" + +#~ msgid "Main Menu" +#~ msgstr "Головне меню" + +#~ msgid "Failed to connect to location service" +#~ msgstr "Не вдалося під'єднатися до служби визначення розташування" + +#~ msgid "Map_nik" +#~ msgstr "Map_nik" + +#~ msgid "@APP_NAME@" +#~ msgstr "@APP_NAME@" + +#~ msgid "App window in the light mode" +#~ msgstr "Вікно застосунку у світловому режимі" + +#~ msgid "App window in the dark mode" +#~ msgstr "Вікно застосунку у темному режимі" + +#~ msgid "translator-credits" +#~ msgstr "Ihor Hordiichuk" + +#, c-format +#~ msgid "_About %s" +#~ msgstr "_Про %s" + +#~ msgid "Try changing the search term." +#~ msgstr "Спробуйте змінити пошуковий запит." + +#~ msgid "Preferences" +#~ msgstr "Налаштування" + +#~ msgid "Search where to go" +#~ msgstr "Шукайте, куди йти" diff --git a/po/fi.po b/po/fi.po index 6798700..a905c8c 100644 --- a/po/fi.po +++ b/po/fi.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.ryonakano.atlas\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-07-12 16:38+0900\n" +"POT-Creation-Date: 2025-07-12 16:41+0900\n" "PO-Revision-Date: 2024-05-03 10:45+0000\n" "Last-Translator: Fill read-only add-on \n" "Language-Team: Finnish \n" @@ -19,53 +19,14 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.5.3\n" -#: data/atlas.desktop.in:2 data/atlas.metainfo.xml.in:10 src/MainWindow.vala:45 -msgid "Atlas" -msgstr "Atlas" - -#: data/atlas.desktop.in:3 -msgid "Map" -msgstr "" - -#: data/atlas.desktop.in:4 data/atlas.metainfo.xml.in:11 -msgid "View where to go" -msgstr "" - -#: data/atlas.desktop.in:10 -msgid "Trip;Explore;" -msgstr "" - -#: data/atlas.metainfo.xml.in:13 -msgid "A map app that helps you to see where you want to go." -msgstr "" - -#: data/atlas.metainfo.xml.in:16 -msgid "Features include:" -msgstr "" - -#: data/atlas.metainfo.xml.in:18 -msgid "Search any place" -msgstr "" - -#: data/atlas.metainfo.xml.in:19 -#, fuzzy -msgid "Jump to your current location instantly" -msgstr "Siirrä nykyiseen sijaintiin" - -#: data/atlas.metainfo.xml.in:21 -msgid "" -"This is a fork of \"Atlas Maps\" and wouldn't exist without work of Steffen " -"Schuhmann." -msgstr "" - -#: data/atlas.metainfo.xml.in:28 data/atlas.metainfo.xml.in:32 -msgid "See locations on a map" -msgstr "" - #: src/MainWindow.vala:33 msgid "Unknown" msgstr "Tuntematon" +#: src/MainWindow.vala:45 +msgid "Atlas" +msgstr "Atlas" + #: src/MainWindow.vala:51 msgid "Move to the current location" msgstr "Siirrä nykyiseen sijaintiin" @@ -125,6 +86,10 @@ msgstr "" msgid "Failed to connect to location service" msgstr "" +#, fuzzy +#~ msgid "Jump to your current location instantly" +#~ msgstr "Siirrä nykyiseen sijaintiin" + #~ msgid "@APP_NAME@" #~ msgstr "@APP_NAME@" diff --git a/po/fr.po b/po/fr.po index c478a8d..cc2df06 100644 --- a/po/fr.po +++ b/po/fr.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.ryonakano.atlas\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-07-12 16:38+0900\n" +"POT-Creation-Date: 2025-07-12 16:41+0900\n" "PO-Revision-Date: 2025-06-11 12:02+0000\n" "Last-Translator: Stella and Charlie \n" "Language-Team: French \n" @@ -23,56 +23,14 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 5.12-dev\n" -#: data/atlas.desktop.in:2 data/atlas.metainfo.xml.in:10 src/MainWindow.vala:45 -msgid "Atlas" -msgstr "Atlas" - -#: data/atlas.desktop.in:3 -msgid "Map" -msgstr "Carte" - -#: data/atlas.desktop.in:4 data/atlas.metainfo.xml.in:11 -msgid "View where to go" -msgstr "Visualisez où vous souhaitez vous rendre" - -#: data/atlas.desktop.in:10 -msgid "Trip;Explore;" -msgstr "Voyage;Explorer;" - -#: data/atlas.metainfo.xml.in:13 -msgid "A map app that helps you to see where you want to go." -msgstr "" -"Une application de cartes pour vous aider à visualiser les lieux ou vous " -"souhaitez vous rendre." - -#: data/atlas.metainfo.xml.in:16 -msgid "Features include:" -msgstr "Fonctionnalités incluses :" - -#: data/atlas.metainfo.xml.in:18 -msgid "Search any place" -msgstr "Recherchez n'importe quel lieu" - -#: data/atlas.metainfo.xml.in:19 -msgid "Jump to your current location instantly" -msgstr "Affichez votre position actuelle en un instant" - -#: data/atlas.metainfo.xml.in:21 -msgid "" -"This is a fork of \"Atlas Maps\" and wouldn't exist without work of Steffen " -"Schuhmann." -msgstr "" -"Ceci est un fork de « Atlas Maps » qui n’existerait pas sans le travail de " -"Steffen Schuhmann." - -#: data/atlas.metainfo.xml.in:28 data/atlas.metainfo.xml.in:32 -msgid "See locations on a map" -msgstr "" - #: src/MainWindow.vala:33 msgid "Unknown" msgstr "Inconnu" +#: src/MainWindow.vala:45 +msgid "Atlas" +msgstr "Atlas" + #: src/MainWindow.vala:51 msgid "Move to the current location" msgstr "Se déplacer à la position actuelle" @@ -131,6 +89,36 @@ msgstr "Menu principal" msgid "Failed to connect to location service" msgstr "Echec de la connexion au service de localisation" +#~ msgid "Map" +#~ msgstr "Carte" + +#~ msgid "View where to go" +#~ msgstr "Visualisez où vous souhaitez vous rendre" + +#~ msgid "Trip;Explore;" +#~ msgstr "Voyage;Explorer;" + +#~ msgid "A map app that helps you to see where you want to go." +#~ msgstr "" +#~ "Une application de cartes pour vous aider à visualiser les lieux ou vous " +#~ "souhaitez vous rendre." + +#~ msgid "Features include:" +#~ msgstr "Fonctionnalités incluses :" + +#~ msgid "Search any place" +#~ msgstr "Recherchez n'importe quel lieu" + +#~ msgid "Jump to your current location instantly" +#~ msgstr "Affichez votre position actuelle en un instant" + +#~ msgid "" +#~ "This is a fork of \"Atlas Maps\" and wouldn't exist without work of " +#~ "Steffen Schuhmann." +#~ msgstr "" +#~ "Ceci est un fork de « Atlas Maps » qui n’existerait pas sans le travail " +#~ "de Steffen Schuhmann." + #~ msgid "Map_nik" #~ msgstr "Map_nik" diff --git a/po/hi.po b/po/hi.po index 6d2891b..8124a55 100644 --- a/po/hi.po +++ b/po/hi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.ryonakano.atlas\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-07-12 16:38+0900\n" +"POT-Creation-Date: 2025-07-12 16:41+0900\n" "PO-Revision-Date: 2024-05-16 13:01+0000\n" "Last-Translator: Scrambled777 \n" "Language-Team: Hindi \n" @@ -18,54 +18,14 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 5.6-dev\n" -#: data/atlas.desktop.in:2 data/atlas.metainfo.xml.in:10 src/MainWindow.vala:45 -msgid "Atlas" -msgstr "" - -#: data/atlas.desktop.in:3 -msgid "Map" -msgstr "मानचित्र" - -#: data/atlas.desktop.in:4 data/atlas.metainfo.xml.in:11 -msgid "View where to go" -msgstr "देखें कि कहां जाना है" - -#: data/atlas.desktop.in:10 -msgid "Trip;Explore;" -msgstr "यात्रा;अन्वेषण;" - -#: data/atlas.metainfo.xml.in:13 -msgid "A map app that helps you to see where you want to go." -msgstr "एक मानचित्र ऐप जो आपको यह देखने में मदद करता है कि आप कहां जाना चाहते हैं।" - -#: data/atlas.metainfo.xml.in:16 -msgid "Features include:" -msgstr "शामिल विशेषताएं:" - -#: data/atlas.metainfo.xml.in:18 -msgid "Search any place" -msgstr "कोई भी जगह खोजें" - -#: data/atlas.metainfo.xml.in:19 -msgid "Jump to your current location instantly" -msgstr "तुरंत अपने वर्तमान स्थान पर जाएं" - -#: data/atlas.metainfo.xml.in:21 -msgid "" -"This is a fork of \"Atlas Maps\" and wouldn't exist without work of Steffen " -"Schuhmann." -msgstr "" -"यह \"Atlas Maps\" का एक फोर्क है और जो स्टीफ़न शूहमैन के काम के बिना अस्तित्व में नहीं " -"होता।" - -#: data/atlas.metainfo.xml.in:28 data/atlas.metainfo.xml.in:32 -msgid "See locations on a map" -msgstr "" - #: src/MainWindow.vala:33 msgid "Unknown" msgstr "अज्ञात" +#: src/MainWindow.vala:45 +msgid "Atlas" +msgstr "" + #: src/MainWindow.vala:51 msgid "Move to the current location" msgstr "वर्तमान स्थान पर जाएं" @@ -125,6 +85,34 @@ msgstr "मुख्य मेनू" msgid "Failed to connect to location service" msgstr "स्थान सेवा से जुड़ने में विफल" +#~ msgid "Map" +#~ msgstr "मानचित्र" + +#~ msgid "View where to go" +#~ msgstr "देखें कि कहां जाना है" + +#~ msgid "Trip;Explore;" +#~ msgstr "यात्रा;अन्वेषण;" + +#~ msgid "A map app that helps you to see where you want to go." +#~ msgstr "एक मानचित्र ऐप जो आपको यह देखने में मदद करता है कि आप कहां जाना चाहते हैं।" + +#~ msgid "Features include:" +#~ msgstr "शामिल विशेषताएं:" + +#~ msgid "Search any place" +#~ msgstr "कोई भी जगह खोजें" + +#~ msgid "Jump to your current location instantly" +#~ msgstr "तुरंत अपने वर्तमान स्थान पर जाएं" + +#~ msgid "" +#~ "This is a fork of \"Atlas Maps\" and wouldn't exist without work of " +#~ "Steffen Schuhmann." +#~ msgstr "" +#~ "यह \"Atlas Maps\" का एक फोर्क है और जो स्टीफ़न शूहमैन के काम के बिना अस्तित्व में नहीं " +#~ "होता।" + #~ msgid "@APP_NAME@" #~ msgstr "@APP_NAME@" diff --git a/po/it.po b/po/it.po index d1f36f8..b7e33dc 100644 --- a/po/it.po +++ b/po/it.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.ryonakano.atlas\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-07-12 16:38+0900\n" +"POT-Creation-Date: 2025-07-12 16:41+0900\n" "PO-Revision-Date: 2025-03-31 04:19+0000\n" "Last-Translator: albanobattistella \n" "Language-Team: Italian \n" @@ -20,54 +20,14 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.11-dev\n" -#: data/atlas.desktop.in:2 data/atlas.metainfo.xml.in:10 src/MainWindow.vala:45 -msgid "Atlas" -msgstr "Atlas" - -#: data/atlas.desktop.in:3 -msgid "Map" -msgstr "Mappa" - -#: data/atlas.desktop.in:4 data/atlas.metainfo.xml.in:11 -msgid "View where to go" -msgstr "Visualizza dove vuoi andare" - -#: data/atlas.desktop.in:10 -msgid "Trip;Explore;" -msgstr "Viaggio;Esplora;" - -#: data/atlas.metainfo.xml.in:13 -msgid "A map app that helps you to see where you want to go." -msgstr "Un'app per mappe che ti aiuta a vedere dove vuoi andare." - -#: data/atlas.metainfo.xml.in:16 -msgid "Features include:" -msgstr "Le caratteristiche includono:" - -#: data/atlas.metainfo.xml.in:18 -msgid "Search any place" -msgstr "Cerca qualsiasi luogo" - -#: data/atlas.metainfo.xml.in:19 -msgid "Jump to your current location instantly" -msgstr "Passa istantaneamente alla tua posizione attuale" - -#: data/atlas.metainfo.xml.in:21 -msgid "" -"This is a fork of \"Atlas Maps\" and wouldn't exist without work of Steffen " -"Schuhmann." -msgstr "" -"Questo è un fork di \"Atlas Maps\" e non esisterebbe senza il lavoro di " -"Steffen Schuhmann." - -#: data/atlas.metainfo.xml.in:28 data/atlas.metainfo.xml.in:32 -msgid "See locations on a map" -msgstr "" - #: src/MainWindow.vala:33 msgid "Unknown" msgstr "Sconosciuto" +#: src/MainWindow.vala:45 +msgid "Atlas" +msgstr "Atlas" + #: src/MainWindow.vala:51 msgid "Move to the current location" msgstr "Passa alla posizione corrente" @@ -127,6 +87,34 @@ msgstr "Menu principale" msgid "Failed to connect to location service" msgstr "Impossibile connettersi al servizio di localizzazione" +#~ msgid "Map" +#~ msgstr "Mappa" + +#~ msgid "View where to go" +#~ msgstr "Visualizza dove vuoi andare" + +#~ msgid "Trip;Explore;" +#~ msgstr "Viaggio;Esplora;" + +#~ msgid "A map app that helps you to see where you want to go." +#~ msgstr "Un'app per mappe che ti aiuta a vedere dove vuoi andare." + +#~ msgid "Features include:" +#~ msgstr "Le caratteristiche includono:" + +#~ msgid "Search any place" +#~ msgstr "Cerca qualsiasi luogo" + +#~ msgid "Jump to your current location instantly" +#~ msgstr "Passa istantaneamente alla tua posizione attuale" + +#~ msgid "" +#~ "This is a fork of \"Atlas Maps\" and wouldn't exist without work of " +#~ "Steffen Schuhmann." +#~ msgstr "" +#~ "Questo è un fork di \"Atlas Maps\" e non esisterebbe senza il lavoro di " +#~ "Steffen Schuhmann." + #~ msgid "@APP_NAME@" #~ msgstr "@APP_NAME@" diff --git a/po/ja.po b/po/ja.po index 7ad1d53..d83f2e8 100644 --- a/po/ja.po +++ b/po/ja.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.ryonakano.atlas\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-07-12 16:38+0900\n" +"POT-Creation-Date: 2025-07-12 16:41+0900\n" "PO-Revision-Date: 2025-07-10 13:01+0000\n" "Last-Translator: Ryo Nakano \n" "Language-Team: Japanese \n" "Language-Team: Lithuanian \n" "Language-Team: Norwegian Bokmål \n" "Language-Team: Dutch \n" @@ -20,54 +20,14 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.5.3\n" -#: data/atlas.desktop.in:2 data/atlas.metainfo.xml.in:10 src/MainWindow.vala:45 -msgid "Atlas" -msgstr "Atlas" - -#: data/atlas.desktop.in:3 -msgid "Map" -msgstr "Kaart" - -#: data/atlas.desktop.in:4 data/atlas.metainfo.xml.in:11 -msgid "View where to go" -msgstr "Bekijk waar je heen moet" - -#: data/atlas.desktop.in:10 -msgid "Trip;Explore;" -msgstr "Reis;Verkennen;Kaart;" - -#: data/atlas.metainfo.xml.in:13 -msgid "A map app that helps you to see where you want to go." -msgstr "Een kaarttoepassing die je naar je bestemming begeleidt." - -#: data/atlas.metainfo.xml.in:16 -msgid "Features include:" -msgstr "Kenmerken:" - -#: data/atlas.metainfo.xml.in:18 -msgid "Search any place" -msgstr "Zoek naar elke willekeurige locatie" - -#: data/atlas.metainfo.xml.in:19 -msgid "Jump to your current location instantly" -msgstr "Ga direct naar je huidige locatie" - -#: data/atlas.metainfo.xml.in:21 -msgid "" -"This is a fork of \"Atlas Maps\" and wouldn't exist without work of Steffen " -"Schuhmann." -msgstr "" -"Dit project is een afsplitsing van Atlas Maps en zou niet bestaan hebben " -"zonder het werk van Steffen Schuhmann." - -#: data/atlas.metainfo.xml.in:28 data/atlas.metainfo.xml.in:32 -msgid "See locations on a map" -msgstr "" - #: src/MainWindow.vala:33 msgid "Unknown" msgstr "Onbekend" +#: src/MainWindow.vala:45 +msgid "Atlas" +msgstr "Atlas" + #: src/MainWindow.vala:51 msgid "Move to the current location" msgstr "Verplaatsen naar huidige locatie" @@ -127,6 +87,34 @@ msgstr "" msgid "Failed to connect to location service" msgstr "" +#~ msgid "Map" +#~ msgstr "Kaart" + +#~ msgid "View where to go" +#~ msgstr "Bekijk waar je heen moet" + +#~ msgid "Trip;Explore;" +#~ msgstr "Reis;Verkennen;Kaart;" + +#~ msgid "A map app that helps you to see where you want to go." +#~ msgstr "Een kaarttoepassing die je naar je bestemming begeleidt." + +#~ msgid "Features include:" +#~ msgstr "Kenmerken:" + +#~ msgid "Search any place" +#~ msgstr "Zoek naar elke willekeurige locatie" + +#~ msgid "Jump to your current location instantly" +#~ msgstr "Ga direct naar je huidige locatie" + +#~ msgid "" +#~ "This is a fork of \"Atlas Maps\" and wouldn't exist without work of " +#~ "Steffen Schuhmann." +#~ msgstr "" +#~ "Dit project is een afsplitsing van Atlas Maps en zou niet bestaan hebben " +#~ "zonder het werk van Steffen Schuhmann." + #~ msgid "@APP_NAME@" #~ msgstr "@APP_NAME@" diff --git a/po/pl.po b/po/pl.po index 0c307d4..0e4bf41 100644 --- a/po/pl.po +++ b/po/pl.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.ryonakano.atlas\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-07-12 16:38+0900\n" +"POT-Creation-Date: 2025-07-12 16:41+0900\n" "PO-Revision-Date: 2024-05-03 10:45+0000\n" "Last-Translator: Fill read-only add-on \n" "Language-Team: Polish \n" @@ -21,53 +21,14 @@ msgstr "" "|| n%100>=20) ? 1 : 2);\n" "X-Generator: Weblate 5.5.3\n" -#: data/atlas.desktop.in:2 data/atlas.metainfo.xml.in:10 src/MainWindow.vala:45 -msgid "Atlas" -msgstr "Atlas" - -#: data/atlas.desktop.in:3 -msgid "Map" -msgstr "Mapa" - -#: data/atlas.desktop.in:4 data/atlas.metainfo.xml.in:11 -msgid "View where to go" -msgstr "Wyświetl, dokąd iść" - -#: data/atlas.desktop.in:10 -msgid "Trip;Explore;" -msgstr "Wycieczka; Odkryj;" - -#: data/atlas.metainfo.xml.in:13 -msgid "A map app that helps you to see where you want to go." -msgstr "Aplikacja map, która pomaga zobaczyć, dokąd chcesz iść." - -#: data/atlas.metainfo.xml.in:16 -msgid "Features include:" -msgstr "Funkcje obejmują:" - -#: data/atlas.metainfo.xml.in:18 -msgid "Search any place" -msgstr "Szukaj w dowolnym miejscu" - -#: data/atlas.metainfo.xml.in:19 -msgid "Jump to your current location instantly" -msgstr "Natychmiastowe przejście do bieżącej lokalizacji" - -#: data/atlas.metainfo.xml.in:21 -msgid "" -"This is a fork of \"Atlas Maps\" and wouldn't exist without work of Steffen " -"Schuhmann." -msgstr "" -"To widelec \"Atlas Maps\" i nie istniałby bez pracy Steffena Schuhmanna." - -#: data/atlas.metainfo.xml.in:28 data/atlas.metainfo.xml.in:32 -msgid "See locations on a map" -msgstr "" - #: src/MainWindow.vala:33 msgid "Unknown" msgstr "Nieznane" +#: src/MainWindow.vala:45 +msgid "Atlas" +msgstr "Atlas" + #: src/MainWindow.vala:51 msgid "Move to the current location" msgstr "Przenieś do bieżącej lokalizacji" @@ -127,6 +88,33 @@ msgstr "" msgid "Failed to connect to location service" msgstr "" +#~ msgid "Map" +#~ msgstr "Mapa" + +#~ msgid "View where to go" +#~ msgstr "Wyświetl, dokąd iść" + +#~ msgid "Trip;Explore;" +#~ msgstr "Wycieczka; Odkryj;" + +#~ msgid "A map app that helps you to see where you want to go." +#~ msgstr "Aplikacja map, która pomaga zobaczyć, dokąd chcesz iść." + +#~ msgid "Features include:" +#~ msgstr "Funkcje obejmują:" + +#~ msgid "Search any place" +#~ msgstr "Szukaj w dowolnym miejscu" + +#~ msgid "Jump to your current location instantly" +#~ msgstr "Natychmiastowe przejście do bieżącej lokalizacji" + +#~ msgid "" +#~ "This is a fork of \"Atlas Maps\" and wouldn't exist without work of " +#~ "Steffen Schuhmann." +#~ msgstr "" +#~ "To widelec \"Atlas Maps\" i nie istniałby bez pracy Steffena Schuhmanna." + #~ msgid "@APP_NAME@" #~ msgstr "@APP_NAME@" diff --git a/po/pt.po b/po/pt.po index fe3c55c..5bf31a5 100644 --- a/po/pt.po +++ b/po/pt.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.ryonakano.atlas\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-07-12 16:38+0900\n" +"POT-Creation-Date: 2025-07-12 16:41+0900\n" "PO-Revision-Date: 2024-05-03 10:45+0000\n" "Last-Translator: Fill read-only add-on \n" "Language-Team: Portuguese 1;\n" "X-Generator: Weblate 5.5.3\n" -#: data/atlas.desktop.in:2 data/atlas.metainfo.xml.in:10 src/MainWindow.vala:45 -msgid "Atlas" -msgstr "Atlas" - -#: data/atlas.desktop.in:3 -msgid "Map" -msgstr "Mapa" - -#: data/atlas.desktop.in:4 data/atlas.metainfo.xml.in:11 -msgid "View where to go" -msgstr "Veja para onde ir" - -#: data/atlas.desktop.in:10 -msgid "Trip;Explore;" -msgstr "Trip;Explore;Viagem;Explorar;" - -#: data/atlas.metainfo.xml.in:13 -msgid "A map app that helps you to see where you want to go." -msgstr "Uma aplicação de mapa que o ajuda a ver para onde quer ir." - -#: data/atlas.metainfo.xml.in:16 -msgid "Features include:" -msgstr "Funcionalidades incluídas:" - -#: data/atlas.metainfo.xml.in:18 -msgid "Search any place" -msgstr "Procurar qualquer lugar" - -#: data/atlas.metainfo.xml.in:19 -msgid "Jump to your current location instantly" -msgstr "Vá instantaneamente para a sua localização atual" - -#: data/atlas.metainfo.xml.in:21 -msgid "" -"This is a fork of \"Atlas Maps\" and wouldn't exist without work of Steffen " -"Schuhmann." -msgstr "" -"Isto é uma bifurcação do \"Atlas Maps\" e não existiria sem o trabalho de " -"Steffen Schuhmann." - -#: data/atlas.metainfo.xml.in:28 data/atlas.metainfo.xml.in:32 -msgid "See locations on a map" -msgstr "" - #: src/MainWindow.vala:33 msgid "Unknown" msgstr "Desconhecido" +#: src/MainWindow.vala:45 +msgid "Atlas" +msgstr "Atlas" + #: src/MainWindow.vala:51 msgid "Move to the current location" msgstr "Mover para a localização atual" @@ -128,6 +88,34 @@ msgstr "" msgid "Failed to connect to location service" msgstr "" +#~ msgid "Map" +#~ msgstr "Mapa" + +#~ msgid "View where to go" +#~ msgstr "Veja para onde ir" + +#~ msgid "Trip;Explore;" +#~ msgstr "Trip;Explore;Viagem;Explorar;" + +#~ msgid "A map app that helps you to see where you want to go." +#~ msgstr "Uma aplicação de mapa que o ajuda a ver para onde quer ir." + +#~ msgid "Features include:" +#~ msgstr "Funcionalidades incluídas:" + +#~ msgid "Search any place" +#~ msgstr "Procurar qualquer lugar" + +#~ msgid "Jump to your current location instantly" +#~ msgstr "Vá instantaneamente para a sua localização atual" + +#~ msgid "" +#~ "This is a fork of \"Atlas Maps\" and wouldn't exist without work of " +#~ "Steffen Schuhmann." +#~ msgstr "" +#~ "Isto é uma bifurcação do \"Atlas Maps\" e não existiria sem o trabalho de " +#~ "Steffen Schuhmann." + #~ msgid "@APP_NAME@" #~ msgstr "@APP_NAME@" diff --git a/po/pt_BR.po b/po/pt_BR.po index f25db95..efcdf73 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.ryonakano.atlas\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-07-12 16:38+0900\n" +"POT-Creation-Date: 2025-07-12 16:41+0900\n" "PO-Revision-Date: 2025-02-17 04:37+0000\n" "Last-Translator: Fill read-only add-on \n" "Language-Team: Portuguese (Brazil) 1;\n" "X-Generator: Weblate 5.10\n" -#: data/atlas.desktop.in:2 data/atlas.metainfo.xml.in:10 src/MainWindow.vala:45 -msgid "Atlas" -msgstr "" - -#: data/atlas.desktop.in:3 -msgid "Map" -msgstr "" - -#: data/atlas.desktop.in:4 data/atlas.metainfo.xml.in:11 -msgid "View where to go" -msgstr "" - -#: data/atlas.desktop.in:10 -msgid "Trip;Explore;" -msgstr "" - -#: data/atlas.metainfo.xml.in:13 -msgid "A map app that helps you to see where you want to go." -msgstr "" - -#: data/atlas.metainfo.xml.in:16 -msgid "Features include:" -msgstr "" - -#: data/atlas.metainfo.xml.in:18 -msgid "Search any place" -msgstr "" - -#: data/atlas.metainfo.xml.in:19 -msgid "Jump to your current location instantly" -msgstr "" - -#: data/atlas.metainfo.xml.in:21 -msgid "" -"This is a fork of \"Atlas Maps\" and wouldn't exist without work of Steffen " -"Schuhmann." -msgstr "" - -#: data/atlas.metainfo.xml.in:28 data/atlas.metainfo.xml.in:32 -msgid "See locations on a map" -msgstr "" - #: src/MainWindow.vala:33 msgid "Unknown" msgstr "" +#: src/MainWindow.vala:45 +msgid "Atlas" +msgstr "" + #: src/MainWindow.vala:51 msgid "Move to the current location" msgstr "" diff --git a/po/ru.po b/po/ru.po index c8b5443..044be45 100644 --- a/po/ru.po +++ b/po/ru.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.ryonakano.atlas\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-07-12 16:38+0900\n" +"POT-Creation-Date: 2025-07-12 16:41+0900\n" "PO-Revision-Date: 2024-05-08 14:05+0000\n" "Last-Translator: lenemter \n" "Language-Team: Russian \n" @@ -20,54 +20,14 @@ msgstr "" "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Weblate 5.5.4-rc\n" -#: data/atlas.desktop.in:2 data/atlas.metainfo.xml.in:10 src/MainWindow.vala:45 -msgid "Atlas" -msgstr "Atlas" - -#: data/atlas.desktop.in:3 -msgid "Map" -msgstr "Карта" - -#: data/atlas.desktop.in:4 data/atlas.metainfo.xml.in:11 -msgid "View where to go" -msgstr "Смотрите куда идти" - -#: data/atlas.desktop.in:10 -msgid "Trip;Explore;" -msgstr "Путешествие;Исследовать;" - -#: data/atlas.metainfo.xml.in:13 -msgid "A map app that helps you to see where you want to go." -msgstr "Карта, которая помогает вам смотреть куда вы хотите пойти." - -#: data/atlas.metainfo.xml.in:16 -msgid "Features include:" -msgstr "Функции:" - -#: data/atlas.metainfo.xml.in:18 -msgid "Search any place" -msgstr "Ищите любое место" - -#: data/atlas.metainfo.xml.in:19 -msgid "Jump to your current location instantly" -msgstr "Мгновенно переместитесь к вашему текущему местоположению" - -#: data/atlas.metainfo.xml.in:21 -msgid "" -"This is a fork of \"Atlas Maps\" and wouldn't exist without work of Steffen " -"Schuhmann." -msgstr "" -"Это форк приложения «Atlas Maps», и оно не могло бы существовать без работы " -"Steffen Schuhmann." - -#: data/atlas.metainfo.xml.in:28 data/atlas.metainfo.xml.in:32 -msgid "See locations on a map" -msgstr "" - #: src/MainWindow.vala:33 msgid "Unknown" msgstr "Неизвестно" +#: src/MainWindow.vala:45 +msgid "Atlas" +msgstr "Atlas" + #: src/MainWindow.vala:51 msgid "Move to the current location" msgstr "Переместиться к текущему местоположению" @@ -127,6 +87,34 @@ msgstr "" msgid "Failed to connect to location service" msgstr "Не удалось подключиться к службе местоположения" +#~ msgid "Map" +#~ msgstr "Карта" + +#~ msgid "View where to go" +#~ msgstr "Смотрите куда идти" + +#~ msgid "Trip;Explore;" +#~ msgstr "Путешествие;Исследовать;" + +#~ msgid "A map app that helps you to see where you want to go." +#~ msgstr "Карта, которая помогает вам смотреть куда вы хотите пойти." + +#~ msgid "Features include:" +#~ msgstr "Функции:" + +#~ msgid "Search any place" +#~ msgstr "Ищите любое место" + +#~ msgid "Jump to your current location instantly" +#~ msgstr "Мгновенно переместитесь к вашему текущему местоположению" + +#~ msgid "" +#~ "This is a fork of \"Atlas Maps\" and wouldn't exist without work of " +#~ "Steffen Schuhmann." +#~ msgstr "" +#~ "Это форк приложения «Atlas Maps», и оно не могло бы существовать без " +#~ "работы Steffen Schuhmann." + #~ msgid "@APP_NAME@" #~ msgstr "@APP_NAME@" diff --git a/po/sk.po b/po/sk.po index 2f4cae8..0bcc0ba 100644 --- a/po/sk.po +++ b/po/sk.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.ryonakano.atlas\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-07-12 16:38+0900\n" +"POT-Creation-Date: 2025-07-12 16:41+0900\n" "PO-Revision-Date: 2024-05-03 10:45+0000\n" "Last-Translator: Fill read-only add-on \n" "Language-Team: Slovak \n" @@ -21,56 +21,14 @@ msgstr "" "Plural-Forms: nplurals=3; plural=((n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2);\n" "X-Generator: Weblate 5.5.3\n" -#: data/atlas.desktop.in:2 data/atlas.metainfo.xml.in:10 src/MainWindow.vala:45 -msgid "Atlas" -msgstr "Atlas" - -#: data/atlas.desktop.in:3 -msgid "Map" -msgstr "Mapa" - -#: data/atlas.desktop.in:4 data/atlas.metainfo.xml.in:11 -msgid "View where to go" -msgstr "Zobrazte si, kam chcete ísť" - -#: data/atlas.desktop.in:10 -msgid "Trip;Explore;" -msgstr "Výlet;Objaviť;Preskúmať;" - -#: data/atlas.metainfo.xml.in:13 -msgid "A map app that helps you to see where you want to go." -msgstr "" -"Mapová aplikácia, ktorá vám pomôže zobraziť si miesto, na ktoré sa chystáte " -"ísť." - -#: data/atlas.metainfo.xml.in:16 -msgid "Features include:" -msgstr "Funkcie zahŕňajú:" - -#: data/atlas.metainfo.xml.in:18 -msgid "Search any place" -msgstr "Vyhľadajte akékoľvek miesto" - -#: data/atlas.metainfo.xml.in:19 -msgid "Jump to your current location instantly" -msgstr "Presuňte sa na vašu aktuálnu polohu okamžite jedným klikom" - -#: data/atlas.metainfo.xml.in:21 -msgid "" -"This is a fork of \"Atlas Maps\" and wouldn't exist without work of Steffen " -"Schuhmann." -msgstr "" -"Toto je vetva (fork) aplikácie „Atlas Maps“ a neexistovala by bez práce " -"Steffena Schuhmanna." - -#: data/atlas.metainfo.xml.in:28 data/atlas.metainfo.xml.in:32 -msgid "See locations on a map" -msgstr "" - #: src/MainWindow.vala:33 msgid "Unknown" msgstr "Neznáme" +#: src/MainWindow.vala:45 +msgid "Atlas" +msgstr "Atlas" + #: src/MainWindow.vala:51 msgid "Move to the current location" msgstr "Presunúť sa na aktuálnu polohu" @@ -130,6 +88,36 @@ msgstr "" msgid "Failed to connect to location service" msgstr "" +#~ msgid "Map" +#~ msgstr "Mapa" + +#~ msgid "View where to go" +#~ msgstr "Zobrazte si, kam chcete ísť" + +#~ msgid "Trip;Explore;" +#~ msgstr "Výlet;Objaviť;Preskúmať;" + +#~ msgid "A map app that helps you to see where you want to go." +#~ msgstr "" +#~ "Mapová aplikácia, ktorá vám pomôže zobraziť si miesto, na ktoré sa " +#~ "chystáte ísť." + +#~ msgid "Features include:" +#~ msgstr "Funkcie zahŕňajú:" + +#~ msgid "Search any place" +#~ msgstr "Vyhľadajte akékoľvek miesto" + +#~ msgid "Jump to your current location instantly" +#~ msgstr "Presuňte sa na vašu aktuálnu polohu okamžite jedným klikom" + +#~ msgid "" +#~ "This is a fork of \"Atlas Maps\" and wouldn't exist without work of " +#~ "Steffen Schuhmann." +#~ msgstr "" +#~ "Toto je vetva (fork) aplikácie „Atlas Maps“ a neexistovala by bez práce " +#~ "Steffena Schuhmanna." + #~ msgid "@APP_NAME@" #~ msgstr "@APP_NAME@" diff --git a/po/ta.po b/po/ta.po index c4c80c1..2b544c3 100644 --- a/po/ta.po +++ b/po/ta.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.ryonakano.atlas\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-07-12 16:38+0900\n" +"POT-Creation-Date: 2025-07-12 16:41+0900\n" "PO-Revision-Date: 2025-07-04 15:03+0000\n" "Last-Translator: தமிழ்நேரம் \n" "Language-Team: Tamil \n" @@ -18,53 +18,14 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.13-dev\n" -#: data/atlas.desktop.in:2 data/atlas.metainfo.xml.in:10 src/MainWindow.vala:45 -msgid "Atlas" -msgstr "" - -#: data/atlas.desktop.in:3 -msgid "Map" -msgstr "வரைபடம்" - -#: data/atlas.desktop.in:4 data/atlas.metainfo.xml.in:11 -msgid "View where to go" -msgstr "எங்கு செல்ல வேண்டும் என்று பார்க்கவும்" - -#: data/atlas.desktop.in:10 -msgid "Trip;Explore;" -msgstr "பயணம்; ஆராயுங்கள்;" - -#: data/atlas.metainfo.xml.in:13 -msgid "A map app that helps you to see where you want to go." -msgstr "நீங்கள் எங்கு செல்ல விரும்புகிறீர்கள் என்பதைப் பார்க்க உதவும் வரைபட பயன்பாடு." - -#: data/atlas.metainfo.xml.in:16 -msgid "Features include:" -msgstr "நற்பொருத்தங்கள் பின்வருமாறு:" - -#: data/atlas.metainfo.xml.in:18 -msgid "Search any place" -msgstr "எந்த இடத்தையும் தேடுங்கள்" - -#: data/atlas.metainfo.xml.in:19 -msgid "Jump to your current location instantly" -msgstr "உங்கள் தற்போதைய இருப்பிடத்திற்கு உடனடியாக செல்லவும்" - -#: data/atlas.metainfo.xml.in:21 -msgid "" -"This is a fork of \"Atlas Maps\" and wouldn't exist without work of Steffen " -"Schuhmann." -msgstr "" -"இது \"அட்லச் மேப்ச்\" இன் முட்கரண்டி மற்றும் ச்டெஃபென் சுஅ்மானின் வேலை இல்லாமல் இருக்காது." - -#: data/atlas.metainfo.xml.in:28 data/atlas.metainfo.xml.in:32 -msgid "See locations on a map" -msgstr "" - #: src/MainWindow.vala:33 msgid "Unknown" msgstr "தெரியவில்லை" +#: src/MainWindow.vala:45 +msgid "Atlas" +msgstr "" + #: src/MainWindow.vala:51 msgid "Move to the current location" msgstr "தற்போதைய இடத்திற்கு செல்லுங்கள்" @@ -123,6 +84,33 @@ msgstr "பட்டியல் விளையாடுங்கள்" msgid "Failed to connect to location service" msgstr "இருப்பிட சேவையுடன் இணைக்கத் தவறிவிட்டது" +#~ msgid "Map" +#~ msgstr "வரைபடம்" + +#~ msgid "View where to go" +#~ msgstr "எங்கு செல்ல வேண்டும் என்று பார்க்கவும்" + +#~ msgid "Trip;Explore;" +#~ msgstr "பயணம்; ஆராயுங்கள்;" + +#~ msgid "A map app that helps you to see where you want to go." +#~ msgstr "நீங்கள் எங்கு செல்ல விரும்புகிறீர்கள் என்பதைப் பார்க்க உதவும் வரைபட பயன்பாடு." + +#~ msgid "Features include:" +#~ msgstr "நற்பொருத்தங்கள் பின்வருமாறு:" + +#~ msgid "Search any place" +#~ msgstr "எந்த இடத்தையும் தேடுங்கள்" + +#~ msgid "Jump to your current location instantly" +#~ msgstr "உங்கள் தற்போதைய இருப்பிடத்திற்கு உடனடியாக செல்லவும்" + +#~ msgid "" +#~ "This is a fork of \"Atlas Maps\" and wouldn't exist without work of " +#~ "Steffen Schuhmann." +#~ msgstr "" +#~ "இது \"அட்லச் மேப்ச்\" இன் முட்கரண்டி மற்றும் ச்டெஃபென் சுஅ்மானின் வேலை இல்லாமல் இருக்காது." + #~ msgid "Map_nik" #~ msgstr "வரைபடம்" diff --git a/po/tr.po b/po/tr.po index 8e01611..c744e99 100644 --- a/po/tr.po +++ b/po/tr.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.ryonakano.atlas\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-07-12 16:38+0900\n" +"POT-Creation-Date: 2025-07-12 16:41+0900\n" "PO-Revision-Date: 2024-06-17 12:09+0000\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish \n" @@ -21,55 +21,14 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.6-dev\n" -#: data/atlas.desktop.in:2 data/atlas.metainfo.xml.in:10 src/MainWindow.vala:45 -msgid "Atlas" -msgstr "Atlas" - -#: data/atlas.desktop.in:3 -msgid "Map" -msgstr "Harita" - -#: data/atlas.desktop.in:4 data/atlas.metainfo.xml.in:11 -msgid "View where to go" -msgstr "Nereye gideceğinizi görün" - -#: data/atlas.desktop.in:10 -msgid "Trip;Explore;" -msgstr "Trip;Explore;Gezi;Seyahat;Yolculuk;Keşfet;" - -#: data/atlas.metainfo.xml.in:13 -msgid "A map app that helps you to see where you want to go." -msgstr "" -"Nereye gitmek istediğinizi görmenize yardımcı olan bir harita uygulaması." - -#: data/atlas.metainfo.xml.in:16 -msgid "Features include:" -msgstr "Özellikler:" - -#: data/atlas.metainfo.xml.in:18 -msgid "Search any place" -msgstr "Herhangi bir yeri arayın" - -#: data/atlas.metainfo.xml.in:19 -msgid "Jump to your current location instantly" -msgstr "Geçerli konumunuza anında atlayın" - -#: data/atlas.metainfo.xml.in:21 -msgid "" -"This is a fork of \"Atlas Maps\" and wouldn't exist without work of Steffen " -"Schuhmann." -msgstr "" -"Bu, \"Atlas Maps\" uygulamasının bir çatalıdır ve Steffen Schuhmann'ın " -"çalışmaları olmadan var olamazdı." - -#: data/atlas.metainfo.xml.in:28 data/atlas.metainfo.xml.in:32 -msgid "See locations on a map" -msgstr "" - #: src/MainWindow.vala:33 msgid "Unknown" msgstr "Bilinmiyor" +#: src/MainWindow.vala:45 +msgid "Atlas" +msgstr "Atlas" + #: src/MainWindow.vala:51 msgid "Move to the current location" msgstr "Geçerli konuma git" @@ -129,6 +88,35 @@ msgstr "Ana Menü" msgid "Failed to connect to location service" msgstr "Konum hizmetine bağlanamadı" +#~ msgid "Map" +#~ msgstr "Harita" + +#~ msgid "View where to go" +#~ msgstr "Nereye gideceğinizi görün" + +#~ msgid "Trip;Explore;" +#~ msgstr "Trip;Explore;Gezi;Seyahat;Yolculuk;Keşfet;" + +#~ msgid "A map app that helps you to see where you want to go." +#~ msgstr "" +#~ "Nereye gitmek istediğinizi görmenize yardımcı olan bir harita uygulaması." + +#~ msgid "Features include:" +#~ msgstr "Özellikler:" + +#~ msgid "Search any place" +#~ msgstr "Herhangi bir yeri arayın" + +#~ msgid "Jump to your current location instantly" +#~ msgstr "Geçerli konumunuza anında atlayın" + +#~ msgid "" +#~ "This is a fork of \"Atlas Maps\" and wouldn't exist without work of " +#~ "Steffen Schuhmann." +#~ msgstr "" +#~ "Bu, \"Atlas Maps\" uygulamasının bir çatalıdır ve Steffen Schuhmann'ın " +#~ "çalışmaları olmadan var olamazdı." + #~ msgid "@APP_NAME@" #~ msgstr "@APP_NAME@" diff --git a/po/uk.po b/po/uk.po index 690d249..1311018 100644 --- a/po/uk.po +++ b/po/uk.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: com.github.ryonakano.atlas\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-07-12 16:38+0900\n" +"POT-Creation-Date: 2025-07-12 16:41+0900\n" "PO-Revision-Date: 2025-03-25 00:04+0000\n" "Last-Translator: Ihor Hordiichuk \n" "Language-Team: Ukrainian =20) ? 1 : 2);\n" "X-Generator: Weblate 5.11-dev\n" -#: data/atlas.desktop.in:2 data/atlas.metainfo.xml.in:10 src/MainWindow.vala:45 -msgid "Atlas" -msgstr "Atlas" - -#: data/atlas.desktop.in:3 -msgid "Map" -msgstr "Мапа" - -#: data/atlas.desktop.in:4 data/atlas.metainfo.xml.in:11 -msgid "View where to go" -msgstr "Переглядайте, куди йти" - -#: data/atlas.desktop.in:10 -msgid "Trip;Explore;" -msgstr "Подорож;Відкриття;Trip;Explore;" - -#: data/atlas.metainfo.xml.in:13 -msgid "A map app that helps you to see where you want to go." -msgstr "" -"Картографічний застосунок, який допоможе вам дізнатися, як дістатися " -"потрібного місця." - -#: data/atlas.metainfo.xml.in:16 -msgid "Features include:" -msgstr "До особливостей належать:" - -#: data/atlas.metainfo.xml.in:18 -msgid "Search any place" -msgstr "Пошук будь-якого місця" - -#: data/atlas.metainfo.xml.in:19 -msgid "Jump to your current location instantly" -msgstr "Миттєвий перехід до свого поточного місцеперебування" - -#: data/atlas.metainfo.xml.in:21 -msgid "" -"This is a fork of \"Atlas Maps\" and wouldn't exist without work of Steffen " -"Schuhmann." -msgstr "" -"Це відгалуження «Atlas Maps», і проєкт не існував би без роботи Steffen " -"Schuhmann." - -#: data/atlas.metainfo.xml.in:28 data/atlas.metainfo.xml.in:32 -msgid "See locations on a map" -msgstr "" - #: src/MainWindow.vala:33 msgid "Unknown" msgstr "Невідомо" +#: src/MainWindow.vala:45 +msgid "Atlas" +msgstr "Atlas" + #: src/MainWindow.vala:51 msgid "Move to the current location" msgstr "Перейти до поточного розташування" @@ -130,6 +88,36 @@ msgstr "Головне меню" msgid "Failed to connect to location service" msgstr "Не вдалося під'єднатися до служби визначення розташування" +#~ msgid "Map" +#~ msgstr "Мапа" + +#~ msgid "View where to go" +#~ msgstr "Переглядайте, куди йти" + +#~ msgid "Trip;Explore;" +#~ msgstr "Подорож;Відкриття;Trip;Explore;" + +#~ msgid "A map app that helps you to see where you want to go." +#~ msgstr "" +#~ "Картографічний застосунок, який допоможе вам дізнатися, як дістатися " +#~ "потрібного місця." + +#~ msgid "Features include:" +#~ msgstr "До особливостей належать:" + +#~ msgid "Search any place" +#~ msgstr "Пошук будь-якого місця" + +#~ msgid "Jump to your current location instantly" +#~ msgstr "Миттєвий перехід до свого поточного місцеперебування" + +#~ msgid "" +#~ "This is a fork of \"Atlas Maps\" and wouldn't exist without work of " +#~ "Steffen Schuhmann." +#~ msgstr "" +#~ "Це відгалуження «Atlas Maps», і проєкт не існував би без роботи Steffen " +#~ "Schuhmann." + #~ msgid "Map_nik" #~ msgstr "Map_nik" From bc678c3a88dafdb89efc64a753e86c05780e877f Mon Sep 17 00:00:00 2001 From: Ryo Nakano Date: Sat, 12 Jul 2025 16:48:36 +0900 Subject: [PATCH 3/5] Cleanup --- po/de.po | 10 ------- po/es.po | 46 ---------------------------- po/et.po | 53 --------------------------------- po/extra/de.po | 33 -------------------- po/extra/es.po | 64 --------------------------------------- po/extra/et.po | 70 ------------------------------------------- po/extra/fi.po | 46 ---------------------------- po/extra/fr.po | 70 ------------------------------------------- po/extra/hi.po | 61 ------------------------------------- po/extra/it.po | 68 ------------------------------------------ po/extra/ja.po | 76 ----------------------------------------------- po/extra/lt.po | 38 ------------------------ po/extra/nb_NO.po | 49 ------------------------------ po/extra/nl.po | 49 ------------------------------ po/extra/pl.po | 49 ------------------------------ po/extra/pt.po | 49 ------------------------------ po/extra/pt_BR.po | 3 -- po/extra/ru.po | 58 ------------------------------------ po/extra/sk.po | 49 ------------------------------ po/extra/ta.po | 67 ----------------------------------------- po/extra/tr.po | 64 --------------------------------------- po/extra/uk.po | 76 ----------------------------------------------- po/fi.po | 13 -------- po/fr.po | 55 ---------------------------------- po/hi.po | 43 --------------------------- po/it.po | 53 --------------------------------- po/ja.po | 59 ------------------------------------ po/lt.po | 37 ----------------------- po/nb_NO.po | 40 ------------------------- po/nl.po | 40 ------------------------- po/pl.po | 39 ------------------------ po/pt.po | 40 ------------------------- po/pt_BR.po | 3 -- po/ru.po | 46 ---------------------------- po/sk.po | 42 -------------------------- po/ta.po | 46 ---------------------------- po/tr.po | 47 ----------------------------- po/uk.po | 58 ------------------------------------ 38 files changed, 1809 deletions(-) diff --git a/po/de.po b/po/de.po index 102e754..ba69fd9 100644 --- a/po/de.po +++ b/po/de.po @@ -84,13 +84,3 @@ msgstr "" #: src/MainWindow.vala:150 msgid "Failed to connect to location service" msgstr "" - -#, fuzzy -#~ msgid "Jump to your current location instantly" -#~ msgstr "Ihr aktueller Standort wird erkennt …" - -#~ msgid "@APP_NAME@" -#~ msgstr "@APP_NAME@" - -#~ msgid "Preferences" -#~ msgstr "Einstellungen" diff --git a/po/es.po b/po/es.po index adbb6b4..9636213 100644 --- a/po/es.po +++ b/po/es.po @@ -85,49 +85,3 @@ msgstr "Menú principal" #: src/MainWindow.vala:150 msgid "Failed to connect to location service" msgstr "Falló la conexión al servicio de localización" - -#~ msgid "Map" -#~ msgstr "Mapa" - -#~ msgid "View where to go" -#~ msgstr "Dónde ir" - -#~ msgid "Trip;Explore;" -#~ msgstr "Viaje;Explora;" - -#~ msgid "A map app that helps you to see where you want to go." -#~ msgstr "Una aplicación de mapas que te ayuda a ver a dónde quieres ir." - -#~ msgid "Features include:" -#~ msgstr "Las características incluyen:" - -#~ msgid "Search any place" -#~ msgstr "Busca en cualquier lugar" - -#~ msgid "Jump to your current location instantly" -#~ msgstr "Salta a tu ubicación actual al instante" - -#~ msgid "" -#~ "This is a fork of \"Atlas Maps\" and wouldn't exist without work of " -#~ "Steffen Schuhmann." -#~ msgstr "" -#~ "Se trata de una bifurcación de \"Atlas Maps\" y no existiría sin el " -#~ "trabajo de Steffen Schuhmann." - -#~ msgid "@APP_NAME@" -#~ msgstr "@APP_NAME@" - -#~ msgid "App window in the light mode" -#~ msgstr "Ventana de la aplicación en modo claro." - -#~ msgid "App window in the dark mode" -#~ msgstr "Ventana de la aplicación en modo oscuro." - -#~ msgid "Try changing the search term." -#~ msgstr "Prueba a cambiar el término de la búsqueda." - -#~ msgid "Preferences" -#~ msgstr "Preferencias" - -#~ msgid "Search where to go" -#~ msgstr "Buscar un destino" diff --git a/po/et.po b/po/et.po index 1b7c018..140f0e9 100644 --- a/po/et.po +++ b/po/et.po @@ -85,56 +85,3 @@ msgstr "Põhimenüü" #: src/MainWindow.vala:150 msgid "Failed to connect to location service" msgstr "Ei õnnestunud luua ühendust asukoha tuvastamise teenusega" - -#~ msgid "Map" -#~ msgstr "Kaart" - -#~ msgid "View where to go" -#~ msgstr "Vaata, kuhu saad jõuda" - -#~ msgid "Trip;Explore;" -#~ msgstr "map;atlas;reisima;reisimine;kaart;kaardid;teekond;teekonnad;sõitmine;kõndimine;matkamine;" - -#~ msgid "A map app that helps you to see where you want to go." -#~ msgstr "Kaart, mis aitab sul selgust saada oma teekonnast." - -#~ msgid "Features include:" -#~ msgstr "Funktsionaalsused:" - -#~ msgid "Search any place" -#~ msgstr "Otsi kõiki asukohti" - -#~ msgid "Jump to your current location instantly" -#~ msgstr "Näita lennult praegust asukohta" - -#~ msgid "" -#~ "This is a fork of \"Atlas Maps\" and wouldn't exist without work of " -#~ "Steffen Schuhmann." -#~ msgstr "" -#~ "See rakendus on edasiarendus rakendusest „Atlas Maps“ ning teda poleks " -#~ "olemas ilma Steffen Schuhmanni panuseta." - -#~ msgid "See locations on a map" -#~ msgstr "Vaata asukohti kaardil" - -#~ msgid "Map_nik" -#~ msgstr "Map_nik" - -#~ msgid "@APP_NAME@" -#~ msgstr "@APP_NAME@" - -#~ msgid "App window in the light mode" -#~ msgstr "Heledas kujunduses rakenduse aken" - -#~ msgid "App window in the dark mode" -#~ msgstr "Tumedas kujunduses rakenduse aken" - -#~ msgid "translator-credits" -#~ msgstr "Priit Jõerüüt 2024-2025" - -#, c-format -#~ msgid "_About %s" -#~ msgstr "R_akenduse teave: %s" - -#~ msgid "Try changing the search term." -#~ msgstr "Proovi muuta otsingusõna." diff --git a/po/extra/de.po b/po/extra/de.po index a4d0d1e..4945440 100644 --- a/po/extra/de.po +++ b/po/extra/de.po @@ -61,36 +61,3 @@ msgstr "" #: data/atlas.metainfo.xml.in:28 data/atlas.metainfo.xml.in:32 msgid "See locations on a map" msgstr "" - -#, fuzzy -#~ msgid "Move to the current location" -#~ msgstr "Ihr aktueller Standort wird erkennt …" - -#~ msgid "Search Location" -#~ msgstr "Standort suchen" - -#, fuzzy -#~ msgid "System" -#~ msgstr "System" - -#, fuzzy -#~ msgid "Light" -#~ msgstr "Hell" - -#, fuzzy -#~ msgid "Dark" -#~ msgstr "Dunkel" - -#, fuzzy -#~ msgid "Transport" -#~ msgstr "Verkehrskarte" - -#, fuzzy -#~ msgid "Style" -#~ msgstr "Stil:" - -#~ msgid "@APP_NAME@" -#~ msgstr "@APP_NAME@" - -#~ msgid "Preferences" -#~ msgstr "Einstellungen" diff --git a/po/extra/es.po b/po/extra/es.po index 86c07c9..bf91d2c 100644 --- a/po/extra/es.po +++ b/po/extra/es.po @@ -62,67 +62,3 @@ msgstr "" #: data/atlas.metainfo.xml.in:28 data/atlas.metainfo.xml.in:32 msgid "See locations on a map" msgstr "" - -#~ msgid "Unknown" -#~ msgstr "Desconocido" - -#~ msgid "Move to the current location" -#~ msgstr "Desplazarse a la ubicación actual" - -#~ msgid "Search Location" -#~ msgstr "Buscar la ubicación" - -#, fuzzy -#~ msgid "No Results Found" -#~ msgstr "No hay resultados" - -#, fuzzy -#~ msgid "System" -#~ msgstr "Sistema" - -#, fuzzy -#~ msgid "Light" -#~ msgstr "Claro" - -#, fuzzy -#~ msgid "Dark" -#~ msgstr "Oscuro" - -#~ msgid "Mapnik" -#~ msgstr "Mapnik" - -#, fuzzy -#~ msgid "Transport" -#~ msgstr "Transporte" - -#, fuzzy -#~ msgid "Style" -#~ msgstr "Estilo" - -#, fuzzy -#~ msgid "Map Source" -#~ msgstr "Fuente del mapa" - -#~ msgid "Main Menu" -#~ msgstr "Menú principal" - -#~ msgid "Failed to connect to location service" -#~ msgstr "Falló la conexión al servicio de localización" - -#~ msgid "@APP_NAME@" -#~ msgstr "@APP_NAME@" - -#~ msgid "App window in the light mode" -#~ msgstr "Ventana de la aplicación en modo claro." - -#~ msgid "App window in the dark mode" -#~ msgstr "Ventana de la aplicación en modo oscuro." - -#~ msgid "Try changing the search term." -#~ msgstr "Prueba a cambiar el término de la búsqueda." - -#~ msgid "Preferences" -#~ msgstr "Preferencias" - -#~ msgid "Search where to go" -#~ msgstr "Buscar un destino" diff --git a/po/extra/et.po b/po/extra/et.po index dff840c..e11cc7d 100644 --- a/po/extra/et.po +++ b/po/extra/et.po @@ -63,73 +63,3 @@ msgstr "" #: data/atlas.metainfo.xml.in:28 data/atlas.metainfo.xml.in:32 msgid "See locations on a map" msgstr "Vaata asukohti kaardil" - -#~ msgid "Unknown" -#~ msgstr "Teadmata" - -#~ msgid "Move to the current location" -#~ msgstr "Näita praekust asukohta" - -#~ msgid "Search Location" -#~ msgstr "Otsi asukohta" - -#~ msgid "No Results Found" -#~ msgstr "Tulemusi ei leidu" - -#~ msgid "Try a different search" -#~ msgstr "Proovi teistsugust otsingut" - -#, fuzzy -#~ msgid "System" -#~ msgstr "S_üsteemi kujundus" - -#, fuzzy -#~ msgid "Light" -#~ msgstr "_Hele kujundus" - -#, fuzzy -#~ msgid "Dark" -#~ msgstr "_Tume kujundus" - -#~ msgid "Mapnik" -#~ msgstr "Mapnik" - -#, fuzzy -#~ msgid "Transport" -#~ msgstr "_Transport" - -#, fuzzy -#~ msgid "Style" -#~ msgstr "_Kujundus" - -#, fuzzy -#~ msgid "Map Source" -#~ msgstr "K_aardiallikas" - -#~ msgid "Main Menu" -#~ msgstr "Põhimenüü" - -#~ msgid "Failed to connect to location service" -#~ msgstr "Ei õnnestunud luua ühendust asukoha tuvastamise teenusega" - -#~ msgid "Map_nik" -#~ msgstr "Map_nik" - -#~ msgid "@APP_NAME@" -#~ msgstr "@APP_NAME@" - -#~ msgid "App window in the light mode" -#~ msgstr "Heledas kujunduses rakenduse aken" - -#~ msgid "App window in the dark mode" -#~ msgstr "Tumedas kujunduses rakenduse aken" - -#~ msgid "translator-credits" -#~ msgstr "Priit Jõerüüt 2024-2025" - -#, c-format -#~ msgid "_About %s" -#~ msgstr "R_akenduse teave: %s" - -#~ msgid "Try changing the search term." -#~ msgstr "Proovi muuta otsingusõna." diff --git a/po/extra/fi.po b/po/extra/fi.po index 6ac94b8..a326101 100644 --- a/po/extra/fi.po +++ b/po/extra/fi.po @@ -61,49 +61,3 @@ msgstr "" #: data/atlas.metainfo.xml.in:28 data/atlas.metainfo.xml.in:32 msgid "See locations on a map" msgstr "" - -#~ msgid "Unknown" -#~ msgstr "Tuntematon" - -#~ msgid "Move to the current location" -#~ msgstr "Siirrä nykyiseen sijaintiin" - -#~ msgid "Search Location" -#~ msgstr "Etsi sijaintia" - -#, fuzzy -#~ msgid "No Results Found" -#~ msgstr "Ei hakutuloksia" - -#, fuzzy -#~ msgid "System" -#~ msgstr "Järjestelmä" - -#, fuzzy -#~ msgid "Light" -#~ msgstr "Vaalea" - -#, fuzzy -#~ msgid "Dark" -#~ msgstr "Tumma" - -#, fuzzy -#~ msgid "Transport" -#~ msgstr "Liikkumiskartta" - -#, fuzzy -#~ msgid "Style" -#~ msgstr "Tyyli:" - -#, fuzzy -#~ msgid "Map Source" -#~ msgstr "Karttalähde:" - -#~ msgid "@APP_NAME@" -#~ msgstr "@APP_NAME@" - -#~ msgid "Try changing the search term." -#~ msgstr "Yritä eri hakuehdoilla." - -#~ msgid "Preferences" -#~ msgstr "Asetukset" diff --git a/po/extra/fr.po b/po/extra/fr.po index 152c9fa..e7ff9da 100644 --- a/po/extra/fr.po +++ b/po/extra/fr.po @@ -68,73 +68,3 @@ msgstr "" #: data/atlas.metainfo.xml.in:28 data/atlas.metainfo.xml.in:32 msgid "See locations on a map" msgstr "" - -#~ msgid "Unknown" -#~ msgstr "Inconnu" - -#~ msgid "Move to the current location" -#~ msgstr "Se déplacer à la position actuelle" - -#~ msgid "Search Location" -#~ msgstr "Rechercher un lieu" - -#~ msgid "No Results Found" -#~ msgstr "Aucun résultat trouvé" - -#~ msgid "Try a different search" -#~ msgstr "Essayez une recherche différente" - -#, fuzzy -#~ msgid "System" -#~ msgstr "S_ystème" - -#, fuzzy -#~ msgid "Light" -#~ msgstr "Clair" - -#, fuzzy -#~ msgid "Dark" -#~ msgstr "Sombre" - -#, fuzzy -#~ msgid "Transport" -#~ msgstr "_Transports" - -#, fuzzy -#~ msgid "Style" -#~ msgstr "_Style" - -#, fuzzy -#~ msgid "Map Source" -#~ msgstr "Source de la carte" - -#~ msgid "Main Menu" -#~ msgstr "Menu principal" - -#~ msgid "Failed to connect to location service" -#~ msgstr "Echec de la connexion au service de localisation" - -#~ msgid "Map_nik" -#~ msgstr "Map_nik" - -#~ msgid "@APP_NAME@" -#~ msgstr "@APP_NAME@" - -#~ msgid "App window in the light mode" -#~ msgstr "Vue des application en mode clair" - -#~ msgid "App window in the dark mode" -#~ msgstr "Vue des applications en mode sombre" - -#~ msgid "translator-credits" -#~ msgstr "Teamcons https://teamcons.carrd.co" - -#, c-format -#~ msgid "_About %s" -#~ msgstr "_A propos de %s" - -#~ msgid "Preferences" -#~ msgstr "Préférences" - -#~ msgid "Search where to go" -#~ msgstr "Cherchez où vous souhaitez vous rendre" diff --git a/po/extra/hi.po b/po/extra/hi.po index e617166..eceb03e 100644 --- a/po/extra/hi.po +++ b/po/extra/hi.po @@ -61,64 +61,3 @@ msgstr "" #: data/atlas.metainfo.xml.in:28 data/atlas.metainfo.xml.in:32 msgid "See locations on a map" msgstr "" - -#~ msgid "Unknown" -#~ msgstr "अज्ञात" - -#~ msgid "Move to the current location" -#~ msgstr "वर्तमान स्थान पर जाएं" - -#~ msgid "Search Location" -#~ msgstr "स्थान खोजें" - -#, fuzzy -#~ msgid "No Results Found" -#~ msgstr "कोई खोज परिणाम नहीं" - -#, fuzzy -#~ msgid "System" -#~ msgstr "सिस्टम" - -#, fuzzy -#~ msgid "Light" -#~ msgstr "हल्की" - -#, fuzzy -#~ msgid "Dark" -#~ msgstr "गहरी" - -#~ msgid "Mapnik" -#~ msgstr "मैपनिक" - -#, fuzzy -#~ msgid "Transport" -#~ msgstr "परिवहन" - -#, fuzzy -#~ msgid "Style" -#~ msgstr "शैली" - -#, fuzzy -#~ msgid "Map Source" -#~ msgstr "मानचित्र स्रोत" - -#~ msgid "Main Menu" -#~ msgstr "मुख्य मेनू" - -#~ msgid "Failed to connect to location service" -#~ msgstr "स्थान सेवा से जुड़ने में विफल" - -#~ msgid "@APP_NAME@" -#~ msgstr "@APP_NAME@" - -#~ msgid "App window in the light mode" -#~ msgstr "ऐप खिड़की हल्के मोड में" - -#~ msgid "App window in the dark mode" -#~ msgstr "ऐप खिड़की गहरे मोड में" - -#~ msgid "Try changing the search term." -#~ msgstr "खोज शब्द बदलने का प्रयास करें।" - -#~ msgid "Preferences" -#~ msgstr "प्राथमिकताएं" diff --git a/po/extra/it.po b/po/extra/it.po index 2a6e259..c697eb2 100644 --- a/po/extra/it.po +++ b/po/extra/it.po @@ -63,71 +63,3 @@ msgstr "" #: data/atlas.metainfo.xml.in:28 data/atlas.metainfo.xml.in:32 msgid "See locations on a map" msgstr "" - -#~ msgid "Unknown" -#~ msgstr "Sconosciuto" - -#~ msgid "Move to the current location" -#~ msgstr "Passa alla posizione corrente" - -#~ msgid "Search Location" -#~ msgstr "Cerca posizione" - -#, fuzzy -#~ msgid "No Results Found" -#~ msgstr "Nessun risultato trovato" - -#, fuzzy -#~ msgid "System" -#~ msgstr "Sistema" - -#, fuzzy -#~ msgid "Light" -#~ msgstr "Chiaro" - -#, fuzzy -#~ msgid "Dark" -#~ msgstr "Scuro" - -#, fuzzy -#~ msgid "Transport" -#~ msgstr "Trasporto" - -#, fuzzy -#~ msgid "Style" -#~ msgstr "Stile" - -#, fuzzy -#~ msgid "Map Source" -#~ msgstr "Fonte mappa" - -#~ msgid "Main Menu" -#~ msgstr "Menu principale" - -#~ msgid "Failed to connect to location service" -#~ msgstr "Impossibile connettersi al servizio di localizzazione" - -#~ msgid "@APP_NAME@" -#~ msgstr "@APP_NAME@" - -#~ msgid "App window in the light mode" -#~ msgstr "Finestra dell'app in modalità chiara" - -#~ msgid "App window in the dark mode" -#~ msgstr "Finestra dell'app in modalità scura" - -#~ msgid "translator-credits" -#~ msgstr "Albano Battistella " - -#, c-format -#~ msgid "_About %s" -#~ msgstr "_Informazioni su %s" - -#~ msgid "Try changing the search term." -#~ msgstr "Prova a cambiare il termine di ricerca." - -#~ msgid "Preferences" -#~ msgstr "Preferenze" - -#~ msgid "Search where to go" -#~ msgstr "Cerca dove andare" diff --git a/po/extra/ja.po b/po/extra/ja.po index 0b19166..32e7c71 100644 --- a/po/extra/ja.po +++ b/po/extra/ja.po @@ -63,79 +63,3 @@ msgstr "" #: data/atlas.metainfo.xml.in:28 data/atlas.metainfo.xml.in:32 msgid "See locations on a map" msgstr "地図上で場所を確認します" - -#~ msgid "Unknown" -#~ msgstr "不明" - -#~ msgid "Move to the current location" -#~ msgstr "現在地に移動" - -#~ msgid "Search Location" -#~ msgstr "場所を検索" - -#~ msgid "No Results Found" -#~ msgstr "見つかりませんでした" - -#~ msgid "Try a different search" -#~ msgstr "他のキーワードを試してください" - -#, fuzzy -#~ msgid "System" -#~ msgstr "システム(_Y)" - -#, fuzzy -#~ msgid "Light" -#~ msgstr "ライト(_L)" - -#, fuzzy -#~ msgid "Dark" -#~ msgstr "ダーク(_D)" - -#~ msgid "Mapnik" -#~ msgstr "Mapnik" - -#, fuzzy -#~ msgid "Transport" -#~ msgstr "交通(_T)" - -#, fuzzy -#~ msgid "Style" -#~ msgstr "スタイル(_S)" - -#, fuzzy -#~ msgid "Map Source" -#~ msgstr "マップ提供元(_M)" - -#~ msgid "Main Menu" -#~ msgstr "メインメニュー" - -#~ msgid "Failed to connect to location service" -#~ msgstr "位置情報サービスに接続できませんでした" - -#~ msgid "Map_nik" -#~ msgstr "Mapnik(_N)" - -#~ msgid "@APP_NAME@" -#~ msgstr "@APP_NAME@" - -#~ msgid "App window in the light mode" -#~ msgstr "ライトモードのアプリウィンドウ" - -#~ msgid "App window in the dark mode" -#~ msgstr "ダークモードのアプリウィンドウ" - -#~ msgid "translator-credits" -#~ msgstr "Ryo Nakano" - -#, c-format -#~ msgid "_About %s" -#~ msgstr "%s について(_A)" - -#~ msgid "Try changing the search term." -#~ msgstr "検索用語を変えてみてください。" - -#~ msgid "Preferences" -#~ msgstr "設定" - -#~ msgid "Search where to go" -#~ msgstr "行きたい場所を検索しましょう" diff --git a/po/extra/lt.po b/po/extra/lt.po index 5839e9a..607ca13 100644 --- a/po/extra/lt.po +++ b/po/extra/lt.po @@ -65,41 +65,3 @@ msgstr "" #: data/atlas.metainfo.xml.in:28 data/atlas.metainfo.xml.in:32 msgid "See locations on a map" msgstr "" - -#, fuzzy -#~ msgid "Move to the current location" -#~ msgstr "" -#~ "Nustatyti buvimo vietą (when enabled System Settings > Applications > " -#~ "Permissions)" - -#~ msgid "Search Location" -#~ msgstr "Vietos paieška" - -#, fuzzy -#~ msgid "System" -#~ msgstr "Sistema" - -#, fuzzy -#~ msgid "Light" -#~ msgstr "Šviesus" - -#, fuzzy -#~ msgid "Dark" -#~ msgstr "Tamsus" - -#, fuzzy -#~ msgid "Transport" -#~ msgstr "Kelialapis" - -#, fuzzy -#~ msgid "Style" -#~ msgstr "Stilius:" - -#~ msgid "@APP_NAME@" -#~ msgstr "@APP_NAME@" - -#~ msgid "Preferences" -#~ msgstr "Nustatymai" - -#~ msgid "Search where to go" -#~ msgstr "Kelionės paieška" diff --git a/po/extra/nb_NO.po b/po/extra/nb_NO.po index 099381c..5772907 100644 --- a/po/extra/nb_NO.po +++ b/po/extra/nb_NO.po @@ -63,52 +63,3 @@ msgstr "" #: data/atlas.metainfo.xml.in:28 data/atlas.metainfo.xml.in:32 msgid "See locations on a map" msgstr "" - -#~ msgid "Unknown" -#~ msgstr "Ukjent" - -#~ msgid "Move to the current location" -#~ msgstr "Flytt til nåværende mål" - -#~ msgid "Search Location" -#~ msgstr "Søk etter sted" - -#, fuzzy -#~ msgid "No Results Found" -#~ msgstr "Resultatløst" - -#, fuzzy -#~ msgid "System" -#~ msgstr "System" - -#, fuzzy -#~ msgid "Light" -#~ msgstr "Lys" - -#, fuzzy -#~ msgid "Dark" -#~ msgstr "Mørk" - -#, fuzzy -#~ msgid "Transport" -#~ msgstr "Transportkart" - -#, fuzzy -#~ msgid "Style" -#~ msgstr "Drakt" - -#, fuzzy -#~ msgid "Map Source" -#~ msgstr "Kartkilde:" - -#~ msgid "@APP_NAME@" -#~ msgstr "@APP_NAME@" - -#~ msgid "Try changing the search term." -#~ msgstr "Prøv å endre søket." - -#~ msgid "Preferences" -#~ msgstr "Innstillinger" - -#~ msgid "Search where to go" -#~ msgstr "Søk deg dit du skal" diff --git a/po/extra/nl.po b/po/extra/nl.po index 985a585..d56aae7 100644 --- a/po/extra/nl.po +++ b/po/extra/nl.po @@ -63,52 +63,3 @@ msgstr "" #: data/atlas.metainfo.xml.in:28 data/atlas.metainfo.xml.in:32 msgid "See locations on a map" msgstr "" - -#~ msgid "Unknown" -#~ msgstr "Onbekend" - -#~ msgid "Move to the current location" -#~ msgstr "Verplaatsen naar huidige locatie" - -#~ msgid "Search Location" -#~ msgstr "Locatie zoeken" - -#, fuzzy -#~ msgid "No Results Found" -#~ msgstr "Er zijn geen zoekresultaten" - -#, fuzzy -#~ msgid "System" -#~ msgstr "Systeem" - -#, fuzzy -#~ msgid "Light" -#~ msgstr "Licht" - -#, fuzzy -#~ msgid "Dark" -#~ msgstr "Donker" - -#, fuzzy -#~ msgid "Transport" -#~ msgstr "OV-kaart" - -#, fuzzy -#~ msgid "Style" -#~ msgstr "Thema:" - -#, fuzzy -#~ msgid "Map Source" -#~ msgstr "Kaartbron:" - -#~ msgid "@APP_NAME@" -#~ msgstr "@APP_NAME@" - -#~ msgid "Try changing the search term." -#~ msgstr "Probeer een andere zoekopdracht." - -#~ msgid "Preferences" -#~ msgstr "Voorkeuren" - -#~ msgid "Search where to go" -#~ msgstr "Zoek je bestemming" diff --git a/po/extra/pl.po b/po/extra/pl.po index 8d0a53a..0643108 100644 --- a/po/extra/pl.po +++ b/po/extra/pl.po @@ -63,52 +63,3 @@ msgstr "" #: data/atlas.metainfo.xml.in:28 data/atlas.metainfo.xml.in:32 msgid "See locations on a map" msgstr "" - -#~ msgid "Unknown" -#~ msgstr "Nieznane" - -#~ msgid "Move to the current location" -#~ msgstr "Przenieś do bieżącej lokalizacji" - -#~ msgid "Search Location" -#~ msgstr "Lokalizacja wyszukiwania" - -#, fuzzy -#~ msgid "No Results Found" -#~ msgstr "Brak wyników wyszukiwania" - -#, fuzzy -#~ msgid "System" -#~ msgstr "System" - -#, fuzzy -#~ msgid "Light" -#~ msgstr "Jasny" - -#, fuzzy -#~ msgid "Dark" -#~ msgstr "Ciemny" - -#, fuzzy -#~ msgid "Transport" -#~ msgstr "Mapa transportu" - -#, fuzzy -#~ msgid "Style" -#~ msgstr "Styl:" - -#, fuzzy -#~ msgid "Map Source" -#~ msgstr "Źródło mapy:" - -#~ msgid "@APP_NAME@" -#~ msgstr "@APP_NAME@" - -#~ msgid "Try changing the search term." -#~ msgstr "Spróbuj zmienić zapytanie wyszukiwania." - -#~ msgid "Preferences" -#~ msgstr "Preferencje" - -#~ msgid "Search where to go" -#~ msgstr "Szukaj gdzie iść" diff --git a/po/extra/pt.po b/po/extra/pt.po index a07056c..3147e14 100644 --- a/po/extra/pt.po +++ b/po/extra/pt.po @@ -64,52 +64,3 @@ msgstr "" #: data/atlas.metainfo.xml.in:28 data/atlas.metainfo.xml.in:32 msgid "See locations on a map" msgstr "" - -#~ msgid "Unknown" -#~ msgstr "Desconhecido" - -#~ msgid "Move to the current location" -#~ msgstr "Mover para a localização atual" - -#~ msgid "Search Location" -#~ msgstr "Procurar localização" - -#, fuzzy -#~ msgid "No Results Found" -#~ msgstr "Sem resultados de busca" - -#, fuzzy -#~ msgid "System" -#~ msgstr "Sistema" - -#, fuzzy -#~ msgid "Light" -#~ msgstr "Claro" - -#, fuzzy -#~ msgid "Dark" -#~ msgstr "Escuro" - -#, fuzzy -#~ msgid "Transport" -#~ msgstr "Mapa de transporte" - -#, fuzzy -#~ msgid "Style" -#~ msgstr "Estilo:" - -#, fuzzy -#~ msgid "Map Source" -#~ msgstr "Fonte do mapa:" - -#~ msgid "@APP_NAME@" -#~ msgstr "@APP_NAME@" - -#~ msgid "Try changing the search term." -#~ msgstr "Tente alterar o termo de pesquisa." - -#~ msgid "Preferences" -#~ msgstr "Preferências" - -#~ msgid "Search where to go" -#~ msgstr "Procurar para onde ir" diff --git a/po/extra/pt_BR.po b/po/extra/pt_BR.po index 5ec7dd1..7eba48f 100644 --- a/po/extra/pt_BR.po +++ b/po/extra/pt_BR.po @@ -60,6 +60,3 @@ msgstr "" #: data/atlas.metainfo.xml.in:28 data/atlas.metainfo.xml.in:32 msgid "See locations on a map" msgstr "" - -#~ msgid "@APP_NAME@" -#~ msgstr "@APP_NAME@" diff --git a/po/extra/ru.po b/po/extra/ru.po index dc1441a..607678e 100644 --- a/po/extra/ru.po +++ b/po/extra/ru.po @@ -63,61 +63,3 @@ msgstr "" #: data/atlas.metainfo.xml.in:28 data/atlas.metainfo.xml.in:32 msgid "See locations on a map" msgstr "" - -#~ msgid "Unknown" -#~ msgstr "Неизвестно" - -#~ msgid "Move to the current location" -#~ msgstr "Переместиться к текущему местоположению" - -#~ msgid "Search Location" -#~ msgstr "Искать место" - -#, fuzzy -#~ msgid "No Results Found" -#~ msgstr "Ничего не найдено" - -#, fuzzy -#~ msgid "System" -#~ msgstr "Система" - -#, fuzzy -#~ msgid "Light" -#~ msgstr "Светлый" - -#, fuzzy -#~ msgid "Dark" -#~ msgstr "Тёмный" - -#, fuzzy -#~ msgid "Transport" -#~ msgstr "Карта транспорта" - -#, fuzzy -#~ msgid "Style" -#~ msgstr "Стиль:" - -#, fuzzy -#~ msgid "Map Source" -#~ msgstr "Источник карты:" - -#~ msgid "Failed to connect to location service" -#~ msgstr "Не удалось подключиться к службе местоположения" - -#~ msgid "@APP_NAME@" -#~ msgstr "@APP_NAME@" - -#~ msgid "App window in the light mode" -#~ msgstr "Окно приложения в светлом режиме" - -#~ msgid "App window in the dark mode" -#~ msgstr "Окно приложения в тёмном режиме" - -#~ msgid "Try changing the search term." -#~ msgstr "Попробуйте изменить поисковой запрос." - -#~ msgid "Preferences" -#~ msgstr "Параметры" - -#~ msgid "Search where to go" -#~ msgstr "Ищите куда пойти" diff --git a/po/extra/sk.po b/po/extra/sk.po index ae767b2..1a544c4 100644 --- a/po/extra/sk.po +++ b/po/extra/sk.po @@ -66,52 +66,3 @@ msgstr "" #: data/atlas.metainfo.xml.in:28 data/atlas.metainfo.xml.in:32 msgid "See locations on a map" msgstr "" - -#~ msgid "Unknown" -#~ msgstr "Neznáme" - -#~ msgid "Move to the current location" -#~ msgstr "Presunúť sa na aktuálnu polohu" - -#~ msgid "Search Location" -#~ msgstr "Vyhľadať miesto" - -#, fuzzy -#~ msgid "No Results Found" -#~ msgstr "Žiadne výsledky vyhľadávania" - -#, fuzzy -#~ msgid "System" -#~ msgstr "Systém" - -#, fuzzy -#~ msgid "Light" -#~ msgstr "Svetlý" - -#, fuzzy -#~ msgid "Dark" -#~ msgstr "Tmavý" - -#, fuzzy -#~ msgid "Transport" -#~ msgstr "Dopravná mapa" - -#, fuzzy -#~ msgid "Style" -#~ msgstr "Štýl:" - -#, fuzzy -#~ msgid "Map Source" -#~ msgstr "Zdroj mapy:" - -#~ msgid "@APP_NAME@" -#~ msgstr "@APP_NAME@" - -#~ msgid "Try changing the search term." -#~ msgstr "Skúste zmeniť hľadaný výraz." - -#~ msgid "Preferences" -#~ msgstr "Predvoľby" - -#~ msgid "Search where to go" -#~ msgstr "Vyhľadajte miesto, kam chcete ísť" diff --git a/po/extra/ta.po b/po/extra/ta.po index 232bff8..9814821 100644 --- a/po/extra/ta.po +++ b/po/extra/ta.po @@ -60,70 +60,3 @@ msgstr "" #: data/atlas.metainfo.xml.in:28 data/atlas.metainfo.xml.in:32 msgid "See locations on a map" msgstr "" - -#~ msgid "Unknown" -#~ msgstr "தெரியவில்லை" - -#~ msgid "Move to the current location" -#~ msgstr "தற்போதைய இடத்திற்கு செல்லுங்கள்" - -#~ msgid "Search Location" -#~ msgstr "இடம் தேடல்" - -#~ msgid "No Results Found" -#~ msgstr "முடிவுகள் எதுவும் கிடைக்கவில்லை" - -#~ msgid "Try a different search" -#~ msgstr "வேறு தேடலை முயற்சிக்கவும்" - -#, fuzzy -#~ msgid "System" -#~ msgstr "முறைமை" - -#, fuzzy -#~ msgid "Light" -#~ msgstr "விளக்கு" - -#, fuzzy -#~ msgid "Dark" -#~ msgstr "இருண்ட" - -#~ msgid "Mapnik" -#~ msgstr "மேப்னிக்" - -#, fuzzy -#~ msgid "Transport" -#~ msgstr "போக்குவரத்து" - -#, fuzzy -#~ msgid "Style" -#~ msgstr "பாணி" - -#, fuzzy -#~ msgid "Map Source" -#~ msgstr "வரைபட மூலம்" - -#~ msgid "Main Menu" -#~ msgstr "பட்டியல் விளையாடுங்கள்" - -#~ msgid "Failed to connect to location service" -#~ msgstr "இருப்பிட சேவையுடன் இணைக்கத் தவறிவிட்டது" - -#~ msgid "Map_nik" -#~ msgstr "வரைபடம்" - -#~ msgid "@APP_NAME@" -#~ msgstr "@APP_NAME@" - -#~ msgid "App window in the light mode" -#~ msgstr "ஒளி பயன்முறையில் பயன்பாட்டு சாளரம்" - -#~ msgid "App window in the dark mode" -#~ msgstr "இருண்ட பயன்முறையில் பயன்பாட்டு சாளரம்" - -#~ msgid "translator-credits" -#~ msgstr "தமிழ்நேரம் (TamilNeram.github.io)" - -#, c-format -#~ msgid "_About %s" -#~ msgstr "%s பற்றி" diff --git a/po/extra/tr.po b/po/extra/tr.po index e4a5d15..f6f5f67 100644 --- a/po/extra/tr.po +++ b/po/extra/tr.po @@ -65,67 +65,3 @@ msgstr "" #: data/atlas.metainfo.xml.in:28 data/atlas.metainfo.xml.in:32 msgid "See locations on a map" msgstr "" - -#~ msgid "Unknown" -#~ msgstr "Bilinmiyor" - -#~ msgid "Move to the current location" -#~ msgstr "Geçerli konuma git" - -#~ msgid "Search Location" -#~ msgstr "Konum Ara" - -#, fuzzy -#~ msgid "No Results Found" -#~ msgstr "Arama Sonucu Yok" - -#, fuzzy -#~ msgid "System" -#~ msgstr "Sistem" - -#, fuzzy -#~ msgid "Light" -#~ msgstr "Açık" - -#, fuzzy -#~ msgid "Dark" -#~ msgstr "Koyu" - -#~ msgid "Mapnik" -#~ msgstr "Mapnik" - -#, fuzzy -#~ msgid "Transport" -#~ msgstr "Ulaşım" - -#, fuzzy -#~ msgid "Style" -#~ msgstr "Biçem" - -#, fuzzy -#~ msgid "Map Source" -#~ msgstr "Harita Kaynağı" - -#~ msgid "Main Menu" -#~ msgstr "Ana Menü" - -#~ msgid "Failed to connect to location service" -#~ msgstr "Konum hizmetine bağlanamadı" - -#~ msgid "@APP_NAME@" -#~ msgstr "@APP_NAME@" - -#~ msgid "App window in the light mode" -#~ msgstr "Uygulama penceresi açık kipte" - -#~ msgid "App window in the dark mode" -#~ msgstr "Uygulama penceresi koyu kipte" - -#~ msgid "Try changing the search term." -#~ msgstr "Arama terimini değiştirmeyi deneyin." - -#~ msgid "Preferences" -#~ msgstr "Tercihler" - -#~ msgid "Search where to go" -#~ msgstr "Nereye gideceğinizi arayın" diff --git a/po/extra/uk.po b/po/extra/uk.po index 9ac1d32..d519a59 100644 --- a/po/extra/uk.po +++ b/po/extra/uk.po @@ -67,79 +67,3 @@ msgstr "" #: data/atlas.metainfo.xml.in:28 data/atlas.metainfo.xml.in:32 msgid "See locations on a map" msgstr "" - -#~ msgid "Unknown" -#~ msgstr "Невідомо" - -#~ msgid "Move to the current location" -#~ msgstr "Перейти до поточного розташування" - -#~ msgid "Search Location" -#~ msgstr "Пошук розташування" - -#~ msgid "No Results Found" -#~ msgstr "Нічого не знайдено" - -#~ msgid "Try a different search" -#~ msgstr "Введіть інший запит" - -#, fuzzy -#~ msgid "System" -#~ msgstr "С_истемний" - -#, fuzzy -#~ msgid "Light" -#~ msgstr "_Світлий" - -#, fuzzy -#~ msgid "Dark" -#~ msgstr "_Темний" - -#~ msgid "Mapnik" -#~ msgstr "Mapnik" - -#, fuzzy -#~ msgid "Transport" -#~ msgstr "_Транспорт" - -#, fuzzy -#~ msgid "Style" -#~ msgstr "_Стиль" - -#, fuzzy -#~ msgid "Map Source" -#~ msgstr "_Джерело мапи" - -#~ msgid "Main Menu" -#~ msgstr "Головне меню" - -#~ msgid "Failed to connect to location service" -#~ msgstr "Не вдалося під'єднатися до служби визначення розташування" - -#~ msgid "Map_nik" -#~ msgstr "Map_nik" - -#~ msgid "@APP_NAME@" -#~ msgstr "@APP_NAME@" - -#~ msgid "App window in the light mode" -#~ msgstr "Вікно застосунку у світловому режимі" - -#~ msgid "App window in the dark mode" -#~ msgstr "Вікно застосунку у темному режимі" - -#~ msgid "translator-credits" -#~ msgstr "Ihor Hordiichuk" - -#, c-format -#~ msgid "_About %s" -#~ msgstr "_Про %s" - -#~ msgid "Try changing the search term." -#~ msgstr "Спробуйте змінити пошуковий запит." - -#~ msgid "Preferences" -#~ msgstr "Налаштування" - -#~ msgid "Search where to go" -#~ msgstr "Шукайте, куди йти" diff --git a/po/fi.po b/po/fi.po index a905c8c..3b9fb89 100644 --- a/po/fi.po +++ b/po/fi.po @@ -85,16 +85,3 @@ msgstr "" #: src/MainWindow.vala:150 msgid "Failed to connect to location service" msgstr "" - -#, fuzzy -#~ msgid "Jump to your current location instantly" -#~ msgstr "Siirrä nykyiseen sijaintiin" - -#~ msgid "@APP_NAME@" -#~ msgstr "@APP_NAME@" - -#~ msgid "Try changing the search term." -#~ msgstr "Yritä eri hakuehdoilla." - -#~ msgid "Preferences" -#~ msgstr "Asetukset" diff --git a/po/fr.po b/po/fr.po index cc2df06..2f22202 100644 --- a/po/fr.po +++ b/po/fr.po @@ -88,58 +88,3 @@ msgstr "Menu principal" #: src/MainWindow.vala:150 msgid "Failed to connect to location service" msgstr "Echec de la connexion au service de localisation" - -#~ msgid "Map" -#~ msgstr "Carte" - -#~ msgid "View where to go" -#~ msgstr "Visualisez où vous souhaitez vous rendre" - -#~ msgid "Trip;Explore;" -#~ msgstr "Voyage;Explorer;" - -#~ msgid "A map app that helps you to see where you want to go." -#~ msgstr "" -#~ "Une application de cartes pour vous aider à visualiser les lieux ou vous " -#~ "souhaitez vous rendre." - -#~ msgid "Features include:" -#~ msgstr "Fonctionnalités incluses :" - -#~ msgid "Search any place" -#~ msgstr "Recherchez n'importe quel lieu" - -#~ msgid "Jump to your current location instantly" -#~ msgstr "Affichez votre position actuelle en un instant" - -#~ msgid "" -#~ "This is a fork of \"Atlas Maps\" and wouldn't exist without work of " -#~ "Steffen Schuhmann." -#~ msgstr "" -#~ "Ceci est un fork de « Atlas Maps » qui n’existerait pas sans le travail " -#~ "de Steffen Schuhmann." - -#~ msgid "Map_nik" -#~ msgstr "Map_nik" - -#~ msgid "@APP_NAME@" -#~ msgstr "@APP_NAME@" - -#~ msgid "App window in the light mode" -#~ msgstr "Vue des application en mode clair" - -#~ msgid "App window in the dark mode" -#~ msgstr "Vue des applications en mode sombre" - -#~ msgid "translator-credits" -#~ msgstr "Teamcons https://teamcons.carrd.co" - -#, c-format -#~ msgid "_About %s" -#~ msgstr "_A propos de %s" - -#~ msgid "Preferences" -#~ msgstr "Préférences" - -#~ msgid "Search where to go" -#~ msgstr "Cherchez où vous souhaitez vous rendre" diff --git a/po/hi.po b/po/hi.po index 8124a55..afb152e 100644 --- a/po/hi.po +++ b/po/hi.po @@ -84,46 +84,3 @@ msgstr "मुख्य मेनू" #: src/MainWindow.vala:150 msgid "Failed to connect to location service" msgstr "स्थान सेवा से जुड़ने में विफल" - -#~ msgid "Map" -#~ msgstr "मानचित्र" - -#~ msgid "View where to go" -#~ msgstr "देखें कि कहां जाना है" - -#~ msgid "Trip;Explore;" -#~ msgstr "यात्रा;अन्वेषण;" - -#~ msgid "A map app that helps you to see where you want to go." -#~ msgstr "एक मानचित्र ऐप जो आपको यह देखने में मदद करता है कि आप कहां जाना चाहते हैं।" - -#~ msgid "Features include:" -#~ msgstr "शामिल विशेषताएं:" - -#~ msgid "Search any place" -#~ msgstr "कोई भी जगह खोजें" - -#~ msgid "Jump to your current location instantly" -#~ msgstr "तुरंत अपने वर्तमान स्थान पर जाएं" - -#~ msgid "" -#~ "This is a fork of \"Atlas Maps\" and wouldn't exist without work of " -#~ "Steffen Schuhmann." -#~ msgstr "" -#~ "यह \"Atlas Maps\" का एक फोर्क है और जो स्टीफ़न शूहमैन के काम के बिना अस्तित्व में नहीं " -#~ "होता।" - -#~ msgid "@APP_NAME@" -#~ msgstr "@APP_NAME@" - -#~ msgid "App window in the light mode" -#~ msgstr "ऐप खिड़की हल्के मोड में" - -#~ msgid "App window in the dark mode" -#~ msgstr "ऐप खिड़की गहरे मोड में" - -#~ msgid "Try changing the search term." -#~ msgstr "खोज शब्द बदलने का प्रयास करें।" - -#~ msgid "Preferences" -#~ msgstr "प्राथमिकताएं" diff --git a/po/it.po b/po/it.po index b7e33dc..93feb1d 100644 --- a/po/it.po +++ b/po/it.po @@ -86,56 +86,3 @@ msgstr "Menu principale" #: src/MainWindow.vala:150 msgid "Failed to connect to location service" msgstr "Impossibile connettersi al servizio di localizzazione" - -#~ msgid "Map" -#~ msgstr "Mappa" - -#~ msgid "View where to go" -#~ msgstr "Visualizza dove vuoi andare" - -#~ msgid "Trip;Explore;" -#~ msgstr "Viaggio;Esplora;" - -#~ msgid "A map app that helps you to see where you want to go." -#~ msgstr "Un'app per mappe che ti aiuta a vedere dove vuoi andare." - -#~ msgid "Features include:" -#~ msgstr "Le caratteristiche includono:" - -#~ msgid "Search any place" -#~ msgstr "Cerca qualsiasi luogo" - -#~ msgid "Jump to your current location instantly" -#~ msgstr "Passa istantaneamente alla tua posizione attuale" - -#~ msgid "" -#~ "This is a fork of \"Atlas Maps\" and wouldn't exist without work of " -#~ "Steffen Schuhmann." -#~ msgstr "" -#~ "Questo è un fork di \"Atlas Maps\" e non esisterebbe senza il lavoro di " -#~ "Steffen Schuhmann." - -#~ msgid "@APP_NAME@" -#~ msgstr "@APP_NAME@" - -#~ msgid "App window in the light mode" -#~ msgstr "Finestra dell'app in modalità chiara" - -#~ msgid "App window in the dark mode" -#~ msgstr "Finestra dell'app in modalità scura" - -#~ msgid "translator-credits" -#~ msgstr "Albano Battistella " - -#, c-format -#~ msgid "_About %s" -#~ msgstr "_Informazioni su %s" - -#~ msgid "Try changing the search term." -#~ msgstr "Prova a cambiare il termine di ricerca." - -#~ msgid "Preferences" -#~ msgstr "Preferenze" - -#~ msgid "Search where to go" -#~ msgstr "Cerca dove andare" diff --git a/po/ja.po b/po/ja.po index d83f2e8..1a44597 100644 --- a/po/ja.po +++ b/po/ja.po @@ -85,62 +85,3 @@ msgstr "メインメニュー" #: src/MainWindow.vala:150 msgid "Failed to connect to location service" msgstr "位置情報サービスに接続できませんでした" - -#~ msgid "Map" -#~ msgstr "地図" - -#~ msgid "View where to go" -#~ msgstr "行きたい場所を見ましょう" - -#~ msgid "Trip;Explore;" -#~ msgstr "旅行;冒険;探索;" - -#~ msgid "A map app that helps you to see where you want to go." -#~ msgstr "行き先を探すのに便利な地図アプリです。" - -#~ msgid "Features include:" -#~ msgstr "含まれる機能:" - -#~ msgid "Search any place" -#~ msgstr "場所を検索できます" - -#~ msgid "Jump to your current location instantly" -#~ msgstr "現在地をすぐに表示できます" - -#~ msgid "" -#~ "This is a fork of \"Atlas Maps\" and wouldn't exist without work of " -#~ "Steffen Schuhmann." -#~ msgstr "" -#~ "このアプリは、\"Atlas Maps\" をフォークして開発されました。Steffen " -#~ "Schuhmann に感謝申し上げます。" - -#~ msgid "See locations on a map" -#~ msgstr "地図上で場所を確認します" - -#~ msgid "Map_nik" -#~ msgstr "Mapnik(_N)" - -#~ msgid "@APP_NAME@" -#~ msgstr "@APP_NAME@" - -#~ msgid "App window in the light mode" -#~ msgstr "ライトモードのアプリウィンドウ" - -#~ msgid "App window in the dark mode" -#~ msgstr "ダークモードのアプリウィンドウ" - -#~ msgid "translator-credits" -#~ msgstr "Ryo Nakano" - -#, c-format -#~ msgid "_About %s" -#~ msgstr "%s について(_A)" - -#~ msgid "Try changing the search term." -#~ msgstr "検索用語を変えてみてください。" - -#~ msgid "Preferences" -#~ msgstr "設定" - -#~ msgid "Search where to go" -#~ msgstr "行きたい場所を検索しましょう" diff --git a/po/lt.po b/po/lt.po index 57e25d8..c5448d3 100644 --- a/po/lt.po +++ b/po/lt.po @@ -89,40 +89,3 @@ msgstr "" #: src/MainWindow.vala:150 msgid "Failed to connect to location service" msgstr "" - -#~ msgid "Map" -#~ msgstr "Kelialapis" - -#~ msgid "View where to go" -#~ msgstr "Nustatykime kelionės tikslą" - -#~ msgid "Trip;Explore;" -#~ msgstr "Kelionė;Tyrinėti;" - -#~ msgid "A map app that helps you to see where you want to go." -#~ msgstr "Kelialapio programėlė leidžianti matyti nustatytą kelionės tikslą." - -#~ msgid "Features include:" -#~ msgstr "Išskirtinės savybės:" - -#~ msgid "Search any place" -#~ msgstr "Atsitiktinė vietos paieška" - -#~ msgid "Jump to your current location instantly" -#~ msgstr "Akimirksniu nustatyti mano buvimo vietą" - -#~ msgid "" -#~ "This is a fork of \"Atlas Maps\" and wouldn't exist without work of " -#~ "Steffen Schuhmann." -#~ msgstr "" -#~ "Tai yra atšaka originalaus \"Atlas Maps\", kuri neegzistuotų be Stefano " -#~ "Schuhmano darbo." - -#~ msgid "@APP_NAME@" -#~ msgstr "@APP_NAME@" - -#~ msgid "Preferences" -#~ msgstr "Nustatymai" - -#~ msgid "Search where to go" -#~ msgstr "Kelionės paieška" diff --git a/po/nb_NO.po b/po/nb_NO.po index 987e701..ed67c27 100644 --- a/po/nb_NO.po +++ b/po/nb_NO.po @@ -86,43 +86,3 @@ msgstr "" #: src/MainWindow.vala:150 msgid "Failed to connect to location service" msgstr "" - -#~ msgid "Map" -#~ msgstr "Kart" - -#~ msgid "View where to go" -#~ msgstr "Vis hvor du skal" - -#~ msgid "Trip;Explore;" -#~ msgstr "Tur;Utforsker;kart;planlegging;" - -#~ msgid "A map app that helps you to see where you want to go." -#~ msgstr "Et kartprogram som hjelper deg å visualisere hvor du skal." - -#~ msgid "Features include:" -#~ msgstr "Funksjoner:" - -#~ msgid "Search any place" -#~ msgstr "Søk etter steder" - -#~ msgid "Jump to your current location instantly" -#~ msgstr "Hopp til nåværende sted umiddelbart" - -#~ msgid "" -#~ "This is a fork of \"Atlas Maps\" and wouldn't exist without work of " -#~ "Steffen Schuhmann." -#~ msgstr "" -#~ "Dette er en forgrening av «Atlas Maps» og ville ikke eksistert uten " -#~ "Steffen Schuhmann." - -#~ msgid "@APP_NAME@" -#~ msgstr "@APP_NAME@" - -#~ msgid "Try changing the search term." -#~ msgstr "Prøv å endre søket." - -#~ msgid "Preferences" -#~ msgstr "Innstillinger" - -#~ msgid "Search where to go" -#~ msgstr "Søk deg dit du skal" diff --git a/po/nl.po b/po/nl.po index c7cc0b1..73e0958 100644 --- a/po/nl.po +++ b/po/nl.po @@ -86,43 +86,3 @@ msgstr "" #: src/MainWindow.vala:150 msgid "Failed to connect to location service" msgstr "" - -#~ msgid "Map" -#~ msgstr "Kaart" - -#~ msgid "View where to go" -#~ msgstr "Bekijk waar je heen moet" - -#~ msgid "Trip;Explore;" -#~ msgstr "Reis;Verkennen;Kaart;" - -#~ msgid "A map app that helps you to see where you want to go." -#~ msgstr "Een kaarttoepassing die je naar je bestemming begeleidt." - -#~ msgid "Features include:" -#~ msgstr "Kenmerken:" - -#~ msgid "Search any place" -#~ msgstr "Zoek naar elke willekeurige locatie" - -#~ msgid "Jump to your current location instantly" -#~ msgstr "Ga direct naar je huidige locatie" - -#~ msgid "" -#~ "This is a fork of \"Atlas Maps\" and wouldn't exist without work of " -#~ "Steffen Schuhmann." -#~ msgstr "" -#~ "Dit project is een afsplitsing van Atlas Maps en zou niet bestaan hebben " -#~ "zonder het werk van Steffen Schuhmann." - -#~ msgid "@APP_NAME@" -#~ msgstr "@APP_NAME@" - -#~ msgid "Try changing the search term." -#~ msgstr "Probeer een andere zoekopdracht." - -#~ msgid "Preferences" -#~ msgstr "Voorkeuren" - -#~ msgid "Search where to go" -#~ msgstr "Zoek je bestemming" diff --git a/po/pl.po b/po/pl.po index 0e4bf41..f978471 100644 --- a/po/pl.po +++ b/po/pl.po @@ -87,42 +87,3 @@ msgstr "" #: src/MainWindow.vala:150 msgid "Failed to connect to location service" msgstr "" - -#~ msgid "Map" -#~ msgstr "Mapa" - -#~ msgid "View where to go" -#~ msgstr "Wyświetl, dokąd iść" - -#~ msgid "Trip;Explore;" -#~ msgstr "Wycieczka; Odkryj;" - -#~ msgid "A map app that helps you to see where you want to go." -#~ msgstr "Aplikacja map, która pomaga zobaczyć, dokąd chcesz iść." - -#~ msgid "Features include:" -#~ msgstr "Funkcje obejmują:" - -#~ msgid "Search any place" -#~ msgstr "Szukaj w dowolnym miejscu" - -#~ msgid "Jump to your current location instantly" -#~ msgstr "Natychmiastowe przejście do bieżącej lokalizacji" - -#~ msgid "" -#~ "This is a fork of \"Atlas Maps\" and wouldn't exist without work of " -#~ "Steffen Schuhmann." -#~ msgstr "" -#~ "To widelec \"Atlas Maps\" i nie istniałby bez pracy Steffena Schuhmanna." - -#~ msgid "@APP_NAME@" -#~ msgstr "@APP_NAME@" - -#~ msgid "Try changing the search term." -#~ msgstr "Spróbuj zmienić zapytanie wyszukiwania." - -#~ msgid "Preferences" -#~ msgstr "Preferencje" - -#~ msgid "Search where to go" -#~ msgstr "Szukaj gdzie iść" diff --git a/po/pt.po b/po/pt.po index 5bf31a5..2df31c4 100644 --- a/po/pt.po +++ b/po/pt.po @@ -87,43 +87,3 @@ msgstr "" #: src/MainWindow.vala:150 msgid "Failed to connect to location service" msgstr "" - -#~ msgid "Map" -#~ msgstr "Mapa" - -#~ msgid "View where to go" -#~ msgstr "Veja para onde ir" - -#~ msgid "Trip;Explore;" -#~ msgstr "Trip;Explore;Viagem;Explorar;" - -#~ msgid "A map app that helps you to see where you want to go." -#~ msgstr "Uma aplicação de mapa que o ajuda a ver para onde quer ir." - -#~ msgid "Features include:" -#~ msgstr "Funcionalidades incluídas:" - -#~ msgid "Search any place" -#~ msgstr "Procurar qualquer lugar" - -#~ msgid "Jump to your current location instantly" -#~ msgstr "Vá instantaneamente para a sua localização atual" - -#~ msgid "" -#~ "This is a fork of \"Atlas Maps\" and wouldn't exist without work of " -#~ "Steffen Schuhmann." -#~ msgstr "" -#~ "Isto é uma bifurcação do \"Atlas Maps\" e não existiria sem o trabalho de " -#~ "Steffen Schuhmann." - -#~ msgid "@APP_NAME@" -#~ msgstr "@APP_NAME@" - -#~ msgid "Try changing the search term." -#~ msgstr "Tente alterar o termo de pesquisa." - -#~ msgid "Preferences" -#~ msgstr "Preferências" - -#~ msgid "Search where to go" -#~ msgstr "Procurar para onde ir" diff --git a/po/pt_BR.po b/po/pt_BR.po index efcdf73..50b5222 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -78,6 +78,3 @@ msgstr "" #: src/MainWindow.vala:150 msgid "Failed to connect to location service" msgstr "" - -#~ msgid "@APP_NAME@" -#~ msgstr "@APP_NAME@" diff --git a/po/ru.po b/po/ru.po index 044be45..4855567 100644 --- a/po/ru.po +++ b/po/ru.po @@ -86,49 +86,3 @@ msgstr "" #: src/MainWindow.vala:150 msgid "Failed to connect to location service" msgstr "Не удалось подключиться к службе местоположения" - -#~ msgid "Map" -#~ msgstr "Карта" - -#~ msgid "View where to go" -#~ msgstr "Смотрите куда идти" - -#~ msgid "Trip;Explore;" -#~ msgstr "Путешествие;Исследовать;" - -#~ msgid "A map app that helps you to see where you want to go." -#~ msgstr "Карта, которая помогает вам смотреть куда вы хотите пойти." - -#~ msgid "Features include:" -#~ msgstr "Функции:" - -#~ msgid "Search any place" -#~ msgstr "Ищите любое место" - -#~ msgid "Jump to your current location instantly" -#~ msgstr "Мгновенно переместитесь к вашему текущему местоположению" - -#~ msgid "" -#~ "This is a fork of \"Atlas Maps\" and wouldn't exist without work of " -#~ "Steffen Schuhmann." -#~ msgstr "" -#~ "Это форк приложения «Atlas Maps», и оно не могло бы существовать без " -#~ "работы Steffen Schuhmann." - -#~ msgid "@APP_NAME@" -#~ msgstr "@APP_NAME@" - -#~ msgid "App window in the light mode" -#~ msgstr "Окно приложения в светлом режиме" - -#~ msgid "App window in the dark mode" -#~ msgstr "Окно приложения в тёмном режиме" - -#~ msgid "Try changing the search term." -#~ msgstr "Попробуйте изменить поисковой запрос." - -#~ msgid "Preferences" -#~ msgstr "Параметры" - -#~ msgid "Search where to go" -#~ msgstr "Ищите куда пойти" diff --git a/po/sk.po b/po/sk.po index 0bcc0ba..61ea1f0 100644 --- a/po/sk.po +++ b/po/sk.po @@ -87,45 +87,3 @@ msgstr "" #: src/MainWindow.vala:150 msgid "Failed to connect to location service" msgstr "" - -#~ msgid "Map" -#~ msgstr "Mapa" - -#~ msgid "View where to go" -#~ msgstr "Zobrazte si, kam chcete ísť" - -#~ msgid "Trip;Explore;" -#~ msgstr "Výlet;Objaviť;Preskúmať;" - -#~ msgid "A map app that helps you to see where you want to go." -#~ msgstr "" -#~ "Mapová aplikácia, ktorá vám pomôže zobraziť si miesto, na ktoré sa " -#~ "chystáte ísť." - -#~ msgid "Features include:" -#~ msgstr "Funkcie zahŕňajú:" - -#~ msgid "Search any place" -#~ msgstr "Vyhľadajte akékoľvek miesto" - -#~ msgid "Jump to your current location instantly" -#~ msgstr "Presuňte sa na vašu aktuálnu polohu okamžite jedným klikom" - -#~ msgid "" -#~ "This is a fork of \"Atlas Maps\" and wouldn't exist without work of " -#~ "Steffen Schuhmann." -#~ msgstr "" -#~ "Toto je vetva (fork) aplikácie „Atlas Maps“ a neexistovala by bez práce " -#~ "Steffena Schuhmanna." - -#~ msgid "@APP_NAME@" -#~ msgstr "@APP_NAME@" - -#~ msgid "Try changing the search term." -#~ msgstr "Skúste zmeniť hľadaný výraz." - -#~ msgid "Preferences" -#~ msgstr "Predvoľby" - -#~ msgid "Search where to go" -#~ msgstr "Vyhľadajte miesto, kam chcete ísť" diff --git a/po/ta.po b/po/ta.po index 2b544c3..ddc1423 100644 --- a/po/ta.po +++ b/po/ta.po @@ -83,49 +83,3 @@ msgstr "பட்டியல் விளையாடுங்கள்" #: src/MainWindow.vala:150 msgid "Failed to connect to location service" msgstr "இருப்பிட சேவையுடன் இணைக்கத் தவறிவிட்டது" - -#~ msgid "Map" -#~ msgstr "வரைபடம்" - -#~ msgid "View where to go" -#~ msgstr "எங்கு செல்ல வேண்டும் என்று பார்க்கவும்" - -#~ msgid "Trip;Explore;" -#~ msgstr "பயணம்; ஆராயுங்கள்;" - -#~ msgid "A map app that helps you to see where you want to go." -#~ msgstr "நீங்கள் எங்கு செல்ல விரும்புகிறீர்கள் என்பதைப் பார்க்க உதவும் வரைபட பயன்பாடு." - -#~ msgid "Features include:" -#~ msgstr "நற்பொருத்தங்கள் பின்வருமாறு:" - -#~ msgid "Search any place" -#~ msgstr "எந்த இடத்தையும் தேடுங்கள்" - -#~ msgid "Jump to your current location instantly" -#~ msgstr "உங்கள் தற்போதைய இருப்பிடத்திற்கு உடனடியாக செல்லவும்" - -#~ msgid "" -#~ "This is a fork of \"Atlas Maps\" and wouldn't exist without work of " -#~ "Steffen Schuhmann." -#~ msgstr "" -#~ "இது \"அட்லச் மேப்ச்\" இன் முட்கரண்டி மற்றும் ச்டெஃபென் சுஅ்மானின் வேலை இல்லாமல் இருக்காது." - -#~ msgid "Map_nik" -#~ msgstr "வரைபடம்" - -#~ msgid "@APP_NAME@" -#~ msgstr "@APP_NAME@" - -#~ msgid "App window in the light mode" -#~ msgstr "ஒளி பயன்முறையில் பயன்பாட்டு சாளரம்" - -#~ msgid "App window in the dark mode" -#~ msgstr "இருண்ட பயன்முறையில் பயன்பாட்டு சாளரம்" - -#~ msgid "translator-credits" -#~ msgstr "தமிழ்நேரம் (TamilNeram.github.io)" - -#, c-format -#~ msgid "_About %s" -#~ msgstr "%s பற்றி" diff --git a/po/tr.po b/po/tr.po index c744e99..5fa8499 100644 --- a/po/tr.po +++ b/po/tr.po @@ -87,50 +87,3 @@ msgstr "Ana Menü" #: src/MainWindow.vala:150 msgid "Failed to connect to location service" msgstr "Konum hizmetine bağlanamadı" - -#~ msgid "Map" -#~ msgstr "Harita" - -#~ msgid "View where to go" -#~ msgstr "Nereye gideceğinizi görün" - -#~ msgid "Trip;Explore;" -#~ msgstr "Trip;Explore;Gezi;Seyahat;Yolculuk;Keşfet;" - -#~ msgid "A map app that helps you to see where you want to go." -#~ msgstr "" -#~ "Nereye gitmek istediğinizi görmenize yardımcı olan bir harita uygulaması." - -#~ msgid "Features include:" -#~ msgstr "Özellikler:" - -#~ msgid "Search any place" -#~ msgstr "Herhangi bir yeri arayın" - -#~ msgid "Jump to your current location instantly" -#~ msgstr "Geçerli konumunuza anında atlayın" - -#~ msgid "" -#~ "This is a fork of \"Atlas Maps\" and wouldn't exist without work of " -#~ "Steffen Schuhmann." -#~ msgstr "" -#~ "Bu, \"Atlas Maps\" uygulamasının bir çatalıdır ve Steffen Schuhmann'ın " -#~ "çalışmaları olmadan var olamazdı." - -#~ msgid "@APP_NAME@" -#~ msgstr "@APP_NAME@" - -#~ msgid "App window in the light mode" -#~ msgstr "Uygulama penceresi açık kipte" - -#~ msgid "App window in the dark mode" -#~ msgstr "Uygulama penceresi koyu kipte" - -#~ msgid "Try changing the search term." -#~ msgstr "Arama terimini değiştirmeyi deneyin." - -#~ msgid "Preferences" -#~ msgstr "Tercihler" - -#~ msgid "Search where to go" -#~ msgstr "Nereye gideceğinizi arayın" diff --git a/po/uk.po b/po/uk.po index 1311018..f304b23 100644 --- a/po/uk.po +++ b/po/uk.po @@ -87,61 +87,3 @@ msgstr "Головне меню" #: src/MainWindow.vala:150 msgid "Failed to connect to location service" msgstr "Не вдалося під'єднатися до служби визначення розташування" - -#~ msgid "Map" -#~ msgstr "Мапа" - -#~ msgid "View where to go" -#~ msgstr "Переглядайте, куди йти" - -#~ msgid "Trip;Explore;" -#~ msgstr "Подорож;Відкриття;Trip;Explore;" - -#~ msgid "A map app that helps you to see where you want to go." -#~ msgstr "" -#~ "Картографічний застосунок, який допоможе вам дізнатися, як дістатися " -#~ "потрібного місця." - -#~ msgid "Features include:" -#~ msgstr "До особливостей належать:" - -#~ msgid "Search any place" -#~ msgstr "Пошук будь-якого місця" - -#~ msgid "Jump to your current location instantly" -#~ msgstr "Миттєвий перехід до свого поточного місцеперебування" - -#~ msgid "" -#~ "This is a fork of \"Atlas Maps\" and wouldn't exist without work of " -#~ "Steffen Schuhmann." -#~ msgstr "" -#~ "Це відгалуження «Atlas Maps», і проєкт не існував би без роботи Steffen " -#~ "Schuhmann." - -#~ msgid "Map_nik" -#~ msgstr "Map_nik" - -#~ msgid "@APP_NAME@" -#~ msgstr "@APP_NAME@" - -#~ msgid "App window in the light mode" -#~ msgstr "Вікно застосунку у світловому режимі" - -#~ msgid "App window in the dark mode" -#~ msgstr "Вікно застосунку у темному режимі" - -#~ msgid "translator-credits" -#~ msgstr "Ihor Hordiichuk" - -#, c-format -#~ msgid "_About %s" -#~ msgstr "_Про %s" - -#~ msgid "Try changing the search term." -#~ msgstr "Спробуйте змінити пошуковий запит." - -#~ msgid "Preferences" -#~ msgstr "Налаштування" - -#~ msgid "Search where to go" -#~ msgstr "Шукайте, куди йти" From 07eff34556566fcbc88685b391cfa7c4ed11a48f Mon Sep 17 00:00:00 2001 From: Ryo Nakano Date: Sat, 12 Jul 2025 16:52:40 +0900 Subject: [PATCH 4/5] Correct headers --- po/extra/de.po | 6 +++--- po/extra/es.po | 6 +++--- po/extra/et.po | 4 ++-- po/extra/fi.po | 6 +++--- po/extra/fr.po | 6 +++--- po/extra/hi.po | 4 ++-- po/extra/it.po | 6 +++--- po/extra/ja.po | 6 +++--- po/extra/lt.po | 6 +++--- po/extra/nb_NO.po | 6 +++--- po/extra/nl.po | 6 +++--- po/extra/pl.po | 6 +++--- po/extra/pt.po | 6 +++--- po/extra/pt_BR.po | 4 ++-- po/extra/ru.po | 6 +++--- po/extra/sk.po | 6 +++--- po/extra/ta.po | 4 ++-- po/extra/tr.po | 6 +++--- po/extra/uk.po | 6 +++--- 19 files changed, 53 insertions(+), 53 deletions(-) diff --git a/po/extra/de.po b/po/extra/de.po index 4945440..16686ea 100644 --- a/po/extra/de.po +++ b/po/extra/de.po @@ -1,12 +1,12 @@ -# German translations for com.github.ryonakano.atlas. +# German translations for extra package. # Copyright (C) 2014-2015 Atlas Developers # Copyright (C) 2018-2025 Ryo Nakano -# This file is distributed under the same license as the com.github.ryonakano.atlas package. +# This file is distributed under the same license as the extra package. # J. Lavoie , 2022. # Fill read-only add-on , 2024. msgid "" msgstr "" -"Project-Id-Version: com.github.ryonakano.atlas\n" +"Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-07-12 16:41+0900\n" "PO-Revision-Date: 2024-05-03 10:45+0000\n" diff --git a/po/extra/es.po b/po/extra/es.po index bf91d2c..10bb35f 100644 --- a/po/extra/es.po +++ b/po/extra/es.po @@ -1,12 +1,12 @@ -# Spanish translations for com.github.ryonakano.atlas. +# Spanish translations for extra package. # Copyright (C) 2014-2015 Atlas Developers # Copyright (C) 2018-2025 Ryo Nakano -# This file is distributed under the same license as the com.github.ryonakano.atlas package. +# This file is distributed under the same license as the extra package. # gallegonovato , 2023, 2024. # Fill read-only add-on , 2024. msgid "" msgstr "" -"Project-Id-Version: com.github.ryonakano.atlas\n" +"Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-07-12 16:41+0900\n" "PO-Revision-Date: 2024-05-20 12:01+0000\n" diff --git a/po/extra/et.po b/po/extra/et.po index e11cc7d..45627cf 100644 --- a/po/extra/et.po +++ b/po/extra/et.po @@ -1,12 +1,12 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the com.github.ryonakano.atlas package. +# This file is distributed under the same license as the extra package. # Priit Jõerüüt , 2024, 2025. # Fill read-only add-on , 2024. # Priit Jõerüüt , 2025. msgid "" msgstr "" -"Project-Id-Version: com.github.ryonakano.atlas\n" +"Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-07-12 16:41+0900\n" "PO-Revision-Date: 2025-07-10 13:01+0000\n" diff --git a/po/extra/fi.po b/po/extra/fi.po index a326101..61595a9 100644 --- a/po/extra/fi.po +++ b/po/extra/fi.po @@ -1,12 +1,12 @@ -# Finnish translations for com.github.ryonakano.atlas. +# Finnish translations for extra package. # Copyright (C) 2014-2015 Atlas Developers # Copyright (C) 2018-2025 Ryo Nakano -# This file is distributed under the same license as the com.github.ryonakano.atlas package. +# This file is distributed under the same license as the extra package. # Jiri Grönroos , 2023. # Fill read-only add-on , 2024. msgid "" msgstr "" -"Project-Id-Version: com.github.ryonakano.atlas\n" +"Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-07-12 16:41+0900\n" "PO-Revision-Date: 2024-05-03 10:45+0000\n" diff --git a/po/extra/fr.po b/po/extra/fr.po index e7ff9da..9d7bf3f 100644 --- a/po/extra/fr.po +++ b/po/extra/fr.po @@ -1,7 +1,7 @@ -# French translations for com.github.ryonakano.atlas. +# French translations for extra package. # Copyright (C) 2014-2015 Atlas Developers # Copyright (C) 2018-2025 Ryo Nakano -# This file is distributed under the same license as the com.github.ryonakano.atlas package. +# This file is distributed under the same license as the extra package. # Nathan Bonnemains (@NathanBnm), 2021. # J. Lavoie , 2022. # rene-coty , 2022, 2023. @@ -10,7 +10,7 @@ # Stella and Charlie , 2025. msgid "" msgstr "" -"Project-Id-Version: com.github.ryonakano.atlas\n" +"Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-07-12 16:41+0900\n" "PO-Revision-Date: 2025-06-11 12:02+0000\n" diff --git a/po/extra/hi.po b/po/extra/hi.po index eceb03e..679e5cb 100644 --- a/po/extra/hi.po +++ b/po/extra/hi.po @@ -1,11 +1,11 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the com.github.ryonakano.atlas package. +# This file is distributed under the same license as the extra package. # Scrambled777 , 2024. # Fill read-only add-on , 2024. msgid "" msgstr "" -"Project-Id-Version: com.github.ryonakano.atlas\n" +"Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-07-12 16:41+0900\n" "PO-Revision-Date: 2024-05-16 13:01+0000\n" diff --git a/po/extra/it.po b/po/extra/it.po index c697eb2..aa74c65 100644 --- a/po/extra/it.po +++ b/po/extra/it.po @@ -1,13 +1,13 @@ -# Italian translations for com.github.ryonakano.atlas. +# Italian translations for extra package. # Copyright (C) 2014-2015 Atlas Developers # Copyright (C) 2018-2025 Ryo Nakano -# This file is distributed under the same license as the com.github.ryonakano.atlas package. +# This file is distributed under the same license as the extra package. # albanobattistella , 2021, 2022, 2023, 2024, 2025. # J. Lavoie , 2022. # Fill read-only add-on , 2024. msgid "" msgstr "" -"Project-Id-Version: com.github.ryonakano.atlas\n" +"Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-07-12 16:41+0900\n" "PO-Revision-Date: 2025-03-31 04:19+0000\n" diff --git a/po/extra/ja.po b/po/extra/ja.po index 32e7c71..af8f3af 100644 --- a/po/extra/ja.po +++ b/po/extra/ja.po @@ -1,12 +1,12 @@ -# Japanese translations for com.github.ryonakano.atlas. +# Japanese translations for extra package. # Copyright (C) 2014-2015 Atlas Developers # Copyright (C) 2018-2025 Ryo Nakano -# This file is distributed under the same license as the com.github.ryonakano.atlas package. +# This file is distributed under the same license as the extra package. # Ryo Nakano , 2021, 2022, 2023, 2024, 2025. # Fill read-only add-on , 2024. msgid "" msgstr "" -"Project-Id-Version: com.github.ryonakano.atlas\n" +"Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-07-12 16:41+0900\n" "PO-Revision-Date: 2025-07-10 13:01+0000\n" diff --git a/po/extra/lt.po b/po/extra/lt.po index 607ca13..6e8c730 100644 --- a/po/extra/lt.po +++ b/po/extra/lt.po @@ -1,12 +1,12 @@ -# Lithuanian translation for com.github.ryonakano.atlas. +# Lithuanian translation for extra package. # Copyright (C) 2014-2015 Atlas Developers # Copyright (C) 2018-2025 Ryo Nakano -# This file is distributed under the same license as the com.github.ryonakano.atlas package. +# This file is distributed under the same license as the extra package. # PolPolyLingo , 2023 # Fill read-only add-on , 2024. msgid "" msgstr "" -"Project-Id-Version: com.github.ryonakano.atlas\n" +"Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-07-12 16:41+0900\n" "PO-Revision-Date: 2024-05-03 10:45+0000\n" diff --git a/po/extra/nb_NO.po b/po/extra/nb_NO.po index 5772907..875e79d 100644 --- a/po/extra/nb_NO.po +++ b/po/extra/nb_NO.po @@ -1,12 +1,12 @@ -# Norwegian Bokmål translations for com.github.ryonakano.atlas. +# Norwegian Bokmål translations for extra package. # Copyright (C) 2014-2015 Atlas Developers # Copyright (C) 2018-2025 Ryo Nakano -# This file is distributed under the same license as the com.github.ryonakano.atlas package. +# This file is distributed under the same license as the extra package. # Allan Nordhøy , 2024. # Fill read-only add-on , 2024. msgid "" msgstr "" -"Project-Id-Version: com.github.ryonakano.atlas\n" +"Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-07-12 16:41+0900\n" "PO-Revision-Date: 2024-05-03 10:45+0000\n" diff --git a/po/extra/nl.po b/po/extra/nl.po index d56aae7..84b4467 100644 --- a/po/extra/nl.po +++ b/po/extra/nl.po @@ -1,13 +1,13 @@ -# Dutch translations for com.github.ryonakano.atlas. +# Dutch translations for extra package. # Copyright (C) 2014-2015 Atlas Developers # Copyright (C) 2018-2025 Ryo Nakano -# This file is distributed under the same license as the com.github.ryonakano.atlas package. +# This file is distributed under the same license as the extra package. # Heimen Stoffels , 2022, 2023. # Philip Goto , 2023. # Fill read-only add-on , 2024. msgid "" msgstr "" -"Project-Id-Version: com.github.ryonakano.atlas\n" +"Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-07-12 16:41+0900\n" "PO-Revision-Date: 2024-05-03 10:45+0000\n" diff --git a/po/extra/pl.po b/po/extra/pl.po index 0643108..c36d3de 100644 --- a/po/extra/pl.po +++ b/po/extra/pl.po @@ -1,13 +1,13 @@ -# Polish translation for com.github.ryonakano.atlas. +# Polish translation for extra package. # Copyright (C) 2014-2015 Atlas Developers # Copyright (C) 2018-2025 Ryo Nakano -# This file is distributed under the same license as the com.github.ryonakano.atlas package. +# This file is distributed under the same license as the extra package. # PolPolyLingo , 2023 # Eryk Michalak , 2023. # Fill read-only add-on , 2024. msgid "" msgstr "" -"Project-Id-Version: com.github.ryonakano.atlas\n" +"Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-07-12 16:41+0900\n" "PO-Revision-Date: 2024-05-03 10:45+0000\n" diff --git a/po/extra/pt.po b/po/extra/pt.po index 3147e14..cb4a387 100644 --- a/po/extra/pt.po +++ b/po/extra/pt.po @@ -1,13 +1,13 @@ -# Portuguese translations for com.github.ryonakano.atlas. +# Portuguese translations for extra package. # Copyright (C) 2014-2015 Atlas Developers # Copyright (C) 2018-2025 Ryo Nakano -# This file is distributed under the same license as the com.github.ryonakano.atlas package. +# This file is distributed under the same license as the extra package. # Hugo Carvalho , 2022. # Felipe Nogueira , 2023. # Fill read-only add-on , 2024. msgid "" msgstr "" -"Project-Id-Version: com.github.ryonakano.atlas\n" +"Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-07-12 16:41+0900\n" "PO-Revision-Date: 2024-05-03 10:45+0000\n" diff --git a/po/extra/pt_BR.po b/po/extra/pt_BR.po index 7eba48f..d3262fb 100644 --- a/po/extra/pt_BR.po +++ b/po/extra/pt_BR.po @@ -1,11 +1,11 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the com.github.ryonakano.atlas package. +# This file is distributed under the same license as the extra package. # John Peter Sa , 2025. # Fill read-only add-on , 2025. msgid "" msgstr "" -"Project-Id-Version: com.github.ryonakano.atlas\n" +"Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-07-12 16:41+0900\n" "PO-Revision-Date: 2025-02-17 04:37+0000\n" diff --git a/po/extra/ru.po b/po/extra/ru.po index 607678e..e18b74c 100644 --- a/po/extra/ru.po +++ b/po/extra/ru.po @@ -1,12 +1,12 @@ -# Russian translations for com.github.ryonakano.atlas. +# Russian translations for extra package. # Copyright (C) 2014-2015 Atlas Developers # Copyright (C) 2018-2025 Ryo Nakano -# This file is distributed under the same license as the com.github.ryonakano.atlas package. +# This file is distributed under the same license as the extra package. # lenemter , 2022, 2023, 2024. # Fill read-only add-on , 2024. msgid "" msgstr "" -"Project-Id-Version: com.github.ryonakano.atlas\n" +"Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-07-12 16:41+0900\n" "PO-Revision-Date: 2024-05-08 14:05+0000\n" diff --git a/po/extra/sk.po b/po/extra/sk.po index 1a544c4..607566f 100644 --- a/po/extra/sk.po +++ b/po/extra/sk.po @@ -1,14 +1,14 @@ -# Slovak translations for com.github.ryonakano.atlas. +# Slovak translations for extra package. # Copyright (C) 2014-2015 Atlas Developers # Copyright (C) 2018-2025 Ryo Nakano -# This file is distributed under the same license as the com.github.ryonakano.atlas package. +# This file is distributed under the same license as the extra package. # Ryo Nakano , 2022. # JohnDumpling , 2022, 2023. # Milan Šalka , 2023. # Fill read-only add-on , 2024. msgid "" msgstr "" -"Project-Id-Version: com.github.ryonakano.atlas\n" +"Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-07-12 16:41+0900\n" "PO-Revision-Date: 2024-05-03 10:45+0000\n" diff --git a/po/extra/ta.po b/po/extra/ta.po index 9814821..fa8e3a9 100644 --- a/po/extra/ta.po +++ b/po/extra/ta.po @@ -1,11 +1,11 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the com.github.ryonakano.atlas package. +# This file is distributed under the same license as the extra package. # தமிழ்நேரம் , 2025. # Fill read-only add-on , 2025. msgid "" msgstr "" -"Project-Id-Version: com.github.ryonakano.atlas\n" +"Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-07-12 16:41+0900\n" "PO-Revision-Date: 2025-07-04 15:03+0000\n" diff --git a/po/extra/tr.po b/po/extra/tr.po index f6f5f67..238e6af 100644 --- a/po/extra/tr.po +++ b/po/extra/tr.po @@ -1,14 +1,14 @@ -# Turkish translations for com.github.ryonakano.atlas. +# Turkish translations for extra package. # Copyright (C) 2014-2015 Atlas Developers # Copyright (C) 2018-2025 Ryo Nakano -# This file is distributed under the same license as the com.github.ryonakano.atlas package. +# This file is distributed under the same license as the extra package. # Oğuz Ersen , 2022, 2023. # Sabri Ünal , 2023. # Sabri Ünal , 2024. # Fill read-only add-on , 2024. msgid "" msgstr "" -"Project-Id-Version: com.github.ryonakano.atlas\n" +"Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-07-12 16:41+0900\n" "PO-Revision-Date: 2024-06-17 12:09+0000\n" diff --git a/po/extra/uk.po b/po/extra/uk.po index d519a59..3887b62 100644 --- a/po/extra/uk.po +++ b/po/extra/uk.po @@ -1,13 +1,13 @@ -# Ukrainian translations for com.github.ryonakano.atlas. +# Ukrainian translations for extra package. # Copyright (C) 2014-2015 Atlas Developers # Copyright (C) 2018-2025 Ryo Nakano -# This file is distributed under the same license as the com.github.ryonakano.atlas package. +# This file is distributed under the same license as the extra package. # Ihor Hordiichuk , 2022, 2023, 2024, 2025. # Artem , 2022. # Fill read-only add-on , 2024. msgid "" msgstr "" -"Project-Id-Version: com.github.ryonakano.atlas\n" +"Project-Id-Version: extra\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-07-12 16:41+0900\n" "PO-Revision-Date: 2025-03-25 00:04+0000\n" From 7c1065a5f18cd703685d323b9231441bbc43dccb Mon Sep 17 00:00:00 2001 From: Ryo Nakano Date: Sat, 12 Jul 2025 16:58:23 +0900 Subject: [PATCH 5/5] Correct headers --- po/de.po | 2 +- po/es.po | 2 +- po/et.po | 5 +++-- po/extra/et.po | 5 +++-- po/extra/hi.po | 5 +++-- po/extra/pt_BR.po | 5 +++-- po/extra/ta.po | 5 +++-- po/fi.po | 2 +- po/fr.po | 2 +- po/hi.po | 5 +++-- po/it.po | 2 +- po/ja.po | 2 +- po/lt.po | 2 +- po/nb_NO.po | 2 +- po/nl.po | 2 +- po/pl.po | 2 +- po/pt.po | 2 +- po/pt_BR.po | 5 +++-- po/ru.po | 2 +- po/sk.po | 2 +- po/ta.po | 5 +++-- po/tr.po | 2 +- po/uk.po | 2 +- 23 files changed, 39 insertions(+), 31 deletions(-) diff --git a/po/de.po b/po/de.po index ba69fd9..2e435bc 100644 --- a/po/de.po +++ b/po/de.po @@ -1,4 +1,4 @@ -# German translations for com.github.ryonakano.atlas. +# German translations for com.github.ryonakano.atlas package. # Copyright (C) 2014-2015 Atlas Developers # Copyright (C) 2018-2025 Ryo Nakano # This file is distributed under the same license as the com.github.ryonakano.atlas package. diff --git a/po/es.po b/po/es.po index 9636213..c8a7db5 100644 --- a/po/es.po +++ b/po/es.po @@ -1,4 +1,4 @@ -# Spanish translations for com.github.ryonakano.atlas. +# Spanish translations for com.github.ryonakano.atlas package. # Copyright (C) 2014-2015 Atlas Developers # Copyright (C) 2018-2025 Ryo Nakano # This file is distributed under the same license as the com.github.ryonakano.atlas package. diff --git a/po/et.po b/po/et.po index 140f0e9..3eac7e1 100644 --- a/po/et.po +++ b/po/et.po @@ -1,5 +1,6 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# Estonian translations for com.github.ryonakano.atlas package. +# Copyright (C) 2014-2015 Atlas Developers +# Copyright (C) 2018-2025 Ryo Nakano # This file is distributed under the same license as the com.github.ryonakano.atlas package. # Priit Jõerüüt , 2024, 2025. # Fill read-only add-on , 2024. diff --git a/po/extra/et.po b/po/extra/et.po index 45627cf..b479eed 100644 --- a/po/extra/et.po +++ b/po/extra/et.po @@ -1,5 +1,6 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# Estonian translations for extra package. +# Copyright (C) 2014-2015 Atlas Developers +# Copyright (C) 2018-2025 Ryo Nakano # This file is distributed under the same license as the extra package. # Priit Jõerüüt , 2024, 2025. # Fill read-only add-on , 2024. diff --git a/po/extra/hi.po b/po/extra/hi.po index 679e5cb..2794c17 100644 --- a/po/extra/hi.po +++ b/po/extra/hi.po @@ -1,5 +1,6 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# Hindi translations for extra package. +# Copyright (C) 2014-2015 Atlas Developers +# Copyright (C) 2018-2025 Ryo Nakano # This file is distributed under the same license as the extra package. # Scrambled777 , 2024. # Fill read-only add-on , 2024. diff --git a/po/extra/pt_BR.po b/po/extra/pt_BR.po index d3262fb..5373774 100644 --- a/po/extra/pt_BR.po +++ b/po/extra/pt_BR.po @@ -1,5 +1,6 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# Portuguese (Brazil) translations for extra package. +# Copyright (C) 2014-2015 Atlas Developers +# Copyright (C) 2018-2025 Ryo Nakano # This file is distributed under the same license as the extra package. # John Peter Sa , 2025. # Fill read-only add-on , 2025. diff --git a/po/extra/ta.po b/po/extra/ta.po index fa8e3a9..4d47352 100644 --- a/po/extra/ta.po +++ b/po/extra/ta.po @@ -1,5 +1,6 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# Tamil translations for extra package. +# Copyright (C) 2014-2015 Atlas Developers +# Copyright (C) 2018-2025 Ryo Nakano # This file is distributed under the same license as the extra package. # தமிழ்நேரம் , 2025. # Fill read-only add-on , 2025. diff --git a/po/fi.po b/po/fi.po index 3b9fb89..ba14f33 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1,4 +1,4 @@ -# Finnish translations for com.github.ryonakano.atlas. +# Finnish translations for com.github.ryonakano.atlas package. # Copyright (C) 2014-2015 Atlas Developers # Copyright (C) 2018-2025 Ryo Nakano # This file is distributed under the same license as the com.github.ryonakano.atlas package. diff --git a/po/fr.po b/po/fr.po index 2f22202..0e004ea 100644 --- a/po/fr.po +++ b/po/fr.po @@ -1,4 +1,4 @@ -# French translations for com.github.ryonakano.atlas. +# French translations for com.github.ryonakano.atlas package. # Copyright (C) 2014-2015 Atlas Developers # Copyright (C) 2018-2025 Ryo Nakano # This file is distributed under the same license as the com.github.ryonakano.atlas package. diff --git a/po/hi.po b/po/hi.po index afb152e..ae108c0 100644 --- a/po/hi.po +++ b/po/hi.po @@ -1,5 +1,6 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# Hindi translations for com.github.ryonakano.atlas package. +# Copyright (C) 2014-2015 Atlas Developers +# Copyright (C) 2018-2025 Ryo Nakano # This file is distributed under the same license as the com.github.ryonakano.atlas package. # Scrambled777 , 2024. # Fill read-only add-on , 2024. diff --git a/po/it.po b/po/it.po index 93feb1d..e090b03 100644 --- a/po/it.po +++ b/po/it.po @@ -1,4 +1,4 @@ -# Italian translations for com.github.ryonakano.atlas. +# Italian translations for com.github.ryonakano.atlas package. # Copyright (C) 2014-2015 Atlas Developers # Copyright (C) 2018-2025 Ryo Nakano # This file is distributed under the same license as the com.github.ryonakano.atlas package. diff --git a/po/ja.po b/po/ja.po index 1a44597..b36425c 100644 --- a/po/ja.po +++ b/po/ja.po @@ -1,4 +1,4 @@ -# Japanese translations for com.github.ryonakano.atlas. +# Japanese translations for com.github.ryonakano.atlas package. # Copyright (C) 2014-2015 Atlas Developers # Copyright (C) 2018-2025 Ryo Nakano # This file is distributed under the same license as the com.github.ryonakano.atlas package. diff --git a/po/lt.po b/po/lt.po index c5448d3..ada4230 100644 --- a/po/lt.po +++ b/po/lt.po @@ -1,4 +1,4 @@ -# Lithuanian translation for com.github.ryonakano.atlas. +# Lithuanian translation for com.github.ryonakano.atlas package. # Copyright (C) 2014-2015 Atlas Developers # Copyright (C) 2018-2025 Ryo Nakano # This file is distributed under the same license as the com.github.ryonakano.atlas package. diff --git a/po/nb_NO.po b/po/nb_NO.po index ed67c27..94de606 100644 --- a/po/nb_NO.po +++ b/po/nb_NO.po @@ -1,4 +1,4 @@ -# Norwegian Bokmål translations for com.github.ryonakano.atlas. +# Norwegian Bokmål translations for com.github.ryonakano.atlas package. # Copyright (C) 2014-2015 Atlas Developers # Copyright (C) 2018-2025 Ryo Nakano # This file is distributed under the same license as the com.github.ryonakano.atlas package. diff --git a/po/nl.po b/po/nl.po index 73e0958..9056627 100644 --- a/po/nl.po +++ b/po/nl.po @@ -1,4 +1,4 @@ -# Dutch translations for com.github.ryonakano.atlas. +# Dutch translations for com.github.ryonakano.atlas package. # Copyright (C) 2014-2015 Atlas Developers # Copyright (C) 2018-2025 Ryo Nakano # This file is distributed under the same license as the com.github.ryonakano.atlas package. diff --git a/po/pl.po b/po/pl.po index f978471..36f5cd1 100644 --- a/po/pl.po +++ b/po/pl.po @@ -1,4 +1,4 @@ -# Polish translation for com.github.ryonakano.atlas. +# Polish translation for com.github.ryonakano.atlas package. # Copyright (C) 2014-2015 Atlas Developers # Copyright (C) 2018-2025 Ryo Nakano # This file is distributed under the same license as the com.github.ryonakano.atlas package. diff --git a/po/pt.po b/po/pt.po index 2df31c4..76c5869 100644 --- a/po/pt.po +++ b/po/pt.po @@ -1,4 +1,4 @@ -# Portuguese translations for com.github.ryonakano.atlas. +# Portuguese translations for com.github.ryonakano.atlas package. # Copyright (C) 2014-2015 Atlas Developers # Copyright (C) 2018-2025 Ryo Nakano # This file is distributed under the same license as the com.github.ryonakano.atlas package. diff --git a/po/pt_BR.po b/po/pt_BR.po index 50b5222..05baac5 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -1,5 +1,6 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# Portuguese (Brazil) translations for com.github.ryonakano.atlas package. +# Copyright (C) 2014-2015 Atlas Developers +# Copyright (C) 2018-2025 Ryo Nakano # This file is distributed under the same license as the com.github.ryonakano.atlas package. # John Peter Sa , 2025. # Fill read-only add-on , 2025. diff --git a/po/ru.po b/po/ru.po index 4855567..a9dd97e 100644 --- a/po/ru.po +++ b/po/ru.po @@ -1,4 +1,4 @@ -# Russian translations for com.github.ryonakano.atlas. +# Russian translations for com.github.ryonakano.atlas package. # Copyright (C) 2014-2015 Atlas Developers # Copyright (C) 2018-2025 Ryo Nakano # This file is distributed under the same license as the com.github.ryonakano.atlas package. diff --git a/po/sk.po b/po/sk.po index 61ea1f0..d72b351 100644 --- a/po/sk.po +++ b/po/sk.po @@ -1,4 +1,4 @@ -# Slovak translations for com.github.ryonakano.atlas. +# Slovak translations for com.github.ryonakano.atlas package. # Copyright (C) 2014-2015 Atlas Developers # Copyright (C) 2018-2025 Ryo Nakano # This file is distributed under the same license as the com.github.ryonakano.atlas package. diff --git a/po/ta.po b/po/ta.po index ddc1423..3890464 100644 --- a/po/ta.po +++ b/po/ta.po @@ -1,5 +1,6 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# Tamil translations for com.github.ryonakano.atlas package. +# Copyright (C) 2014-2015 Atlas Developers +# Copyright (C) 2018-2025 Ryo Nakano # This file is distributed under the same license as the com.github.ryonakano.atlas package. # தமிழ்நேரம் , 2025. # Fill read-only add-on , 2025. diff --git a/po/tr.po b/po/tr.po index 5fa8499..da1ac09 100644 --- a/po/tr.po +++ b/po/tr.po @@ -1,4 +1,4 @@ -# Turkish translations for com.github.ryonakano.atlas. +# Turkish translations for com.github.ryonakano.atlas package. # Copyright (C) 2014-2015 Atlas Developers # Copyright (C) 2018-2025 Ryo Nakano # This file is distributed under the same license as the com.github.ryonakano.atlas package. diff --git a/po/uk.po b/po/uk.po index f304b23..9e73f9d 100644 --- a/po/uk.po +++ b/po/uk.po @@ -1,4 +1,4 @@ -# Ukrainian translations for com.github.ryonakano.atlas. +# Ukrainian translations for com.github.ryonakano.atlas package. # Copyright (C) 2014-2015 Atlas Developers # Copyright (C) 2018-2025 Ryo Nakano # This file is distributed under the same license as the com.github.ryonakano.atlas package.