diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 5a891a13..f33be17a 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -13,7 +13,7 @@ jobs: name: Check Zola build steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v3 - name: Build with Zola run: | diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 746fcdd3..9e591451 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -17,7 +17,7 @@ jobs: name: Publish to Cloudflare Pages steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v3 - name: Build with Zola run: | diff --git a/.gitignore b/.gitignore index 7c725d00..011303c5 100644 --- a/.gitignore +++ b/.gitignore @@ -3,5 +3,3 @@ node_modules public translations.yaml -.idea/* -.vscode/settings.json diff --git a/.po4a.cfg b/.po4a.cfg index 8aa1989d..417f7f52 100644 --- a/.po4a.cfg +++ b/.po4a.cfg @@ -1,5 +1,4 @@ -[po4a_langs] af ar be bn ca cs cy de el es et eu gl hi hu id lt ml mr nb-rNO nl oc pl pt-BR pt sk sv te uk vi zh-Hans zh-Hant -# it ru tr fr +[po4a_langs] id pt-BR es nl eu cs ca bn zh-Hans hu mr pl hi uk de sv oc af ar [po4a_paths] po/content.pot $lang:po/content.$lang.po [options] opt:"--verbose" opt:"--package-name='Organic Maps Website'" opt:"--package-version=1.0" opt:"--copyright-holder='Organic Maps'" opt:"--addendum-charset=UTF-8" opt:"--localized-charset=UTF-8" opt:"--master-charset=UTF-8" opt:"--master-language=en_US" opt:"--porefs=file" opt:"--msgmerge-opt='--no-wrap'" opt:"--wrap-po=newlines" diff --git a/README.md b/README.md index b916ae08..995d8f0c 100644 --- a/README.md +++ b/README.md @@ -25,90 +25,6 @@ Every merge into the _master_ branch deploys changes into the production at http Run `npm run news` to automatically download news from our [Telegram channel](https://t.me/OrganicMapsApp), then create a git commit and push it. -An example of a news post that is related to app updates/releases: - -```yaml -title: "OpenStreetMap login was fixed in Google Play" -date: 2024-03-18T17:45:35+00:00 -slug: "openstreetmap-login-was-fixed-in-google-play" -taxonomies: - news: ["Releases"] -``` - -For external links and press releases use this taxonomy: - -```yaml -taxonomies: - news: ["Press"] -``` - -## Taxonomy and F.A.Q. architecture - -Each MD page in `/faq/` has one or more taxonomy defined in header. E.g.: - -```yaml -taxonomies: - faq: ["app"] -``` - -Zola collects all such taxonomies: - -| File | Taxonomy key | Taxonomy value | -|-----------------------------------------| ------------ |--------------------| -| map/can-find-position/index.md | `faq` | `Map` | -| map/search-cannot-find-a-place/index.md | `faq` | `Map` | -| editing/map-errors/index.md | `faq` | `Map Editing` | -| app/crash/index.md | `faq` | `App` | -| text-to-speech-android-tts/index.md | `faq` | `Voice Directions` | -| ... | ... | ... | - -After that Zola gets all values for `faq` taxonomy: `[app, map, editing, tts, ...]`. And generates pages: - -- For key `/faq/` with the list of values (see `templates/faq/list.html`) -- For each value `/faq/app`, `/faq/map`, etc. (including translated `/es/faq/aplicacion`, `/de/faq/karte/`) with the list of questions (see `templates/faq/single.html`) - -If you want to add new question then create .md file with header: - -```yaml -title: A full question that is the title of the page -description: More detailed info with necessary keywords for better SEO - -taxonomies: - faq: ["Bookmarks and tracks"] -extra: - order: 40 -``` - -Zola will add your question to specific F.A.Q. sub-page. - -If you need to translate the FAQ to a new language please add next lines to config.toml: - -```toml -[languages.XX] -taxonomies = [ - {name = "faq", feed = false}, -] -[languages.XX.translations] -faq-menu-title = "{Translation of 'F.A.Q.' to a new language}" -``` - -**Limitation**: F.A.Q. categories (taxonomies) are sorted alphabetically: "app", "bookmarks", "editing", "map", "tts". - -**Limitation**: Each F.A.Q. category has only a name. No description, no icon. Only name 'App', or 'Bookmarks and Tracks', or 'Map Editing', etc. - -## Embedded FAQ - -A subset of FAQ questions is used to generate static single-page FAQ: [`/faq/embedded-faq/`](https://organicmaps.app/faq/embedded-faq/?lang=en). This page should be used as an embedded offline help page in Organic Maps app on Android and iOS. To see how it looks in different languages use following links: - -* https://organicmaps.app/faq/embedded-faq/?lang=en -* https://organicmaps.app/faq/embedded-faq/?lang=de -* https://organicmaps.app/faq/embedded-faq/?lang=ru -* etc. - -List of supported languages could be found in `templates/faq/embedded-faq.html`: `en`, `de`, `es`, `fr`, `pt`, `pt-BR`, `pl`, `ru`, `tr`, `uk`, `zh`. - -To update embedded FAQ replace [`data/faq.html`](https://github.com/organicmaps/organicmaps/blob/master/data/faq.html) file with the latest version generate by Zola. - ## Contribution Any good ideas and help with web site improvement are appreciated. And it's always better to discuss diff --git a/config.toml b/config.toml index 02210843..5006a3d1 100644 --- a/config.toml +++ b/config.toml @@ -7,19 +7,14 @@ compile_sass = true title = "Organic Maps" description = "Free Android & iOS offline maps app for travelers, tourists, hikers, and cyclists based on OpenStreetMap data. It is a privacy-focused, open-source fork of Maps.me app (previously known as MapsWithMe), maintained by the same people who created MapsWithMe in 2011." author = "hello@organicmaps.app" -generate_feeds = true -feed_filenames = ["rss.xml", "atom.xml"] +generate_feed = true +feed_filename = "rss.xml" # Whether to build a search index to be used later on by a JavaScript library build_search_index = false ignored_content = [".DS_Store"] -taxonomies = [ - {name = "faq", feed = false}, - {name = "news", feed = true}, -] - [markdown] external_links_target_blank = true @@ -29,625 +24,282 @@ paths = "safe" [extra] stripe = "https://donate.organicmaps.app/" -ada = "addr1qxh59080ujswxuzapzrdvuzpglfktg09gq9q7dxpdl7jfka0g27wle9qudc96zyx6ecyz37nvks72sq2pu6vzmlayndsj02qhw" -algo = "3UZXZEPGFAM7E74IO32Y7O6KOY3E7NNNJVBV4GFS5UWQQSY7AIM5PK7C2E" -bch = "qqcjkzf7nlgvhng5vhq7n7hjrcdqccyqlq9h7gq4xw" -bnb = "bnb1c8vmnqqhqc6lcajpzvuy4ss5dw3vjc7tc5q8zd" -btc = "bc1qjkq3tpy2gutsfdlcvys8slkempywk230u8rc8u" -doge = "DRdtRetmiSFHLkorNHyf4nL2MT375Xkmrm" -eth = "0x1D59bBe5d4332e34116DccDE5c1a8c736E1C2810" -ltc = "LfmSZ5yKBf17WwahZK9NEq5w2FLVap4Ctw" -sol = "Eyv43vXxmSshDPReJnfMtrDspugsVR3S6PzJV38rMAZE" -trx = "TNQGZwAUCpwy1cuVSyu1vc6AT19nsmWqRF" -xmr = "44YsnJihPB7TBucb17WiXDde7qguUwNmGKFSsyrFqWheEaDKQRtMfGcEU54aJ8PeQNgV7Q9uBWB5CTcvKSMEH4QtE6BT1cm" -xrp = "rQ5hNeQKqiDVyNGgX9qhv5hdDETnsqNgy" -zec = "t1djHnDg8yGfn6vLPrYgejUFf2ZCF4WMmkp" # Default English translation [translations] address = "Address" back = "Back to News" contact = "Contact Us" -edit-on-github = "Edit on GitHub" engines = "Supported TTS Engines" -faq-menu-title = "F.A.Q." -go-to-top = "Go to Top" install-appgallery = "Install Organic Maps from Huawei AppGallery" install-appstore = "Install Organic Maps from the AppStore" install-googleplay = "Install Organic Maps from Google Play" install-fdroid="Install Organic Maps from F-Droid" language = "English" -language-word = "Language" -more-info-om = "For more information please visit our web-site" +const_lang = "Language" name = "Name" token = "Token" -# Rest of other languages # Please sort all other translation sections and values in alphabetical order. - -# Language: af (Afrikaans / Afrikaans) -[languages.af] -taxonomies = [ - {name = "faq", feed = false}, - {name = "news", feed = true}, -] -[languages.af.translations] -address = "Adres" -back = "Terug na nuus" -contact = "Kontak ons" -edit-on-github = "Wysig op GitHub" -engines = "Supported TTS Engines" -faq-menu-title = "F.A.Q." -install-appgallery = "Installeer Organic Maps vanaf Huawei Appgallery" -install-appstore = "Installeer Organic Maps vanaf die AppStore" -install-googleplay = "Installeer Organic Maps vanaf Google Play" -install-fdroid = "Installeer Organic Maps vanaf F-Droid" -language = "Afrikaans" -language-word = "Taal" -name = "Naam" -token = "Teken" -[languages.ar] -taxonomies = [ - {name = "faq", feed = false}, - {name = "news", feed = true}, -] -[languages.ar.translations] -address = "العنوان" -back = "العودة إلى الأخبار" -contact = "اتصل بنا" -edit-on-github = "تحرير على GitHub" -engines = "Supported TTS Engines" -faq-menu-title = "F.A.Q." -install-appgallery = "تثبيت Organic Maps من Huawei AppGallery" -install-appstore = "تثبيت Organic Maps من AppStore" -install-googleplay = "تثبيت Organic Maps من سوق Google Play" -install-fdroid = "تثبيت Organic Maps من F-Droid" -language = "العربية" -language-word = "اللغة" -name = "الاسم" -token = "رمز" -[languages.ca] -taxonomies = [ - {name = "faq", feed = false}, - {name = "news", feed = true}, -] -[languages.ca.translations] -address = "Adreça" -back = "Torna a Notícies" -contact = "Contacteu amb nosaltres" -edit-on-github = "Edita a GitHub" -engines = "Motors TTS admesos" -faq-menu-title = "Preguntes freqüents" -install-appgallery = "Instal·leu l’Organic Maps des de l’AppGallery de Huawei" -install-appstore = "Instal·leu l’Organic Maps des de l’AppStore" -install-googleplay = "Instal·leu l’Organic Maps des del Google Play" -install-fdroid = "Instal·leu l’Organic Maps des del F-Droid" -language = "Català" -language-word = "Llengua" -name = "Nom" -token = "Testimoni" -[languages.cs] -taxonomies = [ - {name = "faq", feed = false}, - {name = "news", feed = true}, -] -[languages.cs.translations] -address = "Adresa" -back = "Zpět na novinky" -contact = "Kontaktujte nás" -edit-on-github = "Upravit na GitHubu" -engines = "Podporované služby TTS" -faq-menu-title = "Často kladené dotazy" -install-appgallery = "Instalace aplikace Organic Maps z galerie aplikací Huawei" -install-appstore = "Instalace aplikace Organic Maps z AppStore" -install-googleplay = "Instalace Organic Maps z Google Play" -install-fdroid = "Instalace Organic Maps z F-Droid" -language = "Čeština" -language-word = "Jazyk" -name = "Název" -token = "Token" [languages.de] -taxonomies = [ - {name = "faq", feed = false}, - {name = "news", feed = true}, -] [languages.de.translations] address = "Adresse" back = "Zurück zu den Neuigkeiten" contact = "Kontakt" -edit-on-github = "Auf GitHub bearbeiten" -engines = "Unterstützte TTS-Modelle" -faq-menu-title = "FAQ" -go-to-top = "Nach oben" install-appgallery = "Installiere Organic Maps aus der Huawei AppGallery" install-appstore = "Installiere Organic Maps aus dem AppStore" install-googleplay = "Installiere Organic Maps von Google Play" install-fdroid = "Installiere Organic Maps aus F-Droid" language = "Deutsch" -language-word = "Sprache" -more-info-om = "Für weitere Informationen besuchen Sie bitte unsere Website" name = "Name" token = "Token" -[languages.es] -taxonomies = [ - {name = "faq", feed = false}, - {name = "news", feed = true}, -] -[languages.es.translations] -address = "Dirección" -back = "Volver a Noticias" -contact = "Contacte con nosotros" -edit-on-github = "Editar en GitHub" -engines = "Compatibilidad con motores TTS" -faq-menu-title = "Preguntas frecuentes" -go-to-top = "Arriba" -install-appgallery = "Instalar Organic Maps desde la AppGallery de Huawei" -install-appstore = "Instalar Organic Maps desde el AppStore" -install-googleplay = "Instalar Organic Maps desde Google Play" -install-fdroid = "Instalar Organic Maps desde F-Droid" -language = "Español" -language-word = "Idioma" -more-info-om = "Para más información, visite nuestro sitio web" -name = "Nombre" -token = "Ficha" -[languages.eu] -taxonomies = [ - {name = "faq", feed = false}, - {name = "news", feed = true}, -] -[languages.eu.translations] -address = "Helbidea" -back = "Itzuli Berriak-era" -contact = "Gurekin harremanetan jarri" -edit-on-github = "Editatu GitHub-en" -engines = "Supported TTS Engines" -faq-menu-title = "F.A.Q." -install-appgallery = "Instalatu Organic Maps Huawei AppGallery-tik" -install-appstore = "Instalatu Organic Maps AppStoretik" -install-googleplay = "Instalatu Organic Maps Google Play-tik" -install-fdroid = "Instalatu Organic Maps F-Droid-etik" -language = "Euskara" -language-word = "Hizkuntza" -name = "Izena" -token = "token" [languages.fr] -taxonomies = [ - {name = "faq", feed = false}, - {name = "news", feed = true}, -] [languages.fr.translations] -address = "Adresse" +address = "Addresse" back = "Retour aux actualités" contact = "Nous contacter" -edit-on-github = "Modifier sur GitHub" -engines = "Moteurs TTS pris en charge" -faq-menu-title = "F.A.Q." -go-to-top = "En haut" install-appgallery = "Installer Organic Maps depuis l'AppGallery de Huawei" install-appstore = "Installer Organic Maps depuis l'AppStore" install-googleplay = "Installer Organic Maps depuis Google Play" install-fdroid = "Installer Organic Maps depuis F-Droid" language = "Français" -language-word = "Langue" -more-info-om = "Pour plus d'informations, veuillez visiter notre site web" name = "Nom" token = "Jeton" -[languages.hi] -taxonomies = [ - {name = "faq", feed = false}, - {name = "news", feed = true}, -] -[languages.hi.translations] -address = "पता" -back = "ख़बरों पर वापस जाएं" -contact = "संपर्क करें" -edit-on-github = "GitHub पर संपादित करें" -engines = "Supported TTS Engines" -faq-menu-title = "F.A.Q." -install-appgallery = "Huawei AppGallery से ऑर्गेनिक मैप इंस्टॉल करें" -install-appstore = "AppStore से ऑर्गेनिक मैप इंस्टॉल करें" -install-googleplay = "गूगल प्ले से ऑर्गेनिक मैप इंस्टॉल करें" -install-fdroid = "F-Droid से ऑर्गेनिक मैप्स इंस्टॉल करें" -language = "हिंदी" -language-word = "भाषा" -name = "नाम" -token = "टोकन/Token" -[languages.hu] -taxonomies = [ - {name = "faq", feed = false}, - {name = "news", feed = true}, -] -[languages.hu.translations] -address = "Cím" -back = "Vissza a Hírekhez" -contact = "Kapcsolat" -edit-on-github = "Szerkesztés a GitHubon" -engines = "Supported TTS Engines" -faq-menu-title = "F.A.Q." -install-appgallery = "Telepítse az Organic Maps-et a Huawei AppGalériából" -install-appstore = "Telepítse az Organic Maps-et az AppStore-ból" -install-googleplay = "Telepítse az Organic Maps-et a Google Play-ről" -install-fdroid = "Telepítse az Organic Maps-et az F-Droidról" -language = "Magyar" -language-word = "Nyelv" -name = "Név" -token = "Token" -[languages.id] -taxonomies = [ - {name = "faq", feed = false}, - {name = "news", feed = true}, -] -[languages.id.translations] -address = "Alamat" -back = "Kembali ke Berita" -contact = "Hubungi Kami" -edit-on-github = "Edit di GitHub" -engines = "Mesin TTS yang Didukung" -faq-menu-title = "Soal Sering Ditanya (SSD)" -install-appgallery = "Instal Organic Maps dari Huawei AppGallery" -install-appstore = "Instal Organic Maps dari AppStore" -install-googleplay = "Instal Organic Maps dari Google Play" -install-fdroid = "Instal Peta Organik dari F-Droid" -language = "Bahasa Indonesia" -language-word = "Bahasa" -name = "Nama" -token = "Token" [languages.it] -taxonomies = [ - {name = "faq", feed = false}, - {name = "news", feed = true}, -] [languages.it.translations] address = "Indirizzi" back = "Indietro" contact = "Contattaci" -edit-on-github = "Modifica su GitHub" -engines = "Motori TTS supportati" -faq-menu-title = "Domande frequenti" install-appgallery = "Installa Organic Maps da Huawei AppGallery" install-appstore = "Installa Organic Maps dall'AppStore" install-googleplay = "Installa Organic Maps da Google Play" install-fdroid = "Installa Organic Maps da F-Droid" language = "Italiano" -language-word = "Lingua" name = "Nome" token = "Token" -[languages.mr] -taxonomies = [ - {name = "faq", feed = false}, - {name = "news", feed = true}, -] -[languages.mr.translations] -address = "पत्ता" -back = "बातम्यांवर परता" -contact = "आमच्याशी संपर्क साधा" -edit-on-github = "GitHub वर संपादित करा" -engines = "Supported TTS Engines" -faq-menu-title = "F.A.Q." -install-appgallery = "Huawei AppGallery द्वारे Organic Maps स्थापित करा" -install-appstore = "App Store द्वारे Organic Maps स्थापित करा" -install-googleplay = "गूगल प्ले द्वारे Organic Maps स्थापित करा" -install-fdroid = "F-Droid द्वारे Organic Maps स्थापित करा" -language = "मराठी" -language-word = "भाषा" -name = "नाव" -token = "Token" - -[languages.nl] -taxonomies = [ - {name = "faq", feed = false}, - {name = "news", feed = true}, -] -[languages.nl.translations] -address = "Adres" -back = "Terug naar Nieuws" -contact = "Contacteer ons" -edit-on-github = "Bewerken op GitHub" -engines = "Ondersteunde TTS-engines" -faq-menu-title = "F.A.Q." -install-appgallery = "Installeer Organic Maps in de Huawei AppGallery" -install-appstore = "Installeer Organic Maps in de AppStore" -install-googleplay = "Installeer Organic Maps op Google Play" -install-fdroid = "Installeer Organic Maps op F-Droid" -language = "Dutch" -language-word = "Taal" -name = "Naam" -token = "Token" -[languages.oc] -taxonomies = [ - {name = "faq", feed = false}, - {name = "news", feed = true}, -] -[languages.oc.translations] -address = "Address" -back = "Back to News" -contact = "Nos contactar" -edit-on-github = "Modificar sus GitHub" -engines = "Supported TTS Engines" -faq-menu-title = "F.A.Q." -install-appgallery = "Installar Mapas Organicas de l’AppGallery de Huawei" -install-appstore = "Installar Mapas Organicas de l’AppStore" -install-googleplay = "Installar Mapas Organicas de Google Play" -install-fdroid = "Installar Mapas Organicas de F-Droid" -language = "Occitan" -language-word = "Lenga" -name = "Nom" -token = "geton" - [languages.pl] -taxonomies = [ - {name = "faq", feed = false}, - {name = "news", feed = true}, -] [languages.pl.translations] address = "Adres" back = "Powrót do Nowości" contact = "Kontakt z nami" -edit-on-github = "Edytuj na GitHub" -engines = "Supported TTS Engines" -faq-menu-title = "F.A.Q." -go-to-top = "Idź na górę" install-appgallery = "Zainstaluj Organic Maps z Huawei AppGallery" install-appstore = "Zainstaluj Organic Maps z AppStore" install-googleplay = "Zainstaluj Organic Maps z Google Play" install-fdroid = "Zainstaluj Organic Maps z F-Droid" language = "Polski" -language-word = "Języki" -more-info-om = "Aby uzyskać więcej informacji, odwiedź naszą stronę internetową" name = "Nazwa" token = "Token" - -[languages.pt-BR] -taxonomies = [ - {name = "faq", feed = false}, - {name = "news", feed = true}, -] -[languages.pt-BR.translations] -address = "Endereço" -back = "Voltar às Notícias" -contact = "Contate-nos" -edit-on-github = "Editar no GitHub" -engines = "Compatibilidade com TTS" -faq-menu-title = "Perguntas frequentes" -go-to-top = "Ir para o início" -install-appgallery = "Instale Organic Maps a partir da Huawei AppGallery" -install-appstore = "Instale Organic Maps a partir da AppStore" -install-googleplay = "Instale Organic Maps a partir da Google Play" -install-fdroid = "Instale Organic Maps a partir do F-Droid" -language = "Português (Brasil)" -language-word = "Idioma" -more-info-om = "Para mais informações, visite o nosso sítio web" -name = "Nome" -token = "Token" - [languages.ru] -taxonomies = [ - {name = "faq", feed = false}, - {name = "news", feed = true}, -] [languages.ru.translations] address = "Адрес" back = "Назад к новостям" contact = "Связаться с нами" -edit-on-github = "Редактировать на GitHub" -engines = "Поддерживаемые TTS движки" -faq-menu-title = "Справка" -go-to-top = "Наверх" install-appgallery = "Установите Organic Maps из Huawei AppGallery" install-appstore = "Установите Organic Maps из AppStore" install-googleplay = "Установите Organic Maps из Google Play" install-fdroid = "Установите Organic Maps из F-Droid" language = "Русский" -language-word = "Язык" -more-info-om = "Больше информации на нашем сайте" name = "Название" token = "Токен" - -[languages.sv] -taxonomies = [ - {name = "faq", feed = false}, - {name = "news", feed = true}, -] -[languages.sv.translations] -address = "Adress" -back = "Tillbaka till nyheter" -contact = "Kontakta oss" -edit-on-github = "Redigera på GitHub" -engines = "Supported TTS Engines" -faq-menu-title = "F.A.Q." -install-appgallery = "Installera Organic Maps från Huawei AppGallery" -install-appstore = "Installera Organic Maps från AppStore" -install-googleplay = "Installera Organic Maps från Google Play" -install-fdroid = "Installera Organic Maps från F-Droid" -language = "Svenska" -language-word = "Språk" -name = "Namn" -token = "Token" - [languages.tr] -taxonomies = [ - {name = "faq", feed = false}, - {name = "news", feed = true}, -] [languages.tr.translations] address = "Adres" back = "Haberlere geri dön" -contact = "İletişim" -edit-on-github = "GitHub'da Düzenle" -engines = "Supported TTS Engines" -faq-menu-title = "F.A.Q." -go-to-top = "Başa Git" +contact = "Bize ulaşın" install-appgallery = "Organic Maps'i Huawei AppGallery'den İndir" install-appstore = "Organic Maps'i AppStore'dan İndir" install-googleplay = "Organic Maps'i Google Play'den İndir" install-fdroid = "Organic Maps'i F-Droid'den İndir" language = "Türkçe" -language-word = "Dil" -more-info-om = "Daha fazla bilgi için lütfen web sitemizi ziyaret edin" -name = "Ad" -token = "Belirteç" - -[languages.uk] -taxonomies = [ - {name = "faq", feed = false}, - {name = "news", feed = true}, -] +name = "İsim" +token = "Token" +[languages.id] +[languages.id.translations] +address = "Alamat" +back = "Kembali ke Berita" +contact = "Hubungi Kami" +install-appgallery = "Instal Organic Maps dari Huawei AppGallery" +install-appstore = "Instal Organic Maps dari AppStore" +install-googleplay = "Instal Organic Maps dari Google Play" +install-fdroid = "Instal Peta Organik dari F-Droid" +language = "Bahasa Indonesia" +name = "Nama" +token = "Token" +[languages.cs] +[languages.cs.translations] +address = "Adresa" +back = "Zpět na novinky" +contact = "Kontaktujte nás" +install-appgallery = "Instalace aplikace Organic Maps z galerie aplikací Huawei" +install-appstore = "Instalace aplikace Organic Maps z AppStore" +install-googleplay = "Instalace Organic Maps z Google Play" +install-fdroid = "Instalace Organic Maps z F-Droid" +language = "Čeština" +name = "Název" +token = "Token" +[languages.pt-BR.translations] +address = "Endereço" +back = "Voltar às Notícias" +contact = "Contate-nos" +install-appgallery = "Instale Organic Maps a partir da Huawei AppGallery" +install-appstore = "Instale Organic Maps a partir da AppStore" +install-googleplay = "Instale Organic Maps a partir da Google Play" +install-fdroid = "Instale Organic Maps a partir do F-Droid" +language = "Português (Brazil)" +name = "Nome" +token = "Token" +[languages.es.translations] +address = "Dirección" +back = "Volver a Noticias" +contact = "Contacte con nosotros" +install-appgallery = "Instalar Organic Maps desde la AppGallery de Huawei" +install-appstore = "Instalar Organic Maps desde el AppStore" +install-googleplay = "Instalar Organic Maps desde Google Play" +install-fdroid = "Instalar Organic Maps desde F-Droid" +language = "Español" +name = "Nombre" +token = "Ficha" +[languages.nl.translations] +address = "Adres" +back = "Terug naar Nieuws" +contact = "Contacteer ons" +install-appgallery = "Installeer Organic Maps in de Huawei AppGallery" +install-appstore = "Installeer Organic Maps in de AppStore" +install-googleplay = "Installeer Organic Maps op Google Play" +install-fdroid = "Installeer Organic Maps op F-Droid" +language = "Dutch" +name = "Naam" +token = "Token" +[languages.eu.translations] +address = "Helbidea" +back = "Back to News" +contact = "Harremanetan jarri" +install-appgallery = "Install Organic Maps from Huawei AppGallery" +install-appstore = "Install Organic Maps from the AppStore" +install-googleplay = "Install Organic Maps from Google Play" +install-fdroid = "Install Organic Maps from F-Droid" +language = "Euskara" +name = "Izena" +token = "token" +[languages.hu.translations] +address = "Cím" +back = "Vissza a Hírekhez" +contact = "Kapcsolat" +install-appgallery = "Telepítse az Organic Maps-et a Huawei AppGalériából" +install-appstore = "Telepítse az Organic Maps-et az AppStore-ból" +install-googleplay = "Telepítse az Organic Maps-et a Google Play-ről" +install-fdroid = "Telepítse az Organic Maps-et az F-Droidról" +language = "Magyar" +name = "Név" +token = "Token" +[languages.hi.translations] +address = "पता" +back = "ख़बरों पर वापस जाएं" +contact = "संपर्क करें" +install-appgallery = "Huawei AppGallery से ऑर्गेनिक मैप इंस्टॉल करें" +install-appstore = "AppStore से ऑर्गेनिक मैप इंस्टॉल करें" +install-googleplay = "गूगल प्ले से ऑर्गेनिक मैप इंस्टॉल करें" +install-fdroid = "F-Droid से ऑर्गेनिक मैप्स इंस्टॉल करें" +language = "हिंदी" +name = "नाम" +token = "टोकन/Token" [languages.uk.translations] address = "Адреса" back = "Назад до Новин" contact = "Контакти" -edit-on-github = "Редагувати на GitHub" -engines = "Supported TTS Engines" -faq-menu-title = "F.A.Q." -go-to-top = "До початку" install-appgallery = "Встановіть Organic Maps з Huawei AppGallery" install-appstore = "Встановіть Organic Maps з AppStore" install-googleplay = "Встановіть Organic Maps з Google Play" install-fdroid = "Встановіть Organic Maps з F-Droid" language = "Українська" -language-word = "Мова" -more-info-om = "Для отримання додаткової інформації, будь ласка, відвідайте наш веб-сайт" name = "Назва" token = "Токен" - -[languages.zh-Hans] -taxonomies = [ - {name = "faq", feed = false}, - {name = "news", feed = true}, -] +[languages.ca.translations] +address = "Adreça" +back = "Torna a Notícies" +contact = "Contacta'ns" +install-appgallery = "Instal·la l’Organic Maps des de l’AppGallery de Huawei" +install-appstore = "Instal·la l’Organic Maps des de l’AppStore" +install-googleplay = "Instal·la l’Organic Maps des del Google Play" +install-fdroid = "Instal·la l’Organic Maps des del F-Droid" +language = "Català" +name = "Nom" +token = "Testimoni" +[languages.zh-CN] +[languages.zh-CN.translations] +address = "地址" +back = "返回新闻" +contact = "联系我们" +install-appgallery = "从华为应用市场安装有机地图" +install-appstore = "从 AppStore 安装 Organic Maps" +install-googleplay = "从 Google Play 安装有机地图" +install-fdroid = "从 F-Droid 安装有机地图" +language = "英语" +name = "姓名" +token = "令牌" +[languages.sv.translations] +address = "Adress" +back = "Tillbaka till nyheter" +contact = "Kontakta oss" +install-appgallery = "Installera Organic Maps från Huawei AppGallery" +install-appstore = "Installera Organic Maps från AppStore" +install-googleplay = "Installera Organic Maps från Google Play" +install-fdroid = "Installera Organic Maps från F-Droid" +language = "Svenska" +name = "Namn" +token = "Token" +[languages.mr.translations] +address = "पत्ता" +back = "बातम्यांवर परता" +contact = "आमच्याशी संपर्क साधा" +install-appgallery = "Huawei AppGallery द्वारे Organic Maps स्थापित करा" +install-appstore = "App Store द्वारे Organic Maps स्थापित करा" +install-googleplay = "गूगल प्ले द्वारे Organic Maps स्थापित करा" +install-fdroid = "F-Droid द्वारे Organic Maps स्थापित करा" +language = "मराठी" +name = "नाव" +token = "Token" [languages.zh-Hans.translations] address = "地址" back = "返回到新闻" contact = "联系我们" -edit-on-github = "在 GitHub 上编辑" -engines = "Supported TTS Engines" -faq-menu-title = "F.A.Q." -go-to-top = "回到顶部" install-appgallery = "从华为应用商店安装Organic Maps" install-appstore = "从Apple AppStore安装Organic Maps" install-googleplay = "从Google Play安装Organic Maps" install-fdroid = "从F-Droid安装Organic Maps" language = "简体中文" -language-word = "语言" -more-info-om = "要获取更多信息,请访问我们的网站" name = "名称" token = "令牌" - -[languages.et.translations] -address = "Aadress" -back = "Tagasi uudiste loendisse" -contact = "Võta meiega ühendust" -edit-on-github = "GitHubi redigeerimine" -engines = "Supported TTS Engines" -faq-menu-title = "F.A.Q." -install-appgallery = "Paigalda Organic Maps Huawei AppGallery'st" -install-appstore = "Paigalda Organic Maps AppStore'st" -install-googleplay = "Paigalda Organic Maps Google Play'st" -install-fdroid = "Paigalda Organic Maps F-Droid'ist" -language = "Eesti" -language-word = "Keel" -name = "Nimi" -token = "Tunnusluba" - -[languages.gl.translations] -address = "Direccións" -back = "Volver a Noticias" -contact = "Contacta connosco" -edit-on-github = "Editar en GitHub" -engines = "Supported TTS Engines" -faq-menu-title = "F.A.Q." -install-appgallery = "Instalar mapas orgánicos desde Huawei AppGallery" -install-appstore = "Instala Organic Maps desde a AppStore" -install-googleplay = "Instala Organic Maps desde Google Play" -install-fdroid = "Instala Organic Maps desde F-Droid" -language = "Gallego" -language-word = "Idioma" -name = "Nome" -token = "Token" - -[languages.pt] -taxonomies = [ - {name = "faq", feed = false}, - {name = "news", feed = true}, -] -[languages.pt.translations] -address = "Endereço" -back = "Voltar às notícias" -contact = "Contacte-nos" -edit-on-github = "Edita no GitHub" -engines = "Supported TTS Engines" -faq-menu-title = "F.A.Q." -go-to-top = "Ir para o início" -install-appgallery = "Instalar o Organic Maps a partir da Huawei AppGallery" -install-appstore = "Instalar o Organic Maps a partir da AppStore" -install-googleplay = "Instalar o Organic Maps a partir do Google Play" -install-fdroid = "Instalar o Organic Maps a partir do F-Droid" -language = "Português" -language-word = "Idioma" -more-info-om = "Para mais informações, visite o nosso sítio na web" -name = "Nome" -token = "Token" - -[languages.lt.translations] -address = "Adresas" -back = "Back to News" -contact = "Susisiekite su mumis" -edit-on-github = "Redaguoti GitHub" -engines = "Supported TTS Engines" -faq-menu-title = "F.A.Q." -install-appgallery = "Install Organic Maps from Huawei AppGallery" -install-appstore = "Install Organic Maps from the AppStore" -install-googleplay = "Install Organic Maps from Google Play" -install-fdroid = "Install Organic Maps from F-Droid" -language = "Lietuvių" -language-word = "Kalba" -name = "Vardas" -token = "Žetonas" - -[languages.ml.translations] -address = "വിലാസം" -back = "വാർത്തയിലേക്ക് മടങ്ങുക" -contact = "ഞങ്ങളെ സമീപിക്കുക" -edit-on-github = "GitHub- ൽ എഡിറ്റുചെയ്യുക" -engines = "Supported TTS Engines" -faq-menu-title = "F.A.Q." -install-appgallery = "Install Organic Maps from Huawei AppGallery" -install-appstore = "Install Organic Maps from the AppStore" -install-googleplay = "Install Organic Maps from Google Play" -install-fdroid = "Install Organic Maps from F-Droid" -language = "മലയാളം" -language-word = "ഭാഷ" -name = "പേര്" -token = "ടോക്കൺ" - -[languages.te.translations] +[languages.oc.translations] address = "Address" back = "Back to News" -contact = "Contact us" -edit-on-github = "గితుబ్‌లో సవరించండి" -engines = "Supported TTS Engines" -faq-menu-title = "F.A.Q." -install-appgallery = "Install Organic Maps from Huawei AppGallery" -install-appstore = "Install Organic Maps from the AppStore" -install-googleplay = "Install Organic Maps from Google Play" -install-fdroid = "Install Organic Maps from F-Droid" -language = "తెలుగు" -language-word = "భాష" -name = "Name" -token = "Token" - -[languages.cy.translations] -address = "Cyfeiriad" -back = "Yn ôl i Newyddion" -contact = "Cysylltwch â ni" -edit-on-github = "Golygu ar GitHub" -engines = "Supported TTS Engines" -faq-menu-title = "F.A.Q." -install-appgallery = "Lawr lwythwch Organic Maps o Huawei AppGallery" -install-appstore = "Lawr lwythwch Organic Maps o AppStore" -install-googleplay = "Lawr lwythwch Organic Maps o Google Play" -install-fdroid = "Lawr lwythwch Organic Maps o F-Droid" -language = "Cymraeg" -language-word = "Iaith" -name = "Enw" -token = "Tocyn" +contact = "Nos contactar" +install-appgallery = "Installar Mapas Organicas de l’AppGallery de Huawei" +install-appstore = "Installar Mapas Organicas de l’AppStore" +install-googleplay = "Installar Mapas Organicas de Google Play" +install-fdroid = "Installar Mapas Organicas de F-Droid" +language = "Occitan" +name = "Nom" +token = "geton" +[languages.af.translations] +address = "Adres" +back = "Terug na nuus" +contact = "Kontak ons" +install-appgallery = "Installeer Organic Maps vanaf Huawei Appgallery" +install-appstore = "Installeer Organic Maps vanaf die AppStore" +install-googleplay = "Installeer Organic Maps vanaf Google Play" +install-fdroid = "Installeer Organic Maps vanaf F-Droid" +language = "Afrikaans" +name = "Naam" +token = "Teken" +[languages.ar.translations] +address = "العنوان" +back = "العودة إلى الأخبار" +contact = "اتصل بنا" +install-appgallery = "تثبيت Organic Maps من Huawei AppGallery" +install-appstore = "تثبيت Organic Maps من AppStore" +install-googleplay = "تثبيت Organic Maps من سوق Google Play" +install-fdroid = "تثبيت Organic Maps من F-Droid" +language = "العربية" +name = "الاسم" +token = "رمز" diff --git a/content/_index.af.md b/content/_index.af.md index 4c19a8fb..358a50a7 100644 --- a/content/_index.af.md +++ b/content/_index.af.md @@ -11,12 +11,8 @@ title: 'Organic Maps: Vanlyn voetslaan, fietsry, roetes en navigasie' **Organic Maps** is een van die min toeps deesdae wat 100% van die funksionaliteit het sonder ’n aktiewe internetverbinding. Installeer Organic Maps, laai kaarte af, gooi u SIM-kaart weg (trouens, u verskaffer spoor u altyd na), en gaan ’n week op pad sonder om u battery te moet laai en sonder dat daar een greep na die netwerk verstuur word. -> In 2023, Organic Maps [got its first million](@/news/2023-12-23/281/index.md) users. [Help us](@/donate/index.af.md) to scale! - ### Laai af en installeer Organic Maps in die [AppStore][appstore], [Google Play][googleplay], [FDroid][fdroid], [Huawei AppGallery][appgallery] {#install} -{{ googleplaynews() }} - {{ badges() }} {{ screenshot(src='/images/screenshots/hiking.jpg', alt='Voetslaan') }} @@ -38,9 +34,10 @@ fietsers: - Fietsroetes, voetslaanroetes en -paaie - Kontoerlyne, hoogteprofiele, pieke en hellings - Roetebegeleiding vir voetslaan en fietsry en motornavigasie met - stembegeleiding, Android Auto + stembegeleiding - Soek vinnig vanlyn op die kaart -- Stuur boekmerke uit en voer dit in in KML/KMZ-formate, voer GPX in +- Stuur boekmerke uit en voer dit in in KML/KMZ-formate (GPX is + [beplan][gpx_issue]) - Donkermodus om u oë te beskerm - Lande en streke neem nie baie spasie op nie - Gratis en oopbron @@ -91,7 +88,7 @@ Weier waarneming – omarm u vryheid. ## Wie betaal vir die gratis toep? -Die toep is gratis vir almal. [Skenk](@/donate/index.af.md) asseblief om ons +Die toep is gratis vir almal. [Skenk](@/donate/index.nl.md) asseblief om ons te ondersteun! Om onmiddellik te skenk kan u op ’n voorkeurbetaalmetode hier onder klik: @@ -124,11 +121,9 @@ Apache Lisensie 2.0. - Sluit aan by ons [Telegram-groep][telegram_chat] om met ander gebruikers te bespreek. - Besoek ons [GitHub-blad][github]. -- Volg ons opdaterings op [FOSStodon][fosstodon], [Mastodon][mastodon], - [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], - [Reddit][reddit], [LinkedIn][LinkedIn]. -- Join (or create and let us know) local communities: [Hungarian translators - Matrix room](https://matrix.to/#/#organicmapstranslate_hu:matrix.org) +- Volg ons opdaterings op [Mastodon][mastodon], [Facebook][facebook], + [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], + [LinkedIn][LinkedIn]. [fork]: https://en.wikipedia.org/wiki/Fork_(software_development) diff --git a/content/_index.ar.md b/content/_index.ar.md index 376bac15..bbff6898 100644 --- a/content/_index.ar.md +++ b/content/_index.ar.md @@ -4,25 +4,20 @@ extra: menu_title: الرئيسية page_template: index.html sort_by: weight -title: 'Organic Maps: تنزَّه وقد دراجتك وشُدَّ الرحال حيثما أردت بدون الإنترنت' +title: 'Organic Maps: خرائط بدون إنترنت للتنزه، الدراجة، المسارات والتوجيه' --- -**Organic Maps** هو تطبيق أندرويد و آيفون مجاني ولا يحتاج الإتصال بالإنترنت لأجل المسافرين، السياح، السائقين، المتنزهين و راكبي الدراجات مبني على بيانات المصدر العام **[OpenStreetMap][openstreetmap]**. مهتم بخصوصية المستخدمين، مفتوح المصدر، متفرع من تطبيق **Maps.Me** (المعروف سابقا بـ [**MapsWithMe**][mapswithme])، يقوم بصيانته نفس الأشخاص الذين أسسو **MapsWithMe** سنة 2011. +**Organic Maps** هو تطبيق أندرويد و آيفون مجاني ولا يحتاج الإتصال بالإنترنت من أجل المسافرين،السياح ، المتنزهين والدراجين مبني على بيانات المصدر العام **[OpenStreetMap][openstreetmap]**. مهتم بخصوصية المستخدمين، مفتوح المصدر، متفرع من تطبيق **Maps.Me** (المعروف سابقا بـ [**MapsWithMe**][mapswithme])، يقوم بصيانته نفس الأشخاص الذين أسسو **MapsWithMe** سنة 2011. **Organic Maps** من التطبيقات القليلة في يومنا هذا التي توفر 100% من المزايا بدون اتصال مباشر بشبكة الإنترنت. ثبّت Organic Maps، نزل الخرائط، ارمي بطاقة الشبكة خاصتك (بالمناسبة، مزود الخدمة يتتبعك باستمرار)، واذهب في رحلة اسبوعية بشحن البطارية مرة واحدة ودون أي بايت مرسل من خلال الشبكة. -> في عام 2023، حصلت Organic Maps على [أول مليون](@/news/2023-12-23/281/index.md) مستخدم. [ساعدنا على](@/donate/index.ar.md) التوسع! - ### نزّل و ثبت Organic Maps من [AppStore][appstore]، [Google Play][googleplay]، [FDroid][fdroid]، [Huawei AppGallery][appgallery] {#install} -{{ googleplaynews() }} - {{ badges() }} {{ screenshot(src='/images/screenshots/hiking.jpg', alt='Hiking') }} -{{ لقطة شاشة(src='/images/screenshots/hiking.jpg', alt='محبي المشي لمسافات -طويلة') }} +{{ screenshot(src='/images/screenshots/prague.jpg', alt='Prague') }} {{ screenshot(src='/images/screenshots/search.jpg', alt='البحث دون اتصال') }} @@ -32,17 +27,16 @@ title: 'Organic Maps: تنزَّه وقد دراجتك وشُدَّ الرحال ## المميزات -تطبيق Organic Maps هو الرفيق الأفضل للمسافرين، السياح، المتنزهين و راكبي +تطبيق Organic Maps هو الرفيق الأفضل للمسافرين،السياح، المتنزهين و راكبي الدراجات: - خرائط تفصيلية بدون إنترنت مع أماكن غير متواجدة في تطبيقات أخرى، بفضل [OpenStreetMap][openstreetmap] - مسارات الدراجات، مسارات للتنزه، ومسارات للمشي - الخطوط الكنتورية، المرتفعات، القمم والمنحدرات -- المشي خطوة بخطوة وركوب الدراجة وقيادة السيارة مع التوجيه الصوتي وAndroid - Auto +- المشي خطوة بخطوة، ركوب الدراجة، قيادة السيارة بالتوجيه الصوتي - بحث سريع في الخريطة بدون الحاجة لإنترنت -- الإشارات المرجعية والمسارات بتنسيقات KML، KMZ، GPX +- تصدير المراجع المحفوضة واستيرادها، بصيغ KML/KMZ (GPX [مخطط له][gpx_issue]) - الوضع الداكن لحماية العينين - الدول والمناطق لا تحتاج للكثير من المساحة - مجاني ومفتوح المصدر @@ -82,7 +76,7 @@ Organic Maps لا يطلب أذونات مفرطة للتجسس عليك: في Organic Maps نعتقد أن الخصوصية هي حق أساسي من حقوق الإنسان: -- Organic Maps هو مشروع مفتوح المصدر مُدار من طرف مُجتمع مستقل +- Organic Maps هو مشروع مفتوح المصدر يحركه المجتمع المستقل - نحن نحمي خصوصيتك من أعين المتطفلين لدى شركات التقنيات الكبيرة - ابق آمنًا بغض النظر عن مكان وجودك @@ -92,9 +86,9 @@ Organic Maps لا يطلب أذونات مفرطة للتجسس عليك: ## من الذي يدفع مقابل التطبيق المجاني؟ -التطبيق مجاني للجميع. من فضلك [تبرع](@/donate/index.ar.md) لدعمنا! +التطبيق مجاني للجميع. من فضلك [تبرع](@/donate/index.md) لدعمنا! -للتبرع بسهولة، انقر على أيقونة طريقة الدفع المفضلة لديك أدناه: +To donate conveniently, click on your preferred payment method icon below: {{ donate_buttons() }} @@ -120,11 +114,9 @@ Organic Maps هو [برنامج مفتوح المصدر][github] مرخّص تح التحديثات. - انضم إلى [مجموعة Telegram][telegram_chat] للمناقشة مع المستخدمين الآخرين. - زُر [صفحة Github][github]. -- تابع تحديثاتنا في [ماستودون ][mastodon]، [فيسبوك][facebook]، - [تويتر][twitter]، [Instagram][instagram]، [Reddit][reddit]، - [FOSStodon][fosstodon]، [LinkedIn][LinkedIn]. -- Join (or create and let us know) local communities: [Hungarian translators - Matrix room](https://matrix.to/#/#organicmapstranslate_hu:matrix.org) +- Follow our updates in [Mastodon][mastodon], [Facebook][facebook], + [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], + [LinkedIn][LinkedIn]. [fork]: https://en.wikipedia.org/wiki/Fork_(software_development) diff --git a/content/_index.ca.md b/content/_index.ca.md index e1f36371..beadb79e 100644 --- a/content/_index.ca.md +++ b/content/_index.ca.md @@ -11,12 +11,8 @@ L’**Organic Maps** és una aplicació gratuïta de mapes sense connexió per a L’**Organic Maps** és una de les poques aplicacions actuals que admet fer servir totes les seves funcions sense una connexió a Internet activa. Instal·leu l’Organic Maps, baixeu mapes, llenceu la vostra targeta SIM (per cert, el vostre operador us rastreja constantment) i feu un viatge setmanal amb una sola càrrega de bateria sense que cap byte s’enviï a la xarxa. -> In 2023, Organic Maps [got its first million](@/news/2023-12-23/281/index.md) users. [Help us](@/donate/index.ca.md) to scale! - ### Baixeu i instal·leu l’Organic Maps des de l’[AppStore][appstore], [Google Play][googleplay], [FDroid][fdroid] o [Huawei AppGallery][appgallery] {#install} -{{ googleplaynews() }} - {{ badges() }} {{ screenshot(src='/images/screenshots/hiking.jpg', alt='Senderisme') }} @@ -26,7 +22,7 @@ L’**Organic Maps** és una de les poques aplicacions actuals que admet fer ser {{ screenshot(src='/images/screenshots/search.jpg', alt='Cerca fora de línia') }} -{{ screenshot(src='/images/screenshots/dark.jpg', alt='Navegació en mode +{{ screenshot(src='/images/screenshots/dark.jpg', alt='Navegació en el mode fosc') }} ## Funcionalitats @@ -35,13 +31,13 @@ L’Organic Maps és l’aplicació definitiva per a viatgers, turistes, excursionistes i ciclistes: - Mapes detallats fora de línia amb llocs que no existeixen en altres mapes, - gràcies a l'[OpenStreetMap][openstreetmap] + gràcies a [OpenStreetMap][openstreetmap] - Rutes ciclistes, pistes de senderisme i camins - Línies de contorn, perfils d'elevació, pics i pendents -- Navegació pas a pas a peu, amb bicicleta i amb cotxe amb guia de veu, - Android Auto +- Navegació pas a pas a peu, amb bicicleta i amb cotxe amb guia de veu - Cerques ràpides al mapa, sense connexió -- Marcadors i rutes en format KML, KMZ i GPX +- Els marcadors s'exporten i importen en els formats KML/KMZ (GPX està + [planificat][gpx_issue]) - Mode fosc per a protegir els vostres ulls - Els països i les regions usen poc espai - De codi lliure i obert @@ -63,7 +59,7 @@ dolentes: - No es connecta en secret a cap servidor - Sense registres incòmodes - No hi ha tutorials obligatoris -- No us enviem correu brossa per correu electrònic +- Sense spam per correu electrònic - Notificacions emergents - Sense components brossa - ~~Sense pesticides~~ Completament orgànic! @@ -77,31 +73,31 @@ iOS][trackercontrol]: {{ trackercontrol_screenshot() }} -L'Organic Maps no us espia ni demana permisos excessius: +Organic Maps no demana permisos excessius per a espiar-li: {{ privacy_screenshots() }} -En Organic Maps, creiem que la privadesa és un dret humà fonamental: +En Organic Maps, creiem que la privacitat és un dret humà fonamental: - Organic Maps és un projecte independent, comunitari i obert -- Protegim la vostra privadesa de la mirada espia de les grans tecnològiques -- Utilització segura sense importar on sou +- Protegim la seva privacitat dels ulls espies de les grans tecnològiques +- Mantingui's fora de perill sense importar on estigui -Rebutgeu la vigilància. Assumiu la vostra llibertat. +Rebutgi la vigilància. Assumeixi la seva llibertat. -**[Proveu l'Organic Maps!](#install)** +**[¡Provi Organic Maps!](#install)** ## Qui paga per l'aplicació gratuïta? -L'aplicació és gratuïta per a tothom. Si us plau, -[doneu](@/donate/index.ca.md) per a ajudar-nos! +L'aplicació és gratuïta per a tothom. Si us plau +[donar](@/donate/index.ca.md) per a donar-nos suport! Per a fer un donatiu immediatament, feu clic a la icona del mètode de pagament preferit: {{ donate_buttons() }} -### Els nostres socis: +### Els nostres patrocinadors El proveïdor [Mythic Beasts](https://www.mythic-beasts.com/) [ens aporta][mythic_beasts_donation] dos servidors virtuals amb 400 TB/mes @@ -111,28 +107,26 @@ actualitzacions i descàrregues dels mapes. ## Comunitat Organic Maps és un [programa lliure][github] disponible en virtut de la -Llicència Apache 2.0. +Llicència Apatxe 2.0. -- Uniu-vos al nostre programa beta i suggeriu funcionalitats o informeu +- Uneix-te al nostre programa beta per a suggerir funcionalitats i informar d'errors: - * [Beta d'iOS (TestFlight)][testflight] - * [Beta d'Android (Firebase)][firebase] + * [Beta de iOS (TestFlight)][testflight] + * [Beta de Android (Firebase)][firebase] * [Beta de PC Linux (Flatpak)][flatpak] - * [Beta de PC Linux (paquets)][repology] -- Informeu d'errors o problemes mitjançant el [rastrejador d'errors][issues] - o [enviant-nos un correu electrònic][email]. -- [Debateu][ideas] idees o proposeu característiques. -- Uniu-vos al nostre [canal del Telegram][telegram] o al [Matrix][matrix] - per a estar al dia. -- Uniu-vos al nostre [grup del Telegram][telegram_chat] i converseu amb + * [Beta de PC Linux (paquetes)][repology] +- Informi d'errors o problemes en el [rastrejador d'errors][issues] o + [enviant-nos un correu electrònic][email]. +- [Debati][ideas] idees o proposa sol·licituds de funcions. +- Subscriu-te al nostre [canal de Telegram][telegram] o al [espai + matriu][matrix] per a estar al dia. +- Uneix-te al nostre [grup de Telegram][telegram_chat] per a parlar amb altres usuaris. -- Visiteu el nostre [GitHub][github]. -- Seguiu les nostres novetats al [FOSStodon][fosstodon], - [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], - [Instagram][instagram], [Reddit][reddit] i [LinkedIn][LinkedIn]. -- Join (or create and let us know) local communities: [Hungarian translators - Matrix room](https://matrix.to/#/#organicmapstranslate_hu:matrix.org) +- Visiteu la nostra [pàgina al GitHub][github]. +- Segueix les nostres novetats en [Mastodon][mastodon], + [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], + [Reddit][reddit] i [LinkedIn][LinkedIn]. -[fork]: https://ca.wikipedia.org/wiki/Fork +[fork]: https://en.wikipedia.org/wiki/Fork_(software_development) {{ references() }} diff --git a/content/_index.cs.md b/content/_index.cs.md index 67126872..091ea51f 100644 --- a/content/_index.cs.md +++ b/content/_index.cs.md @@ -7,16 +7,11 @@ sort_by: weight title: 'Organic Maps: Offline pěší turistika, cykloturistika, stezky a navigace' --- -**Organic Maps** je bezplatná offline mapová aplikace pro systémy Android a iOS pro cestovatele, turisty, výletníky a cyklisty založená na datech **[OpenStreetMap][openstreetmap]**. -Jedná se o open-source [odnož][fork] aplikace **Maps.me** (dříve známé jako [**MapsWithMe**][mapswithme]) zaměřenou na ochranu soukromí, kterou spravují stejní lidé, kteří **MapsWithMe** v roce 2011 vytvořili. +**Organic Maps** je bezplatná offline mapová aplikace pro Android a iOS pro cestovatele, turisty, výletníky a cyklisty založená na datech **[OpenStreetMap][openstreetmap]**. Jedná se o open-source [odnož][fork] zaměřenou na ochranu soukromí aplikace **Maps.me** (dříve známé jako [**MapsWithMe**][mapswithme]), kterou spravují stejní lidé, kteří v roce 2011 vytvořili **MapsWithMe**. **Organic Maps** je jednou z mála aplikací, která v dnešní době podporuje 100 % funkcí bez aktivního připojení k internetu. Nainstalujte si Organic Maps, stáhněte si mapy, zahoďte SIM kartu (mimochodem, váš operátor vás neustále sleduje) a vyrazte na týdenní výlet na jedno nabití baterie bez jakéhokoli bajtu odeslaného do sítě. -> V roce 2023 získaly Organic Maps [první milion](@/news/2023-12-23/281/index.md) uživatelů. [Pomozte nám](@/donate/index.cs.md) dále růst! - -### Stáhněte a nainstalujte si Organic Maps z obchodů [App Store][appstore], [Google Play][googleplay], [F-Droid][fdroid], [Huawei AppGallery][appgallery] {#install} - -{{ googleplaynews() }} +### Stáhněte si a nainstalujte Organic Maps z [AppStore][appstore], [Google Play][googleplay], [FDroid][fdroid], [Huawei AppGallery][appgallery] {#install} {{ badges() }} @@ -40,9 +35,10 @@ cyklisty: - Cyklistické trasy, turistické stezky a pěší trasy - Vrstevnice, výškové profily, vrcholy a svahy - Pěší, cyklistická a automobilová navigace krok za krokem s hlasovými - pokyny, Android Auto + pokyny - Rychlé offline vyhledávání na mapě -- Export a import záložek ve formátech KML/KMZ, import GPX +- Export a import záložek ve formátech KML/KMZ (GPX je + [plánováno][gpx_issue]) - Tmavý režim pro ochranu očí - Země a regiony nezabírají mnoho místa - Svobodný a otevřený zdrojový kód @@ -64,7 +60,7 @@ Organic Maps neobsahuje sledovací zařízení a další špatné věci: - Žádná obtěžující registrace - Žádné povinné výukové programy - Žádný hlučný e-mailový spam -- Žádná vyskakovací oznámení +- Žádná oznámení push - Žádný crapware - ~~Žádné pesticidy~~ Čistě organické! @@ -127,12 +123,9 @@ License 2.0. - Připojte se k naší [Telegram skupině][telegram_chat] a diskutujte s ostatními uživateli. - Navštivte náš [GitHub][github]. -- Sledujte naše aktualizace na [FOSStodon][fosstodon], - [Mastodonu][mastodon], [Facebooku][facebook], [Twitteru][twitter], - [Instagramu][instagram], [Redditu][reddit], [LinkedIn][LinkedIn]. -- Připojte se (nebo vytvořte vlastní a dejte nám vědět) k lokálním - komunitám: [místnost Matrix maďarských - překladatelů](https://matrix.to/#/#organicmapstranslate_hu:matrix.org) +- Sledujte naše aktualizace na [Mastodonu][mastodon], [Facebooku][facebook], + [Twitteru][twitter], [Instagramu][instagram], [Redditu][reddit], + [LinkedIn][LinkedIn]. [fork]: https://en.wikipedia.org/wiki/Fork_(software_development) diff --git a/content/_index.cy.md b/content/_index.cy.md deleted file mode 100644 index 85f86663..00000000 --- a/content/_index.cy.md +++ /dev/null @@ -1,136 +0,0 @@ ---- -description: "Mapiau manwl cyflym all-lein ar gyfer teithwyr, twristiaid, gyrwyr, heicwyr a seiclwyr wedi'i chreu gan sylfaenwyr MapsWithMe (Maps.Me)." -extra: - menu_title: Hafan -page_template: index.html -sort_by: weight -title: 'Organic Maps: Crwydro, Seiclo, Llwybrau a Hwylio All-lein' ---- - -Mae **Organic Maps** yn ap am ddim ar gyfer Android ac iOS gyda mapiau all-lein ar gyfer teithwyr, twristiaid, heicwyr a seiclwyr ar sail data cyfraniad torfol **[OpenStreetMap][openstreetmap]**. Mae'n [fforc][fork] cod agored a phreifat o'r ap **Maps.me** ([**MapsWithMe**][mapswithme] cyn hynny), a chynhelir gan yr union bobl sydd wedi creu **MapsWithMe** yn 2011. - -**Organic Maps** yw un o'r unig apiau y dyddiau hyn sy'n cefnogi 100% o nodweddion heb angen cysylltiad rhyngrwyd. Gosodwch Organic Maps, lawrlwythwch mapiau, a chael gwared ar eich cerdyn SIM (gyda llaw, mae eich gweithredwr yn eich tracio chi'n gyson), a chewch mynd ar drip am yr wythnos heb angen gwefru eich ffôn, a heb ddanfon beit i'r rhwydwaith. - -> In 2023, Organic Maps [got its first million](@/news/2023-12-23/281/index.md) users. [Help us](@/donate/index.md) to scale! - -### Lawrlwytho a gosod Organic Maps o [AppStore][appstore], [Google Play][googleplay], [FDroid][fdroid], [Huawei AppGallery][appgallery] {#install} - -{{ googleplaynews() }} - -{{ badges() }} - -{{ screenshot(src='/images/screenshots/hiking.jpg', alt='Heicio') }} - -{{ screenshot(src='/images/screenshots/prague.jpg', alt='Prague') }} - -{{ screenshot(src='/images/screenshots/search.jpg', alt='Chwilio All-lein') -}} - -{{ screenshot(src='/images/screenshots/dark.jpg', alt='Llywio gyda thema -lliw tywyll') }} - -## Nodweddion - -Organic Maps yw'r ap gorau ar gyfer teithwyr, twristiaid, heicwyr a -seiclwyr: - -- Mapiau manwl all-lein gyda lleoliadau sydd ddim yn bodoli ar fapiau - eraill, diolch i [OpenStreetMap][openstreetmap] -- Llwybrau seiclo, heicio, a cherdded -- Cyfuchlinau, proffeiliau dyrchafiad, brigau, a llethrau -- Cyfeiriadau troell-wrth-droell ar gyfer llywio wrth gerdded, seiclo, a - gyrru gydag arweiniad llais ac Android Auto -- Chwilio all-lein cyflym ar y map -- Llyfrnodau ac olion yn fformatiau KML, KMZ, a GPX -- Thema lliw tywyll i amddiffyn eich llygaid -- Gwledydd ac ardaloedd sydd ddim yn defnyddio llawer o gof -- Ffynhonnell agored ac am ddim - -## Pam Organic? - -Mae Organic Maps yn bur ac yn organig, ac wedi'i greu â chariad: - -- Yn parchu eich preifatrwydd -- Yn arbed eich batri -- Dim taliadau data annisgwyl - -Does dim tracwyr na phethau drwg arall yn yr ap Organic Maps: - -- Dim hysbysebion -- Dim tracio -- Dim casgliad data -- Dim galw adref -- Dim angen cofrestru -- Dim tiwtorial gorfodol -- Dim sbam e-bost swnllyd -- Dim hysbysiadau push -- Dim 'crapware' -- ~~Dim plaladdwyr ~~ Yn hollol organig! - -Mae'r ap wedi cael ei wirio gan [Exodus Privacy Project][exodus]: - -{{ exodus_screenshot() }} - -Mae'r ap iOS wedi cael ei wirio gan [TrackerControl for -iOS][trackercontrol]: - -{{ trackercontrol_screenshot() }} - -Dydy Organic Maps ddim yn gofyn am ormod o ganiatadau i ysbïo arnoch chi: - -{{ privacy_screenshots() }} - -At Organic Maps, credwn fod preifatrwydd yn hawl dynol sylfaenol: - -- Mae Organic Maps yn brosiect ffynhonnell agored annibynnol sydd wedi'i - yrru gan y gymuned -- Rydym yn amddiffyn eich preifatrwydd o lygaid cwmnïoedd technoleg fawr -- Arhoswch yn ddiogel ble bynnag yr ydych - -Gwrthodwch wyliadwriaeth - mwynhewch eich rhyddid. - -**[Triwch Organic Maps!](#install)** - -## Pwy sy'n talu am yr ap am ddim? - -Mae'r ap am ddim i bawb. Os gwelwch yn dda, [cyfrannwch yn -ariannol](@/donate/index.md) i'n cynorthwyo! - -I'n cynorthwyo'n ariannol yn gyfleus, cliciwch ar eicon eich hoff ffordd o -dalu isod: - -{{ donate_buttons() }} - -### Ein noddwyr: - -Mae ISP [Mythic Beasts](https://www.mythic-beasts.com/) [yn -darparu][mythic_beasts_donation] dau weinydd rhithiol i ni gyda 400 TB/mis o -led band i helpu ein defnyddwyr gyda lawr lwytho a diweddaru mapiau. - -## Cymuned - -Mae Organic Maps yn [feddalwedd ffynhonnell agored][github] sydd wedi'i -thrwyddedu o dan y drwydded Apache License 2.0. - -- Os gwelwch yn dda, ymunwch â'n system profi beta, awgrymwch eich syniadau, - ac adroddwch broblemau: - * [iOS Beta (TestFlight)][testflight] - * [Android Beta (Firebase)][firebase] - * [Bwrdd Gwaith Linux Beta (Flatpak)][flatpak] - * [Bwrdd Gwaith Linux Beta (packages)][repology] -- Adroddwch broblemau i'r [olrhain problemau][issues] neu [anfonwch e-bost - aton ni][email]. -- [Trafodwch][ideas] syniadau neu gofynnwch am nodweddion newydd. -- Tanysgrifiwch i'n [sianel Telegram][telegram] neu i'r [gofod - matrix][matrix] ar gyfer newyddion. -- Ymunwch â'n [grŵp Telegram][telegram_chat] i drafod gyda defnyddwyr arall. -- Ymweld â'n [tudalen GitHub][github]. -- Dilynwch ein newyddion ar [FOSStodon][fosstodon], [Mastodon][mastodon], - [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], - [Reddit][reddit], [LinkedIn][LinkedIn]. -- Join (or create and let us know) local communities: [Hungarian translators - Matrix room](https://matrix.to/#/#organicmapstranslate_hu:matrix.org) - -[fork]: https://en.wikipedia.org/wiki/Fork_(software_development) - -{{ references() }} diff --git a/content/_index.de.md b/content/_index.de.md index a9a0a3ee..be64df95 100644 --- a/content/_index.de.md +++ b/content/_index.de.md @@ -11,12 +11,8 @@ title: 'Organic Maps: Offline Wandern, Radfahren, Wanderwege und Navigation' **Organic Maps** ist heutzutage eine der wenigen Apps, die 100% ihrer Funktionen ohne aktive Internetverbindung unterstützt. Installiere Organic Maps, lade Karten herunter, wirf deine SIM-Karte weg (dein Betreiber verfolgt dich übrigens ständig) und mache einen Wochenausflug mit einer einzigen Akkuladung, ohne dass ein Byte an das Netz gesendet wird. -> Im Jahr 2023 erreichte Organic Maps [seine ersten Million](@/news/2023-12-23/281/index.md) Nutzer. [Hilf uns](@/donate/index.de.md), zu skalieren! - ### Organic Maps von [AppStore][appstore], [Google Play][googleplay], [F-Droid][fdroid], [Huawei AppGallery][appgallery] herunterladen und installieren {#install} -{{ googleplaynews() }} - {{ badges() }} {{ screenshot(src='/images/screenshots/hiking.jpg', alt='Wandern') }} @@ -38,9 +34,10 @@ Wanderer und Radfahrer: - Rad-, Wander- und Spazierwege - Höhenlinien, Höhenprofile, Bergspitzen und Steigungen - Schritt-für-Schritt-Navigation für Fußgänger, Radfahrer und Autofahrer mit - Sprachführung, Android Auto + Sprachführung - Schnelle Offline-Suche von Orten auf der Karte -- Export und Import von Lesezeichen im KML/KMZ-Format, Import GPX +- Export und Import von Lesezeichen im KML/KMZ-Format (GPX ist + [geplant][gpx_issue]) - Dunkler Modus zum Schutz deiner Augen - Länder und Regionen nehmen nicht viel Speicherplatz in Anspruch - Kostenlos und Open-Source @@ -128,12 +125,9 @@ License 2.0 lizenziert ist. - Tritt unserer [Telegram-Gruppe][telegram_chat] bei, um mit anderen Benutzern zu diskutieren. - Besuche unsere [GitHub-Seite][github]. -- Verfolge unsere Neuigkeiten auf [FOSStodon][fosstodon], - [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], - [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]. -- Trete lokalen Gemeinschaften bei (oder erstelle eine und informiere uns): - [Ungarische Übersetzer - Matrix-Raum](https://matrix.to/#/#organicmapstranslate_hu:matrix.org) +- Verfolge unsere Neuigkeiten auf [Mastodon][mastodon], + [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], + [Reddit][reddit], [LinkedIn][LinkedIn]. [fork]: https://de.wikipedia.org/wiki/Abspaltung_(Softwareentwicklung) diff --git a/content/_index.es.md b/content/_index.es.md index 0957ed90..1637a2c9 100644 --- a/content/_index.es.md +++ b/content/_index.es.md @@ -11,12 +11,8 @@ title: 'Organic Maps: senderismo, ciclismo y GPS sin conexión' **Organic Maps** es una de las pocas aplicaciones que hoy en día permiten usar todas las funcionalidades sin una conexión a Internet activa. Instale Organic Maps, descargue mapas, deseche su tarjeta SIM (por cierto, su operadora le rastrea constantemente) y emprenda un viaje semanal con una única carga sin ningún byte enviado a la red. -> En 2023 Organic Maps [alcanzó su primer millón de usuarios](@/news/2023-12-23/281/index.md). ¡[Ayúdenos](@/donate/index.es.md) a crecer! - ### Descargue e instale Organic Maps desde el [AppStore][appstore], [Google Play][googleplay], [FDroid][fdroid] o [Huawei AppGallery][appgallery] {#install} -{{ googleplaynews() }} - {{ badges() }} {{ screenshot(src='/images/screenshots/hiking.jpg', alt='Senderismo') }} @@ -38,11 +34,10 @@ senderistas y ciclistas: gracias a [OpenStreetMap][openstreetmap] - Rutas ciclistas, pistas de senderismo y caminos - Líneas de contorno, perfiles de elevación, picos y pendientes -- Navegación paso a paso con guía por voz a pie, en bici y en coche, Android - Auto +- Navegación paso a paso con guía por voz a pie, en bici y en coche - Búsqueda rápida en el mapa y sin conexión -- Los marcadores se exportan e importan en los formatos KML/KMZ, importan - GPX +- Los marcadores se exportan e importan en los formatos KML/KMZ (está + [planificado][gpx_issue] GPX) - Modo oscuro para proteger sus ojos - Los países y regiones no ocupan demasiado espacio - Libre y de código abierto @@ -127,12 +122,9 @@ Licencia Apache 2.0. - Únase a nuestro [grupo de Telegram][telegram_chat] para hablar con otros usuarios. - Visite nuestra [página de GitHub][github]. -- Siga nuestras novedades en [FOSStodon][fosstodon], [Mastodon][mastodon], - [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], - [Reddit][reddit] y [LinkedIn][LinkedIn]. -- Únase (o cree y háganoslo saber) a las comunidades locales: [Sala Matrix - de traductores de - húngaro](https://matrix.to/#/#organicmapstranslate_hu:matrix.org) +- Siga nuestras novedades en [Mastodon][mastodon], [Facebook][facebook], + [Twitter][twitter], [Instagram][instagram], [Reddit][reddit] y + [LinkedIn][LinkedIn]. [fork]: https://es.wikipedia.org/wiki/Bifurcaci%C3%B3n_(desarrollo_de_software) diff --git a/content/_index.et.md b/content/_index.et.md deleted file mode 100644 index dbba8567..00000000 --- a/content/_index.et.md +++ /dev/null @@ -1,142 +0,0 @@ ---- -description: 'MapsWithMe (Maps.Me) rakenduse asutajate loodud kiire ja detailne võrguühendust mittevajav kaardilahendus reisijatele, turistidele, autojuhtidele, matkajatele ja ratturitele.' -extra: - menu_title: Avaleht -page_template: index.html -sort_by: weight -title: 'Organic Maps Offline Hike, Bike, GPS Navigation' ---- - -**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, drivers and cyclists based on **[OpenStreetMap][openstreetmap]** data created by the community. -It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011. - -**Organic Maps** is one of the few applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card, and go for a weeklong trip on a single battery charge without any byte sent to the network. - -> In 2023, Organic Maps [got its first million](@/news/2023-12-23/281/index.md) users. [Help us](@/donate/index.md) to scale! - -### Paigalda Organic Maps järgmistest rakendustepoodidest: [AppStore][appstore], [Google Play][googleplay], [FDroid][fdroid], [Huawei AppGallery][appgallery] {#install} - -{{ googleplaynews() }} - -{{ badges() }} - -{{ screenshot(src='/images/screenshots/hiking.jpg', alt='Matkamine') }} - -{{ screenshot(src='/images/screenshots/prague.jpg', alt='Praha') }} - -{{ screenshot(src='/images/screenshots/search.jpg', alt='Otsing ilma -võrguühendust kasutamata') }} - -{{ screenshot(src='/images/screenshots/dark.jpg', alt='Teekonna juhatamine -kasutades tumedat vaadet') }} - -## Omadused - -Organic Maps on suurepärane rakendus reisijatele, turistidele, matkajatele -ja ratturitele: - -- Tänu [OpenStreetMap'ile][openstreetmap] on meil detailsed kaardid, mille - kasutamiseks pole vaja võrguühendust -- Rattateed, matkarajad ning võimalused jalutamiseks -- Kontuurjooned, kõrgusprofiilid, tipud ja nõlvad -- Täpne teekonna juhatamine koos hääljuhistega jalutamisel, rattasõidul ning - autoga liikumisel ning Android Auto -- Kiire kaardiotsing võrguühendust kasutamata -- Järjehoidjad ja rajad KML-, KMZ-, GPX-vormingus -- Tavavaate kõrval ka silmadesäästlik tume kaardivaade -- Riikide ja piirkondade andmekogud ei võta palju andmeruumi -- Avatud lähtekoodiga ja tasuta tarkvara - -## Miks Organic Maps? - -Meie kaardirakendus on hoole ja armastusega tehtud ehe ja mõnus tarkvara: - -- Austab sinu privaatsust -- Säästab nutiseadme akut -- Ei mingeid ootamatuid mobiilse andmeside tasusid - -Organic Maps rakenduses pole midagi, mis sinu tegevust jälgiks: - -- Pole reklaame -- Pole jälgimist -- Pole andmekogumist -- Pole helistamist teenusepakkujale koju -- Pole tüütut registreerimist -- Pole kohustuslikke juhendmaterjale -- Pole pidevat spämmi sinu e-posti aadressile -- Pole tõuketeavitusi -- Pole rämpsvara -- ~~Pole putukamürki~~ Ehtne ja korralik! - -Meie rakendust on kontrollinud [Exodus Privacy Project][exodus]: - -{{ exodus_screenshot() }} - -OrganicMaps'i iOS rakendus on verifitseeritud - [TrackerControl for -iOS][trackercontrol]: - -{{ trackercontrol_screenshot() }} - -Organic Maps ei eelda sinu nutiseadmes liigseid õigusi, mis võimaldaks sinu -tegevust jälgida: - -{{ privacy_screenshots() }} - -Organic Maps rakenduse tiimis me eeldame, et privaatsus on põhiline -inimõigus: - -- Organic Maps on sõltumatu, kogukonnakeskne ja avatud lähtekoodiga - tarkvaral põhinev projekt -- Me kaitseme sinu privaatsust suurte tehnoloogiafirmade uudishimulike - silmade eest -- Püsi turvalisena olenemata sellest, kus sa viibid - -Keeldu pidevast jälgimisest - võta oma sihiks vabadus. - -**[Proovi Organic Maps'i kaardirakendust!](#install)** - -## Kes maksab tasuta rakenduse eest? - -Meie rakendus on kõigile tasuta. Aga kui soovid [meid rahaliselt -toetada](@/donate/index.md), siis see on alati hea mõte! - -To donate conveniently, click on your preferred payment method icon below: - -{{ donate_buttons() }} - -### Meie sponsorid: - -Internetiteenuste pakkuja[Mythic Beasts](https://www.mythic-beasts.com/) [on -meile andnud][mythic_beasts_donation] kaks virtuaalserverit, mille 400 -TB/kuus tasuta ribalaius aitab meil kasutajatele jagada kaarte ja nende -uuendusi. - -## Kogukond - -Organic Maps on [avatud lähtekoodil põhinev tarkvara][github], mida me oleme -litsentseerinud Apache License 2.0 alusel. - -- Palun liitu meie beetaprogrammiga, paku uusi funktsionaalsusi ning teata - vigadest: - * [iOS Beta (TestFlight)][testflight] - * [Android Beta (Firebase)][firebase] - * [Linux'i töölauarakenduse beetaversioon (Flatpak)][flatpak] - * [Linux'i töölauarakenduse beetaversioon (pakendatuna)][repology] -- Teata vigadest või probleemidest meie [veahalduse liideses][issues] või - [saada meile e-kiri][email]. -- [Kommenteeri][ideas] juba tehtud ettepanekuid või paku mõni asjalik idee - omalt poolt. -- Viimase teabe saamiseks liitu meie [Telegram'i kanaliga][telegram] või - [Matrix'i kogukonnaga][matrix]. -- Keskustelemaks teiste kasutajatega liitu meie [Telegram'i - grupiga][telegram_chat]. -- Vaata meie [arenduskeskkonda GitHub'is][github]. -- Jälgi meid sotsiaalmeedias: [FOSStodon][fosstodon], [Mastodon][mastodon], - [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], - [Reddit][reddit], [LinkedIn][LinkedIn]. -- Join (or create and let us know) local communities: [Hungarian translators - Matrix room](https://matrix.to/#/#organicmapstranslate_hu:matrix.org) - -[fork]: https://en.wikipedia.org/wiki/Fork_(software_development) - -{{ references() }} diff --git a/content/_index.eu.md b/content/_index.eu.md index 2d2d3fe5..6ef3a972 100644 --- a/content/_index.eu.md +++ b/content/_index.eu.md @@ -11,12 +11,8 @@ title: 'Organic Maps: Offline mapak mendizale, txirrindulari, ibiltari eta nabig **Organic Maps** da konexiorik gabe %100-ean funtzionatzen duen aplikazio gutxietako bat. Instalatu Organic Maps, deskargatu mapak eta bota zaborretara zure SIM txartela (bide batez, zure telefono konpainiak uneoro jarraipena egiten dizu), eta joan asteroko ibilaldira bateria karga batekin eta sarera byte bakarra ere bidali gabe. -> In 2023, Organic Maps [got its first million](@/news/2023-12-23/281/index.md) users. [Help us](@/donate/index.eu.md) to scale! - ### Deskargatu eta instalatu Organic Maps hemendik: [AppStore][appstore], [Google Play][googleplay], [FDroid][fdroid], [Huawei AppGallery][appgallery] {#install} -{{ googleplaynews() }} - {{ badges() }} {{ screenshot(src='/images/screenshots/hiking.jpg', alt='Mendian') }} @@ -39,10 +35,10 @@ egokiena: - Bizikletarako ibilbideak, mendiko zidorrak eta ibiltzeko bideak - Profil lerroak, sestra kurbak, gailur eta aldapak - Pausoz-pausoko nabigazioa oinez, bizikletan edo autoz ibiltzeko, ahotsaren - aukerarekin, Android Auto + aukerarekin - Mapan offline bilaketa azkarra -- Tokien laster-markak esportatu eta inportatzeko aukera KML/KMZ - formatuetan, inportatzeko GPX +- Tokien laster-markak esportatu eta inportatzeko aukera KML/KMZ formatuetan + (GPX [planned][gpx_issue]) - Modu iluna zure begiak babesteko - Nazio eta herrialdeek ez dute toki askorik hartzen - Librea eta kode irekikoa @@ -72,7 +68,7 @@ Aplikazio hau [Exodus Privacy Project][exodus]-ek egiaztatzen du: {{ exodus_screenshot() }} -iOS aplikazioa [TrackerControl iOS-erako][trackercontrol]-ek egiaztatzen du: +The iOS application is verified by [TrackerControl for iOS][trackercontrol]: {{ trackercontrol_screenshot() }} @@ -96,8 +92,7 @@ Errefusatu jarraipena - besarkatu zure askatasuna. App-a denontzat doakoa da. Mesedez [donate](@/donate/index.eu.md) guri laguntzeko! -Dohaintza egokia emateko, egin klik behean nahi duzun ordainketa-metodoaren -ikonoan: +To donate conveniently, click on your preferred payment method icon below: {{ donate_buttons() }} @@ -127,11 +122,9 @@ lizentziapean. - Sartu gure [Telegram taldean][telegram_chat] beste erabiltzaileekin hitz egiteko. - Bisitatu gure [GitHub orria][github]. -- Jarrai itzazu gure eguneraketak [FOSStodon][fosstodon], - [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], - [Instagram][instagram], [Reddit][reddit]-en eta [LinkedIn][LinkedIn]. -- Join (or create and let us know) local communities: [Hungarian translators - Matrix room](https://matrix.to/#/#organicmapstranslate_hu:matrix.org) +- Jarrai itzazu gure eguneraketak [Mastodon][mastodon], + [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], + [Reddit][reddit]-en eta [LinkedIn][LinkedIn]. [fork]: https://eu.wikipedia.org/wiki/Fork diff --git a/content/_index.fr.md b/content/_index.fr.md index 9eadabd8..59e68366 100644 --- a/content/_index.fr.md +++ b/content/_index.fr.md @@ -11,12 +11,8 @@ extra: **Organic Maps** est l'une des rares applications actuelles à prendre en charge 100 % des fonctionnalités sans connexion Internet active. Installez Organic Maps, téléchargez des cartes, jetez votre carte SIM (d'ailleurs, votre opérateur vous suit constamment), et partez pour un voyage hebdomadaire sur une seule charge de batterie sans aucun octet envoyé au réseau. -> En 2023, Organic Maps [a obtenu son premier million](@/news/2023-12-23/281/index.md) d'utilisateurs. [Aidez-nous](@/donate/index.fr.md) à passer à l'échelle supérieure ! - ### Télécharger et installer Organic Maps depuis [AppStore][appstore], [Google Play][googleplay], [FDroid][fdroid], [Huawei AppGallery][appgallery] {#install} -{{ googleplaynews() }} - {{ badges() }} {{ screenshot(src='/images/screenshots/hiking.jpg', alt='Hiking') }} @@ -29,11 +25,11 @@ extra: Organic Maps est l'application idéale pour les voyageurs, les touristes, les randonneurs et les cyclistes : - Cartes détaillées hors ligne avec des lieux qui n'existent pas sur d'autres cartes, grâce à [OpenStreetMap](https://osm.org) -- Itinéraires cyclables, sentiers de randonnée et chemins de promenade -- Courbes de niveau, profils d'élévation, sommets et pentes -- Navigation à pied, à vélo et en voiture, virage par virage, avec guidage vocal, Android Auto +- Itinéraires cyclables, sentiers de randonnée et chemins de promenade. +- Courbes de niveau, profils d'élévation, sommets et pentes. +- Navigation à pied, à vélo et en voiture, virage par virage, avec guidage vocal. - Recherche rapide hors ligne sur la carte -- Exportation et importation de signets aux formats KML/KMZ, importation GPX +- Exportation et importation de signets aux formats KML/KMZ (GPX est [prévu](https://github.com/organicmaps/organicmaps/issues/624)) - Mode sombre pour protéger vos yeux - Les pays et les régions ne prennent pas beaucoup de place - Gratuit et open-source @@ -118,9 +114,9 @@ Organic Maps est un [logiciel libre][github] sous licence Apache 2.0. - Signalez les bogues ou les problèmes à [l'outil de suivi des problèmes][issues] ou [envoyez-nous un courriel][email]. - [Discutez][ideas] des idées ou proposez des demandes de fonctionnalités. - Abonnez-vous à notre [Canal Telegram][telegram] ou à l'espace [matrix][matrix] pour les mises à jour. -- Rejoignez notre [Chat Telegram en anglais][telegram_chat] ou [en français][telegram_chat_fr] pour discuter avec d'autres utilisateurs. +- Rejoignez notre [Groupe Telegram][telegram_chat] pour discuter avec d'autres utilisateurs. - Visitez notre [page GitHub][github]. -- Suivez nos mises à jour sur [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [Linkedin][linkedin]. +- Suivez nos mises à jour sur Mastodon, [Facebook][facebook], [Twitter][twitter], [Instagram][instagram]. {{ references() }} diff --git a/content/_index.gl.md b/content/_index.gl.md deleted file mode 100644 index 1d8a6d30..00000000 --- a/content/_index.gl.md +++ /dev/null @@ -1,139 +0,0 @@ ---- -description: 'Mapas sen conexión, rápidos e detallados para viaxeiros, turistas, condutores, sendeiristas e ciclistas creados polos fundadores de MapsWithMe (Maps.Me).' -extra: - menu_title: Casa -page_template: index.html -sort_by: weight -title: 'Organic Maps: camiñadas sen conexión, bicicletas, rutas e navegación' ---- - -**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, drivers and cyclists based on **[OpenStreetMap][openstreetmap]** data created by the community. -It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011. - -**Organic Maps** is one of the few applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card, and go for a weeklong trip on a single battery charge without any byte sent to the network. - -> In 2023, Organic Maps [got its first million](@/news/2023-12-23/281/index.md) users. [Help us](@/donate/index.md) to scale! - -### Descarga e instala Organic Maps desde [AppStore][appstore], [Google Play][googleplay], [FDroid][fdroid], [Huawei AppGallery][appgallery] {#install} - -@{{ googleplaynews() }} - -{{ badges() }} - -@{{ screenshot(src='/images/screenshots/hiking.jpg', alt='Hiking') }} - -@{{ screenshot(src='/images/screenshots/prague.jpg', alt='Prague') }} - -@{{ screenshot(src='/images/screenshots/search.jpg', alt='Búsqueda sen -conexión') }} - -@{{ screenshot(src='/images/screenshots/dark.jpg', alt='Navegación en modo -escuro') }} - -## Características - -Organic Maps é a aplicación complementaria definitiva para viaxeiros, -turistas, sendeiristas e ciclistas: - -- Mapas detallados sen conexión con lugares que non existen noutros mapas, - grazas a [OpenStreetMap][openstreetmap] -- Rutas ciclistas, rutas de sendeirismo e camiños a pé -- Curvas de nivel, perfís de elevación, cumes e pendentes -- Turn-by-turn walking, cycling, and car navigation with voice guidance and - Android Auto -- Busca rápida sen conexión no mapa -- Marcadores e pistas en formatos KML, KMZ e GPX -- Modo escuro para protexer os ollos -- Os países e as rexións non ocupan moito espazo -- Libre e de código aberto - -## ¿Por qué Organic? - -Organic Maps e puro e orgánico, e feito con amor: - -- Respetamos a túa privacidade -- Aforramos batería -- Non hai cargos inesperados de datos móbiles - -Organic Maps está libre de rastreadores e outras cousas malas: - -- Sen publicidade -- Sen seguimento -- Sen recollida de datos -- Sen conexións externas -- Sen rexistro molesto -- Non hai tutoriales obrigatorios -- Sen correos basura -- Sen notificacións -- Sen programas basura -- ~~Sen pesticidas~~ ¡Puramente orgánico! - -Esta aplicación foi verificada por [Exodus Privacy Project][exodus]: - -@{{ exodus_screenshot() }} - -A aplicación de iOS foi verificada por [TrackerControl for -iOS][trackercontrol]: - -@{{ trackercontrol_screenshot() }} - -Organic Maps non solicita permisos excesivos para espiarche: - -@{{ privacy_screenshots() }} - -En Organic Maps, cremos que a privacidade é un dereito humano fundamental: - -- Organic Maps é un proxecto indie de código aberto impulsado pola - comunidade -- Protexemos a túa privacidade das miradas indiscretas das grandes - tecnolóxicas -- Mantéñase seguro sen importar onde esteas - -Rexeita a vixilancia - abraza a túa liberdade. - -**[Proba Organic Maps!](#install)** - -## ¿Quén paga a aplicación gratuíta? - -A aplicación é gratuíta para todos. Por favor, [donate](@/donate/index.md) -para apoiarnos! - -Para doar inmediatamente, fai clic na icona do método de pago preferido a -continuación: - -@{{ donate_buttons() }} - -### Os nosos patrocinadores: - -[Mythic Beasts](https://www.mythic-beasts.com/) ISP -[proporcionanos][mythic_beasts_donation] dous servidores virtuais con 400 -TB/mes de ancho de banda gratuíto para axudar aos nosos usuarios coas -descargas e actualizacións de mapas. - -## Comunidade - -Organic Maps é un [open-source software][github] licenciado baixo a licenza -Apache 2.0. - -- Únete ao noso programa beta, suxire as túas funcións e informa de erros: - * [iOS Beta (TestFlight)][testflight] - * [Android Beta (Firebase)][firebase] - * [Linux Desktop Beta (Flatpak)][flatpak] - * [Linux Desktop Beta (paquetería)][repology] -- Informa de erros ou problemas no [the issue tracker][issues] or [email - us][email]. -- [Discuss][ideas] ideas ou propoña solicitudes de funcións. -- Subscríbete á nosa [Telegram Channel][telegram] ou ao [matrix - space][matrix] para obter actualizacións. -- Únete ao noso [Telegram Group][telegram_chat] para falar con outros - usuarios. -- Visita a nosa [páxina GitHub][github]. -- Siga as nosas actualizacións en [FOSStodon][fosstodon], - [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], - [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]. -- Join (or create and let us know) local communities: [Hungarian translators - Matrix room](https://matrix.to/#/#organicmapstranslate_hu:matrix.org) - -[fork]: https://en.wikipedia.org/wiki/Fork_(desenvolvemento%20de%20software) - -{{references()}} diff --git a/content/_index.hi.md b/content/_index.hi.md index 9d969913..ce0a0ef1 100644 --- a/content/_index.hi.md +++ b/content/_index.hi.md @@ -11,12 +11,8 @@ title: 'ऑर्गेनिक नक़्शे: ऑफ़लाइन स **ऑर्गेनिक मैप्स** आजकल के कुछ एप्लिकेशन में से एक है जो सक्रिय इंटरनेट कनेक्शन के बिना 100% सुविधाओं का समर्थन करता है। ऑर्गेनिक मैप्स इंस्टॉल करें, मैप्स डाउनलोड करें, अपना सिम कार्ड फेंक दें (वैसे, आपका ऑपरेटर आपको लगातार ट्रैक करता है), और नेटवर्क पर कुछ भी भेजे बिना सिर्फ एक बैटरी चार्ज पर साप्ताहिक यात्रा के लिए जाएं। -> In 2023, Organic Maps [got its first million](@/news/2023-12-23/281/index.md) users. [Help us](@/donate/index.hi.md) to scale! - ### [AppStore][appstore], [Google Play][googleplay], [FDroid][fdroid], [Huawei AppGallery][appgallery] से ऑर्गेनिक मानचित्र डाउनलोड और इंस्टॉल करें {#install} -{{ googleplaynews() }} - {{ badges() }} {{ screenshot(src='/images/screenshots/hiking.jpg', alt='Hiking') }} @@ -37,10 +33,9 @@ mode') }} [OpenStreetMap][openstreetmap] की बदौलत - साइक्लिंग, हाइकिंग, तथा टहलने के रास्ते - समोच्च रेखाएँ, उन्नयन प्रोफाइल, चोटियाँ और ढलान -- आवाज मार्गदर्शन और एंड्रॉइड ऑटो के साथ बारी-बारी पैदल चलना, साइकिल चलाना - और कार नेविगेशन +- आवाज निर्देशन के साथ बारी-बारी से चलना, साइक्लिंग करना और कार नेविगेशन - तेज़ ऑफ़लाइन खोज नक़्शे पर -- KML, KMZ, GPX प्रारूपों में बुकमार्क और ट्रैक +- KML/KMZ प्रारूप में एक्सपोर्ट एवं इंपोर्ट करें(GPX [आयोजित][gpx_issue] है) - डार्क मोड, अपनी आंखों की रक्षा के लिए - देश एवं क्षेत्र ज्यादा जगह नहीं लेते हैं - नि: शुल्क और मुक्त स्रोत @@ -123,11 +118,9 @@ To donate conveniently, click on your preferred payment method icon below: - अन्य उपयोगकर्ताओं के साथ चर्चा करने के लिए हमारे [Telegram Group][telegram_chat] में शामिल हों। - हमारे [गिटहब पेज][github] पर जाएं। -- [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], - [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], - [LinkedIn][LinkedIn] पर हमारे अपडेट का पालन करें। -- Join (or create and let us know) local communities: [Hungarian translators - Matrix room](https://matrix.to/#/#organicmapstranslate_hu:matrix.org) +- [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], + [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn] पर हमारे + अपडेट का पालन करें। [fork]: https://en.wikipedia.org/wiki/Fork_(software_development) diff --git a/content/_index.hu.md b/content/_index.hu.md index 7e63ff1f..fafde76d 100644 --- a/content/_index.hu.md +++ b/content/_index.hu.md @@ -11,12 +11,8 @@ Az **Organic Maps** egy ingyenes Android és iOS offline térképalkalmazás uta **Az Organic Maps** egyike azon kevés alkalmazásoknak, amelyek manapság 100%-ban támogatják a funkciókat aktív internetkapcsolat nélkül. Telepítse az Organic Maps-et, töltse le a térképeket, dobja el a SIM-kártyáját (máskülönben a szolgáltatója folyamatosan nyomon követi Önt), és egyetlen akkumulátortöltéssel, a hálózatra küldött egyetlen byte nélkül induljon el egy egyhetes útra. -> In 2023, Organic Maps [got its first million](@/news/2023-12-23/281/index.md) users. [Help us](@/donate/index.hu.md) to scale! - ### Töltse le és telepítse az Organic Maps-et az [AppStore][appstore], [Google Play][googleplay], [FDroid][fdroid], [Huawei AppGallery][appgallery] {#install} -{{ googleplaynews() }} - {{ badges() }} {{ screenshot(src='/images/screenshots/hiking.jpg', alt='Túrázás') }} @@ -38,10 +34,10 @@ társa: léteznek, az [OpenStreetMap][openstreetmap] jóvoltából - Kerékpárutak, túraútvonalak és sétaútvonalak - Szintvonalak, magassági profilok, csúcsok és lejtők -- Részletes gyalogos, kerékpáros és autós navigáció hangutasítással, Android - Auto +- Részletes gyalogos, kerékpáros és autós navigáció hangutasítással - Gyors offline keresés a térképen -- Könyvjelzők és számok KML, KMZ, GPX formátumban +- Könyvjelzők exportálása és importálása KML/KMZ formátumba/ból (GPX + [tervezett][gpx_issue]) - Sötét mód a szem védelme érdekében - Az országok és régiók adatai nem foglalnak el sok helyet - Ingyenes és nyílt forráskódú @@ -125,12 +121,9 @@ License 2.0-t használja. - Csatlakozz a [Telegram csoportunkhoz][telegram_chat], hogy beszélgethess a többi felhasználóval. - Látogasson el a [GitHub oldalunkra][github]. -- Kövesse frissítéseinket, újdonságainkat a [FOSStodon][fosstodon], - [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], - [Instagram][instagram], [Reddit][reddit] és [LinkedIn][LinkedIn] - szolgáltatásokon. -- Join (or create and let us know) local communities: [Hungarian translators - Matrix room](https://matrix.to/#/#organicmapstranslate_hu:matrix.org) +- Kövesse frissítéseinket, újdonságainkat a [Mastodon][mastodon], + [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], + [Reddit][reddit] és [LinkedIn][LinkedIn] szolgáltatásokon. [fork]: https://hu.wikipedia.org/wiki/Fork_%28szoftverfejleszt%C3%A9s%29 diff --git a/content/_index.id.md b/content/_index.id.md index 90347e54..614d28f4 100644 --- a/content/_index.id.md +++ b/content/_index.id.md @@ -11,12 +11,8 @@ title: 'Organic Maps: Pendakian, Bersepeda, Jalan Setapak, dan Navigasi Luring' **Organic Maps** adalah salah satu dari sedikit aplikasi saat ini yang mendukung 100% fitur tanpa koneksi Internet aktif. Instal Organic Maps, unduh peta, buang kartu SIM Anda (ngomong-ngomong, operator Anda terus melacak Anda), dan lakukan perjalanan mingguan dengan satu kali pengisian baterai tanpa bita apa pun yang dikirim ke jaringan. -> In 2023, Organic Maps [got its first million](@/news/2023-12-23/281/index.md) users. [Help us](@/donate/index.id.md) to scale! - ### Unduh dan instal Organic Maps dari [AppStore][appstore], [Google Play][googleplay], [FDroid][fdroid], [Huawei AppGallery][appgallery] {#install} -{{ googleplaynews() }} - {{ badges() }} {{ screenshot(src='/images/screenshots/hiking.jpg', alt='Pendakian') }} @@ -39,9 +35,10 @@ turis, pejalan kaki, dan pengendara sepeda: - Rute bersepeda, jalur pendakian, dan jalur pejalan kaki - Garis kontur, profil ketinggian, puncak, dan lereng - Navigasi berjalan kaki, bersepeda, dan mobil belok demi belok dengan - panduan suara dan Android Auto + panduan suara - Pencarian luring cepat pada peta -- Bookmark dan trek dalam format KML, KMZ, GPX +- Ekspor dan impor penanda dalam format KML/KMZ (GPX + [direncanakan][gpx_issue]) - Mode Gelap untuk melindungi mata Anda - Negara dan wilayah tidak memakan banyak ruang - Bebas dan sumber terbuka @@ -127,11 +124,9 @@ dilisensikan di bawah lisensi Apache 2.0. - Bergabunglah dengan [grup Telegram][telegram_chat] kami untuk berdiskusi dengan pengguna lain. - Kunjungi [laman GitHub][github] kami. -- Ikuti pembaruan kami di [FOSStodon][fosstodon], [Mastodon][mastodon], - [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], - [Reddit][reddit], [LinkedIn][LinkedIn]. -- Join (or create and let us know) local communities: [Hungarian translators - Matrix room](https://matrix.to/#/#organicmapstranslate_hu:matrix.org) +- Ikuti pembaruan kami di [Mastodon][mastodon], [Facebook][facebook], + [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], + [LinkedIn][LinkedIn]. [fork]: https://en.wikipedia.org/wiki/Fork_(software_development) diff --git a/content/_index.it.md b/content/_index.it.md index 0936f0ce..147588a8 100644 --- a/content/_index.it.md +++ b/content/_index.it.md @@ -10,12 +10,8 @@ extra: **Organic Maps** è un'applicazione gratuita di mappe offline per Android e iOS per viaggiatori, turisti, escursionisti e ciclisti, basata su dati crowd-sourced di **[OpenStreetMap](https://www.openstreetmap.org)**. Si tratta di un [fork][fork] open source dell'applicazione **Maps.me** (precedentemente nota come [**MapsWithMe**](https://en.wikipedia.org/wiki/Maps.me)), incentrato sulla privacy e gestito dalle stesse persone che hanno creato **MapsWithMe** nel 2011. -> Nel 2023, Organic Maps [ha ottenuto il suo primo milione](@/news/2023-12-23/281/index.md) di utenti. [Aiutateci](@/donate/index.it.md) a scalare! - ### Scaricare e installare Organic Maps da [AppStore][appstore], [Google Play][googleplay], [FDroid][fdroid], [Huawei AppGallery][appgallery] {#install} -{{ googleplaynews() }} - {{ badges() }} {{ screenshot(src='/images/screenshots/hiking.jpg', alt='Hiking') }} @@ -30,9 +26,9 @@ Organic Maps è l'applicazione definitiva per viaggiatori, turisti, escursionist - Mappe offline dettagliate con luoghi che non esistono su altre mappe, grazie a [OpenStreetMap](https://osm.org) - Percorsi ciclabili, sentieri escursionistici e percorsi pedonali - Curve di livello, profili altimetrici, picchi e pendenze -- Navigazione a piedi, in bicicletta e in auto con guida vocale, svolta per svolta, Android Auto +- Navigazione a piedi, in bicicletta e in auto con guida vocale, svolta per svolta - Ricerca veloce offline sulla mappa -- Esportazione e importazione di punti di interesse nei formati KML/KMZ, importazione in formato GPX +- Esportazione e importazione di punti di interesse nei formati KML/KMZ (GPX è [previsto](https://github.com/organicmaps/organicmaps/issues/624)) - Modalità scura per proteggere gli occhi - I paesi e le regioni non occupano molto spazio - Gratuito e open-source @@ -114,7 +110,7 @@ Organic Maps è un [software open-source][github] con licenza Apache 2.0. - Присоединяйтесь к нашей [русскоязычной группе в Telegram][telegram_chat_ru] для обратной связи и помощи. - Diğer kullanıcılarla tartışmak için [Telegram Grubumuza](https://t.me/OrganicMapsTR) katılın. - Visita la nostra [pagina GitHub][github]. -- Segui i nostri aggiornamenti su [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [Linkedin][linkedin]. +- Segui i nostri aggiornamenti su [Facebook][facebook], [Twitter][twitter], [Instagram][instagram]. [fork]: https://it.wikipedia.org/wiki/Fork_(sviluppo_software) diff --git a/content/_index.lt.md b/content/_index.lt.md deleted file mode 100644 index 3b575060..00000000 --- a/content/_index.lt.md +++ /dev/null @@ -1,134 +0,0 @@ ---- -description: 'Sparčiai be interneto veikiantys detalūs žemėlapiai keliautojams, turistams, vairuotojams, žygeiviams ir dviratininkams, sukurti MapsWithMe (Maps.Me) programėlės įkūrėjų.' -extra: - menu_title: Pagrindinis -page_template: index.html -sort_by: weight -title: 'Organic Maps: žygių takai pėsčiomis, dviračiu ir navigacija' ---- - -**Organic Maps** yra nemokama be interneto veikianti Android ir iOS žemėlapių programėlė, skirta keliautojams, turistams, žygeiviams ir dviratininkams, kuri naudoja bendruomenės tvarkomų **[OpenStreetMap][openstreetmap]** žemėlapių duomenis. Ji yra į privatumą orientuota atviro kodo atšaka nuo [fork][fork] **Maps.me** programėlės (anksčiau žinomos kaip [**MapsWithMe**][mapswithme]), prižiūrima tų pačių žmonių, kurie sukūrė **MapsWithMe** 2011-aisiais metais. - -**Organic Maps** yra viena iš nedaugelio programų, kurios 100% funkcijų šiais laikais veikia be interneto ryšio. Įsidiekite Organic Maps, atsisiųskite žemėlapius, išmeskite SIM kortelę (atmikite, kad jūsų ryšio operatorius nuolat seka jus) ir išvykite į savaitės trukmės kelionę su vienu baterijos pakrovimu ir neišsiuntę nė vieno baito į internetą. - -> In 2023, Organic Maps [got its first million](@/news/2023-12-23/281/index.md) users. [Help us](@/donate/index.md) to scale! - -### Atsisiųskite ir įsidiekite Organic Maps iš [AppStore][appstore], [Google Play][googleplay], [FDroid][fdroid], [Huawei AppGallery][appgallery] {#install} - -{{ googleplaynews() }} - -{{ badges() }} - -{{ screenshot(src='/images/screenshots/hiking.jpg', alt='Žygiavimas') }} - -{{ screenshot(src='/images/screenshots/prague.jpg', alt='Praha') }} - -{{ screenshot(src='/images/screenshots/search.jpg', alt='Paieška -neprisijungus') }} - -{{ screenshot(src='/images/screenshots/dark.jpg', alt='Navigacija tamsiuoju -režimu') }} - -## Funkcijos - -Organic Maps programėlė yra nuostabi palydovė keliautojams, turistams, -žygeiviams ir dviratininkams: - -- Detalūs žemėlapiai be interneto su vietomis, kurių nerasite kituose - žemėlapiuose, dėka [OpenStreetMap][openstreetmap] -- Dviračių, žygių ir pėsčiųjų takai -- Reljefo kontūrai, pakilimo profiliai, viršukalnės ir šlaitai -- Nuosekli navigacija pėstiesiems, dviratininkams ir automobilių - vairuotojams su nurodymais balsu ir Android Auto -- Sparti paieška žemėlapyje neprisijungus -- Žymelės ir takai KML, KMZ ir GPX formatais -- Tamsus režimas apsaugos jūsų akis -- Šalys ir regionai neužima daug vietos -- Nemokama ir atvirojo kodo - -## Kodėl Organic? - -Organic Maps yra tyra ir ekologiška, sukurta su meile: - -- Gerbia jūsų privatumą -- Tausoja jūsų bateriją -- Jokių netikėtų mokesčių už mobilius duomenis - -Organic Maps programėlė nenaudoja seklių ir neturi kitų kenksmingų savybių: - -- Jokių reklamų -- Jokio sekimo -- Jokio duomenų rinkimo -- Jokio duomenų siuntimo programėlės kūrėjams -- Jokios registracijos -- Jokios priverstinės pamokėlių peržiūros -- Jokio el. pašto šlamšto -- Jokių rodomų pranešimų -- Jokių nepageidaujamų funkcijų -- ~~Jokių pesticidų~~ Visiškai ekologiška! - -Programėlė yra patikrinta [Exodus Privacy Project][exodus]: - -{{ exodus_screenshot() }} - -iOS programėlė yra patikrinta [TrackerControl for iOS][trackercontrol]: - -{{ trackercontrol_screenshot() }} - -Organic Maps neprašo perdėtų leidimų, kurie leistų jus šnipinėti: - -{{ privacy_screenshots() }} - -Mes, iš Organic Maps, tikime, kad privatumas yra pamatinė žmogaus teisė: - -- Organic Maps yra nekomercinis bendruomenės prižiūrimas atvirojo kodo - projektas -- Mes saugome jūsų privatumą nuo didžiųjų įmonių sekimo -- Likite saugūs nesvarbu, kur esate - -Atmeskite sekimą – rinkitės laisvę. - -**[Išbandykite Organic Maps!](#install)** - -## Kas moka už nemokamą programėlę? - -Programėlė yra nemokama visiems. Prašome [paaukoti](@/donate/index.md), kad -paremtumėt mus! - -Paaukokite iškart, spauskite ant norimo mokėjimo metodo ženklelio apačioje: - -{{ donate_buttons() }} - -### Mūsų rėmėjai: - -[Mythic Beasts](https://www.mythic-beasts.com/) ISP [mums -teikia][mythic_beasts_donation] du virtualius serverius su 400 TB per mėnesį -nemokamo duomenų persiuntimo, kad padėtų mūsų naudotojams gauti žemėlapių -duomenis ir atnaujinimus. - -## Bendruomenė - -Organic Maps yra [atvirojo kodo programinė įranga][github] platinama su -Apache License 2.0 licenzija. - -- Kviečiame prisijungti prie beta testuotojų programos, siūlyti savo - funkcijas ir pranešti riktus: - * [iOS Beta (TestFlight)][testflight] - * [Android Beta (Firebase)][firebase] - * [Linux darbalaukio Beta (Flatpak)][flatpak] - * [Linux darbalaukio Beta (paketai)][repology] -- Report bugs or issues to [the issue tracker][issues] or [email us][email]. -- [Discuss][ideas] ideas or propose feature requests. -- Subscribe to our [Telegram Channel][telegram] or to the [matrix - space][matrix] for updates. -- Join our [Telegram Group][telegram_chat] to discuss with other users. -- Visit our [GitHub page][github]. -- Follow our updates in [FOSStodon][fosstodon], [Mastodon][mastodon], - [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], - [Reddit][reddit], [LinkedIn][LinkedIn]. -- Join (or create and let us know) local communities: [Hungarian translators - Matrix room](https://matrix.to/#/#organicmapstranslate_hu:matrix.org) - -[fork]: https://en.wikipedia.org/wiki/Fork_(software_development) - -{{ references() }} diff --git a/content/_index.md b/content/_index.md index dc762d5d..3e91447e 100644 --- a/content/_index.md +++ b/content/_index.md @@ -7,17 +7,12 @@ extra: menu_title: Home --- -**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, drivers and cyclists based on **[OpenStreetMap][openstreetmap]** data created by the community. -It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011. +**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, and cyclists based on top of crowd-sourced **[OpenStreetMap][openstreetmap]** data. It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011. -**Organic Maps** is one of the few applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card, and go for a weeklong trip on a single battery charge without any byte sent to the network. - -> In 2023, Organic Maps [got its first million](@/news/2023-12-23/281/index.md) users. [Help us](@/donate/index.md) to scale! +**Organic Maps** is one of the only applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card (by the way, your operator constantly tracks you), and go for a weeklong trip on a single battery charge without any byte sent to the network. ### Download and install Organic Maps from [AppStore][appstore], [Google Play][googleplay], [FDroid][fdroid], [Huawei AppGallery][appgallery] {#install} -{{ googleplaynews() }} - {{ badges() }} {{ screenshot(src='/images/screenshots/hiking.jpg', alt='Hiking') }} @@ -35,9 +30,9 @@ Organic Maps is the ultimate companion app for travelers, tourists, hikers, and - Detailed offline maps with places that don't exist on other maps, thanks to [OpenStreetMap][openstreetmap] - Cycling routes, hiking trails, and walking paths - Contour lines, elevation profiles, peaks, and slopes -- Turn-by-turn walking, cycling, and car navigation with voice guidance and Android Auto +- Turn-by-turn walking, cycling, and car navigation with voice guidance - Fast offline search on the map -- Export/import bookmarks in KML/KMZ, import GPX +- Bookmarks and tracks in KML, KMZ, GPX formats - Dark Mode to protect your eyes - Countries and regions don't take a lot of space - Free and open-source @@ -111,8 +106,7 @@ Organic Maps is an [open-source software][github] licensed under the Apache Lice - Subscribe to our [Telegram Channel][telegram] or to the [matrix space][matrix] for updates. - Join our [Telegram Group][telegram_chat] to discuss with other users. - Visit our [GitHub page][github]. -- Follow our updates in [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]. -- Join (or create and let us know) local communities: [Hungarian Matrix room](https://matrix.to/#/#organicmapstranslate_hu:matrix.org), [Chinese-][telegram_chat_zh], [French-][telegram_chat_fr], [Russian-][telegram_chat_ru], [Turkish-][telegram_chat_tr]speaking Telegram chats. +- Follow our updates in [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]. [fork]: https://en.wikipedia.org/wiki/Fork_(software_development) diff --git a/content/_index.ml.md b/content/_index.ml.md deleted file mode 100644 index 6e93fb8c..00000000 --- a/content/_index.ml.md +++ /dev/null @@ -1,133 +0,0 @@ ---- -description: 'MapsWithMe (Maps.Me) ആപ്പ് സ്ഥാപകർ സൃഷ്‌ടിച്ച യാത്രക്കാർ, വിനോദസഞ്ചാരികൾ, ഡ്രൈവർമാർ, കാൽനടയാത്രക്കാർ, സൈക്ലിസ്റ്റുകൾ എന്നിവയ്‌ക്കായി അതിവേഗ വിശദമായ ഓഫ്‌ലൈൻ ഭൂപടങ്ങൾ.' -extra: - menu_title: വീട് -page_template: index.html -sort_by: weight -title: 'Organic Maps Offline Hike, Bike, GPS Navigation' ---- - -**ഓർഗാനിക് മാപ്‌സ്** യാത്രക്കാർക്കും വിനോദസഞ്ചാരികൾക്കും കാൽനടയാത്രക്കാർക്കും സൈക്കിൾ യാത്രക്കാർക്കുമുള്ള സൗജന്യ Android & iOS ഓഫ്‌ലൈൻ മാപ്‌സ് ആപ്പാണ്, ആൾക്കൂട്ടത്തിൽ നിന്ന് ലഭിക്കുന്ന **[OpenStreetMap][openstreetmap]** ഡാറ്റയെ അടിസ്ഥാനമാക്കി. ഇത് **Maps.me** ആപ്പിന്റെ (മുമ്പ് [**MapsWithMe**][mapswithme] എന്നറിയപ്പെട്ടിരുന്നു), ** സൃഷ്‌ടിച്ച അതേ ആളുകൾ പരിപാലിക്കുന്ന ഒരു സ്വകാര്യത കേന്ദ്രീകൃതവും ഓപ്പൺ സോഴ്‌സ് [ഫോർക്ക്] ആണ്. 2011-ൽ MapsWithMe**. - -**ഓർഗാനിക് മാപ്‌സ്** എന്നത് സജീവമായ ഇന്റർനെറ്റ് കണക്ഷൻ ഇല്ലാതെ 100% സവിശേഷതകളെ പിന്തുണയ്ക്കുന്ന ചുരുക്കം ചില പ്രയോഗങ്ങളിൽ ഒന്നാണ്. ഓർഗാനിക് മാപ്‌സ് ഇൻസ്‌റ്റാൾ ചെയ്യുക, ഭൂപടങ്ങൾ ഡൗൺലോഡ് ചെയ്യുക, നിങ്ങളുടെ സിം കാർഡ് വലിച്ചെറിയുക (വഴി, നിങ്ങളുടെ ഓപ്പറേറ്റർ നിങ്ങളെ നിരന്തരം ട്രാക്ക് ചെയ്യുന്നു), നെറ്റ്‌വർക്കിലേക്ക് അയയ്‌ക്കേണ്ട ഒരു ബൈറ്റ് ഇല്ലാതെ ഒരൊറ്റ ബാറ്ററി ചാർജിൽ ഒരു ആഴ്‌ച നീണ്ട യാത്ര പോകുക. - -> In 2023, Organic Maps [got its first million](@/news/2023-12-23/281/index.md) users. [Help us](@/donate/index.md) to scale! - -### [AppStore][appstore], [Google Play][googleplay], [FDroid][fdroid], [Huawei AppGallery][appgallery] എന്നിവയിൽ നിന്ന് ഓർഗാനിക് മാപ്‌സ് ഡൗൺലോഡ് ചെയ്‌ത് ഇൻസ്റ്റാൾ ചെയ്യുക {#install} - -{{ googleplaynews() }} - -{{ badges() }} - -{{ screenshot(src='/images/screenshots/hiking.jpg', alt='കാൽനടയാത്ര') }} - -{{ screenshot(src='/images/screenshots/hiking.jpg', alt='കാൽനടയാത്ര') }} - -{{ screenshot(src='/images/screenshots/search.jpg', alt='Offline Search') }} - -{{ screenshot(src='/images/screenshots/dark.jpg', alt='Navigation in dark -mode') }} - -## സവിശേഷതകൾ - -സഞ്ചാരികൾ, വിനോദസഞ്ചാരികൾ, കാൽനടയാത്രക്കാർ, സൈക്കിൾ യാത്രക്കാർ -എന്നിവർക്കുള്ള ആത്യന്തിക കൂട്ടാളി പ്രയോഗമാണ് ജെെവ ഭൂപടങ്ങൾ: - -- മറ്റ് ഭൂപടങ്ങളിൽ നിലവിലില്ലാത്ത സ്ഥലങ്ങളുള്ള വിശദമായ ഓഫ്‌ലൈൻ ഭൂപടങ്ങൾ, - [OpenStreetMap][openstreetmap] ന് നന്ദി -- സൈക്ലിംഗ് പാതകൾ, കാൽനടയാത്രകൾ, നടപ്പാതകൾ -- കോണ്ടൂർ ലൈനുകൾ, എലവേഷൻ പ്രൊഫൈലുകൾ, കൊടുമുടികൾ, ചരിവുകൾ -- വോയ്‌സ് ഗൈഡൻസുള്ള ടേൺ-ബൈ-ടേൺ നടത്തം, സൈക്ലിംഗ്, കാർ നാവിഗേഷൻ -- ഭൂപടത്തിൽ വേഗത്തിലുള്ള ഓഫ്‌ലൈൻ തിരയൽ -- KML, KMZ, GPX ഫോർമാറ്റുകളിലെ ബുക്ക്‌മാർക്കുകളും ട്രാക്കുകളും -- നിങ്ങളുടെ കണ്ണുകളെ സംരക്ഷിക്കാൻ ഇരുണ്ട രീതി -- രാജ്യങ്ങളും പ്രദേശങ്ങളും ധാരാളം സ്ഥലം എടുക്കുന്നില്ല -- സ്വതന്ത്രവും കാണാൻ കഴിയുന്നതുമായ ഉറവിടം - -## എന്തുകൊണ്ട് ജൈവം? - -ജെെവ ഭൂപടങ്ങൾ ശുദ്ധവും ജെെവുമാണ്, സ്‌നേഹത്തോടെ നിർമ്മിച്ചതാണ്: - -- നിങ്ങളുടെ സ്വകാര്യതയെ മാനിക്കുന്നു -- നിങ്ങളുടെ ബാറ്ററി ലാഭിക്കുന്നു -- അപ്രതീക്ഷിത മൊബൈൽ ഡാറ്റ നിരക്കുകളൊന്നുമില്ല - -ഓർഗാനിക് മാപ്‌സ് ആപ്പ് ട്രാക്കറുകളിൽ നിന്നും മറ്റ് മോശം കാര്യങ്ങളിൽ നിന്നും -മുക്തമാണ്: - -- പരസ്യങ്ങളില്ല -- ട്രാക്കിംഗ് ഇല്ല -- വിവരശേഖരണമില്ല -- വീട്ടിലേക്ക് ഫോൺ ചെയ്യുന്നില്ല -- ശല്യപ്പെടുത്തുന്ന രജിസ്ട്രേഷൻ ഇല്ല -- നിർബന്ധിത ട്യൂട്ടോറിയലുകളൊന്നുമില്ല -- ശബ്ദായമാനമായ ഇമെയിൽ സ്പാം ഇല്ല -- Push notifications -- ക്രാപ്പ്വെയർ ഇല്ല -- ~~കീടനാശിനികൾ ഇല്ല~~ പൂർണ്ണമായും ജൈവ! - -ഈ പ്രയോഗം [Exodus Privacy Project][exodus] പരിശോധിച്ചുറപ്പിച്ചതാണ്: - -{{ exodus_screenshot() }} - -The iOS application is verified by [TrackerControl for iOS][trackercontrol]: - -{{ trackercontrol_screenshot() }} - -നിങ്ങളെ ചാരപ്പണി ചെയ്യാൻ ഓർഗാനിക് മാപ്‌സ് അമിതമായ അനുമതികൾ -അഭ്യർത്ഥിക്കുന്നില്ല: - -{{ privacy_screenshots() }} - -ഇവിടെ ജെെവ ഭൂപടങ്ങളിൽ, സ്വകാര്യത മനുഷ്യന്റെ മൗലികാവകാശമാണെന്ന് ഞങ്ങൾ -വിശ്വസിക്കുന്നു: - -- ഇൻഡി സമൂഹം നയിക്കുന്ന ഓപ്പൺ സോഴ്‌സ് പ്രോജക്റ്റാണ് ഓർഗാനിക് മാപ്‌സ് -- ബിഗ് ടെക്കിന്റെ കണ്ണിൽ നിന്ന് ഞങ്ങൾ നിങ്ങളുടെ സ്വകാര്യത സംരക്ഷിക്കുന്നു -- നിങ്ങൾ എവിടെയായിരുന്നാലും സുരക്ഷിതരായിരിക്കുക - -നിരീക്ഷണം നിരസിക്കുക - നിങ്ങളുടെ സ്വാതന്ത്ര്യം പുണരുക. - -**[ഓർഗാനിക് മാപ്പുകൾ ഒന്ന് ശ്രമിച്ചുനോക്കൂ!](#install)** - -## സൗജന്യ പ്രയോഗത്തിന് ആരാണ് പണം നൽകുന്നത്? - -ഈ പ്രയോഗം എല്ലാവർക്കും സൗജന്യമാണ്. ഞങ്ങളെ പിന്തുണയ്ക്കാൻ ദയവായി -[സംഭാവന](@/donate/index.md)! - -To donate conveniently, click on your preferred payment method icon below: - -{{ donate_buttons() }} - -### ഞങ്ങളുടെ സ്പോൺസർമാർ - -[Mythic Beasts](https://www.mythic-beasts.com/) ISP [provides -us][mythic_beasts_donation] two virtual servers with 400 TB/month of free -bandwidth to help our users with maps downloads and updates. - -## സമൂഹം - -Organic Maps is an [open-source software][github] licensed under the Apache -License 2.0. - -- Please join our beta program, suggest your features, and report bugs: - * [iOS Beta (TestFlight)][testflight] - * [Android Beta (Firebase)][firebase] - * [Linux Desktop Beta (Flatpak)][flatpak] - * [Linux Desktop Beta (packages)][repology] -- Report bugs or issues to [the issue tracker][issues] or [email us][email]. -- [Discuss][ideas] ideas or propose feature requests. -- Subscribe to our [Telegram Channel][telegram] or to the [matrix - space][matrix] for updates. -- മറ്റ് ഉപയോക്താക്കളുമായി ചർച്ച ചെയ്യാൻ ഞങ്ങളുടെ [Telegram - Group][telegram_chat] ചേരുക. -- ഞങ്ങളുടെ [GitHub page][github] സന്ദർശിക്കുക. -- Follow our updates in [FOSStodon][fosstodon], [Mastodon][mastodon], - [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], - [Reddit][reddit], [LinkedIn][LinkedIn]. -- Join (or create and let us know) local communities: [Hungarian translators - Matrix room](https://matrix.to/#/#organicmapstranslate_hu:matrix.org) - -[fork]: https://en.wikipedia.org/wiki/Fork_(software_development) - -{{ references() }} diff --git a/content/_index.mr.md b/content/_index.mr.md index ea3fef68..d8f9dc4e 100644 --- a/content/_index.mr.md +++ b/content/_index.mr.md @@ -11,12 +11,8 @@ title: 'Organic Maps : ऑफलाईन भटकंती, सायकल **Organic Maps** हे आजकाल विनाइंटरनेटचे सर्व वैशिष्ट्यांसकट चालणाऱ्या मोजक्या अॅप पैकी एक अॅप आहे. -> In 2023, Organic Maps [got its first million](@/news/2023-12-23/281/index.md) users. [Help us](@/donate/index.md) to scale! - ### Organic Maps इथून डाऊनलोड व स्थापीत करा : [AppStore][appstore], [Google Play][googleplay], [FDroid][fdroid], [Huawei AppGallery][appgallery] {#install} -{{ googleplaynews() }} - {{ badges() }} {{ screenshot(src='/images/screenshots/hiking.jpg', alt='भटकंती') }} @@ -37,10 +33,9 @@ title: 'Organic Maps : ऑफलाईन भटकंती, सायकल नसलेल्या ठिकाणांसोबत सखोल ऑफलाईन नकाशे - सायकलिंग मार्ग, भटकंती व चालण्याचे मार्ग - समोच्च रेषा, उंची प्रोफाइल, शिखरे व चढ-उतार -- व्हॉइस मार्गदर्शन आणि Android Auto सह कार, सायकली आणि चालण्यासाठी - टर्न-बाय-टर्न दिशानिर्देश +- ध्वनी मार्गदर्शनासह कार, सायकल व चालण्याचे वळणावळणाप्रमाणे दिशा निर्देशन - नकाशावर वेगवान ऑफलाईन शोध -- KML, KMZ, GPX फॉरमॅटमध्ये बुकमार्क आणि ट्रॅक +- KML/KMZ स्वरूपात बुकमार्क निर्यात व आयात (GPS [नियोजित][gpx_issue]) - तुमच्या डोळ्यांच्या संरक्षणासाठी, गडद मोड - देश आणि प्रदेश जास्त जागा घेत नाहीत - विनामूल्य व मुक्त स्रोत @@ -123,12 +118,10 @@ Apache License 2.0 परवान्य अंतर्गत Organic Maps ह - इतर वापरकर्त्यांसोबत चर्चा करायला आमच्या [टेलिग्राम गटात][telegram_chat] सहभागी व्हा. - आमच्या [GitHub पृष्ठावर][github] भेट द्या. -- [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], - [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], - [LinkedIn][LinkedIn] वरुन आमची माहिती मिळवा. -- Join (or create and let us know) local communities: [Hungarian translators - Matrix room](https://matrix.to/#/#organicmapstranslate_hu:matrix.org) +- [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], + [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn] वरुन आमची + माहिती मिळवा. -[fork]: https://en.wikipedia.org/wiki/Fork_(software_development) +[फोर्क]: https://en.wikipedia.org/wiki/Fork_(software_development) {{ references() }} diff --git a/content/_index.nl.md b/content/_index.nl.md index 60fb1672..6b38fe7f 100644 --- a/content/_index.nl.md +++ b/content/_index.nl.md @@ -11,12 +11,8 @@ title: 'Organic Maps: Offline Wandelen, Fietsen, Routes en Navigatie' **Organic Maps** is één van de weinige apps heden ten dage die 100% van de functionaliteit heeft zonder actieve internetverbinding. Installeer Organic Maps, download kaarten, gooi je SIM kaart weg (trouwens, je provider trackt je altijd), en ga een week op pad zonder je batterij op te laden en zonder dat er één byte naar het netwerk verzonden wordt. -> In 2023, Organic Maps [got its first million](@/news/2023-12-23/281/index.md) users. [Help us](@/donate/index.nl.md) to scale! - ### Download en installeer Organic Maps in de [AppStore][appstore], [Google Play][googleplay], [FDroid][fdroid], [Huawei AppGallery][appgallery] {#install} -{{ googleplaynews() }} - {{ badges() }} {{ screenshot(src='/images/screenshots/hiking.jpg', alt='Wandelen') }} @@ -38,9 +34,10 @@ wandelaars en fietsers: - Fietsroutes, wandelroutes en -paden - Contourlijnen, hoogteprofielen, pieken en hellingen - Routebegeleiding voor wandelen en fietsen en autonavigatie met - stembegeleiding en Android Auto + stembegeleiding - Snel offline zoeken op de kaart -- Bladwijzers exporteren en importeren in KML/KMZ formats, importeren GPX +- Bladwijzers exporteren en importeren in KML/KMZ formats (GPX is + [gepland][gpx_issue]) - Donkere stand om je ogen te beschermen - Landen en regio's nemen niet veel ruimte in beslag - Gratis en open source @@ -70,8 +67,7 @@ De applicatie is geverifieerd door [Exodus Privacy Project][exodus]: {{ exodus_screenshot() }} -De iOS applicatie is geverifieerd door [TrackerControl voor -iOS][trackercontrol]: +The iOS application is verified by [TrackerControl for iOS][trackercontrol]: {{ trackercontrol_screenshot() }} @@ -94,8 +90,7 @@ Weiger toezicht – omarm je vrijheid. De app is voor iedereen gratis. [Doneer](@/donate/index.nl.md) alstublieft om ons te ondersteunen! -Om gemakkelijk te doneren, klik op het icoon van uw -voorkeurs-betalingsmethode hieronder: +To donate conveniently, click on your preferred payment method icon below: {{ donate_buttons() }} @@ -125,11 +120,9 @@ Apache License 2.0. - Kom bij onze [Telegram groep][telegram_chat] om te discussiëren met andere gebruikers. - Bezoek onze [GitHub pagina][github]. -- Volg onze update op [FOSStodon][fosstodon], [Mastodon][mastodon], - [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], - [Reddit][reddit], [LinkedIn][LinkedIn]. -- Join (or create and let us know) local communities: [Hungarian translators - Matrix room](https://matrix.to/#/#organicmapstranslate_hu:matrix.org) +- Volg onze update op [Mastodon][mastodon], [Facebook][facebook], + [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], + [LinkedIn][LinkedIn]. [fork]: https://nl.wikipedia.org/wiki/Fork_(ontwikkeling) diff --git a/content/_index.oc.md b/content/_index.oc.md index 5d392960..71a1d3fd 100644 --- a/content/_index.oc.md +++ b/content/_index.oc.md @@ -11,12 +11,8 @@ title: 'De Mapas Organicas : escorregudas ciclistas, caminadas, itineraris e per N’i a gaire a l’ora d’ara d’aplicacions coma **Mapas Organicas** que foncionan entierament sensa la connexion a Internet activa. Installatz Mapas Organicas, teledescargatz de mapas, escampatz vòstra carteta SIM (que, o sabètz, vòstre operator vos es a l’après de lònga) e partètz per una setmana de viatge amb un solet plen de batariá sensa un bit mandat au malhum. -> In 2023, Organic Maps [got its first million](@/news/2023-12-23/281/index.md) users. [Help us](@/donate/index.md) to scale! - ### Telecargatz e installatz Mapas Organicas de l’[AppStore][appstore], [Google Play][googleplay], [FDroid][fdroid] o [Huawei AppGallery][appgallery] {#install} -{{ googleplaynews() }} - {{ badges() }} {{ screenshot(src='/images/screenshots/hiking.jpg', alt='Escorregudas') }} @@ -39,9 +35,10 @@ lei ciclistas : - Percors ciclistes, draias d’escorregudas e caminaments - Linhas de contorn, perfius d’elevacion, cimas e pendents - Navigacion pas a pas d’a pès, amb la bicicleta, l’automobila e guida de - votz, Android Auto + votz - Recèrcas rapidas sus la mapa e fòra de linha -- Marcas de libre e traças en formats KML, KMZ, GPX +- Lei marcadors s'expòrtan e impòrtan en formats KML/KMZ (GPX es + [planificat][gpx_issue]) - Mòde fosc per protegir vòstreis uelhs - Lei país e lei regions utilizan gaire d'espaci - De còde liure e dobèrt @@ -93,7 +90,7 @@ Rebutar la susvelhança. Assegurar la libertat. ## Cu paga per l'aplicacion a gratis? -L'aplicacion es a gratis per totei. Se volètz [donar](@/donate/index.md) +L'aplicacion es a gratis per totei. Se volètz [donar](@/donate/index.ca.md) per nos ajudar! To donate conveniently, click on your preferred payment method icon below: @@ -126,11 +123,9 @@ Licéncia Apatxe 2.0. - Rejonhètz nòstre [grop Telegram][telegram_chat] per charrar amb d’autrei utilizators. - Visitatz nòstra [pagina GitHub][github]. -- Seguissètz lei noveutats sus [FOSStodon][fosstodon], [Mastodon][mastodon], - [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], - [Reddit][reddit] e [LinkedIn][LinkedIn]. -- Join (or create and let us know) local communities: [Hungarian translators - Matrix room](https://matrix.to/#/#organicmapstranslate_hu:matrix.org) +- Seguissètz lei noveutats sus [Mastodon][mastodon], [Facebook][facebook], + [Twitter][twitter], [Instagram][instagram], [Reddit][reddit] e + [LinkedIn][LinkedIn]. [fork]: https://en.wikipedia.org/wiki/Fork_(software_development) diff --git a/content/_index.pl.md b/content/_index.pl.md index e680c9b7..74b6fadd 100644 --- a/content/_index.pl.md +++ b/content/_index.pl.md @@ -11,12 +11,8 @@ title: 'Organic Maps: wędrówki, jazda na rowerze, szlaki i nawigacja offline' **Organic Maps** to jedna z niewielu obecnie aplikacji, która obsługuje 100% funkcji bez aktywnego połączenia z internetem. Zainstaluj Organic Maps, pobierz mapy, wyrzuć kartę SIM (tak przy okazji, Twój operator stale Cię śledzi) i wybierz się na tygodniową wycieczkę na jednym ładowaniu baterii bez żadnego bajtu wysłanego do sieci. -> W 2023 r. Organic Maps [zyskały pierwszy milion](@/news/2023-12-23/281/index.md) użytkowników. [Pomóż nam](@/donate/index.pl.md) skalować! - ### Pobierz i zainstaluj Organic Maps z [AppStore][appstore], [Google Play][googleplay], [FDroid][fdroid], [Huawei AppGallery][appgallery] {#install} -{{ googleplaynews() }} - {{ badges() }} {{ screenshot(src='/images/screenshots/hiking.jpg', alt='Turystyka piesza') @@ -40,9 +36,10 @@ wędrowców i rowerzystów: - Trasy rowerowe, szlaki turystyczne, ścieżki spacerowe - Linie konturowe, profile wysokościowe, szczyty i zbocza - Nawigacja piesza, rowerowa i samochodowa "zakręt po zakręcie" ze - wskazówkami głosowymi, Android Auto + wskazówkami głosowymi - Szybkie wyszukiwanie offline na mapie -- Zakładki i ścieżki w formatach KML, KMZ, GPX +- Eksport i import zakładek w formatach KML/KMZ (GPX jest + [planowane][gpx_issue]) - Tryb ciemny, aby chronić Twoje oczy - Kraje i regiony nie zajmują dużo miejsca - Wolne i otwarte źródło @@ -129,11 +126,9 @@ License 2.0. - Dołącz do naszej [grupy Telegram][telegram_chat], aby dyskutować z innymi użytkownikami. - Odwiedź naszą stronę [GitHub][github]. -- Śledź nasze aktualizacje na [FOSStodonie][fosstodon], - [Mastodonie][mastodon], [Facebooku][facebook], [Twitterze][twitter], - [Instagramie][instagram], [Reddicie][reddit], [LinkedIn][LinkedIn]. -- Join (or create and let us know) local communities: [Hungarian translators - Matrix room](https://matrix.to/#/#organicmapstranslate_hu:matrix.org) +- Śledź nasze aktualizacje na [Mastodonie][mastodon], [Facebooku][facebook], + [Twitterze][twitter], [Instagramie][instagram], [Reddicie][reddit], + [LinkedIn][LinkedIn]. [fork]: https://pl.wikipedia.org/wiki/Fork diff --git a/content/_index.pt-BR.md b/content/_index.pt-BR.md index e9c47734..8329f4f5 100644 --- a/content/_index.pt-BR.md +++ b/content/_index.pt-BR.md @@ -7,17 +7,12 @@ sort_by: weight title: 'Organic Maps: Caminhada, Ciclismo, Trilhas e Navegação Offline' --- -**Organic Maps** é um aplicativo gratuito para Android e iOS de mapas offline para viajantes, turistas, caminhantes e ciclistas baseado nos dados do **[OpenStreetMap][openstreetmap]**. -É um aplicativo com foco na privacidade, sendo uma [bifurcação][fork] aberta do app **Maps.me** (anteriormente conhecido como [**MapsWithMe**][mapswithme]), mantido pelas mesmas pessoas que criaram o **MapsWithMe** em 2011. +**Organic Maps** é um aplicativo gratuito para Android e iOS de mapas offline para viajantes, turistas, caminhantes e ciclistas baseado nos dados do **[OpenStreetMap][openstreetmap]**. É um aplicativo com foco na privacidade, sendo uma [bifurcação][fork] aberta do app **Maps.me** (anteriormente conhecido como [**MapsWithMe**][mapswithme]), mantido pelas mesmas pessoas que criaram o **MapsWithMe** em 2011. **Organic Maps** é atualmente um dos poucos apps que suporta 100% das suas funcionalidades sem uma conexão ativa com a internet. Instale Organic Maps, baixe mapas, jogue fora seu chip (a propósito, sua operadora o rastreia constantemente), e faça uma viagem no fim de semana com uma única carga de bateria sem nenhum byte enviado para a rede. -> Em 2023, Organic Maps [alcançou seu primeiro milhão de usuários](@/news/2023-12-23/281/index.md). [Ajude-nos](@/donate/index.pt-BR.md) a crescer! - ### Baixe e instale Organic Maps a partir da [AppStore][appstore], [Google Play][googleplay], [FDroid][fdroid], [Huawei AppGallery][appgallery] {#install} -{{ googleplaynews() }} - {{ badges() }} {{ screenshot(src='/images/screenshots/hiking.jpg', alt='Caminhada') }} @@ -38,10 +33,10 @@ e ciclistas: graças ao [OpenStreetMap][openstreetmap] - Rotas de ciclismo, trilhas para caminhadas e caminhos para pedestres - Curvas de nível, perfis de elevação, picos e encostas -- Navegação passo a passo a pé, bicicleta e carro, com orientação por voz e - Android Auto +- Navegação passo a passo a pé, bicicleta e carro, com orientação por voz - Busca rápida offline no mapa -- Exportação e importação de marcadores nos formatos KML/KMZ, importação GPX +- Exportação e importação de marcadores nos formatos KML/KMZ (GPX é + [planejado][gpx_issue]) - Modo escuro para proteger seus olhos - Países e regiões não ocupam muito espaço - Livre e de código aberto @@ -71,7 +66,7 @@ O app é verificado pelo [Projeto Exodus Privacy][exodus]: {{ exodus_screenshot() }} -A versão iOS é verificada por [TrackerControl para iOS][trackercontrol]: +A versão iOS é verificada por [TrackerControl for iOS][trackercontrol]: {{ trackercontrol_screenshot() }} @@ -125,12 +120,9 @@ Licença Apache 2.0. - Junte-se ao nosso [grupo do Telegram][telegram_chat] para conversar com outros usuários. - Visite nossa [página no GitHub][github]. -- Siga nossas atualizações no [FOSStodon][fosstodon], [Mastodon][mastodon], - [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], - [Reddit][reddit] e [LinkedIn][LinkedIn]. -- Junte-se (ou crie e nos diga) às comunidades locais: [Sala Matrix de - tradutores de - húngaro](https://matrix.to/#/#organicmapstranslate_hu:matrix.org) +- Siga nossas atualizações no [Mastodon][mastodon], [Facebook][facebook], + [Twitter][twitter], [Instagram][instagram], [Reddit][reddit] e + [LinkedIn][LinkedIn]. [fork]: https://pt.wikipedia.org/wiki/Bifurcação_(desenvolvimento_de_software) diff --git a/content/_index.pt.md b/content/_index.pt.md deleted file mode 100644 index 56c05015..00000000 --- a/content/_index.pt.md +++ /dev/null @@ -1,139 +0,0 @@ ---- -description: 'Mapas offline detalhados e rápidos para viajantes, turistas, condutores, caminhantes e ciclistas criados pelos fundadores da aplicação MapsWithMe (Maps.Me).' -extra: - menu_title: Início -page_template: index.html -sort_by: weight -title: 'Mapas orgânicos: caminhada, ciclismo, trilhos e navegação offline' ---- - -**Organic Maps** é uma aplicação gratuita para Android e iOS de mapas offline para viajantes, turistas, caminhantes e ciclistas baseado nos dados do **[OpenStreetMap][openstreetmap]**. É uma aplicação com foco na privacidade, sendo uma [bifurcação][fork] aberta da aplicação **Maps.me** (anteriormente conhecida como [**MapsWithMe**][mapswithme]), mantida pelas mesmas pessoas que criaram o **MapsWithMe** em 2011. - -**Organic Maps** é atualmente uma das poucas aplicações que suporta 100% das suas funcionalidades sem uma conexão ativa com a Internet. Instale o Organic Maps, descarregue mapas, deixe de lado o seu cartão SIM (a propósito, o seu operador segue-o constantemente) e faça uma viagem de uma semana com uma única carga de bateria sem qualquer byte enviado para a rede. - -> In 2023, Organic Maps [got its first million](@/news/2023-12-23/281/index.md) users. [Help us](@/donate/index.pt-BR.md) to scale! - -### Descarregue e instale o Organic Maps a partir da [AppStore][appstore], [Google Play][googleplay], [FDroid][fdroid], [Huawei AppGallery][appgallery] {#install} - -{{ googleplaynews() }} - -{{ badges() }} - -{{ screenshot(src='/images/screenshots/hiking.jpg', alt='Caminhada') }} - -{{ screenshot(src='/images/screenshots/prague.jpg', alt='Praga') }} - -{{ screenshot(src='/images/screenshots/search.jpg', alt='Pesquisa offline') -}} - -{{ screenshot(src='/images/screenshots/dark.jpg', alt='Navegação em modo -escuro') }} - -## Funcionalidades - -O Organic Maps é a aplicação ideal para viajantes, turistas, caminhantes e -ciclistas: - -- Mapas offline detalhados com locais que não existem noutros mapas, graças - ao [OpenStreetMap][openstreetmap] -- Rotas de ciclismo, trilhos para caminhadas e caminhos para pedestres -- Curvas de nível, perfis de elevação, picos e encostas -- Navegação passo a passo para peões, ciclistas e automóveis com orientação - por voz e Android Auto -- Pesquisa rápida offline no mapa -- Exportação e importação de marcadores nos formatos KML/KMZ, importação GPX -- Modo escuro para proteger os seus olhos -- Os dados de países e regiões inteiras não ocupam muito espaço -- Livre e de código aberto - -## Porquê orgânico? - -O Organic Maps é puro e orgânico, feito com amor: - -- Respeita a sua privacidade -- Economiza a sua bateria -- Sem custos inesperados de dados móveis - -A aplicação Organic Maps não tem rastreadores de terceiros nem outras coisas -más: - -- Sem anúncios -- Sem deixar rasto -- Sem recolha de dados -- Sem conexões para servidores externos -- Sem registos desnecessários e irritantes -- Sem tutoriais obrigatórios -- Sem lixo eletrónico enviado para o email -- Sem notificações -- Sem crapware (software pré-instalado indesejado) -- ~~Sem pesticidas~~ Puramente orgânico! - -A aplicação é verificada pelo [Projeto Exodus Privacy][exodus]: - -{{ exodus_screenshot() }} - -A versão iOS é verificada pelo [TrackerControl para iOS][trackercontrol]: - -{{ trackercontrol_screenshot() }} - -O Organic Maps não solicita permissões excessivas para espiá-lo: - -{{ privacy_screenshots() }} - -No Organic Maps, acreditamos que a privacidade é um direito humano -fundamental: - -- O Organic Maps é um projeto independente de código aberto orientado para a - comunidade -- Protegemos a sua privacidade dos olhos curiosos das grandes empresas -- Fique protegido, não importa onde esteja - -Rejeite a vigilância - abrace a sua liberdade. - -**[Experimente o Organic Maps!](#install)** - -## Quem está a pagar pela aplicação gratuita? - -A aplicação é gratuita para todos. Por favor, [faça mm -donativo](@/donate/index.pt-BR.md) para nos apoiar! - -Para fazer um donativo de forma cómoda, clique no ícone do seu método de -pagamento preferido abaixo: - -{{ donate_buttons() }} - -### Os nossos patrocinadores: - -O fornecedor de Internet [Mythic Beasts](https://www.mythic-beasts.com/) -[fornece-nos][mythic_beasts_donation] dois servidores virtuais com 400 -TB/mês de largura de banda gratuita para ajudar os nossos utilizadores a -descarregar e atualizar os mapas. - -## Comunidade - -O Organic Maps é um [software de código aberto][github] licenciado sob a -Licença Apache 2.0. - -- Por favor, junte-se ao nosso programa beta, faça sugestões e reporte - erros: - * [Beta iOS (TestFlight)][testflight] - * [Beta Android (Firebase)][firebase] - * [Beta PC Linux (Flatpak)][flatpak] - * [Beta PC Linux (pacotes)][repology] -- Reporte erros ou problemas no [rastreador de problemas][issues] ou por - [e-mail][email]. -- [Discuta][ideas] ideias ou proponha novas funcionalidades. -- Inscreva-se no nosso [canal do Telegram][telegram] ou no [espaço - matrix][matrix] para receber notícias. -- Junte-se ao nosso [grupo do Telegram][telegram_chat] para conversar com - outros utilizadores. -- Visite a nossa [página no GitHub][github]. -- Siga as nossas atualizações no [FOSStodon][fosstodon], - [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], - [Instagram][instagram], [Reddit][reddit] e [LinkedIn][LinkedIn]. -- Join (or create and let us know) local communities: [Hungarian translators - Matrix room](https://matrix.to/#/#organicmapstranslate_hu:matrix.org) - -[fork]: https://pt.wikipedia.org/wiki/Bifurcação_(desenvolvimento_de_software) - -{{ references() }} diff --git a/content/_index.ru.md b/content/_index.ru.md index 9c3fc005..62dd5455 100644 --- a/content/_index.ru.md +++ b/content/_index.ru.md @@ -12,12 +12,8 @@ extra: *Organic Maps* поддерживает 100% функций без активного Интернет-подключения. Загрузите нужные карты, выбросьте SIM-карту (кстати, ваш оператор постоянно отслеживает вас) и отправляйтесь в недельное путешествие на одном заряде батареи. -> В 2023 году Organic Maps [использовали миллион человек](@/news/2023-12-23/281/index.md). [Помогите нам](@/donate/index.ru.md) масштабировать проект! - ### Загрузить и установить Organic Maps из [AppStore][appstore], [Google Play][googleplay], [FDroid][fdroid], [Huawei AppGallery][appgallery] {#install} -{{ googleplaynews() }} - {{ badges() }} {{ screenshot(src='/images/screenshots/hiking.jpg', alt='Пеший поход') }} @@ -29,10 +25,10 @@ extra: - Детальные и *быстрые* карты всего мира с местами, которых нет в других картах - Велосипедные маршруты, пешеходные тропы и пешеходные дорожки -- Авто, вело и пеший навигатор с голосовыми подсказками и Android Auto +- Авто, вело и пеший навигатор с голосовыми подсказками - Карты метро для крупных городов - Быстрый поиск интересных мест на карте -- Экспорт и импорт закладок в форматах KML/KMZ, импорт GPX +- Экспорт и импорт закладок в форматах KML/KMZ (GPX [планируется](https://github.com/organicmaps/organicmaps/issues/624)) ## Почему Organic? @@ -53,12 +49,12 @@ Organic Maps развивается сообществом энтузиасто {{ donate_buttons() }} -Помогите проекту [финансово](@/donate/index.ru.md "поддержать деньгами") чтобы приложение могло жить и развиваться. +Помогите проекту [финансово](/ru/donate "поддержать деньгами") чтобы приложение могло жить и развиваться. ## Сообщество - Подписывайтесь на наш [канал новостей в Telegram][telegram]; -- Присоединяйтесь к [русскоязычной][telegram_chat_ru] или [англоязычной группе в Telegram][telegram_chat], или [Matrix space на русском][matrix_ru] или [на английском][matrix] для обратной связи и помощи; +- Присоединяйтесь к [русскоязычной группе в Telegram][telegram_chat_ru] или [Matrix space][matrix_ru] для обратной связи и помощи; - Подключайтесь к программе тестирования бета-версий: * [iOS Beta (TestFlight)][testflight] * [Android Beta (Firebase)][firebase] @@ -68,19 +64,7 @@ Organic Maps развивается сообществом энтузиасто - Нарисуйте свой дом и район вокруг в [OpenStreetMap](https://openstreetmap.org); - Помогите с [переводом](https://github.com/organicmaps/organicmaps/blob/master/docs/TRANSLATIONS.md) приложения и веб-сайта на другие языки. - Поучаствуйте в [разработке][contributing] приложения под Android и iOS; -- Подпишитесь на нас в [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]. +- Подпишитесь на нас в [Facebook][facebook], [Twitter][twitter] и [Instagram][instagram]. - Расскажите своим друзьям и знакомым. -Так же мы ищем волонтёров, с возможностью стать частью команды, создающей лучшие в мире карты: -- для iOS и Android разработки; -- с хорошим знанием C++; -- для поддержки пользователей; -- для маркетинга, PR, и активностей в соцсетях; -- ASO; -- SEO, доработка нашего вебсайта; -- для красивых скриншотов на разных языках в магазинах приложений; -- для дизайна стилей карты, иконок, и улучшения интерфейса OM. - -Пишите нам, если вам нравится Organic Maps, чтобы вместе сделать карты ещё лучше! - {{ references() }} diff --git a/content/_index.sv.md b/content/_index.sv.md index 28574302..0e4d4bdb 100644 --- a/content/_index.sv.md +++ b/content/_index.sv.md @@ -11,12 +11,8 @@ title: 'Organic Maps: Offline Vandring, Cykling, Leder och Navigering' **Organic Maps** är ett av få program som numera stöder 100 % av funktionerna utan en aktiv internetanslutning. Installera Organic Maps, ladda ner kartor, släng ditt SIM-kort (din operatör spårar dig förresten hela tiden) och gör en veckolång resa med en enda batteriladdning utan att någon byte skickas till nätet. -> In 2023, Organic Maps [got its first million](@/news/2023-12-23/281/index.md) users. [Help us](@/donate/index.sv.md) to scale! - ### Ladda ner och installera Organic Maps från [AppStore][appstore], [Google Play][googleplay], [FDroid][fdroid], [Huawei AppGallery][appgallery] {#install} -{{ googleplaynews() }} - {{ badges() }} {{ screenshot(src='/images/screenshots/hiking.jpg', alt='Vandring') }} @@ -39,9 +35,10 @@ cyklister: - Cykelvägar, vandringsleder och promenadvägar - Konturlinjer, höjdprofiler, toppar och sluttningar - Tur-för-tur-navigering för promenader, cykling och bilnavigering med - röststyrning, Android Auto + röststyrning - Snabb offline-sökning på kartan -- Export och import av bokmärken i KML/KMZ-format, importera GPX +- Export och import av bokmärken i KML/KMZ-format (GPX är + [planerat][gpx_issue]) - Mörkt läge för att skydda dina ögon - Länder och regioner tar inte mycket plats - Gratis och öppen källkod @@ -126,11 +123,9 @@ Apache License 2.0. - Gå med i vår [Telegramgrupp][telegram_chat] för att diskutera med andra användare. - Besök vår [GitHub-sida][github]. -- Följ våra uppdateringar på [FOSStodon][fosstodon], [Mastodon][mastodon], - [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], - [Reddit][reddit], [LinkedIn][LinkedIn]. -- Join (or create and let us know) local communities: [Hungarian translators - Matrix room](https://matrix.to/#/#organicmapstranslate_hu:matrix.org) +- Följ våra uppdateringar på [Mastodon][mastodon], [Facebook][facebook], + [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], + [LinkedIn][LinkedIn]. [fork]: https://sv.wikipedia.org/wiki/Fork diff --git a/content/_index.te.md b/content/_index.te.md deleted file mode 100644 index 773c17f1..00000000 --- a/content/_index.te.md +++ /dev/null @@ -1,136 +0,0 @@ ---- -description: 'ప్రయాణికులు, పర్యాటకులు, డ్రైవర్లు, హైకర్లు మరియు సైక్లిస్ట్‌ల కోసం వేగవంతమైన వివరణాత్మక ఆఫ్‌లైన్ మ్యాప్‌లు, MapsWithMe (Maps.Me) యాప్ వ్యవస్థాపకుల నుండి.' -extra: - menu_title: హోమ్ -page_template: index.html -sort_by: weight -title: 'ఆర్గానిక్ మ్యాప్స్: ఆఫ్‌లైన్ హైక్, బైక్, ట్రైల్స్ మరియు నావిగేషన్' ---- - -**ఓర్గానిక్ మ్యాప్స్** అనేది ప్రయాణికులు, పర్యాటకులు, హైకర్లు మరియు సైక్లిస్ట్‌ల కోసం ఒక ఉచిత Android & iOS ఆఫ్‌లైన్ మ్యాప్‌ల యాప్. ఇది క్రౌడ్ సోర్స్డ్ **[OpenStreetMap][openstreetmap]** డేటా ఆధారంగా ఉంటుంది. **Maps.me** యాప్ (గతంలో [**MapsWithMe**][mapswithme]గా పిలువబడేది) గోప్యత-కేంద్రీకృత, ఓపెన్-సోర్స్ గా [ఫోర్క్]ఉంటూ, 2011లో **MapsWithMe** సృష్టించిన వారిచే నిర్వహించబడుతుంది. - -ఈరోజుల్లో ఇంటర్నెట్ కనెక్షన్ లేకుండా 100% లక్షణాలను మద్దతు చేసే ఏకైక అప్లికేషన్ ఒక్క ఓర్గానిక్ మ్యాప్స్ మాత్రమే. ఓర్గానిక్ మ్యాప్స్ ఇన్స్టాల్ చేసి, మ్యాప్లను డౌన్‌లోడ్ చేస్కోని మీ సిమ్ కార్డును విసిరేయండి ( మీ ఆపరేటర్ నిరంతరం మిమ్మల్ని ఎలానో ట్రాక్ చేస్తుంది అనుకోండి ).ఇప్పుడు ఒక్క బైట్ కూడా నెట్వర్క్ కి పంపకుండా సింగల్ బాటరీ ఛార్జింగ్ తో వారంపాటు విహారయాత్రకు నిచ్చతింగా వెళ్లి రండి. - -> In 2023, Organic Maps [got its first million](@/news/2023-12-23/281/index.md) users. [Help us](@/donate/index.md) to scale! - -### [AppStore][appstore], [Google Play][googleplay], [FDroid][fdroid], [Huawei AppGallery][appgallery] నుండి ఓర్గానిక్ మ్యాప్స్ ను డౌన్‌లోడ్ చేసి ఇన్‌స్టాల్ చేయండి. {#install} - -{{ googleplaynews() }} - -{{ badges() }} - -{{ screenshot(src='/images/screenshots/hiking.jpg', alt='హైకింగ్') }} - -ప్రేగ్ పట్నం - -ఆఫ్లైన్ సెర్చ్ - -డార్క్ మోడ్లో నావిగేషన్ - -## ఫీచర్స్ - -పర్యాటకులకు, హైకర్లు మరియు సైకిలిస్టులకు క్రింది ఫీచర్ల చే ఈ "ఓర్గానిక్ -మ్యాప్స్" అత్యంత మైత్రిగల యాప్ గా మారింది: - -- ఇతర మ్యాప్‌లలో లేని ప్రాంతాలను వివరసమృద్ధ ఆఫ్‌లైన్ మ్యాప్‌లుగా - అందిస్తుంది, [ఓపెన్‌స్ట్రీట్‌మ్యాప్]కు ధన్యవాదాలు. -- సైక్లింగ్ దారులను, హైకింగ్ మార్గాలు, మరియు నడిచే త్రోవలను -- కౌంటర్ లైన్లు, ఎలివేషన్ ప్రొఫైల్లు, పర్వతాలు, మరియు పర్వత చోటులను - చూపిస్తుంది. -- ఆడియో గైడెన్స్ మరియు ఆండ్రాయిడ్ ఆటోతో వాకింగ్, సైక్లింగ్ మరియు కార్ - నావిగేషన్ చేయండి -- వేగవంతమైన ఆఫ్ లైన్ సెర్చ్ . -- KML, KMZ, GPX ఫార్మాట్‌లలో బుక్‌మార్క్‌లు మరియు ట్రాక్‌లు -- మీ కళ్ళను సంరక్షించడానికి డార్క్ మోడ్ ఆప్షన్ ఉంది. -- దేశాలు, ప్రాంతాలు పెద్దగా స్టోరేజ్ తీసుకోవు -- ఈ యాప్ పూర్తిగా ఉచితం మరియు ఓపెన్-సోర్స్ . - -## ఆర్గానిక్ మ్యాపులే ఎందుకు ? - -"ఆర్గానిక్ మ్యాప్స్"స్వచ్ఛమైనది .ఇది ప్రేమతో తయారు చేయపడినది. - -- మీ గోప్యతను గౌరవిస్తాది -- మీ బ్యాటరీని సేవ్ చేస్తుంది. -- అనవసరమైన డేటా చార్జీలు ఉండవు. - -"ఆర్గానిక్ మ్యాప్స్" యాప్ ట్రాకర్‌లు మరియు ఇతర దుష్ట పద్ధతులు నుండి -స్వేచ్ఛగా ఉంటాది. - -- ప్రకటనలు ఉండవు -- మిమ్మల్ని ట్రాక్ చేయదు -- డేటా సేకరణలు ఉండవు -- No phoning home -- అసహజమైన నమోదులు ఉండవు -- అనివార్యమైన ట్యుటోరియల్లు ఉండవు -- ఇమెయిలు స్పామ్ ఉండవు -- పుష్ నోటిఫికేషన్లు లేవు -- అనవశ్యకమైన సాఫ్ట్‌వేర్ ఉండదు -- ఇది పూర్తిగా స్వచ్ఛమైనది !! - -ఈ అప్లికేషన్ [ఎక్సోడస్ ప్రైవసీ ప్రాజెక్ట్][exodus] ద్వారా ధృవీకరించబడింది. - -{{ exodus_screenshot() }} - -iOS అనువర్తనం [TrackerControl for iOS][trackercontrol] ద్వారా -ధృవీకరించబడింది. - -{{ trackercontrol_screenshot() }} - -ఆర్గానిక్ మప్స్ మీ మొయిద నిఘా ఉంచాడనికి అనవసరమైన అనుమతులు అడగదు - -{{ privacy_screenshots() }} - -ఈ ఆర్గానిక్ మప్స్ లో , మేము మీ గోప్యతను ప్రాధమిక హక్కుగా భావిస్తాము . - -- ఆర్గానిక్ మ్యాప్స్ ఒక ఇండి కమ్యూనిటీ-నియోజిత ఓపెన్-సోర్స్ ప్రాజెక్ట్. -- పెద్ద టెక్ సంస్థల కళ్ళు నుండి మీ గోప్యతను మేము రక్షిస్తాము. -- మీరు ఎక్కడ ఉన్న సురక్షితంగా ఉండండి. - -పరివీక్షణను తిరస్కరించండి - మీ స్వాత్రంత్యాన్ని స్వాగతించండి - -**[ఆర్గానిక్ మ్యాప్స్ ని ఒకసారి ప్రయత్నించండి!](#install)** - -## మరి ఈ ఉచిత అనువర్తనానికి ఎవరు చెల్లిస్తున్నారు? - -ఈ అనువర్తనం అందరికీ ఉచితం. మాకు తోడ్పడేందుకు [విరాళం] (@/donate/index.md) -ఇవ్వండి! - -సులభంగా విరాళం ఇచ్చేందుకు, మీకు నచ్చిన చెల్లింపు విధానం యొక్క ఐకాన్ పై -నొక్కండి: - -{{ donate_buttons() }} - -### మా స్పాన్సర్లు: - -[మైతిక్ బీస్ట్స్](https://www.mythic-beasts.com/) ఇంటర్నెట్ సర్వీస్ -ప్రొవైడర్స్ మా వినియోగదార్లకు మ్యాప్ డౌన్లోడ్లు, అప్డేట్లు కోసం రెండు -సెర్వర్లలో నెలకి నాలుగు వందల టెరాబైట్ల వరకు బ్యాండ్విడ్త్ ఉచితంగా -[ఇస్తున్నారు][mythic_beasts_donation]. - -## సంఘం - -ఆర్గానిక్ మ్యాప్స్, అపాచీ లైసెన్స్ 2.0 గల ఒక [స్వేచ్ఛామూలాలు][github] -సాఫ్ట్‌వేర్. - -- మా బీటా ప్రోగ్రామ్ లో చేరి, మీ సూచనలు, తప్పులను నివేదించండి: - * [ఐఓయస్ (టెస్ట్ ఫ్లైట్)][testflight] - * [ఆండ్రాయిడ్ బీటా (ఫైర్బేస్)][firebase] - * [లీనక్స్ డెస్కటాప్ బీటా (ఫ్లాట్పాక్)][flatpak] - * [లీనక్స్ డెస్కటాప్ బీటా (పాకేజీలు)][repology] -- బగ్ లు, లేదా సమస్యలను మాకు [ఇస్స్యూ ట్రాకర్][issues] లేదా - [ఈ-మెయిల్][email] ద్వారా తెలియజెయ్యండి. -- కొత్త అలోచనలు [చర్చించండి][ideas], ఫీచర్లు ప్రతిపాదించండి. -- వార్తల కొరకు మా [టెలీగ్రామ్ చానెల్][telegram] లేదా [మ్యాట్రిక్స్ - స్పేస్][matrix] కి సబ్ స్క్రైబ్ అవ్వండి. -- ఇతర వినియోగదారులతో చర్చించడానికి మా [టెలీగ్రామ్ సమూహం][telegram_chat]లో - చేరండి. -- మా [గిట్ హబ్ పేజీ][github]ని సందర్సించండి. -- [ఫోస్టోడాన్][fosstodon], [మాస్టోడాన్][mastodon], [ఫేస్‌బుక్][facebook], - [ట్విట్టర్][twitter], [ఇన్‌స్టాగ్రామ్][instagram], [రెడ్డిట్][reddit], - [లింకిడిన్][LinkedIn] లో మమ్మల్ని ఫాలో అవ్వండి. -- Join (or create and let us know) local communities: [Hungarian translators - Matrix room](https://matrix.to/#/#organicmapstranslate_hu:matrix.org) - -[fork]: https://en.wikipedia.org/wiki/Fork_(software_development) - -{{ references() }} diff --git a/content/_index.tr.md b/content/_index.tr.md index 04198c64..52614987 100644 --- a/content/_index.tr.md +++ b/content/_index.tr.md @@ -11,12 +11,8 @@ extra: Topluluk kaynaklı [**OpenStreetMap**][openstreetmap] verilerine dayanmaktadır. Daha önce [**MapsWithMe**][mapswithme] olarak bilinen **Maps.me** uygulamasının gizlilik odaklı, açık kaynaklı bir [çatalı](https://tr.wikipedia.org/wiki/%C3%87atal_(yaz%C4%B1l%C4%B1m_geli%C5%9Ftirme)) olan Organic Maps, 2011 yılında **MapsWithMe** uygulamasını geliştiren kişiler tarafından sürdürülmektedir. -> Organic Maps 2023 yılında [bir milyon](@/news/2023-12-23/281/index.md) kullanıcıya ulaştı. Masrafları karşılayabilmemiz için [bize yardım edin](@/donate/index.tr.md)! - ### Organic Maps'i [AppStore][appstore], [Google Play][googleplay], [FDroid][fdroid], [Huawei AppGallery][appgallery] adresinden indirin ve yükleyin {#install} -{{ googleplaynews() }} - {{ badges() }} {{ screenshot(src='/images/screenshots/hiking.jpg', alt='Yürüyüş') }} @@ -31,9 +27,9 @@ Organic Maps gezginler, turistler, yürüyüşçüler ve bisikletçiler için m - [OpenStreetMap][openstreetmap] sayesinde diğer haritalarda bulunmayan yerleri içeren ayrıntılı çevrimdışı haritalar - Bisiklet yolları, doğa yürüyüşü parkurları ve yürüyüş yolları - Eş yükselti çizgileri, yükseklik profilleri, tepe noktaları ve eğimler -- Sesli yönlendirmelerle adım adım yürüyüş, bisiklet ve araç navigasyonu, Android Auto +- Sesli yönlendirmelerle adım adım yürüyüş, bisiklet ve araç navigasyonu - Haritada hızlı ve çevrimdışı arama -- Yer imlerini KML/KMZ formatlarında dışa ve içe aktarma, GPX formatında içe aktarılması +- Yer imlerini KML/KMZ formatlarında dışa ve içe aktarma (GPX desteği de [planlanıyor][gpx_issue]) - Gözlerinizi korumak için Koyu Mod - Fazla depolama alanı kaplamayan ülke ve bölgeler - Özgür ve açık kaynak kodlu @@ -114,6 +110,7 @@ Organic Maps, Apache License 2.0 altında lisanslanmış bir [açık kaynaklı y - Join our [Telegram Group][telegram_chat] to discuss with other users. - [GitHub sayfamızı][github] ziyaret edin - [E-posta][email] ile bizimle iletişime geçin -- Güncellemelerimizi [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Reddit][reddit], [LinkedIn][LinkedIn] ve [Instagram](https://instagram.com/organicmapstr/) üzerinden takip edin. +- Güncellemelerimizi [Facebook][facebook], [Twitter][twitter] ve +- [Instagram](https://instagram.com/organicmapstr/) üzerinden takip edin. {{ references() }} diff --git a/content/_index.uk.md b/content/_index.uk.md index 1bcc3866..68dd22cc 100644 --- a/content/_index.uk.md +++ b/content/_index.uk.md @@ -11,12 +11,8 @@ title: 'Organic Maps: Офлайн карти та GPS навігація' **Organic Maps** - один з небагатьох застосунків, який підтримує 100% функціональність без активного інтернет-з’єднання. Встановіть Organic Maps, завантажте мапи, викиньте SIM-карту (до речі, ваш оператор постійно відстежує вас) та вирушайте в тижневу подорож на одному заряді батареї без жодного байта, відправленого в мережу. -> In 2023, Organic Maps [got its first million](@/news/2023-12-23/281/index.md) users. [Help us](@/donate/index.uk.md) to scale! - ### Завантажте та встановіть Organic Maps з [AppStore][appstore], [Google Play][googleplay], [F-Droid][fdroid], [Huawei AppGallery][appgallery] {#install} -{{ googleplaynews() }} - {{ badges() }} {{ screenshot(src='/images/screenshots/hiking.jpg', alt='Піші прогулянки') @@ -39,7 +35,7 @@ Organic Maps - це незамінний застосунок компаньйо - Велосипедні маршрути, туристичні стежки та пішохідні доріжки - Контурні лінії, профілі висот, піки та схили - Покрокові інструкції для пішоходів, велосипедистів та автомобільна - навігація з голосовим супроводом, Android Auto + навігація з голосовим супроводом - Швидкий офлайн пошук на мапі - Експорт та імпорт закладок та треків у форматах KML/KMZ та GPX - Темний режим для захисту ваших очей @@ -128,11 +124,9 @@ Organic Maps - це [ПЗ з відкритим початковим кодом] - Приєднуйтесь до нашої [Telegram групи][telegram_chat], щоб подискутувати з іншими користувачами. - Відвідайте нашу [сторінку на GitHub][github]. -- Слідкуйте за нами у [FOSStodon][fosstodon], [Mastodon][mastodon], - [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], - [Reddit][reddit], [LinkedIn][LinkedIn]. -- Join (or create and let us know) local communities: [Hungarian translators - Matrix room](https://matrix.to/#/#organicmapstranslate_hu:matrix.org) +- Слідкуйте за нами у [Mastodon][mastodon], [Facebook][facebook], + [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], + [LinkedIn][LinkedIn]. [fork]: https://uk.wikipedia.org/wiki/%D0%A4%D0%BE%D1%80%D0%BA diff --git a/content/_index.zh-Hans.md b/content/_index.zh-Hans.md index e1e9347d..76573300 100644 --- a/content/_index.zh-Hans.md +++ b/content/_index.zh-Hans.md @@ -11,12 +11,8 @@ title: 'Organic Maps:离线的远足、自行车、登山和导航地图' **Organic Maps** 是目前少数几个不需要持续互联网连接就能支持100%功能的应用程序之一。安装Organic Maps,下载地图,扔掉你的SIM卡(顺便说一下,你的运营商会不断地跟踪你),充一次电池就可以出去旅行一周而不需要通过网络发送哪怕一个字节。 -> In 2023, Organic Maps [got its first million](@/news/2023-12-23/281/index.md) users. [Help us](@/donate/index.zh-Hans.md) to scale! - ### 从 [AppStore][appstore]、[Google Play][googleplay]、[FDroid][fdroid]、[华为 AppGallery][appgallery] 下载并安装Organic Maps {#install} -{{ googleplaynews() }} - {{ badges() }} {{ screenshot(src='/images/screenshots/hiking.jpg', alt='登山') }} @@ -34,9 +30,9 @@ Organic Maps 是旅行者、游客、徒步旅行者和骑行者的终极伴侣 - 详细的离线地图,有其他地图上没有的地方,感谢[OpenStreetMap][openstreetmap] - 骑行路线、远足小径和步行道 - 等高线、高程剖面、山峰和山坡 -- 弯弯绕的步行、骑行和汽车导航都有语音向导,Android Auto 安卓汽车 +- 弯弯绕的步行、骑行和汽车导航都有语音向导 - 地图上的快速离线搜索 -- 以KML/KMZ格式导出和导入书签,GPX 导入 +- 以KML/KMZ格式导出和导入书签(GPX已列入[计划][gpx_issue]中) - 保护您眼睛的黑暗模式 - 国家和地区不会占用太大的空间 - 自由且开源 @@ -108,11 +104,9 @@ Organic Maps是一个以Apache许可证2.0授权的[开源软件][github]。 - 报告bug、跟踪问题 [the issue tracker][issues]或联系我们[email us][email]。 - [Discuss][ideas]创意点子、功能需求。 - 订阅我们的[Telegram频道][telegram]或[matrix空间][matrix]以获取最新信息。 -- 加入我们的[Telegram英语聊天][telegram_chat]或[Telegram聊天室][telegram_chat_zh],与其他用户讨论。 -- 访问我们的[GitHub页面][github]。 -- 在[FOSStodon][fosstodon]、[Mastodon][mastodon]、[Facebook][facebook]、[Twitter][twitter]、[Instagram][instagram]、[Reddit][reddit]、[LinkedIn][LinkedIn]关注我们的更新。 -- Join (or create and let us know) local communities: [Hungarian translators - Matrix room](https://matrix.to/#/#organicmapstranslate_hu:matrix.org) +- 加入我们的[Telegram组][telegram_chat],与其他用户讨论。 +- Visit our [GitHub page][github]. +- 在[Mastodon][mastodon]、[Facebook][facebook]、[Twitter][twitter]、[Instagram][instagram]、[LinkedIn][LinkedIn]关注我们的更新。 [fork]: https://zh.wikipedia.org/wiki/%E5%88%86%E5%8F%89_(%E8%BD%AF%E4%BB%B6%E5%BC%80%E5%8F%91) diff --git a/content/donate/index.af.md b/content/donate/index.af.md index de6af5d5..9e32dc37 100644 --- a/content/donate/index.af.md +++ b/content/donate/index.af.md @@ -42,6 +42,7 @@ Klik op u voorkeurbetaalmetode-ikoon hier onder: 3. Met genoeg geld kan nuwe funksies vinniger ontwikkel word, soos: - Weeklikse en geoutomatiseerde kaartdatabywerkings - Boekmerkrugsteun en -sinchronisering + - Android Auto - GPS-padopnemer met GPX ondersteuning - Beter kaartenstyle vir verskillende aktiwiteite - Reliëfskaduwees en 3D-terreine diff --git a/content/donate/index.ar.md b/content/donate/index.ar.md index f7e581a4..47c33651 100644 --- a/content/donate/index.ar.md +++ b/content/donate/index.ar.md @@ -15,7 +15,7 @@ weight: 10 - لا إشعارات مزعجة - مفتوح المصدر -انقر على أيقونة طريقة الدفع المفضلة أدناه: +Click on your preferred payment method icon below: {{ donate_buttons() }} @@ -50,7 +50,7 @@ weight: 10 ## كيف تتبرع؟ -انقر على أيقونة طريقة الدفع المفضلة أدناه: +Click on your preferred payment method icon below: {{ donate_buttons() }} diff --git a/content/donate/index.ca.md b/content/donate/index.ca.md index c541719f..9f54c619 100644 --- a/content/donate/index.ca.md +++ b/content/donate/index.ca.md @@ -1,13 +1,13 @@ --- description: "Els vostres diners paguen totes les despeses relacionades amb el projecte i ens motiven a millorar l’Organic Maps." extra: - menu_title: "Feu una donació" + menu_title: "Fes una donació" preview_image: donate/donate.png -title: "Doneu per a ajudar al desenvolupament de l'Organic Maps" +title: "Donar per a fer costat al desenvolupament d'Organic Maps" weight: 10 --- -L'Organic Maps és _gratis per a tothom_ gràcies a les seves +Organic Maps és _gratis per a tothom_ gràcies a les seves **[donacions][stripe]**: - Sense anuncis @@ -22,35 +22,37 @@ Feu clic a la icona de pagament preferit: ## Per què fer donatius a l’Organic Maps? -1. Depenem dels vostres donatius per a continuar amb la nostra missió de - mantenir l'Organic Maps obert i gratuït. I lliure d'anuncis. +1. Depenem dels seus donatius per a seguir amb la nostra missió de mantenir + Organic Maps oberta i gratuïta. I lliure d'anuncis. 2. Som un grup d'entusiastes contribuint en el nostre temps lliure, i gastant els diners de les nostres famílies en el projecte. Ens encanta el que fem, i estimem als nostres usuaris ❤️. -3. Amb el vostre suport, volem convertir-nos en una millor versió de Google - Maps, centrada en la privadesa. +3. Amb el seu suport, volem convertir-nos en una millor versió de Google + Maps, centrada en la privacitat. ## Per a què es faran servir els diners? -1. Paguem per servidors ràpids, perquè qualsevol persona pugui accedir a les - actualitzacions de característiques dels mapes de forma ràpida i sense - esperes. Són centenars de terabytes al mes, i la quantitat està creixent. +1. Paguem per servidors ràpids, per la qual cosa qualsevol en el món pot + descarregar actualitzacions de les característiques dels mapes ràpid i + sense esperes. Són centenars de terabytes al mes, i la quantitat està + creixent. 2. L'assistència als usuaris, l'arranjament d'errors i la millora de l'estabilitat de l'aplicació són les nostres principals prioritats. Hi ha més de [1800 informes en GitHub][github issues], i aquest número creix cada dia. AppStore, Google Play i els correus d'atenció estan inundats amb comentaris i informes. Volem lliurar un producte de qualitat. 3. Amb suficients diners, poden desenvolupar-se més ràpidament prestacions - noves, com ara: + noves, per exemple: - Actualitzacions setmanals i automatitzades dels mapes - Còpia de seguretat i sincronització dels llocs d’interès + - Android Auto - Gravadora GPS amb compatibilitat per a GPX - Millors estils cartogràfics per a diferents activitats - Ombreig de pujols i terreny 3D - Millorar l'editor de OpenStreetMap - - Millor cerca de direccions sense connexió, encaminament i navegació + - Millor cerca de direccions sense connexió, enrutament i navegació - Transport públic - - ... i [moltes altres][github issues] funcionalitats que vulgueu + - ... i [moltes altres][github issues] funcionalitats que desitja ## Com donar? @@ -68,14 +70,14 @@ també pots fer donació una vegada. ### Criptomonedes -Si us plau, considereu fer donacions anuals per a reduir les quotes totals. +Si us plau, considera fer donacions anuals per a reduir les quotes totals. {{ crypto_table() }} -## Voleu ajudar-nos de cap altra forma? +## Pots ajudar-nos d'alguna altra forma? -Perfecte! Hi ha diverses maneres d'ajudar a l'Organic Maps. Consulteu la -pàgina [Suport](@/support-us/index.ca.md) per a més informació. +Sí! Hi ha diverses maneres de fer costat a Organic Maps. Consulta la pàgina +[Dona'ns suport](@/support-us/index.ca.md) per a més detalls. -[stripe]: https://donate.organicmaps.app/ «Donació amb Stripe» -[github issues]: https://github.com/organicmaps/organicmaps/issues «Informes al GitHub» +[stripe]: https://donate.organicmaps.app/ "Donar via Stripe" +[github issues]: https://github.com/organicmaps/organicmaps/issues "Informes en GitHub" diff --git a/content/donate/index.cs.md b/content/donate/index.cs.md index 7a07b5e2..97858a2d 100644 --- a/content/donate/index.cs.md +++ b/content/donate/index.cs.md @@ -43,6 +43,7 @@ Klikněte na ikonu preferovaného způsobu platby níže: 3. S dostatkem peněz lze například rychleji vyvíjet nové funkce: - Týdenní a automatické aktualizace mapových dat - Zálohování a synchronizace záložek + - Android Auto - Záznamník stop GPS s podporou GPX - Lepší styly map pro různé činnosti - Stínování kopců a 3D terén diff --git a/content/donate/index.de.md b/content/donate/index.de.md index 085372f5..55a50bf7 100644 --- a/content/donate/index.de.md +++ b/content/donate/index.de.md @@ -43,6 +43,7 @@ Klicke unten auf das Symbol einer bevorzugten Zahlungsmethode: Beispiel: - Wöchentliche und automatische Aktualisierung der Kartendaten - Sicherung und Synchronisierung von Lesezeichen + - Android Auto - GPS-Kursaufzeichnung mit GPX-Unterstützung - Bessere Kartenstile für verschiedene Aktivitäten - Hügelschattierung und 3D-Gelände diff --git a/content/donate/index.es.md b/content/donate/index.es.md index 74f5ae44..4f7f2409 100644 --- a/content/donate/index.es.md +++ b/content/donate/index.es.md @@ -45,6 +45,7 @@ Haz clic en el icono del método de pago que prefieras: rápidamente, por ejemplo: - Actualizaciones semanales y automatizadas de los mapas - Copia y sincronización de marcadores + - Android Auto - Grabadora GPS con compatibilidad para GPX - Mejores estilos cartográficos para diferentes actividades - Sombreado de colinas y terreno 3D diff --git a/content/donate/index.eu.md b/content/donate/index.eu.md index b48a3bc8..ef4d8511 100644 --- a/content/donate/index.eu.md +++ b/content/donate/index.eu.md @@ -44,6 +44,7 @@ Click on your preferred payment method icon below: adibidez: - Mapa datu eguneraketa automatikoak astero - Gogoko puntuen segurtasun kopia eta sinkronizazioa + - Android Auto - GPS ibilbide grabatzailea GPX formatuarekin - Aktibitate mota bakoitzerako mapa estilo hobeak - Mendi magalen itzalak eta 3D-ko lurra diff --git a/content/donate/index.fr.md b/content/donate/index.fr.md index 0c4413c3..38024083 100644 --- a/content/donate/index.fr.md +++ b/content/donate/index.fr.md @@ -35,6 +35,7 @@ L'application Organic Maps est _gratuite pour tout le monde_ grâce à vos **[do 3. Avec suffisamment d'argent, de nouvelles fonctionnalités peuvent être développées plus rapidement, par exemple : - Mises à jour hebdomadaires et automatisées des données cartographiques. - Sauvegarde et synchronisation des signets + - Android Auto - Enregistreur de trace GPS avec support GPX - De meilleurs styles de cartes pour différentes activités - Ombrage des collines et terrain en 3D diff --git a/content/donate/index.hu.md b/content/donate/index.hu.md index 476c8693..ac2e5dcb 100644 --- a/content/donate/index.hu.md +++ b/content/donate/index.hu.md @@ -45,6 +45,7 @@ Click on your preferred payment method icon below: mint például: - Heti és automatikus térképadat-frissítések - Könyvjelzők mentése és szinkronizálása + - Android Auto - GPS nyomvonal felvevő GPX támogatással - Jobb térképrétegek a különböző tevékenységekhez - Magassági árnyékolás és 3D terep diff --git a/content/donate/index.id.md b/content/donate/index.id.md index d8852c27..9e81ed82 100644 --- a/content/donate/index.id.md +++ b/content/donate/index.id.md @@ -43,6 +43,7 @@ Klik ikon metode pembayaran yang diinginkan di bawah ini: misalnya: - Pembaruan data peta mingguan dan otomatis - Pencadangan dan sinkronisasi penanda + - Android Auto - Perekam trek GPS dengan dukungan GPX - Gaya peta yang lebih baik untuk aktivitas yang berbeda - Bayangan bukit dan medan 3D diff --git a/content/donate/index.it.md b/content/donate/index.it.md index e18cc186..ef5c9e3c 100644 --- a/content/donate/index.it.md +++ b/content/donate/index.it.md @@ -50,6 +50,7 @@ In terzo luogo, ci sono molte altre cose interessanti da fare: - Migliorare gli stili delle mappe e migliorare le carte topografiche - Migliorare l'editor di OpenStreetMap - Migliorare la ricerca, il percorso e la navigazione offline +- Android Auto - Trasporto pubblico - ... e molte altre funzioni che desiderate e amate diff --git a/content/donate/index.md b/content/donate/index.md index 64605cdf..358f723f 100644 --- a/content/donate/index.md +++ b/content/donate/index.md @@ -7,7 +7,7 @@ extra: preview_image: donate/donate.png --- -Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]** in **[EUR][stripe_eur], [USD][stripe_usd], [GBP][stripe_GBP], [CHF][stripe_chf], [UAH][stripe_uah], [PLN][stripe_pln]**: +Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]**: - No ads - No trackers @@ -21,30 +21,29 @@ Click on your preferred payment method icon below: ## Why donate to Organic Maps? -1. Our goal is to provide a privacy-focused, fast and easy-to-use alternative to Google Maps and Apple Maps. -2. Improving public map data for the numerous websites, apps and platforms which use OpenStreetMap, and involving more people in contributing map info is our another goal. -3. We rely on your donations to keep Organic Maps open and free for everyone. +1. We rely on your donations to carry out our mission to keep Organic Maps open and free. And free from ads. -4. We love what we do, and we love our users ❤️. +2. We are a few enthusiasts contributing in our free time, and spending our families' money on the project. + We love what we do, and we love our users ❤️. +3. With your support, we want to become a better, privacy-focused version of Google Maps. -## Why a free project needs money? +## What will the money be used for? -1. In 2023, Organic Maps got its first million users. - Our servers provide free, fast and frequent map updates all over the world. -2. User support, bugfixing and publishing quality app updates are at the top of our priorities. - There are [~2000 bug reports and feature requests on GitHub][github issues], and this number is growing every day. +1. We pay for fast servers, so anyone in the World can download free map data updates without delays. + It's hundreds of terabytes monthly, and the amount is growing. +2. User support, bugfixing, and improving the stability of the app are at the top of our priorities. + There are [1800+ issues on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product. -3. With enough money, new features can be developed. To name a few: - - Backup and sync bookmarks and tracks - - GPS track recorder with GPX export - - Satellite imagery - - Public Transport - - Traffic and accident reporting - - Photos and Reviews - - Map styles for different activities +3. With enough money, new features can be developed faster, for example: + - Weekly and automated map data updates + - Bookmarks backup and sync + - Android Auto + - GPS track recorder with GPX support + - Better map styles for different activities - Hill shading and 3D terrain - - More advanced OpenStreetMap editor + - Improve the OpenStreetMap editor - Better offline address search, routing, and navigation + - Public Transport - … and [many other][github issues] features you want and love ## How to donate? @@ -54,8 +53,8 @@ Click on your preferred payment method icon below: {{ donate_buttons() }} Recurring donations are the best way to ensure a relatively stable income for -the project and motivate us for long-term tasks and goals. One-time donations -are appreciated too. +the project and motivate us for long-term tasks and goals. But you can also +donate one time. ### Bank Transfer @@ -72,4 +71,5 @@ Please consider donating annually to reduce total fees. Yes! There are many ways to support Organic Maps. Please see [Support Us](@/support-us/index.md) page for more details. -{{ references() }} +[stripe]: https://donate.organicmaps.app/ "Donate via Stripe" +[github issues]: https://github.com/organicmaps/organicmaps/issues "GitHub Issues" diff --git a/content/donate/index.nl.md b/content/donate/index.nl.md index 0b634413..2558206c 100644 --- a/content/donate/index.nl.md +++ b/content/donate/index.nl.md @@ -43,6 +43,7 @@ Click on your preferred payment method icon below: 3. Met genoeg geld kunnen nieuwe functies sneller worden ontwikkeld, zoals: - Wekelijkse en geautomatiseerde kaartendata-updates - Bladwijzerbackups en -synchronisatie + - Android Auto - GPS-pad-opnames met GPX ondersteuning - Betere kaartenstijlen voor verschillende activiteiten - Reliëfschaduwen en 3D-terreinen diff --git a/content/donate/index.pl.md b/content/donate/index.pl.md index 5ec6500c..f1c8baf3 100644 --- a/content/donate/index.pl.md +++ b/content/donate/index.pl.md @@ -8,7 +8,7 @@ weight: 10 --- Aplikacja Organic Maps jest _darmowa dla wszystkich_ dzięki Waszym -**[donacjom][stripe]**, **[🇵🇱 zł PLN][stripe_pln]**, **[🇪🇺 € Euro][stripe_eur]**, **[🇺🇸 $ USD][stripe_usd]**: +**[donacjom][stripe]**: - Brak reklam - Brak mechanizmów śledzących @@ -44,6 +44,7 @@ Kliknij ikonę preferowanej metody płatności poniżej: nowe funkcje: - Cotygodniowe i automatyczne aktualizacje danych mapowych - Kopia zapasowa i synchronizacja zakładek + - Android Auto - Rejestrator śladów GPS z obsługą GPX - Lepsze style map dla różnych działań - Cieniowanie wzgórz i teren 3D @@ -81,5 +82,3 @@ znajdziesz na stronie [Wesprzyj nas](@/support-us/index.pl.md). [stripe]: https://donate.organicmaps.app/ "Wesprzyj przez Stripe" [github issues]: https://github.com/organicmaps/organicmaps/issues "Problemy na GitHub" - -{{ references() }} diff --git a/content/donate/index.pt-BR.md b/content/donate/index.pt-BR.md index d2d58903..06379103 100644 --- a/content/donate/index.pt-BR.md +++ b/content/donate/index.pt-BR.md @@ -44,6 +44,7 @@ Clique no método preferido de pagamento abaixo: rapidamente, por exemplo: - Atualizações semanais e automatizadas dos dados do mapa - Backup e sincronização de marcadores + - Android Auto - Gravador de trilhas GPS com suporte a GPX - Melhores estilos de mapas para diferentes atividades - Relevo e terreno 3D diff --git a/content/donate/index.ru.md b/content/donate/index.ru.md index 16778cc5..cc1a646c 100644 --- a/content/donate/index.ru.md +++ b/content/donate/index.ru.md @@ -1,5 +1,5 @@ --- -title: Пожертвовать и поддержать Organic Maps деньгами +title: Пожертвовать и финансово поддержать проект description: Помогите проекту финансово weight: 10 extra: @@ -7,7 +7,7 @@ extra: preview_image: donate/donate.png --- -Благодаря вашим **[пожертвованиям][stripe]** в **[RUB][stripe_rub]**, **[EUR][stripe_eur]**, **[USD][stripe_usd]**, **[GBP][stripe_GBP]**, **[CHF][stripe_chf]**, **Organic Maps**: +Благодаря вашим **[пожертвованиям][stripe]**, **Organic Maps**: - Бесплатны для всех; - Без рекламы; @@ -33,6 +33,7 @@ extra: 3. При наличии достаточного количества денег можно будет быстрее разрабатывать новые функции, например: - Еженедельное и автоматическое обновление картографических данных - Резервное копирование и синхронизация меток + - Android Auto - Запись GPS-треков с поддержкой GPX - Улучшенные стили карт для различных видов туризма и путешествий - Трёхмерный рельеф @@ -63,12 +64,12 @@ Organic Maps существует исключительно благодаря - [Linux Desktop Beta (packages)](https://repology.org/project/organicmaps/versions) - Сообщайте о проблемах и предлагайте новые идеи [на GitHub][issues] или [по почте][email]; - Нарисуйте свой дом и район вокруг в [OpenStreetMap](https://openstreetmap.org); -- Помогите с [переводом](https://github.com/organicmaps/organicmaps/blob/master/docs/TRANSLATIONS.md) приложения и веб-сайта на другие языки; +- Помогите с [переводом](https://github.com/organicmaps/organicmaps/blob/master/docs/TRANSLATIONS.md) приложения и веб-сайта на другие языки. - Поучаствуйте в [разработке][contributing] приложения под Android и iOS; -- Помогите нам с маркетингом, поддержкой пользователей, дизайном; -- Подпишитесь на нас в [Facebook][facebook], [Twitter][twitter] и [Instagram][instagram]; +- Подпишитесь на нас в [Facebook][facebook], [Twitter][twitter] и [Instagram][instagram]. - Расскажите своим друзьям и знакомым. -[stripe_rub]: https://donate.organicmaps.app/?currency=rub "Поддержать проект рублями" +[stripe]: https://donate.organicmaps.app/ "Donate via Stripe" +[github issues]: https://github.com/organicmaps/organicmaps/issues "GitHub Issues" {{ references() }} diff --git a/content/donate/index.sv.md b/content/donate/index.sv.md index 07b883d1..00b3fed6 100644 --- a/content/donate/index.sv.md +++ b/content/donate/index.sv.md @@ -44,6 +44,7 @@ Klicka på en ikon för önskad betalningsmetod nedan: exempel: - Automatiska uppdateringar av kartdata varje vecka - Säkerhetskopiering och synkronisering av bokmärken + - Android Auto - Inspelning av GPS-spår med GPX-stöd - Bättre versioner av kartan för olika aktiviteter - Skuggning av kullar och berg samt 3D-terräng diff --git a/content/donate/index.tr.md b/content/donate/index.tr.md index dc4c3a13..b33909b0 100644 --- a/content/donate/index.tr.md +++ b/content/donate/index.tr.md @@ -35,6 +35,7 @@ Organic Maps, **[bağışlarınız][stripe]** sayesinde _herkes için ücretsizd 3. Yeterli para ile yeni özellikler daha hızlı geliştirilebilir, örneğin: - Haftalık ve otomatik harita güncellemeleri - Yer imleri yedekleme ve senkronizasyon + - Android Auto desteği - GPX desteği sunan bir GPS kaydedici - Farklı etkinlikler için daha iyi harita stilleri - Tepe gölgeleri ve 3B arazi görünümü diff --git a/content/donate/index.uk.md b/content/donate/index.uk.md index a7801931..851dfb6a 100644 --- a/content/donate/index.uk.md +++ b/content/donate/index.uk.md @@ -43,6 +43,7 @@ Organic Maps є _безкоштовним для всіх_ завдяки ваш 3. Наприклад, маючи достатньо грошей, можна швидше розробляти нові функції: - Щотижневе та автоматичне оновлення картографічних даних - Резервне копіювання та синхронізація закладок + - Android Auto - GPS реєстратор з підтримкою GPX - Кращі стилі мап для різних видів діяльності - Затінення пагорбів і 3D-рельєф diff --git a/content/donate/index.zh-Hans.md b/content/donate/index.zh-Hans.md index 4a403297..5b87b167 100644 --- a/content/donate/index.zh-Hans.md +++ b/content/donate/index.zh-Hans.md @@ -32,6 +32,7 @@ Click on your preferred payment method icon below: 3. 有了充足的资金,我们就可以更快开发新功能,例如: - 每周和自动更新地图数据 - 书签备份和同步 + - Android Auto - 支持GPX的GPS轨迹记录器 - 为不同的活动提供更好的地图风格 - 山体着色和三维地形 diff --git a/content/faq/_index.de.md b/content/faq/_index.de.md deleted file mode 100644 index 631f54ed..00000000 --- a/content/faq/_index.de.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -title: Häufige Fragen und Antworten -description: In dieser FAQ findest du Antworten auf viele Fragen zur Organic Maps App, zu unseren Mitarbeitern und zu unserem Projekt -extra: - menu_title: F.A.Q. ---- - -### This page is replaced with taxonomy "faq" from templates/faq/list.html template - -This file is needed for top_menu.html and bottom_menu.html templates to show F.A.Q. diff --git a/content/faq/_index.es.md b/content/faq/_index.es.md deleted file mode 100644 index cafd90a2..00000000 --- a/content/faq/_index.es.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -title: Preguntas frecuentes de la aplicación Organic Maps -description: Estas FAQ responden a muchas preguntas sobre la aplicación Organic Maps, nuestros colaboradores y nuestro proyecto -extra: - menu_title: Preguntas Frecuentes ---- - -### This page is replaced with taxonomy "faq" from templates/faq/list.html template - -This file is needed for top_menu.html and bottom_menu.html templates to show F.A.Q. diff --git a/content/faq/_index.fr.md b/content/faq/_index.fr.md deleted file mode 100644 index ff40b8ce..00000000 --- a/content/faq/_index.fr.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -title: Foire aux questions -description: Cette FAQ répond à de nombreuses questions sur l'application Organic Maps, nos contributeurs et notre projet. -extra: - menu_title: F.A.Q. ---- - -### This page is replaced with taxonomy "faq" from templates/faq/list.html template - -This file is needed for top_menu.html and bottom_menu.html templates to show F.A.Q. diff --git a/content/faq/_index.it.md b/content/faq/_index.it.md deleted file mode 100644 index 5864463b..00000000 --- a/content/faq/_index.it.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -title: Domande frequenti -description: Questa sezione contiene le risposte a molte domande sull'applicazione Organic Maps, sui nostri collaboratori e sul nostro progetto -extra: - menu_title: Domande frequenti ---- - -### This page is replaced with taxonomy "faq" from templates/faq/list.html template - -This file is needed for top_menu.html and bottom_menu.html templates to show F.A.Q. diff --git a/content/faq/_index.md b/content/faq/_index.md deleted file mode 100644 index ef0d7150..00000000 --- a/content/faq/_index.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -title: Frequently Asked Questions -description: This FAQ has answers to many questions about Organic Maps app, our contributors, and our project -extra: - menu_title: F.A.Q. ---- - -### This page is replaced with taxonomy "faq" from templates/faq/list.html template - -This file is needed for top_menu.html and bottom_menu.html templates to show F.A.Q. diff --git a/content/faq/_index.pl.md b/content/faq/_index.pl.md deleted file mode 100644 index 3862018d..00000000 --- a/content/faq/_index.pl.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -title: Pytania i odpowiedzi -description: Ten FAQ zawiera odpowiedzi na wiele pytań dotyczących aplikacji Organic Maps, naszych współpracowników i naszego projektu -extra: - menu_title: Pomoc ---- - -### This page is replaced with taxonomy "faq" from templates/faq/list.html template - -This file is needed for top_menu.html and bottom_menu.html templates to show F.A.Q. diff --git a/content/faq/_index.pt-BR.md b/content/faq/_index.pt-BR.md deleted file mode 100644 index e56b1b91..00000000 --- a/content/faq/_index.pt-BR.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -title: Perguntas frequentes -description: Este FAQ contém respostas para muitas perguntas sobre o aplicativo Organic Maps, nossos colaboradores e nosso projeto -extra: - menu_title: Perguntas frequentes ---- - -### This page is replaced with taxonomy "faq" from templates/faq/list.html template - -This file is needed for top_menu.html and bottom_menu.html templates to show F.A.Q. diff --git a/content/faq/_index.pt.md b/content/faq/_index.pt.md deleted file mode 100644 index d6fdb711..00000000 --- a/content/faq/_index.pt.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -title: Perguntas frequentes -description: Esta FAQ contém respostas a muitas perguntas sobre a aplicação Organic Maps, os nossos colaboradores e o nosso projeto -extra: - menu_title: Perguntas frequentes ---- - -### This page is replaced with taxonomy "faq" from templates/faq/list.html template - -This file is needed for top_menu.html and bottom_menu.html templates to show F.A.Q. diff --git a/content/faq/_index.ru.md b/content/faq/_index.ru.md deleted file mode 100644 index f0aedb4c..00000000 --- a/content/faq/_index.ru.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -title: Справка и часто задаваемые вопросы -description: В этом разделе есть ответы на многие вопросы о приложении Organic Maps -extra: - menu_title: Справка ---- - -### This page is replaced with taxonomy "faq" from templates/faq/list.html template - -This file is needed for top_menu.html and bottom_menu.html templates to show F.A.Q. diff --git a/content/faq/_index.tr.md b/content/faq/_index.tr.md deleted file mode 100644 index 77e8d33f..00000000 --- a/content/faq/_index.tr.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -title: Sıkça Sorulan Sorular -description: Bu SSS, Organic Maps uygulaması, katkıda bulunanlarımız ve projemiz hakkında birçok sorunun yanıtını içermektedir -extra: - menu_title: SSS ---- - -### This page is replaced with taxonomy "faq" from templates/faq/list.html template - -This file is needed for top_menu.html and bottom_menu.html templates to show F.A.Q. diff --git a/content/faq/_index.uk.md b/content/faq/_index.uk.md deleted file mode 100644 index 5abf9e62..00000000 --- a/content/faq/_index.uk.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -title: Довідка та часті питання -description: Відповіді на поширені запитання стосовно застосунка Organic Maps -extra: - menu_title: Довідка ---- - -### This page is replaced with taxonomy "faq" from templates/faq/list.html template - -This file is needed for top_menu.html and bottom_menu.html templates to show F.A.Q. diff --git a/content/faq/_index.zh-Hans.md b/content/faq/_index.zh-Hans.md deleted file mode 100644 index 8f562399..00000000 --- a/content/faq/_index.zh-Hans.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -title: 问题和解答 -description: 本常见问题回答了有关有机地图应用程序、我们的贡献者和我们项目的许多问题 -extra: - menu_title: 问题和解答 ---- - -### This page is replaced with taxonomy "faq" from templates/faq/list.html template - -This file is needed for top_menu.html and bottom_menu.html templates to show F.A.Q. diff --git a/content/faq/app/crash/index.de.md b/content/faq/app/crash/index.de.md deleted file mode 100644 index 325b33b4..00000000 --- a/content/faq/app/crash/index.de.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -title: Was kann ich tun, wenn die App sich aufhängt oder wenn sie abstürzt? -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["App"] - -extra: - order: 30 ---- - -Es ist wahrscheinlich unser Fehler und wir werden ihn gerne im nächsten Update beheben. - -Android: Wenn Sie Ihre Karten auf einer SD-Karte speichern, ist die wahrscheinlichste Ursache eine fehlerhafte SD-Karte. Sie können Ihre SD-Karte formatieren oder besser durch eine neue ersetzen. Wenn Sie die App selbst auf die SD-Karte verschoben haben, verschieben Sie sie bitte zurück in den internen (Geräte-) Speicher. - -Wenn das Problem weiterhin besteht, [kontaktieren Sie uns bitte](mailto:support@organicmaps.app) und geben Sie uns: - -* kurze Beschreibung des Problems -* Organic Maps Version -* Gerätemodell und Betriebssystemversion (Android oder iOS). diff --git a/content/faq/app/crash/index.es.md b/content/faq/app/crash/index.es.md deleted file mode 100644 index aa9f12ec..00000000 --- a/content/faq/app/crash/index.es.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -title: Qué hago si la aplicación se detiene o se bloquea? -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Aplicación"] - -extra: - order: 30 ---- - -Probablemente sea nuestro error y estaremos encantados de solucionarlo en la próxima actualización. - -Android: Si almacenas los mapas en una tarjeta SD, lo más probable es que el error se deba a un fallo de la tarjeta. Puedes formatear la tarjeta SD o, mejor aún, cambiarla por otra nueva. Si has movido la app a la tarjeta SD, muévela al almacenamiento interno (de tu dispositivo). - -Si el problema persiste [ponte en contacto con nosotros](mailto:support@organicmaps.app) y especifica por favor: - -* la descripción corta del problema -* la version de Organic Maps -* el modelo de dispositivo y la versión de OS (Android o iOS). diff --git a/content/faq/app/crash/index.fr.md b/content/faq/app/crash/index.fr.md deleted file mode 100644 index 5393f107..00000000 --- a/content/faq/app/crash/index.fr.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -title: Pourquoi l'application s'arrête ou crash? -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Application"] - -extra: - order: 30 ---- - -C'est probablement notre bug, et nous serons heureux de le corriger dans la prochaine mise à jour. - -Android: Si vous stockez les cartes sur carte SD, vous pouvez la formater, c'est la cause la plus courante. Le formatage ou le remplacement résouds le plus souvent le problème. - -Si le problème subsiste, merci de nous [contacter](mailto:support@organicmaps.app) et envoyer nous: - -* un rapport d'erreur et une description du problème -* la version de Organic Maps -* Le modèle de l'appareil et la version du système d'exploitation (Android ou iOS). diff --git a/content/faq/app/crash/index.md b/content/faq/app/crash/index.md deleted file mode 100644 index 35fbe619..00000000 --- a/content/faq/app/crash/index.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -title: What can I do if the app has stopped/crashed? -description: What actions to take if the application crashes. How to report critical bugs to developers -updated: "2024-06-20" - -taxonomies: - faq: ["App"] - -extra: - order: 30 ---- - -On Android, if you store your maps on an SD card, the most likely cause is a faulty SD card. You can: -1. Delete all downloaded maps and re-download them again to the SD card (may not work again). -2. Delete all downloaded maps, select Internal device storage, and re-download maps. -3. Format SD card and re-download maps. -4. Buy a new SD card (recommended) - -If the app still crashes, please check [our GitHub](https://github.com/organicmaps/organicmaps/issues/) for similar issues, and [contact us](mailto:support@organicmaps.app) and provide the following: - -* A detailed description of the issue and steps to reproduce it -* Organic Maps version -* Device model and OS version (Android or iOS) diff --git a/content/faq/app/crash/index.pl.md b/content/faq/app/crash/index.pl.md deleted file mode 100644 index b8178056..00000000 --- a/content/faq/app/crash/index.pl.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -title: Co mogę zrobić, jeśli aplikacja nie odpowiada/uległa awarii? -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Aplikacja"] - -extra: - order: 30 ---- - -Bu muhtemelen bizim hatamız ve bir sonraki güncellemede bunu düzeltmekten mutluluk duyacağız. - -Android'de, haritalarınızı bir SD kartta saklarsanız, bunun en olası nedeni hatalı bir SD karttır. SD kartınızı biçimlendirebilir veya daha iyisi yenisiyle değiştirebilirsiniz. Uygulamayı SD karta taşıdıysanız, lütfen tekrar dahili (cihaz) depolama alanına taşıyın. - -Sorun devam ederse, lütfen [bizimle iletişime geçin](mailto:support@organicmaps.app) ve şunları ekleyin: - -* sorunun kısa açıklaması -* Organic Maps sürümü -* cihaz modeli ve İşletim Sistemi sürümü (Android veya iOS). diff --git a/content/faq/app/crash/index.pt-BR.md b/content/faq/app/crash/index.pt-BR.md deleted file mode 100644 index 724985d2..00000000 --- a/content/faq/app/crash/index.pt-BR.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -title: O que posso fazer se o aplicativo parar (travar)? -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Aplicativa"] - -extra: - order: 30 ---- - -É provavelmente o nosso bug e ficaremos felizes em corrigi-lo na próxima atualização. - -Android: se você armazenar seus mapas em um cartão SD, a causa mais provável é um cartão SD defeituoso. Você pode formatar seu cartão SD ou, melhor ainda, substituí-lo por um novo. Se você moveu o aplicativo para o cartão SD, mova-o de volta para o armazenamento interno (dispositivo). - -Se o problema persistir, entre em [contato](mailto:support@organicmaps.app) conosco e forneça as seguintes informações: - -* descrição do problema e etapas para recriá-lo -* Versão do Organic Maps -* modelo de dispositivo e versão do sistema operacional (Android ou iOS). diff --git a/content/faq/app/crash/index.pt.md b/content/faq/app/crash/index.pt.md deleted file mode 100644 index a15b00fa..00000000 --- a/content/faq/app/crash/index.pt.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -title: O que fazer se a aplicação parar de funcionar (bloquear)? -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Aplicativa"] - -extra: - order: 30 ---- - -É provavelmente um erro inesperado e ficaremos contentes em corrigi-lo na próxima atualização. - -Android: se armazena os mapas num cartão SD, a causa mais provável é ser um cartão SD defeituoso. Pode tentar formatar o cartão SD ou melhor ainda, substituí-lo por um novo. Se moveu a aplicação para o cartão SD, mova-o novamente no sentido inverso para o armazenamento interno (dispositivo). - -Se mesmo assim o problema persistir, por favor [contacte-nos](mailto:support@organicmaps.app) e forneça as seguintes informações: - -* descrição do problema e etapas para o recriar -* Versão do Organic Maps -* modelo do dispositivo e versão do sistema operativo (Android ou iOS). diff --git a/content/faq/app/crash/index.ru.md b/content/faq/app/crash/index.ru.md deleted file mode 100644 index 4d698549..00000000 --- a/content/faq/app/crash/index.ru.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -title: Что делать, если приложение перестало работать (остановлено)? -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Общие"] - -extra: - order: 30 ---- - -Это, скорее всего, баг в нашем коде, и мы будем рады исправить его в следующем обновлении. - -На Android чаще всего эта проблема связана с плохой SD-картой. Если вы храните загруженные карты стран на SD-карте, попробуйте отформатировать ее, а лучше замените на новую. Если вы переместили само приложение на SD карту, пожалуйста, верните его назад в память устройства. - -Если ошибка осталась, пожалуйста, [сообщите нам](mailto:support@organicmaps.app) о проблеме и уточните следующую информацию: - -* краткое описание проблемы -* версия Organic Maps -* модель устройства и версия ОС (Android или iOS). diff --git a/content/faq/app/crash/index.tr.md b/content/faq/app/crash/index.tr.md deleted file mode 100644 index c5bc0506..00000000 --- a/content/faq/app/crash/index.tr.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -title: Uygulama durdurulursa/çökerse ne yapabilirim? -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Başvuru"] - -extra: - order: 30 ---- - -Bu muhtemelen bizim hatamız ve bir sonraki güncellemede bunu düzeltmekten mutluluk duyacağız. - -Android'de, haritalarınızı bir SD kartta saklarsanız, bunun en olası nedeni hatalı bir SD karttır. SD kartınızı biçimlendirebilir veya daha iyisi yenisiyle değiştirebilirsiniz. Uygulamayı SD karta taşıdıysanız, lütfen tekrar dahili (cihaz) depolama alanına taşıyın. - -Sorun devam ederse, lütfen [bizimle iletişime geçin](mailto:support@organicmaps.app) ve şunları ekleyin: - -* sorunun kısa açıklaması -* Organic Maps sürümü -* cihaz modeli ve İşletim Sistemi sürümü (Android veya iOS). diff --git a/content/faq/app/crash/index.uk.md b/content/faq/app/crash/index.uk.md deleted file mode 100644 index db9e4d48..00000000 --- a/content/faq/app/crash/index.uk.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -title: Що робити, якщо додаток несподівано закрився або вийшов з ладу? -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Загальні"] - -extra: - order: 30 ---- - -Ймовірно, це наша помилка, і ми будемо раді виправити її в наступному оновленні. - -Для Android пристроїв, якщо ви зберігаєте карти на SD-карті, найімовірнішою причиною є несправна SD-карта. Ви можете відформатувати SD-карту, а ще краще замінити її на нову. Якщо ви перемістили саму програму на SD-карту, будь ласка, поверніть його назад у внутрішню пам'ять пристрою. - -Якщо проблема не зникне, будь ласка [зв'яжіться з нами](mailto:support@organicmaps.app) і повідомте: - -* короткий опис проблеми -* версію Organic Maps -* модель пристрою та версія ОС (Android або iOS). diff --git a/content/faq/app/crash/index.zh-Hans.md b/content/faq/app/crash/index.zh-Hans.md deleted file mode 100644 index 3a76efc8..00000000 --- a/content/faq/app/crash/index.zh-Hans.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -title: 如果应用停止运行(或崩溃),我该怎么办 -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["应用"] - -extra: - order: 30 ---- - -这可能是 Organic Maps 的 bug,我们将很乐意在下一个更新中修复。 - -在安卓设备上,如果您将地图存储在 SD 卡上,最有可能的原因是 SD 卡故障。 您可以格式化 SD 卡,或者更好的办法是用新的替换。 如果您将应用本身移动到 SD 卡上,请将其移回到内部(设备)存储。 - -如果问题仍然存在,请 [与我们联系](mailto:support@organicmaps.app) 并提供以下信息: - -* 问题的简要描述 -* Organic Maps 的版本 -* 设备型号和操作系统版本(安卓或 iOS)。 diff --git a/content/faq/app/how-to-use-android-auto/index.es.md b/content/faq/app/how-to-use-android-auto/index.es.md deleted file mode 100644 index 3a86d82f..00000000 --- a/content/faq/app/how-to-use-android-auto/index.es.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: ¿Cómo utilizar Android Auto? -description: Preguntas frecuentes de la aplicación Organic Maps -slug: como-utilizar-android-auto - -taxonomies: - faq: ["Aplicación"] - -extra: - order: 20 ---- - -Para utilizar OM con Android Auto, necesita al menos una versión de Android 8.0 (Oreo) o posterior. - -Por favor, compruebe la [página web de Android Auto](https://www.android.com/auto/) para obtener más detalles. diff --git a/content/faq/app/how-to-use-android-auto/index.fr.md b/content/faq/app/how-to-use-android-auto/index.fr.md deleted file mode 100644 index e773e62b..00000000 --- a/content/faq/app/how-to-use-android-auto/index.fr.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: Comment utiliser Android Auto ? -description: Configuration minimale requise pour utiliser Organic Maps avec Android Auto -slug: comment-utiliser-android-auto - -taxonomies: - faq: ["Application"] - -extra: - order: 20 ---- - -Pour utiliser Organic Maps sur Android Auto, vous avez besoin d'un appareil avec au minimum Android 8.0 (Oreo) ou ultérieure. - -Veuillez consulter le [site web d'Android Auto](https://www.android.com/auto/) pour plus de détails. diff --git a/content/faq/app/how-to-use-android-auto/index.it.md b/content/faq/app/how-to-use-android-auto/index.it.md deleted file mode 100644 index 60900b07..00000000 --- a/content/faq/app/how-to-use-android-auto/index.it.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: Come si usa Android Auto? -description: "Domande frequenti sull'applicazione Organic Maps" -slug: come-si-usa-android-auto - -taxonomies: - faq: ["Applicazione"] - -extra: - order: 20 ---- - -Per utilizzare Organic Maps con Android Auto, è necessario disporre almeno della versione 8.0 (Oreo) o successiva di Android. - -Per ulteriori informazioni, consultare il [sito web di Android Auto](https://www.android.com/auto/). \ No newline at end of file diff --git a/content/faq/app/how-to-use-android-auto/index.md b/content/faq/app/how-to-use-android-auto/index.md deleted file mode 100644 index 116e2716..00000000 --- a/content/faq/app/how-to-use-android-auto/index.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: How to use Android Auto? -description: Minimum requirements to run Organic Maps with Android Auto -updated: "2024-06-20" - -taxonomies: - faq: ["App"] - -extra: - order: 20 ---- - -To use OM with Android Auto, you need at least an Android version 8.0 (Oreo) or later. - -Please check the [Android Auto website](https://www.android.com/auto/) for further details. diff --git a/content/faq/app/which-ios-and-android-versions-are-supported/index.es.md b/content/faq/app/which-ios-and-android-versions-are-supported/index.es.md deleted file mode 100644 index 36e40053..00000000 --- a/content/faq/app/which-ios-and-android-versions-are-supported/index.es.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -title: ¿Qué versiones de iOS y Android están soportadas? -description: "Preguntas frecuentes de la aplicación Organic Maps" -slug: que-versiones-de-ios-y-android-estan-soportadas - -taxonomies: - faq: ["Aplicación"] - -extra: - order: 10 ---- - -Necesita al menos iOS 12 o Android 5 para ejecutar la aplicación. Los dispositivos con versiones posteriores pueden ejecutar Organic Maps. - -En Android, Organic Maps puede funcionar en dispositivos con los Servicios de Google instalados y sin soporte de Google. - -Para utilizar OM con Android Auto, revise por favor los requisitos [aquí](../como-utilizar-android-auto/). diff --git a/content/faq/app/which-ios-and-android-versions-are-supported/index.fr.md b/content/faq/app/which-ios-and-android-versions-are-supported/index.fr.md deleted file mode 100644 index 79890645..00000000 --- a/content/faq/app/which-ios-and-android-versions-are-supported/index.fr.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -title: Quelles sont les versions d'iOS et d'Android prises en charge ? -description: Configuration minimale requise pour utiliser Organic Maps sur les appareils Android et iOS -slug: quelles-versions-ios-et-android-sont-supportées - -taxonomies: - faq: ["Application"] - -extra: - order: 10 ---- - -Vous devez avoir au mininum iOS 12 ou Android 5 sur votre appareil pour utiliser l'application. Les appareils dotés de versions ultérieures peuvent utiliser Organic Maps. - -Sur Android, Organic Maps peut fonctionner sur des appareils avec ou sans les Services Google Play d'installées. - -Pour utiliser Organic Maps sur Android Auto, veuillez vérifier les prérequis [ici](../how-to-use-android-auto/). diff --git a/content/faq/app/which-ios-and-android-versions-are-supported/index.it.md b/content/faq/app/which-ios-and-android-versions-are-supported/index.it.md deleted file mode 100644 index ff732c65..00000000 --- a/content/faq/app/which-ios-and-android-versions-are-supported/index.it.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -title: Quali versioni di iOS e Android sono supportate? -description: "Domande frequenti sull'applicazione Organic Maps" -slug: quali-versioni-di-ios-e-android-sono-supportate - -taxonomies: - faq: ["Applicazione"] - -extra: - order: 10 ---- - -Per eseguire l'app è necessario avere almeno iOS 12 o Android 5. I dispositivi con versioni successive possono eseguire Organic Maps. - -Su Android, Organic Maps può funzionare sia su dispositivi con il supporto di Google Services, sia sui dispositivi senza il supporto di Google. - -Per utilizzare Organic Maps con Android Auto, verificare i requisiti [qui](../come-si-usa-android-auto/). \ No newline at end of file diff --git a/content/faq/app/which-ios-and-android-versions-are-supported/index.md b/content/faq/app/which-ios-and-android-versions-are-supported/index.md deleted file mode 100644 index 3be75148..00000000 --- a/content/faq/app/which-ios-and-android-versions-are-supported/index.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -title: Which iOS and Android versions are supported? -description: Minimum requirements to run Organic Maps on Android and iOS devices -updated: "2024-06-20" - -taxonomies: - faq: ["App"] - -extra: - order: 10 ---- - -You need at least iOS 12 or Android 5 to run the app. Devices with later versions can run Organic Maps. - -In Android, Organic Maps can work on devices with Google Services installed and without Google support. - -To use OM with Android Auto, please check the requirements [here](../how-to-use-android-auto/). diff --git a/content/faq/bookmarks/how-to-export/index.de.md b/content/faq/bookmarks/how-to-export/index.de.md deleted file mode 100644 index 37c18432..00000000 --- a/content/faq/bookmarks/how-to-export/index.de.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Wie kann ich Lesezeichen exportieren? -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Lesezeichen und Tracks"] - -extra: - order: 10 ---- - -Wählen Sie ein Lesezeichen auf der Karte aus, tippen Sie darauf und tippen Sie anschließend auf der Ortsseite auf "Teilen". Um alle Lesezeichen gleichzeitig in einer Liste zu teilen, tippen Sie auf das Doppelsternsymbol auf dem Hauptbildschirm, tippen Sie auf das Symbol mit drei Punkten vor dem Namen der Liste mit Lesezeichen und tippen Sie im Popup-Fenster auf "Datei exportieren". diff --git a/content/faq/bookmarks/how-to-export/index.es.md b/content/faq/bookmarks/how-to-export/index.es.md deleted file mode 100644 index a33245c1..00000000 --- a/content/faq/bookmarks/how-to-export/index.es.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Cómo puedo exportar los marcadores? -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Marcadores y rutas"] - -extra: - order: 10 ---- - -Elige el marcador en el mapa y pulsa “Compartir”. Para compartir todos los marcadores en una lista de una vez, toque el símbolo de la estrella doble en la pantalla principal, toque el icono con tres puntos delante del nombre de la lista con marcadores y toque "Exportar el archivo" en la ventana emergente. diff --git a/content/faq/bookmarks/how-to-export/index.fr.md b/content/faq/bookmarks/how-to-export/index.fr.md deleted file mode 100644 index a3932f4e..00000000 --- a/content/faq/bookmarks/how-to-export/index.fr.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Comment partager (exporter) des signets? -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Signets et parcours"] - -extra: - order: 10 ---- - -Choisissez un signet sur la carte, appuyez dessus, puis appuyez sur le bouton "Partager" dans la page d'accueil. Pour partager tous les signets dans une liste à la fois, appuyez sur le symbole étoile double sur l'écran principal, appuyez sur l'icône avec trois points devant le nom de la liste avec des signets et appuyez sur "Fichier d'exportation" dans la fenêtre pop-up. diff --git a/content/faq/bookmarks/how-to-export/index.md b/content/faq/bookmarks/how-to-export/index.md deleted file mode 100644 index aef47cd1..00000000 --- a/content/faq/bookmarks/how-to-export/index.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: How to share (export) bookmarks and tracks? -description: Step-by-step guide for exporting bookmarks and tracks from Organic Maps to other applications and sharing with contacts -updated: "2024-06-20" - -taxonomies: - faq: ["Bookmarks and tracks"] - -extra: - order: 10 ---- - -Tap a bookmark on the map or in the list, and then tap the "Share" button on the place page. - -To share all bookmarks and tracks in a list from the Bookmarks and Tracks dialog, tap the icon with three dots in front of the¡ name of the list with bookmarks and tap the Export KML/KMZ or Export GPX in the pop-up window. diff --git a/content/faq/bookmarks/how-to-export/index.pl.md b/content/faq/bookmarks/how-to-export/index.pl.md deleted file mode 100644 index ab55f626..00000000 --- a/content/faq/bookmarks/how-to-export/index.pl.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Jak udostępniać (eksportować) zakładki? -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Zakładki i trasy"] - -extra: - order: 10 ---- - -Wybierz zakładkę na mapie, stuknij ją, a następnie stuknij przycisk „Udostępnij” na stronie miejsca. Aby jednocześnie udostępnić wszystkie zakładki na liście, stuknij symbol podwójnej gwiazdy na ekranie głównym, stuknij ikona z trzema kropkami przed nazwą listy z zakładkami i dotknij Eksportuj plik w wyskakującym okienku okno. diff --git a/content/faq/bookmarks/how-to-export/index.pt-BR.md b/content/faq/bookmarks/how-to-export/index.pt-BR.md deleted file mode 100644 index 31fb826f..00000000 --- a/content/faq/bookmarks/how-to-export/index.pt-BR.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Como compartilhar (exportar) favoritos? -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Favoritos e trilhas"] - -extra: - order: 10 ---- - -Escolha um favorito no mapa, toque nele e toque no botão "Compartilhar" na parte inferior. Para compartilhar todos os favoritos em uma lista de uma só vez, toque no símbolo de estrela na tela principal sem nada selecionado, depois toque no ícone com três pontos à frente do nome da lista com favoritos e toque em "Exportar arquivo" no menu que aparece. diff --git a/content/faq/bookmarks/how-to-export/index.pt.md b/content/faq/bookmarks/how-to-export/index.pt.md deleted file mode 100644 index 5c36d7ac..00000000 --- a/content/faq/bookmarks/how-to-export/index.pt.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: Como partilhar (exportar) favoritos? -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Favoritos e trilhas"] - -extra: - order: 10 ---- - -Escolha um favorito no mapa, toque nele e toque no botão "Partilhar" na parte inferior. Para partilhar todos os favoritos de uma lista de uma só vez, toque no símbolo de estrela no ecrã principal sem nada selecionado, depois toque no ícone com três pontos à frente do nome da lista com favoritos e toque em "Exportar o ficheiro" no menu que aparece. - diff --git a/content/faq/bookmarks/how-to-export/index.ru.md b/content/faq/bookmarks/how-to-export/index.ru.md deleted file mode 100644 index 186d2080..00000000 --- a/content/faq/bookmarks/how-to-export/index.ru.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -title: Как экспортировать метки? -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Метки и Треки"] - -extra: - order: 10 ---- - -Нажмите метку на карте и нажмите “Поделиться” в появившемся окне. Чтобы отправить все метки в группе сразу: - -* откройте меню меток, нажав на значок двойной звезды на главном экране; - -* нажмите значок с тремя точками справа от названия списка с метками и нажмите "Экспортировать файл" в появившемся окне diff --git a/content/faq/bookmarks/how-to-export/index.tr.md b/content/faq/bookmarks/how-to-export/index.tr.md deleted file mode 100644 index 5717d581..00000000 --- a/content/faq/bookmarks/how-to-export/index.tr.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Yer imleri nasıl paylaşılır/dışa aktarılır? -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Yer İmleri ve Kayıtlar"] - -extra: - order: 10 ---- - -Haritada bir yer imi seçin, ona dokunun ve ardından yer bilgileri sayfasındaki "Paylaş" düğmesine dokunun. Bir listedeki tüm yer imlerini bir kerede paylaşmak için, ana ekranda yıldız simgesine dokunun, yer imlerinin bulunduğu listenin adının önündeki üç noktaya dokunun ve açılır pencereden Dosyayı Dışa Aktar'a dokunun. diff --git a/content/faq/bookmarks/how-to-export/index.uk.md b/content/faq/bookmarks/how-to-export/index.uk.md deleted file mode 100644 index 3421c5cf..00000000 --- a/content/faq/bookmarks/how-to-export/index.uk.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Як поділитися (експортувати) мітками? -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Мітки та Маршрути"] - -extra: - order: 10 ---- - -Виберіть мітку на карті, торкніться її, а потім натисніть кнопку "Поділитися" в нижній панели. Щоб поділитися відразу всіма мітками зі списку, торкніться символу зірки на головному екрані, потім торкніться значка з трьома крапками після назви списку з мітками і натисніть "Експортувати файл" у спливаючому вікні. diff --git a/content/faq/bookmarks/how-to-export/index.zh-Hans.md b/content/faq/bookmarks/how-to-export/index.zh-Hans.md deleted file mode 100644 index eb087c67..00000000 --- a/content/faq/bookmarks/how-to-export/index.zh-Hans.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: 如何分享(或导出)书签 -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["书签和轨迹"] - -extra: - order: 10 ---- - -在地图上选择并点击一个书签,然后在地点页面中轻触“分享”按钮。 -要一次性分享列表中的所有书签,请在主屏幕轻触双星号符号,轻触书签列表名称前面的三个点图标,然后在弹出窗口中轻触“导出文件”。 diff --git a/content/faq/bookmarks/how-to-import/index.de.md b/content/faq/bookmarks/how-to-import/index.de.md deleted file mode 100644 index 42d6fc5f..00000000 --- a/content/faq/bookmarks/how-to-import/index.de.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -title: Wie kann ich Lesezeichen importieren? -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Lesezeichen und Tracks"] - -extra: - order: 20 ---- - -Sie können Lesezeichen importieren, die von Organic Maps oder Apps von -Drittanbietern gesendet werden, wenn sie Lesezeichen im KML, KMZ, KMB, GPX-Format -exportieren: - -1. Sie können Lesezeichen aus Ordnern und Apps (einschließlich Maps.Me) importieren. Drücken Sie eine Sterntaste Um Lesezeichen zu öffnen, drücken Sie "Lesezeichen und Tracks importieren" und wählen Sie ein Laufwerk oder einen Ordner mit KML, KMZ, KMB, GPX-Dateien aus. - -2. Senden Sie eine E-Mail mit der beigefügten KML, KMZ, KMB, GPX-Datei. Sie können auch Instant Messenger oder Cloud-Speicher wie iCloud oder Google Drive verwenden. - -3. Tippen auf die Datei und wählen Sie "In Organic Maps öffnen". - -4. Es wird mit Organic Maps geöffnet und Sie werden die Nachricht "Lesezeichen erfolgreich geladen!" sehen. Sie finden Ihre Pins auf der Karte oder im Lesezeichen-Menü. diff --git a/content/faq/bookmarks/how-to-import/index.es.md b/content/faq/bookmarks/how-to-import/index.es.md deleted file mode 100644 index 2a144180..00000000 --- a/content/faq/bookmarks/how-to-import/index.es.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -title: Cómo puedo importar los marcadores? -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Marcadores y rutas"] - -extra: - order: 20 ---- - -Puede importar marcadores enviados desde Organic Maps o aplicaciones de terceros si exportan marcadores en formato KML, KMZ, KMB, GPX: - -1. Puede importar marcadores desde carpetas y aplicaciones (incluido Maps.Me). Presione un botón de estrella para abrir marcadores, presione "Importar marcadores y trazas" y seleccione la unidad o carpeta con archivos KML, KMZ, KMB, GPX. - -2. Envía a ti mismo los archivos KML, KMZ, KMB, GPX por correo electrónico. También puede usar mensajería instantánea o almacenamiento en la nube, como iCloud o Google Drive. - -3. Pulsa un archivo y elige “Copiar en Organic Maps” (iOS) o "Abrir con Organic Maps" (Android). - -4. El archivo se abrirá con Organic Maps y verás “¡Los favoritos se han cargado con éxito! Puedes encontrarlos en el mapa o en la pantalla de Gestión de favoritos.” diff --git a/content/faq/bookmarks/how-to-import/index.fr.md b/content/faq/bookmarks/how-to-import/index.fr.md deleted file mode 100644 index 771dfa9b..00000000 --- a/content/faq/bookmarks/how-to-import/index.fr.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -title: Comment importer des signets? -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Signets et parcours"] - -extra: - order: 20 ---- - -Vous pouvez importer des signets envoyés depuis Organic Maps ou des applications tierces exportés au format KML: - -1. Vous pouvez importer des favoris à partir de dossiers et d'applications (y compris Maps.Me). Appuyez sur un bouton étoile pour ouvrir les favoris, appuyez sur "Importer des signets et des parcours" et sélectionnez le lecteur ou le dossier contenant les fichiers KML, KMZ, KMB, GPX. - -2. Ouvrez un fichier KML, KMZ, KMB, GPX partagé avec des signets envoyés par e-mail, messagerie instantanée ou cloud stockage, par exemple, iCloud ou Google Drive. - -3. Appuyez une fois ou appuyez et maintenez le fichier KML, KMZ, KMB, GPX avec des signets et choisissez Ouvrir avec Organic Maps (Android) ou "Importer avec Organic Maps" (iOS) dans la fenêtre contextuelle. - -4. Il sera ouvert avec Organic Maps et vous verrez 'Signets chargés avec succès!'. Vous les trouverez sur la carte ou dans l'écran du menu Signets. diff --git a/content/faq/bookmarks/how-to-import/index.md b/content/faq/bookmarks/how-to-import/index.md deleted file mode 100644 index 25dbc82e..00000000 --- a/content/faq/bookmarks/how-to-import/index.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: How to import bookmarks and tracks in KML, KMZ, KMB or GPX format? -description: Step-by-step instructions for importing bookmarks and tracks shared with you in formats KML, KMZ, KMB or GPX -updated: "2024-06-20" - -taxonomies: - faq: ["Bookmarks and tracks"] - -extra: - order: 20 ---- - -You can import bookmarks sent from Organic Maps or third party apps if they export bookmarks in KML, KMZ, KMB, GPX formats. - -To import a single file: - -1. Locate shared KML, KMZ, KMB, GPX file with bookmarks sent by email, instant messenger or cloud storage, for example, iCloud or Google Drive. - -2. Tap once or tap and hold the KML, KMZ, KMB, GPX file with bookmarks and choose Open with Organic Maps (Android) or "Import with Organic Maps" (iOS) in the pop-up window. - -3. It will be open with Organic Maps and you'll see ‘Bookmarks loaded successfully!’. You can find them on the map or in Bookmarks Menu screen. - -Importing bookmarks and tracks in batch is also possible: - -1. Open Organic Maps and tap star button to open list of bookmarks and tracks. Push "Import Bookmarks and Tracks" button. - -2. Select a folder with KML, KMZ, KMB, GPX files. Organic Maps will scan it including subfolders and import all supported files with bookmarks and tracks. You can choose root folder to search over all storage. diff --git a/content/faq/bookmarks/how-to-import/index.pl.md b/content/faq/bookmarks/how-to-import/index.pl.md deleted file mode 100644 index 85e9b569..00000000 --- a/content/faq/bookmarks/how-to-import/index.pl.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -title: Jak importować zakładki? -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Zakładki i trasy"] - -extra: - order: 20 ---- - -Możesz importować zakładki wysyłane z aplikacji Organic Maps lub innych firm, jeśli eksportują zakładki w formacie KML: - -1. Możesz importować zakładki z folderów i aplikacji (w tym Maps.Me). Naciśnij przycisk gwiazdki aby otworzyć zakładki, naciśnij „Importuj zakładki i trasy” i wybierz dysk lub folder z plikami KML, KMZ, KMB, GPX. - -2. Otwórz udostępniony plik KML, KMZ, KMB, GPX z zakładkami wysyłanymi przez e-mail, komunikator lub chmurę pamięć masowa, na przykład iCloud lub Dysk Google. - -3. Stuknij raz lub stuknij i przytrzymaj plik KML, KMZ, KMB, GPX z zakładkami i wybierz Otwórz za pomocą Organic Maps (Android) lub „Importuj z Organic Maps” (iOS) w wyskakującym oknie. - -4. Zostanie otwarty z Organic Maps, a zobaczysz „Zakładki załadowane pomyślnie!”. Możesz znajdź je na mapie lub na ekranie menu zakładek. diff --git a/content/faq/bookmarks/how-to-import/index.pt-BR.md b/content/faq/bookmarks/how-to-import/index.pt-BR.md deleted file mode 100644 index 508774f5..00000000 --- a/content/faq/bookmarks/how-to-import/index.pt-BR.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -title: Como importar favoritos? -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Favoritos e trilhas"] - -extra: - order: 20 ---- - -Você pode importar favoritos enviados do Organic Maps ou aplicativos de terceiros, se eles exportarem favoritos no formato KML, KMZ, KMB, GPX: - -1. Você pode importar favoritos de pastas e aplicativos (incluindo Maps.Me). Pressione um botão de estrela para abrir os favoritos, pressione "Importar favoritos e trilhas" e selecione a unidade ou pasta com arquivos KML, KMZ, KMB, GPX. - -2. Abra o arquivo KML, KMZ, KMB, GPX compartilhado com favoritos enviados por e-mail, mensagens instantâneas ou armazenamento na nuvem, por exemplo, iCloud ou Google Drive. - -3. Toque uma vez ou toque e segure o arquivo KML, KMZ, KMB, GPX com favoritos e escolha "Abrir com Organic Maps" (Android) ou "Importar com Organic Maps" (iOS) na janela pop-up. - -4. Ele será aberto com o Organic Maps e você verá "Favoritos carregados com sucesso!". Você pode encontrá-los no mapa ou na tela Menu de favoritos. diff --git a/content/faq/bookmarks/how-to-import/index.pt.md b/content/faq/bookmarks/how-to-import/index.pt.md deleted file mode 100644 index 0d8e83c6..00000000 --- a/content/faq/bookmarks/how-to-import/index.pt.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -title: Como importar favoritos? -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Favoritos e trilhas"] - -extra: - order: 20 ---- - -Pode importar favoritos enviados do Organic Maps ou de outras aplicações, se estas exportarem favoritos no formato KML: - -1. Pode importar favoritos de pastas e aplicações (incluindo o Maps.Me). Toque no botão da estrela para abrir os favoritos, toque em "Importar favoritos e trilhas" e selecione a unidade ou pasta com o ficheiro KML, KMZ, KMB, GPX. - -2. Abra o ficheiro KML, KMZ, KMB, GPX partilhado com favoritos enviados por e-mail, mensagens instantâneas ou armazenamento na nuvem, por exemplo, iCloud ou Google Drive. - -3. Toque uma vez ou toque e mantenha premido no ficheiro KML, KMZ, KMB, GPX com favoritos e escolha "Abrir com Organic Maps" (Android) ou "Importar com Organic Maps" (iOS) no menu que aparece. - -4. Ele será aberto com o Organic Maps e verá a mensagem "Favoritos carregados com sucesso!". Pode encontrar esses favoritos no mapa ou no Menu de favoritos. diff --git a/content/faq/bookmarks/how-to-import/index.ru.md b/content/faq/bookmarks/how-to-import/index.ru.md deleted file mode 100644 index fc3c74fa..00000000 --- a/content/faq/bookmarks/how-to-import/index.ru.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -title: Как импортировать метки? -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Метки и Треки"] - -extra: - order: 20 ---- - -Вы можете импортировать метки, отправленные из Organic Maps или сторонних приложений в форматах KML, KMZ, KMB, GPX: - -1. Вы можете импортировать метки из некоторых других приложений, включая Maps.Me. Откройте метки (кнопка со звёздочкой), нажмите "Импортировать метки и треки", и выберите диск или папку, где будут KML, KMZ, KMB или GPX файлы. - -2. Отправьте себе на почту файл с метками (в формате KML, KMZ, KMB, GPX). Вы также можете использовать приложения для обмена сообщениями или загрузить файл из облачного хранилища, например, iCloud или Google Диск. - -3. Нажмите файл и выберите "Скопировать в Organic Maps". - -4. Файл будет открыт в Organic Maps и вы увидете сообщение "Метки успешно загружены!". Вы можете найти их на карте и в меню меток. diff --git a/content/faq/bookmarks/how-to-import/index.tr.md b/content/faq/bookmarks/how-to-import/index.tr.md deleted file mode 100644 index e723095b..00000000 --- a/content/faq/bookmarks/how-to-import/index.tr.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -title: Yer imleri nasıl içe aktarılır? -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Yer İmleri ve Kayıtlar"] - -extra: - order: 20 ---- - -Organic Maps'ten veya yer imlerini KML, KMZ, KMB, GPX biçiminde dışa aktarıyorsa üçüncü taraf uygulamalardan gönderilen yer imlerini içe aktarabilirsiniz: - -1. Klasörlerden ve uygulamalardan (Maps.Me dahil) yer imlerini içe aktarabilirsiniz. Yer imlerini açmak için yıldız düğmesine basın, "Yer i̇mlerini ve parçaları i̇çe aktarma"a basın ve KML, KMZ, KMB, GPX dosyalarının bulunduğu sürücü veya klasörü seçin. - -2. E-posta, anlık mesajlaşma ile gönderilen veya iCloud veya Google Drive gibi bulut depolama yoluyla paylaşılan KML, KMZ, KMB, GPX dosyasını açın. - -3. Yer imleri içeren KML, KMZ, KMB, GPX dosyasına bir kez dokunun veya basılı tutun ve açılır pencerede Organic Maps ile Aç (Android) veya "Organic Maps ile İçe Aktar" (iOS) öğesini seçin. - -4. Organic Maps açılacak ve 'Yer imleri başarıyla yüklendi!' ifadesini göreceksiniz. Bunları haritada veya Yer İmleri Menüsü ekranında bulabilirsiniz. diff --git a/content/faq/bookmarks/how-to-import/index.uk.md b/content/faq/bookmarks/how-to-import/index.uk.md deleted file mode 100644 index a78bc0fe..00000000 --- a/content/faq/bookmarks/how-to-import/index.uk.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -title: Як імпортувати мітки? -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Мітки та Маршрути"] - -extra: - order: 20 ---- - -Ви можете імпортувати мітки, надіслані з Organic Maps або зі сторонніх додатків, які підтримують експорт у формати KML, KMZ, KMB або GPX: - -1. Ви можете імпортувати мітки з папок і програм (включно з Maps.Me). Натисніть кнопку із зірочкою, щоб відкрити мітки, натисніть "Імпортувати мітки та маршрути" і виберіть диск або папку з файлами KML, KMZ, KMB, GPX. - -2. Відкрийте файл KML, KMZ, KMB, GPX із мітками, який ви отримали електронною поштою, в месенджері або через хмарним сховище, наприклад, iCloud або Google Drive. - -3. Натисніть один раз або натисніть і утримуйте файл KML, KMZ, KMB, GPX із мітками та виберіть "Відкрити за допомогою Organic Maps" (Android) або "Імпортувати за допомогою Organic Maps" (iOS) у спливаючому вікні. - -4. Її буде відкрито у програмі Organic Maps, і ви побачите повідомлення "Закладки завантажено успішно!". Ви можете побачити їх на мапі або в меню Мітки на головному екрані. diff --git a/content/faq/bookmarks/how-to-import/index.zh-Hans.md b/content/faq/bookmarks/how-to-import/index.zh-Hans.md deleted file mode 100644 index e7fba035..00000000 --- a/content/faq/bookmarks/how-to-import/index.zh-Hans.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -title: 如何导入书签 -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["书签和轨迹"] - -extra: - order: 20 ---- - -您可以导入从 Organic Maps 或第三方应用发送的以 KML、KMZ、KMB、GPX 格式导出的书签: - -1. 您可以从文件夹和应用程序(包括 Maps.Me)导入书签。 按下星形按钮打开书签,按下“导入书签和轨迹”,然后选择带有 KML、KMZ、KMB、GPX 文件的驱动器或文件夹。 - -2. 使用电子邮件、即时通讯或云存储(例如 iCloud 或 Google 云端硬盘)发送带有书签的 KML、KMZ、KMB、GPX 文件,然后打开。 - -3. 轻触一次或长按带有书签的 KML、KMZ、KMB、GPX 文件,并在弹出窗口中选择“使用 Organic Maps 打开”(安卓)或“在 Organic Maps 中导入”(iOS)。 - -4. 将会在 Organic Maps 中打开,您将看到书签成功加载的提示。您可以在地图上或在书签菜单屏幕中找到它们。 diff --git a/content/faq/editing/advanced-map-editing/index.md b/content/faq/editing/advanced-map-editing/index.md deleted file mode 100644 index 55ece1ea..00000000 --- a/content/faq/editing/advanced-map-editing/index.md +++ /dev/null @@ -1,66 +0,0 @@ ---- -title: How can I do more advanced map editing? -description: Tutorial for editing OpenStreetMap with more advanced tools like ID, Go Map and Vespucci -updated: "2024-06-20" - -taxonomies: - faq: ["Map Editing"] - -extra: - order: 40 ---- - -Organic Maps includes a simple and easy-to-use editor that you can use to edit the map. The editor is, however, limited and only allows to add simple point features, that means no building outlines, roads, lakes, towns, etc. If you want to change something that can not be edited with the build-in editor, this is the right FAQ page to read. - -As all map data used in Organic Maps comes from [OpenStreetMap.org (OSM)](https://www.openstreetmap.org), you can directly update the map there. Your modifications will then be included into Organic Maps with the next map update. - -## OpenStreetMap Editors - -For editing OSM, there are several options. If you have a laptop or desktop computer at hand, it's better to use the [ID Editor](https://www.openstreetmap.org/edit) that runs in your browser. The ID Editor is easy for beginners, and a bigger screen, mouse, and keyboard make map editing easier. - -For advanced map editing from a mobile device, use [Go Map](https://apps.apple.com/us/app/go-map/id592990211) for iOS or [Vespucci](https://play.google.com/store/apps/details?id=de.blau.android) for Android. Go Map is easy for beginners, while Vespucci targets more advanced users. LearnOSM provides tutorials for [Go Map](https://learnosm.org/en/mobile-mapping/gomap/) and [Vespucci](https://learnosm.org/en/mobile-mapping/vespucci/). - -For simpler edits with more fun, you may also try [Every Door app](https://every-door.app/) for iOS and Android and [StreetComplete app](https://streetcomplete.app/) for Android. - -#### ID Editor - -For editing OpenStreetMap with ID follow these steps: - -1. Create a new account or log in at [OpenStreetMap.org](https://www.openstreetmap.org) -2. Browse to the location you want to edit on OpenStreetMap.org and click *Edit* at the top -3. *Start the Walkthrough* and follow the short tutorial that explains the ID Editor -4. Edit the map -5. Upload your changes - -That's it, you are now part of the OSM community. - -## What happens with my edits? - -Once you press *Upload* your changes are instantly added to the public OSM database. So be considerate when editing. In Organic Maps, your changes will be visible after the next monthly map update. - -Your e-mail is not published, but other people will be able to see your OSM user name. As OSM offers the possibility to discuss changes, you might get questions about your edits from other OSM contributors. You will be notified about this via the e-mail address you used for registering your OSM account. As OSM is a community project that builds on collaboration you should always answer such questions. - -## Community and Wiki - -OpenStreetMap is a community. If you need help or have any questions you can ask in the [OSM Forum](https://community.openstreetmap.org/c/help-and-support) or take a look at the [OSM Wiki](https://wiki.openstreetmap.org/) documentation. - -## Tags - How the OSM datamodel works - -The OpenStreetMap database contains Objects like Nodes, Ways, Areas, and Relations that abstract from real-world features. These Objects have Attributes, so-called Tags to further describe them. A Tag is a Key-Value combination. - -As this sounds more complicated than it is we will give an example: -A Restaurant is e.g. mapped as a Note or Area with the Tag ``` amenity=restaurant```. Further Tags like ```cousine=*``` or ```opening_hours=*``` can then be used for further details. - -> Note that the ID editor hides the internal data structure from the users to be more beginner-friendly. But for reading the Wiki documentation heaving a brief overview of the data structure is helpful. -In the ID Editor, you can see the Tags that ID is hiding from you by expanding the *Tags* section in the *Edit feature* side panel. - -## OSM Notes - -If you don't have time or the problem is too complicated for editing the OSM data yourself OSM Notes ([Wiki](https://wiki.openstreetmap.org/wiki/Notes)) are the way to go. You can place such a note in the location of the map error and describe the problem in detail. Other OSM volunteers can then help and solve the issue. You will get e-mail notifications via your OSM account in case they have further questions or the OSM Note is solved. - -1. Create a new account or log in at [OpenStreetMap.org](https://www.openstreetmap.org) - > You can also open anonymous Notes, but this is not recomended as you won't get notified when the issue is solved or there are further questions. -2. Zoom to the map location on [OpenStreetMap.org](https://www.openstreetmap.org) and press *Add a note to the map* (second icon from the bottom on the right menue). Then drag the blue map marker to the exact location. - > Try to be as precice as you can. -3. Provide a detailed description of the map problem and press *Add Note* - > For shops e.g. provide the name and mention what is sold there or what services are offered. diff --git a/content/faq/editing/map-errors/index.de.md b/content/faq/editing/map-errors/index.de.md deleted file mode 100644 index 05b21c4c..00000000 --- a/content/faq/editing/map-errors/index.de.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -title: Auf der Karte fehlen Orte oder sie haben falsche Namen -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Kartenbearbeitung"] - -extra: - order: 30 ---- - -Unsere Kartendatenquelle ist [OpenStreetMap](https://www.openstreetmap.org/) (OSM). Dies ist ein Kartierungsprojekt ähnlich wie Wikipedia, jedoch für Karten, in denen jeder Karten erstellen und bearbeiten kann. - - -Wenn Sie falsche Informationen sehen oder feststellen, dass einige Objekte auf der Karte fehlen, können Sie eine Notiz für OSM-Editoren [hinterlassen](https://www.openstreetmap.org/note/new) oder die Karte [registrieren](https://www.openstreetmap.org/user/new) und bearbeiten. - -Je mehr Leute mitarbeiten, desto detailliertere Karten erhalten wir. Und wir glauben, dass die detaillierteste Karte der ganzen Welt, die von der offenen Community erstellt wurde, nur eine Frage der Zeit ist. - -**Hinweise:** - -* Sie können auch neue Orte hinzufügen, vorhandene POI und Gebäudeinformationen (Adressen, Öffnungszeiten, Namen) direkt über Organic Maps bearbeiten. Sobald Sie sich mit dem OSM-Konto anmelden, werden Ihre Änderungen automatisch auf OSM hochgeladen. Bitte seien Sie vorsichtig bei der Bearbeitung, da Ihre Änderungen für alle anderen Benutzer sichtbar sind. - -* Die OpenStreetMap-Datenbank wird jede Minute aktualisiert. Unser Ziel ist es, die Karten in der App 1-4 Mal pro Monat zu aktualisieren. Wenn Sie etwas in OSM geändert haben, werden Ihre Änderungen in zukünftigen Karten-Updates angezeigt. diff --git a/content/faq/editing/map-errors/index.es.md b/content/faq/editing/map-errors/index.es.md deleted file mode 100644 index 1b155b2e..00000000 --- a/content/faq/editing/map-errors/index.es.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -title: Algunos lugares no aparecen en el mapa o tienen un nombre incorrecto -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Edición de mapas"] - -extra: - order: 30 ---- - -Nuestra fuente de datos de mapas es [OpenStreetMap](https://www.openstreetmap.org) (OSM). Este es un proyecto de mapeo similar a Wikipedia, pero para mapas, donde cualquiera puede crear y editar mapas. - -Si ve información incorrecta, o si encuentra que faltan algunos objetos en el mapa, puede [dejar una nota](https://www.openstreetmap.org/note/new) para los editores de OSM o [registrarse](https://www.openstreetmap.org/user/new) y editar el mapa. - -Cuanta más gente contribuya, más mapas detallados obtendremos. Y creemos que el mapa más detallado de todo el mundo, creado por la comunidad abierta, es solo una cuestión de tiempo. - -**Notas:** - -* También puede agregar nuevos lugares, editar los PDI existentes y la información de construcción (direcciones, horarios de apertura, nombres) directamente a través de Organic Maps. Una vez que inicie sesión con la cuenta OSM, sus ediciones se cargarán automáticamente a OSM. Tenga cuidado al editar, ya que sus ediciones serán visibles para todos los demás usuarios. - -* La base de datos de OpenStreetMap se actualiza cada minuto. Nuestro objetivo es actualizar los mapas en la aplicación de 1 a 4 veces al mes. Si modificó algo en OSM, sus ediciones aparecerán en futuras actualizaciones de mapas. diff --git a/content/faq/editing/map-errors/index.fr.md b/content/faq/editing/map-errors/index.fr.md deleted file mode 100644 index 6d56fa97..00000000 --- a/content/faq/editing/map-errors/index.fr.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -title: Quelques lieux sont absents de la carte ou mal orthographiés -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Édition de la carte"] - -extra: - order: 30 ---- - -Notre source de données cartographiques est [OpenStreetMap](https://www.openstreetmap.org/) (OSM). Il s'agit d'un projet cartographique similaire à Wikipedia, mais pour les cartes, où tout le monde peut créer et éditer des cartes. - -Si vous voyez des informations incorrectes ou si vous constatez que certains objets manquent sur la carte, vous pouvez [laisser une note](https://www.openstreetmap.org/note/new) aux éditeurs OSM ou vous [inscrire](https://www.openstreetmap.org/user/new) et modifier la carte. - -Plus les utilisateurs contribuent, plus nous obtenons des cartes détaillées. Et nous pensons que la carte la plus détaillée du monde entier, créée par la communauté ouverte, n'est qu'une question de temps. - -**Remarques:** - -* Vous pouvez également ajouter de nouveaux lieux, modifier des POI existants et des informations sur le bâtiment (adresses, heures d'ouverture, noms) directement via Organic Maps. Une fois que vous vous êtes connecté avec un compte OSM, vos modifications seront automatiquement téléchargées vers OSM. Restez prudent lors de l'édition, vos modifications seront visibles par tous les autres utilisateurs. - -* La base de données OpenStreetMap est mise à jour toutes les minutes. Nous visons à mettre à jour les cartes dans l'application 1 à 4 fois par mois. Si vous avez modifié quelque chose dans OSM, vos modifications apparaîtront dans les futures mises à jour des cartes. diff --git a/content/faq/editing/map-errors/index.md b/content/faq/editing/map-errors/index.md deleted file mode 100644 index 5c806835..00000000 --- a/content/faq/editing/map-errors/index.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -title: Some places are missing on the map or have wrong names -description: Tips for correcting errors in maps, making changes and updates to objects directly in Organic Maps or through OpenStreetMap.org -updated: "2024-06-20" - -taxonomies: - faq: ["Map Editing"] - -extra: - order: 30 ---- - -Our map data source is [OpenStreetMap](https://welcome.openstreetmap.org) (OSM). This is a mapping project similar to Wikipedia, but for maps, where anybody can create and edit the map of the World. - -If you see incorrect information, or if you find that some objects are missing on the map, you can [leave a note](https://www.openstreetmap.org/note/new) for OSM editors or [register](https://www.openstreetmap.org/user/new) and edit the map. - -The more people contribute, the more detailed maps everyone gets. We believe that the most detailed map of the whole world, created by the open community, is just a matter of time. - -**Notes:** - -* You can also add new places, edit existing POI and building info (addresses, opening hours, names) directly in Organic Maps. Once you log in with OSM account, your edits will be automatically uploaded to OSM. Please be careful when editing, as your edits will be visible to all other users. - -* The OpenStreetMap database is updated every minute. We aim to update maps in the app 1-4 times per month. If you modified something in OSM, your edits will appear in future maps updates. diff --git a/content/faq/editing/map-errors/index.pl.md b/content/faq/editing/map-errors/index.pl.md deleted file mode 100644 index 02403b40..00000000 --- a/content/faq/editing/map-errors/index.pl.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -title: Brakuje niektórych miejsc na mapie lub mają nieprawidłowe nazwy -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Edycja mapy"] - -extra: - order: 30 ---- - -Nasze źródło danych mapy to [OpenStreetMap](https://welcome.openstreetmap.org/) (OSM). Jest to projekt mapowania podobny do Wikipedii, ale do map, gdzie każdy może tworzyć i edytować mapy. - -Jeśli znajdziesz nieprawidłowe informacje lub zauważysz, że na mapie brakuje niektórych obiektów, możesz [zostawić uwagę](https://www.openstreetmap.org/note/new) edytorom OSM lub [zarejestrować się](https://www.openstreetmap.org/user/new) i edytować mapę. - -Im więcej osób współtworzy OSM, tym bardziej szczegółowe mapy otrzymuje OM. Wierzymy, że najbardziej szczegółowa mapa całego świata, stworzona przez otwartą społeczność, to tylko kwestia czasu. - -**Uwagi:** - -* Możesz także dodawać nowe miejsca, edytować istniejące punkty i informacje o budynkach (adresy, godziny otwarcia, nazwy) bezpośrednio przez Organic Maps. Po zalogowaniu się przy użyciu konta OSM, Twoje zmiany zostaną automatycznie przesłane do OSM. Zachowaj ostrożność podczas edycji, ponieważ Twoje zmiany będą widoczne dla wszystkich innych użytkowników. - -* Baza danych OpenStreetMap jest aktualizowana co minutę. Staramy się aktualizować mapy w aplikacji 1-4 razy w miesiącu. Jeśli coś zmodyfikowałeś w OSM, Twoje zmiany pojawią się w przyszłych aktualizacjach map. diff --git a/content/faq/editing/map-errors/index.pt-BR.md b/content/faq/editing/map-errors/index.pt-BR.md deleted file mode 100644 index 6add9daf..00000000 --- a/content/faq/editing/map-errors/index.pt-BR.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -title: Alguns lugares estão faltando no mapa ou possuem nomes errados -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Edição de mapas"] - -extra: - order: 30 ---- - -Nossa fonte de dados de mapa é [OpenStreetMap](https://welcome.openstreetmap.org/) (OSM). Este é um projeto de mapeamento semelhante à Wikipédia, mas para mapas, onde qualquer pessoa pode criar e editar mapas. - -Se você vir informações incorretas, ou se achar que alguns objetos estão faltando no mapa, [deixe uma nota](https://www.openstreetmap.org/note/new) para os editores do OSM ou [registre-se](https://www.openstreetmap.org/user/new) e edite o mapa. - -Quanto mais pessoas contribuem, mais detalhados são os mapas. E acreditamos que o mapa mais detalhado de todo o mundo, criado pela comunidade aberta, é apenas uma questão de tempo. - -**Notas:** - -* Você também pode adicionar novos locais, editar o POI existente e adicionar informações (endereços, horário de funcionamento, nomes) diretamente via Organic Maps. Depois de fazer o login com a conta do OSM, suas edições serão automaticamente enviadas para o OSM. Tenha cuidado ao editar, pois suas edições ficarão visíveis para todos os outros usuários. - -* O banco de dados do OpenStreetMap é atualizado a cada minuto. Nosso objetivo é atualizar os mapas no aplicativo de 1 a 4 vezes por mês. Se você modificou algo no OSM, suas edições aparecerão em futuras atualizações de mapas. diff --git a/content/faq/editing/map-errors/index.pt.md b/content/faq/editing/map-errors/index.pt.md deleted file mode 100644 index 7c0f2fe9..00000000 --- a/content/faq/editing/map-errors/index.pt.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -title: Faltam alguns lugares no mapa ou têm nomes errados -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Edição de mapas"] - -extra: - order: 30 ---- - -A nossa fonte de dados do mapa é [OpenStreetMap](https://welcome.openstreetmap.org/) (OSM). Trata-se de um projeto de mapeamento semelhante à Wikipédia, mas para mapas, onde qualquer pessoa pode criar e editar mapas. - -Se encontrar informações incorretas ou se achar que faltam alguns elementos no mapa, [deixe uma nota](https://www.openstreetmap.org/note/new) para os editores do OSM ou [registe-se](https://www.openstreetmap.org/user/new) e edite o mapa. - -Quanto mais pessoas contribuirem, mais detalhados são os mapas. Acreditamos que o mapa mais detalhado de todo o mundo, criado pela comunidade de forma aberta, é apenas uma questão de tempo. - -**Notas:** - -* Também pode adicionar novos locais, editar o POI existente e adicionar informações (endereços, horário de funcionamento, nomes) diretamente no Organic Maps. Depois de se autenticar com a sua conta do OSM, as suas edições serão automaticamente enviadas para o OSM. Tenha cuidado ao editar, pois as suas edições ficarão visíveis para todos os outros utilizadores. - -* A base de dados do OpenStreetMap é atualizada a cada minuto. O nosso objetivo é atualizar os mapas na aplicação de 1 a 4 vezes por mês. Se alterou alguma coisa no OSM, as suas edições aparecerão em futuras atualizações dos mapas. - diff --git a/content/faq/editing/map-errors/index.ru.md b/content/faq/editing/map-errors/index.ru.md deleted file mode 100644 index 69b4a4b3..00000000 --- a/content/faq/editing/map-errors/index.ru.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -title: На карте отсутствуют или неправильно называются объекты -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Редактирование"] - -extra: - order: 30 ---- - -В Organic Maps мы делаем само приложение и сложные алгоритмы. Наш источник данных – [OpenStreetMap](https://www.openstreetmap.org/) (OSM), это открытый проект, как Википедия, только для карт. - -Если вы заметили неточности или увидели, что отсутствуют какие-либо детали, вы можете [сообщить об этом](https://www.openstreetmap.org/note/new) редакторам OSM или [зарегистрироваться](https://www.openstreetmap.org/user/new) на сайте OpenStreetMap и отредактировать карту. - -Чем больше небезразличных людей, тем точнее будут карты для всех нас. Мы в команде считаем, что подробные карты всей нашей планеты – это всего лишь вопрос времени. - -**Примечания:** - -* Вы также можете добавлять новые и редактировать уже отмеченные места (название, адресная информация, часы работы) напрямую из Organic Maps. Как только вы авторизуетесь через профиль OSM, правки будут автоматически отправлены в OSM. Пожалуйста, будьте внимательны при редактировании: ваши правки будут доступны всем остальным пользователям. - -* База данных OpenStreetMap обновляется каждую минуту. Наша цель — обновлять данные в приложении 1-4 раза в месяц. Если вы что-то меняли в OSM, ваши исправления появятся в одном из следующих обновлений. diff --git a/content/faq/editing/map-errors/index.tr.md b/content/faq/editing/map-errors/index.tr.md deleted file mode 100644 index 964fef22..00000000 --- a/content/faq/editing/map-errors/index.tr.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -title: Haritada bazı yerler eksik veya yanlış adlara sahip -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Harita düzenleme"] - -extra: - order: 30 ---- - -Harita veri kaynağımız [OpenStreetMap'tir](https://welcome.openstreetmap.org/) (OSM). OpenStreetMap, herkesin harita oluşturabildiği ve düzenleyebildiği Vikipedi'ye benzer bir haritalama projesidir. - -Haritada yanlış bir bilgi görürseniz ya da eksik bir nesne fark ederseniz, OSM editörleri için [bir not bırakabilir](https://www.openstreetmap.org/note/new) veya [kaydolup](https://www.openstreetmap.org/user/new) haritayı düzenleyebilirsiniz. - -Ne kadar çok insan katkıda bulunursa, o kadar ayrıntılı haritalar elde ederiz. Açık topluluk tarafından oluşturulan tüm dünyanın en ayrıntılı haritasının sadece bir zaman meselesi olduğuna inanıyoruz. - -**Notlar:** - -* Ayrıca doğrudan Organic Maps ile yeni yerler ekleyebilir, mevcut POI (İÇN) ve yapı bilgilerini (adresler, çalışma saatleri, isimler) düzenleyebilirsiniz. Bir seferlik OSM hesabınızla giriş yaptığınızda düzenlemeleriniz otomatik olarak OSM'ye yüklenecektir. Düzenlemeleriniz diğer tüm kullanıcılar tarafından görülebileceği için lütfen düzenleme yaparken dikkatli olun. - -* OpenStreetMap veritabanı her dakika güncellenir. Ayda 1-4 kez uygulamadaki haritayı güncellemeyi hedefliyoruz. Eğer OSM'de herhangi bir değişiklik yaptıysanız, düzenlemeleriniz gelecekteki harita güncellemelerinde görünecektir. diff --git a/content/faq/editing/map-errors/index.uk.md b/content/faq/editing/map-errors/index.uk.md deleted file mode 100644 index 7ed8faa9..00000000 --- a/content/faq/editing/map-errors/index.uk.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -title: Деякі місця відсутні на карті або мають неправильні назви -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Редагування"] - -extra: - order: 30 ---- - -Джерелом наших картографічних даних є [OpenStreetMap](https://welcome.openstreetmap.org/) (OSM). Це картографічний проект, подібний до Вікіпедії, але для мап, де будь-хто може створювати та редагувати мапи. - -Якщо ви побачили невірну інформацію або виявили, що деякі об'єкти відсутні на карті, ви можете [залишити повідомлення](https://www.openstreetmap.org/note/new) для редакторів OSM або [реєструватися](https://www.openstreetmap.org/user/new) і редагувати мапу. - -Чим більше людей долучається, тим детальніші стають карти. Ми віримо, що найдетальніша карта всього світу, створена відкритою спільнотою - це лише питання часу. - -**Примітки:** - -* Ви також можете додавати нові місця, редагувати існуючі POI та інформацію про будівлі (адреси, години роботи, назви) безпосередньо в Organic Maps. Після того, як ви ввійдете за допомогою облікового запису OSM, ваші правки будуть автоматично завантажені на OSM. Будь ласка, будьте обережні при редагуванні, оскільки ваші правки будуть видимі всім іншим користувачам. - -* База даних OpenStreetMap змінюється щохвилини. Ми прагнемо оновлювати карти в додатку 1-4 рази на місяць. Якщо ви змінили щось в OSM, ваші правки з'являться в наступних оновленнях мап. diff --git a/content/faq/editing/map-errors/index.zh-Hans.md b/content/faq/editing/map-errors/index.zh-Hans.md deleted file mode 100644 index 5e9057e7..00000000 --- a/content/faq/editing/map-errors/index.zh-Hans.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -title: 地图上有些地方缺失或名称有误 -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["地图编辑"] - -extra: - order: 30 ---- - -我们的地图数据源是 [OpenStreetMap](https://welcome.openstreetmap.org/)(简称 OSM)。这是一个类似维基百科的地图项目,任何人都可以创建和编辑地图。 - -如果您发现不准确的信息,或者发现地图上缺少某些对象,您可以给 OSM 编辑者 [留言](https://www.openstreetmap.org/note/new),或者 [注册](https://www.openstreetmap.org/user/new) 并编辑地图。 - -参与的人越多,我们就能得到更详细的地图。我们相信,由开放社区创建的全球最详细地图只是时间的问题。 - -**请注意:** - -* 您还可以通过 Organic Maps 直接添加新地点,编辑现有兴趣点和建筑信息(地址、营业时间、名称)。 一旦使用 OSM 账户登录,您的编辑将自动上传到OSM。请在编辑时小心,因为您的编辑将对所有其他用户可见。 - -* OpenStreetMap 数据库每分钟更新一次。 我们的目标是每月 1 到 4 次更新应用中的地图。 如果您在 OSM中进行了修改,您的编辑将出现在未来的地图更新中。 diff --git a/content/faq/embedded-faq.md b/content/faq/embedded-faq.md deleted file mode 100644 index aa98dd12..00000000 --- a/content/faq/embedded-faq.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: Multilang single page FAQ -description: Multilang single page FAQ -template: "faq/embedded-faq.html" ---- - -Static FAQ page to me embedded into Android and iOS apps diff --git a/content/faq/voice/text-to-speech-android-tts/index.md b/content/faq/index.md similarity index 51% rename from content/faq/voice/text-to-speech-android-tts/index.md rename to content/faq/index.md index 6e4cd4cb..210d33d5 100644 --- a/content/faq/voice/text-to-speech-android-tts/index.md +++ b/content/faq/index.md @@ -1,29 +1,22 @@ --- title: Text-to-Speech on Android description: Guide on how to make TTS work on Android -aliases: ["/faq/text-to-speech-android-tts"] - -taxonomies: - faq: ["Voice Directions"] - +weight: 100 extra: - order: 10 + menu_title: FAQ --- -## Summary +TLDR: -Organic Maps uses the system text-to-speech (TTS) engine for voice instructions. The default engines vary by device. The choices can include Google Text-to Speech, device manufacturer's engine or a third-party one. +Organic Maps uses the system text-to-speech (TTS) engine for voice instructions. The default engines vary by device. The choices can include Google Text-to Speech, device manufacturer's engine or a third-party one. The official recommendation from Organic Maps is [RHVoice](https://rhvoice.org/), which is a free and open source speech engine that can be downloaded from [Google Play](https://play.google.com/store/apps/details?id=com.github.olga_yakovleva.rhvoice.android) and [F-Droid](https://f-droid.org/en/packages/com.github.olga_yakovleva.rhvoice.android/). ## Instructions -- Open the Settings app on your Android device -- Select Additional Settings and then select Accessibility -- Choose your preferred engine, speech rate and pitch -- **Restart Organic Maps app** -- Open Settings => Voice Instructions in Organic Maps and set it up -- Restart Organic Maps app again (or reboot the device) if the voice is not working +- Open the Settings app on your Android device. +- Select Additional Settings and then select Accessibility. +- Choose your preferred engine, speech rate and pitch. If you cannot find the relevant setting, open the settings app and search for Text-to-speech. @@ -33,34 +26,51 @@ Said options may not appear if you don't have a TTS already installed on your de ## Screenshots -| | | -| ----------- | ----------- | -![Settings](tts_config_1.png "Settings") | ![Accessibility](tts_config_2.png "Accessibility") +| | | | +| ----------- | ----------- | ----------- | +| Screenshot 1 | Screenshot 2 | Screenshot 3 | -## Engines {#engines} +## Engines Below is a comprehensive list showing several engines and the languages they support (download links can be found after the table): {{ tts_table() }} +## Downloads + +- [Acapela Voices TTS](https://play.google.com/store/apps/details?id=com.acapelagroup.android.tts) +- [Amazon Ivona TTS](https://apkpure.com/ivona-text-to-speech-hq/com.ivona.tts/download) +- [eSpeak TTS](https://f-droid.org/en/packages/com.reecedunn.espeak/) +- [Google Speech Services](https://play.google.com/store/apps/details?id=com.google.android.tts) +- [RHVoice TTS (Recommended)](https://play.google.com/store/apps/details?id=com.github.olga_yakovleva.rhvoice.android) +- [Vocalizer (Code Factory)](https://play.google.com/store/apps/details?id=es.codefactory.vocalizertts) +- [Vocalizer 2 (Nuance)](https://nvda.ru/sintezatory-rechi-vocalizer-expressive2-dlja-nvda#) +- [Yandex SpeechKit TTS](https://4pda.to/forum/index.php?showtopic=200728&st=4200#download) + ## Workarounds If you’re having trouble initializing the RHVoice TTS engine on LineageOS or other custom ROMs, try this workaround. RHVoice may not initialize properly and the app may crash, especially if you haven’t used any TTS engine on your phone before (e.g., new installation, factory reset, etc.). If you’re using a custom ROM like LineageOS without Google Play services and Speech Services by Google, and you want to use RHVoice as your preferred TTS engine, follow the instructions below as a workaround: -1. Install the [eSpeak TTS engine](https://f-droid.org/en/packages/com.reecedunn.espeak) available on F-Droid -2. Set it as the preferred system engine +- Install the [eSpeak TTS engine](https://f-droid.org/en/packages/com.reecedunn.espeak) available on F-Droid + +- Set it as the preferred system engine + - Go to LineageOS main **Settings**. + - Scroll down to **Accessibility**. + - Select **text-to-speech output** and **Preferred engine** (left side) and make sure **eSpeak** is selected. -3. Go back and press **play** to see if it is working -4. Install [RHVoice](https://f-droid.org/en/packages/com.github.olga_yakovleva.rhvoice.android/) available on F-droid. + +- Go back and press **play** to see if it is working + +- Install [RHVoice](https://f-droid.org/en/packages/com.github.olga_yakovleva.rhvoice.android/) available on F-droid. + - Open it, select the language you want to use, tap on the cloud icon (far left) to download voices. + - Press play button to verify if it is working -5. Set **RHVoice** as preferred engine (see step 2) -6. Now, you should be able to use RHVoice without any problems + +- Set **RHVoice** as preferred engine (see step 2) -## Testing +- Now, you should be able to use RHVoice without any problems -In order to test the voice instructions, you can tap on "Test Voice Directions (TTS, Text-To-Speech)" in OM "Settings → Voice Instructions" menu or you can actually start a navigation to receive any voice output. Organic Maps will not give you any voice instructions while you're standing still. - -![TTS Test](tts_test.png "TTS Test") +*In order to hear voice instructions you have to actually start a navigation to receive any voice output, Organic Maps will not give you any voice instructions while you're standing still.* diff --git a/content/faq/map/can-not-find-position/index.de.md b/content/faq/map/can-not-find-position/index.de.md deleted file mode 100644 index 82bce877..00000000 --- a/content/faq/map/can-not-find-position/index.de.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: Mein Standort kann von der App nicht bestimmt werden -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Karte"] - -extra: - order: 10 ---- - -Bitte stellen Sie sicher, dass Ihr Gerät über GPS verfügt und die Standorteinstellungen aktiviert sind. - -**Android** - -Öffnen Sie auf Ihrem Gerät Einstellungen → Standort. Es ist besser, den Modus Hohe Genauigkeit einzuschalten. - -Wenn Sie Schwierigkeiten haben, Ihren Standort mit GPS zu bestimmen, aktivieren Sie (sofern aktiviert) "Google Play-Dienste" in den App-Einstellungen. - -Hinweis: können Sie nur sehen, wenn auf Ihrem Android-Gerät Google Play-Dienste installiert (aktiviert) sind. Google Play-Dienste werden verwendet, um den Standort genauer zu bestimmen. Wenn Probleme mit der Ortsgenauigkeit auftreten, nachdem Sie die Option deaktiviert haben, aktivieren Sie sie. - -**iOS** - -Wenn Sie ein iPhone- oder iPad-Nutzer sind, überprüfen Sie bitte iOS-Einstellungen → Datenschutz → Standortdienste. Geolocation-Datenfreigabe sollte für Organic Maps aktiviert werden. - -**Anmerkungen:** - -* Um beim Roaming unerwünschte Daten zu vermeiden, können Sie in den Geräteeinstellungen alle mobilen Daten ausschalten, einen Flugmodus aktivieren oder mobile Daten für Organic Maps deaktivieren. Android- und iOS-Geräte können GPS im Flugmodus verwenden. - -* Einige Mobilgeräte verfügen nicht über integrierte GPS-Empfänger, wie z. B. den iPod Touch, das reine WiFi-iPad, Amazon Kindle Fire / Kindle Fire HD 7 und einige Android-Tablets. Auf diesen Geräten zeigt unsere Anwendung Ihren ungefähren Standort an, solange Sie mit dem Internet verbunden sind. - -* Beachten Sie bitte, dass die Standortbestimmung mit GPS (mit WiFi und Mobilfunknetz aus) einige Zeit dauern kann. Je länger das GPS nicht benutzt wurde, desto mehr Zeit wird benötigt. Die Geschwindigkeit der Standortbestimmung hängt vom Gerät und nicht von der App ab. Die GPS-Bedienung wird auch vom Wetter beeinflusst - am besten funktioniert es im Freien, wenn der Himmel klar ist. Probleme können auftreten, wenn Sie versuchen, sich im Haus, in einer engen Straße oder beim Autofahren zu finden. diff --git a/content/faq/map/can-not-find-position/index.es.md b/content/faq/map/can-not-find-position/index.es.md deleted file mode 100644 index 3bcf4bea..00000000 --- a/content/faq/map/can-not-find-position/index.es.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: La aplicación no puede establecer mi posición -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Mapa"] - -extra: - order: 10 ---- - -Asegúrese de que su dispositivo tenga configurados el GPS y la ubicación. - -**Android** - -En su dispositivo, abra Configuración → Ubicación. Es mejor activar el modo de alta precisión. - -Si tiene dificultades para determinar su ubicación con GPS, habilite (deshabilite, si está habilitado) "Servicios de Google Play" en la configuración de la aplicación. - -Nota: puede verlo solo si tiene los servicios de Google Play instalados (habilitados) en su dispositivo Android. Los servicios de Google play se usan para determinar la ubicación de manera más precisa; si tiene problemas con la precisión de la ubicación después de deshabilitar la opción, actívela. - -**iOS** - -Si usted es un usuario de iPhone o iPad, verifique la configuración de iOS → Privacidad → Servicios de ubicación. El intercambio de datos de geolocalización debería estar habilitado para Organic Maps. - -**Notas:** - -* Para evitar datos no deseados durante el roaming, puede desactivar los datos móviles, activar modo avión o deshabilitar datos móviles para Organic Maps en la configuración de su dispositivo. Los dispositivos Android e iOS pueden usar el GPS en el modo avión. - -* Algunos dispositivos móviles no tienen receptores GPS incorporados, como el iPod Touch, el iPad solo WiFi, Amazon Kindle Fire / Kindle Fire HD 7 y algunas tabletas Android. En estos dispositivos, nuestra aplicación mostrará su ubicación aproximada, siempre que esté conectado a internet. - -* Por último, recuerde que la determinación de la ubicación con GPS (con WiFi y Red móvil desactivada) puede llevar algo de tiempo. Cuanto más tiempo no se haya utilizado el GPS, más tiempo tomará. La velocidad de determinación de la ubicación depende del dispositivo, no de la aplicación. La operación del GPS también está influenciada por el clima: funciona mejor en exteriores cuando el cielo está despejado. Pueden surgir problemas al tratar de ubicarse en el interior, en una calle estrecha o cuando conduce un automóvil. diff --git a/content/faq/map/can-not-find-position/index.fr.md b/content/faq/map/can-not-find-position/index.fr.md deleted file mode 100644 index b99da531..00000000 --- a/content/faq/map/can-not-find-position/index.fr.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: L'application n'arrive pas à déterminer ma position -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Carte"] - -extra: - order: 10 ---- - -Veuillez vous assurer que votre appareil dispose de GPS et que les paramètres de localisation sont activés. - -**Android** - -Sur votre appareil, ouvrez Paramètres → Localisation. Il est préférable d'activer le mode Haute précision. - -Si vous avez des difficultés à déterminer votre position avec le GPS, activez (désactivez, si activé) "Google Play Services" dans les paramètres de l'application. - -Remarque : vous ne pouvez le voir que si les services Google Play sont installés (activés) sur votre ordinateur. Appareil Android Les services Google Play sont utilisés pour déterminer l'emplacement plus précisément, si vous vous rencontrez des problèmes de précision de localisation après avoir désactivé l'option, activez-la. - -**iOS** - -Si vous utilisez un iPhone ou un iPad, veuillez vérifier les paramètres iOS → Confidentialité → Services de localisation. Le partage de données de géolocalisation doit être activé pour Organic Maps. - -**Notes:** - -* Pour éviter les données indésirables en itinérance, vous pouvez désactiver toutes les données mobiles, activer le mode Avion ou désactiver les données mobiles pour Organic Maps dans les paramètres de votre appareil. Les appareils Android et iOS peuvent utiliser le GPS en mode Avion. - -* Certains appareils mobiles ne disposent pas de récepteurs GPS intégrés, tels que l'iPod Touch, l'iPad WiFi uniquement, Amazon Kindle Fire / Kindle Fire HD 7 et quelques tablettes Android. Sur ces appareils, notre application montrera votre position approximative, tant que vous êtes connecté à Internet. - -* Enfin, rappelez-vous que l'emplacement déterminé avec le GPS (avec WiFi et Mobile Réseau éteint) peut prendre un certain temps. Moins le GPS a été utilisé, plus il prend de temps. La vitesse de détermination de l'emplacement dépend de l'appareil, pas de l'application. Le fonctionnement du GPS est influencé par la météo aussi - il fonctionne mieux à l'extérieur quand le ciel est clair. Des problèmes peuvent survenir si vous vous trouvez à l'intérieur, dans une rue étroite ou en conduisant une voiture. diff --git a/content/faq/map/can-not-find-position/index.md b/content/faq/map/can-not-find-position/index.md deleted file mode 100644 index 3ee84496..00000000 --- a/content/faq/map/can-not-find-position/index.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: The app can't find my position on the map -description: Troubleshooting guide for solving problems with location determination for iOS and Android devices -updated: "2024-06-20" - -taxonomies: - faq: ["Map"] - -extra: - order: 10 ---- - -Please make sure your device has GPS, location services are enabled, and location permissions are given to Organic Maps. - -**Android** - -On your device open Settings → Location. It is better to switch on High accuracy mode, as it enables precise GPS location. - -If your Android device can not determine your location, enable (or disable, if enabled) “Google Play Services” option in the app settings. - -Note: you can see it only if you have Google Play services installed (enabled) on your Android device. Google play services are used to determine location more precisely, if you experience issues with location accuracy after you disabled the option, turn it on. - -**iOS** - -If you are an iPhone or iPad user, please check iOS settings → Privacy → Location services. Geolocation data sharing should be enabled for Organic Maps. - -**Notes:** - -* To avoid unwanted data while roaming, you can turn off all mobile data, activate a flight mode or disable mobile data for Organic Maps in your device settings. Android and iOS devices can use GPS in the flight mode. - -* Some mobile devices do not have built-in GPS receivers, such as the iPod Touch, WiFi-only iPad, Amazon Kindle Fire/Kindle Fire HD 7, and some Android tablets. On these devices, all apps will show your approximate location detected using a Wi-Fi network, as long as you are connected to the internet. - -* Location detection with GPS satellites (when WiFi and Mobile Networks are disabled) may take some time. The longer the GPS has not been used, the more time it takes. The speed of location detection depends on the device, not the app. The GPS operation is influenced by the weather as well – it works best outdoors when the sky is clear. Problems may arise when trying to locate yourself indoors, on a narrow street, or when driving a car, with a lot of metal around or with a metal/magnet on the device's case. diff --git a/content/faq/map/can-not-find-position/index.pl.md b/content/faq/map/can-not-find-position/index.pl.md deleted file mode 100644 index d3c229af..00000000 --- a/content/faq/map/can-not-find-position/index.pl.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: Aplikacja nie może określić mojej lokalizacji -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Mapa"] - -extra: - order: 10 ---- - -Upewnij się, że Twoje urządzenie ma GPS i ustawienia lokalizacji są włączone. - -**Android** - -Na twoim urządzeniu otwórz Ustawienia → Lokalizacja. Lepiej jest włączyć tryb wysokiej dokładności. - -Jeśli masz trudności z określeniem swojej lokalizacji za pomocą GPS, włącz (wyłącz, jeśli włączone) "Usługi Google Play" w ustawieniach aplikacji. - -Uwaga: możesz je zobaczyć tylko wtedy, gdy masz zainstalowane (i włączone) usługi Google Play na twoim urządzeniu z Androidem. Usługi Google Play są używane do dokładniejszego określenia lokalizacji, jeśli masz problemy z dokładnością lokalizacji po wyłączeniu opcji, włącz ją. - -**iOS** - -Jeśli jesteś użytkownikiem iPhone'a lub iPada, sprawdź ustawienia iOS → Prywatność → Usługi lokalizacji. Udostępnianie danych geolokalizacyjnych powinno być włączone dla Organic Maps. - -**Uwagi:** - -* Aby uniknąć niechcianych opłat podczas roamingu, możesz wyłączyć wszystkie dane mobilne, aktywować tryb samolotowy lub wyłączyć dane mobilne dla Organic Maps w ustawieniach urządzenia. Urządzenia z Androidem i iOS mogą korzystać z GPS w trybie lotu. - -* Niektóre urządzenia mobilne nie mają wbudowanych odbiorników GPS, takich jak iPod Touch, iPad tylko z Wi-Fi, Amazon Kindle Fire / Kindle Fire HD 7 i niektóre tablety z Androidem. Na tych urządzeniach nasza aplikacja będzie pokazywać przybliżoną lokalizację, o ile jesteś podłączony do Internetu. - -* Na koniec pamiętaj, że określanie lokalizacji z GPS (z WiFi i danymi mobilnymi wyłączonymi) może zająć trochę czasu. Im dłużej GPS nie jest używany, tym więcej czasu zajmuje. Szybkość określania lokalizacji zależy od urządzenia, a nie od aplikacji. Pogoda wpływa na funkcjonowanie GPS - najlepiej działa na zewnątrz, gdy niebo jest czyste. Mogą pojawić się problemy podczas próby zlokalizowania się w domu, na wąskiej ulicy lub podczas prowadzenia samochodu. diff --git a/content/faq/map/can-not-find-position/index.pt-BR.md b/content/faq/map/can-not-find-position/index.pt-BR.md deleted file mode 100644 index 7797d04b..00000000 --- a/content/faq/map/can-not-find-position/index.pt-BR.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: O aplicativo não pode determinar minha localização -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Mapa"] - -extra: - order: 10 ---- - -Por favor, verifique se o seu dispositivo tem GPS e as configurações de localização estão ativadas. - -**Android** - -No seu dispositivo, abra Configurações → Localização. É melhor ligar o modo de alta precisão (GPS assistido, A-GPS). - -Se tiver dificuldade em determinar a sua localização com o GPS, ative (desative, se ativada) o "Google Play Services" nas configurações da aplicação. - -Nota: só pode ver se tiver o Google Play Services instalado (ativado) no seu dispositivo Android. Os serviços de reprodução do Google são usados para determinar a localização com mais precisão. Se você tiver problemas com a precisão da localização depois de desativar a opção, ative-a. - -**iOS** - -Se você é um usuário de iPhone ou iPad, Por favor, verifique as configurações do iOS → Privacidade → Serviços de localização. O compartilhamento de dados de geolocalização deve ser ativado para o Organic Maps. - -**Notas:** - -* Para evitar dados indesejados durante o roaming, você pode desativar todos os dados móveis, ativar um modo de voo ou desativar os dados móveis do Organic Maps nas configurações do dispositivo. Dispositivos Android e iOS podem usar GPS no modo de voo. - -* Alguns dispositivos móveis não possuem receptores GPS integrados, como o iPod Touch, o iPad apenas com WiFi, o Kindle Fire Kindle HD 7 da Amazon e alguns tablets Android. Nesses dispositivos, nosso aplicativo mostrará sua localização aproximada, desde que você esteja conectado à Internet. - -* Finalmente, por favor se lembre que determinar sua localização com GPS (com rede Wi-Fi e rede móvel desligados) pode demorar algum tempo. Quanto mais tempo tiver decorrido desde a última vez que usou o GPS, mais tempo demora fazer uma nova localização. A velocidade de localização depende do dispositivo e não do aplicativo. A operação GPS também depende das condições metereológicas – funciona melhor em exterior e com o céu limpo. Os problemas surgem usando no interior de edifícios, numa rua estreita ladeada por prédios altos ou dentro de um veículo em movimento. - diff --git a/content/faq/map/can-not-find-position/index.pt.md b/content/faq/map/can-not-find-position/index.pt.md deleted file mode 100644 index d88e7485..00000000 --- a/content/faq/map/can-not-find-position/index.pt.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: A aplicação não consegue determinar a minha localização -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Mapa"] - -extra: - order: 10 ---- - -Por favor, verifique se o seu dispositivo tem GPS e as configurações de localização estão ativadas. - -**Android** - -No seu dispositivo, abra Configurações → Localização. É recomendável ligar o modo de alta precisão (GPS assistido ou A-GPS). - -Se tiver dificuldade em determinar a sua localização com o GPS, ative (ou desative, se já estiver ativado) o "Google Play Services" nas configurações da aplicação. - -Nota: só pode usar a localização com maior precisão ver se tiver o Google Play Services instalado (ativado) no seu dispositivo Android. Os serviços do Google são usados para determinar a localização com mais precisão. Se tiver problemas com a precisão da localização depois de desativar a opção, ative-a novamente. - -**iOS** - -Se tem um iPhone ou iPad, Por favor, verifique as configurações do iOS → Privacidade → Serviços de localização. A partilha de dados de geolocalização tem de ser ativada para o Organic Maps. - -**Notas:** - -* Para evitar usar dados em roaming, pode desativar todos os dados móveis, ativar o modo de voo ou desativar os dados móveis do Organic Maps nas configurações do dispositivo. Os dispositivos Android e iOS podem usar o GPS no modo de voo. - -* Alguns dispositivos móveis não têm receptores GPS integrados, como o iPod Touch, o iPad (apenas em Wi-Fi), o Kindle Fire Kindle HD 7 da Amazon e alguns tablets Android. Nesses dispositivos, a nossa aplicação mostrará a sua localização aproximada, desde que esteja ligado à Internet. - -* Finalmente, por favor lembre-se que determinar a localização com o GPS (com a rede Wi-Fi e a rede móvel desligados) pode demorar algum tempo. Quanto mais tempo tiver decorrido desde a última vez que usou o GPS, mais tempo demora a fazer uma nova localização. A velocidade de localização depende do dispositivo e não da aplicação. A operação do GPS também depende das condições metereológicas – funciona melhor em exteriores e com o céu limpo. Os problemas surgem ao usar no interior de edifícios, numa rua estreita ladeada por prédios altos ou dentro de um veículo em movimento. diff --git a/content/faq/map/can-not-find-position/index.ru.md b/content/faq/map/can-not-find-position/index.ru.md deleted file mode 100644 index 91f1fa2c..00000000 --- a/content/faq/map/can-not-find-position/index.ru.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: Приложение не может определить мое местоположение -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Карта"] - -extra: - order: 10 ---- - -Пожалуйста, убедитесь, что ваше устройство поддерживает GPS и в настройках устройства включено определение местоположения. - -**Android** - -Откройте настройки устройства → Местоположение/Геоданные → Вкл. Рекомендуется выбрать режим “По всем источникам/Высокая точность”. - -Если настройки геолокации в порядке, убедитесь, что службы Google Play не заблокированы другими приложениями или антивирусами. Попробуйте поставить (или убрать, если стоит) галочку “Google Play Services”* в настройках приложения. На разных устройствах эта опция может давать положительный или отрицательный эффект. - -Примечание: опция отображается только если на устройстве установлены сервисы Google Play. - -**iOS** - -Если вы пользуетесь iPhone или iPad, проверьте, пожалуйста, настройки iOS → Конфиденциальность → Службы геолокации. Необходимо разрешить определение местоположения для Organic Maps. - -**Примечания:** - -* Определение местоположения по GPS (с выключенным Wi-FI и передачей мобильных данных) может занять продолжительное время (чем дольше не используется GPS, тем больше времени уходит на определение позиции), скорость определения местоположения будет зависеть от устройства, а не от приложения. - -* Кроме того, работа GPS зависит от погодных условий: лучше всего система работает на открытом воздухе при ясной погоде. Проблемы могут возникнуть при определении местоположения в закрытом помещении, на узких улицах или при движении в автомобиле. - -* GPS точно отсутствует в iPod Touch, iPad (модели только с Wi-Fi), Amazon Kindle Fire/Kindle Fire HD 7” и в некоторых Android-планшетах. Но даже в этом случае при наличии подключения к интернету вы увидите ваше положение на карте. diff --git a/content/faq/map/can-not-find-position/index.tr.md b/content/faq/map/can-not-find-position/index.tr.md deleted file mode 100644 index 3091d223..00000000 --- a/content/faq/map/can-not-find-position/index.tr.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: Uygulama konumumu haritada bulamıyor -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Harita"] - -extra: - order: 10 ---- - -Lütfen cihazınızın GPS'i olduğundan ve konum ayarlarının açık olduğundan emin olun. - -**Android** - -Cihazınızda Ayarlar → Konum'u açın. Yüksek doğruluk moduna geçmek daha iyi olacaktır. - -GPS ile konumunuzu belirlemekte zorluk çekiyorsanız, uygulama ayarlarından “Google Play Hizmetleri”ni etkinleştirin (etkinse kapatıp tekrar etkinleştirin). - -Not: bunu yalnızca Android cihazınızda Google Play hizmetleri yüklüyse (etkinse) görebilirsiniz. Google Play hizmetleri konumunuzu daha net olarak belirlemenizi sağlar. Eğer bu seçeneği kapattıktan sonra konum doğruluğu ile ilgili sorun yaşıyorsanız bu ayarı açın. - -**iOS** - -Bir iPhone veya iPad kullanıcısıysanız, lütfen iOS ayarları → Gizlilik → Konum hizmetlerini kontrol edin. Organic Maps için coğrafi konum veri paylaşımı etkinleştirilmelidir. - -**Notlar:** - -* Dolaşımdayken istenmeyen verileri önlemek için tüm mobil veriyi kapatabilir, uçak modunu açabilir veya cihaz ayarlarında Organic Maps için mobil veriyi devre dışı bırakabilirsiniz. Android ve iOS cihazlar uçak modunda GPS kullanabilir. - -* iPod Touch, sadece Wi-Fi destekli iPad, Amazon Kindle Fire/Kindle Fire HD 7 ve bazı Android tabletler gibi bazı mobil cihazlar dahili GPS alıcılarına sahip değildir. Bu cihazlarda siz internete bağlanana kadar uygulamamız yaklaşık konumunuzu gösterecektir. - -* Son olarak, lütfen GPS (WiFi ile ve Mobil Ağ kapalı) ile konumunuzu tespit etmenin biraz zaman alabileceğini unutmayın. GPS uzun süre kullanılmazsa bu daha fazla zaman alır. Konumunuzu tespit etme hızı uygulamaya değil, cihazınıza bağlıdır. GPS'in çalışması hava koşullarından da etkilenir – en iyi hava açıkken dışarıda çalışır. Sorunlar kendinizi kapalı alanda bulmaya çalışırken, dar bir sokakta veya araba sürerken meydana gelebilir. diff --git a/content/faq/map/can-not-find-position/index.uk.md b/content/faq/map/can-not-find-position/index.uk.md deleted file mode 100644 index d9e3d881..00000000 --- a/content/faq/map/can-not-find-position/index.uk.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: Додаток не може визначити моє місцезнаходження на карті -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Мапа"] - -extra: - order: 10 ---- - -Будь ласка, переконайтеся, що на вашому пристрої ввімкнено GPS та активовані налаштування місцезнаходження. - -**Android** - -На вашому пристрої відкрийте Налаштування → Місцезнаходження. Краще увімкнути режим високої точності. - -Якщо у вас виникають труднощі з визначенням вашого місцезнаходження за допомогою GPS, увімкніть (вимкніть, якщо увімкнено) "Сервіси Google Play" в налаштуваннях програми. - -Примітка: ви можете побачити його, лише якщо на вашому пристрої встановлені та увімкнені служби Google Play Android. Ці служби використовуються для більш точного визначення місцезнаходження. Якщо у вас виникли проблеми з точністю визначення місцезнаходження після вимкнення цієї опції, увімкніть її назад. - -**iOS** - -Якщо ви користувач iPhone або iPad, перевірте налаштування iOS → Конфіденційність → Служби визначення місцезнаходження. Обмін геолокаційними даними слід увімкнути для Organic Maps. - -**Примітки:** - -* Щоб уникнути небажаних даних у роумінгу, ви можете вимкнути всі мобільні дані, активувати режим польоту або вимкнути мобільні дані для Organic Maps у налаштуваннях вашого пристрою. Пристрої на Android та iOS можуть використовувати GPS в режимі польоту. - -* Деякі мобільні пристрої не мають вбудованих GPS-приймачів, наприклад iPod Touch, iPad з підтримкою Wi-Fi, Amazon Kindle Fire/Kindle Fire HD 7 та деякі планшети Android. На цих пристроях наш додаток буде показуватиме ваше приблизне місцезнаходження за умови підключення до Інтернету. - -* Насамкінець, будь ласка, пам'ятайте, що визначення місцезнаходження за допомогою GPS (з використанням WiFi але без мобільної мережи) може зайняти деякий час. Чим довше GPS не використовувався, тим більше часу це займе. Швидкість визначення місцезнаходження залежить від пристрою, а не від програми. На роботу GPS приймача також впливає погода - він працює найкраще на відкритому повітрі, коли небо чисте. Проблеми можуть виникнути при спробі визначити своє місцезнаходження в приміщенні, на вузькій вулиці або за кермом автомобіля. diff --git a/content/faq/map/can-not-find-position/index.zh-Hans.md b/content/faq/map/can-not-find-position/index.zh-Hans.md deleted file mode 100644 index 86bf7e8e..00000000 --- a/content/faq/map/can-not-find-position/index.zh-Hans.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: 应用无法定位到我的位置 -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["地图"] - -extra: - order: 10 ---- - -请确保您的设备具有 GPS,并且位置设置已激活。 - -**安卓** - -在您的设备上打开设置 → 位置。 -最好将其切换到高精度模式。 - -如果使用 GPS 难以确定您的位置,请在应用设置中启用(如果已启用,则禁用)“Google Play 服务”。 - -请注意:只有在您的安卓设备上安装了(启用了)Google Play 服务时,您才能看到它。 -Google Play 服务用于更精确地确定位置,如果在禁用该选项后您遇到位置准确性问题,请将其打开。 - -**iOS** - -如果您是 iPhone 或 iPad 用户,请检查 iOS 设置 → 隐私 → 位置服务。 -Organic Maps 的地理位置数据共享应该是启用的。 - -**请注意:** - -* 为了避免漫游时产生不必要的数据费用,您可以在设备设置中关闭所有移动数据,激活飞行模式或为 Organic Maps 禁用移动数据。 安卓和 iOS 设备可以在飞行模式下使用 GPS。 - -* 一些移动设备没有内置的 GPS 接收器,例如 iPod Touch、仅 WiFi 的 iPad、Amazon Kindle Fire / Kindle Fire HD 7 和一些安卓平板电脑。 在这些设备上,只要您连接到互联网,我们的应用程序将显示您的大致位置。 - -* 最后,请记住使用 GPS(关闭 WiFi 和移动网络)来确定位置可能需要一些时间。 GPS 未被使用的时间越长,所需的时间就越长。 位置确定的速度取决于设备,而不是应用程序。 GPS 的运作也受天气影响 – 在天空晴朗时,室外效果最好。 在尝试在室内、狭窄的街道或驾车时确定位置时可能会出现问题。 diff --git a/content/faq/map/cant-download-maps/index.de.md b/content/faq/map/cant-download-maps/index.de.md deleted file mode 100644 index f1742086..00000000 --- a/content/faq/map/cant-download-maps/index.de.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -title: Ich kann keine Karten herunterladen (aktualisieren) -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Karte"] - -extra: - order: 30 ---- - -Ihr Download kann aufgrund eines temporären Netzwerkfehlers oder bestimmter Netzwerkanbieter-/Routereinstellungen fehlschlagen. Bitte versuchen Sie es später noch einmal oder verwenden Sie einen anderen WLAN-Access Point. - -Stellen Sie unter Android sicher, dass Sie den Netzwerkzugriff für Organic Maps und den Download-Manager gewährt haben. - -Wenn Sie über sehr veraltete Karten verfügen und die App diese nicht aktualisieren kann, kann es hilfreich sein, veraltete Karten zu löschen und erneut herunterzuladen. diff --git a/content/faq/map/cant-download-maps/index.es.md b/content/faq/map/cant-download-maps/index.es.md deleted file mode 100644 index d8bcb8bd..00000000 --- a/content/faq/map/cant-download-maps/index.es.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -title: No puedo descargar (actualizar) mapas -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Mapa"] - -extra: - order: 30 ---- - -El error de la descarga puede deberse a un fallo temporal de la red o a ajustes específicos del proveedor de la red o del rúter. Inténtalo de nuevo más tarde o utiliza otro punto de acceso mediante wifi. - -En Android, asegúrese de haber otorgado acceso a la red para Organic Maps y Download Manager. - -Además, si tiene mapas muy desactualizados y la aplicación no puede actualizarlos, puede ser útil eliminar los mapas desactualizados y volver a descargarlos. diff --git a/content/faq/map/cant-download-maps/index.fr.md b/content/faq/map/cant-download-maps/index.fr.md deleted file mode 100644 index 459b150c..00000000 --- a/content/faq/map/cant-download-maps/index.fr.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -title: Je ne peux pas télécharger (mettre à jour) les cartes -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Carte"] - -extra: - order: 30 ---- - -Votre téléchargement peut échouer suite à un problème de réseau temporaire ou de paramêtre de réseau spécifique du fournisseur/routeur. Merci de réessayer plus tard ou d'utiliser un point d'accès wifi différent. En complément, assurez vous d'avoir suffisamment d'espace disponible pour télécharger les cartes. - -Sur Android, assurez-vous d'avoir autorisé l'accès au réseau pour Organic Maps et Download Manager. - -De plus, si vous avez des cartes très obsolètes et que l'application ne peut pas les mettre à jour, il peut être utile de supprimer les cartes obsolètes et de les télécharger à nouveau. diff --git a/content/faq/map/cant-download-maps/index.md b/content/faq/map/cant-download-maps/index.md deleted file mode 100644 index e9d99fb6..00000000 --- a/content/faq/map/cant-download-maps/index.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: I can't download (update) maps -description: What to do if Organic Maps fails to download or update maps from Internet? -updated: "2024-06-20" - -taxonomies: - faq: ["Map"] - -extra: - order: 30 ---- - -Your download can fail due to a temporary network error or specific network provider/router settings (firewall blocking). Please try again later or use a different Wi-Fi access point. In addition, make sure that you have enough free space to download maps. - -Also, if you have very outdated maps and the app can't update them, deleting outdated maps and re-downloading them may help. diff --git a/content/faq/map/cant-download-maps/index.pl.md b/content/faq/map/cant-download-maps/index.pl.md deleted file mode 100644 index dbe6e730..00000000 --- a/content/faq/map/cant-download-maps/index.pl.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -title: Nie mogę pobrać (zaktualizować) map -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Mapa"] - -extra: - order: 30 ---- - -Pobieranie może się nie powieść z powodu tymczasowego błędu sieci lub określonej sieci ustawienia dostawcy / routera. Spróbuj ponownie później lub użyj innego punktu dostępu Wi-Fi. Ponadto upewnij się, że masz wystarczającą ilość wolnego miejsca do pobrania map. - -W systemie Android upewnij się, że przyznałeś dostęp do sieci dla organicznych map i Download Manager. - -Ponadto, jeśli masz bardzo nieaktualne mapy i aplikacja nie może ich zaktualizować, może pomóc usunięcie nieaktualnych map i ponowne ich pobranie. diff --git a/content/faq/map/cant-download-maps/index.pt-BR.md b/content/faq/map/cant-download-maps/index.pt-BR.md deleted file mode 100644 index 54731e2f..00000000 --- a/content/faq/map/cant-download-maps/index.pt-BR.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -title: Não consigo baixar (atualizar) mapas -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Mapa"] - -extra: - order: 30 ---- - -Seu download pode falhar devido a um erro de rede temporário ou configurações específicas de provedor de rede / roteador. Por favor, tente novamente mais tarde ou use um ponto de acesso Wi-Fi diferente. Além disso, certifique-se de ter espaço livre suficiente para fazer o download dos mapas. - -No Android, certifique-se de ter concedido acesso à rede para Organic Maps e Download Manager. - -Além disso, se você tiver mapas muito desatualizados e o aplicativo não puder atualizá-los, pode ser útil excluir mapas desatualizados e baixá-los novamente. diff --git a/content/faq/map/cant-download-maps/index.pt.md b/content/faq/map/cant-download-maps/index.pt.md deleted file mode 100644 index 5bf6274e..00000000 --- a/content/faq/map/cant-download-maps/index.pt.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -title: Não consigo descarregar (atualizar) mapas -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Mapa"] - -extra: - order: 30 ---- - -O descarregamento pode falhar devido a um erro de rede temporário ou a configurações específicas do fornecedor da rede / router. Por favor, tente novamente mais tarde ou use outro ponto de acesso Wi-Fi. Certifique-se também que tem espaço livre suficiente para fazer o descarregamento dos mapas. - -Em Android, certifique-se que forneceu o acesso à rede ao Organic Maps e à aplicação do sistema Gestor de Transferências (Download Manager). - -Além disso, se tiver mapas muito desatualizados e a aplicação não consegue atualizá-los, pode tentar eliminar os mapas desatualizados e tentar descarregá-los novamente. diff --git a/content/faq/map/cant-download-maps/index.ru.md b/content/faq/map/cant-download-maps/index.ru.md deleted file mode 100644 index 85838c93..00000000 --- a/content/faq/map/cant-download-maps/index.ru.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -title: Не получается загрузить (обновить) карты -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Карта"] - -extra: - order: 30 ---- - -Причиной может быть временная проблема с сетью, либо специфические настройки интернет-провайдера или роутера. Пожалуйста, убедитесь, что на устройстве достаточно свободного места для загрузки и хранения карт, попробуйте еще раз через некоторое время, или подключитесь к другой точке Wi-Fi. - -Если у вас Android, пожалуйста, убедитесь, что приложению разрешен доступ к Интернет. Если у вас установлен файрвол/блокировщик подключений, так же разрешите доступ к Интернету системной программе Download Provider (Download Provider). - -Если карты сильно устарели и приложение не может их обновить, удалите старые карты и скачайте их заново. diff --git a/content/faq/map/cant-download-maps/index.tr.md b/content/faq/map/cant-download-maps/index.tr.md deleted file mode 100644 index 93505ef0..00000000 --- a/content/faq/map/cant-download-maps/index.tr.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -title: Haritaları indiremiyorum/güncelleyemiyorum -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Harita"] - -extra: - order: 30 ---- - -İndirme işleminiz geçici bir ağ hatası veya belirli ağ sağlayıcısı/yönlendirici ayarları nedeniyle başarısız olabilir. Lütfen daha sonra tekrar deneyin veya farklı bir WiFi erişim noktası kullanın. Ayrıca, haritaları indirmek için yeterli boş alana sahip olduğunuzdan emin olun. - -Android'de lütfen Organic Maps ve sistem İndirme Yöneticisi (İndirme Sağlayıcısı) için ağ erişimi verdiğinizden emin olun. - -Ayrıca, haritalarınız çok eskiyse ve uygulama bunları güncelleyemiyorsa, eski haritaları silip yeniden indirmek yardımcı olabilir. diff --git a/content/faq/map/cant-download-maps/index.uk.md b/content/faq/map/cant-download-maps/index.uk.md deleted file mode 100644 index 50cad9ce..00000000 --- a/content/faq/map/cant-download-maps/index.uk.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -title: Я не можу завантажити (оновити) карти -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Мапа"] - -extra: - order: 30 ---- - -Завантаження може завершитися невдало через тимчасову помилку мережі або певні проблеми провайдера/маршрутизатора. Будь ласка, повторіть спробу пізніше або використовуйте іншу точку доступу Wi-Fi. Крім того, переконайтеся, що у вас є достатньо вільного місця для завантаження карт. - -На Android, будь ласка, переконайтеся, що ви надали доступ до мережі для Organic Maps і системний менеджер завантажень (провайдер завантажень). - -Крім того, якщо у вас дуже застарілі карти, і програма не може їх оновити, вам може допомогти видалення всіх карт і повторне їх завантаження. diff --git a/content/faq/map/cant-download-maps/index.zh-Hans.md b/content/faq/map/cant-download-maps/index.zh-Hans.md deleted file mode 100644 index e26e38cb..00000000 --- a/content/faq/map/cant-download-maps/index.zh-Hans.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -title: 我无法下载(或更新)地图 -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["地图"] - -extra: - order: 30 ---- - -您的下载可能因为临时网络错误或特定网络提供商 / 路由器设置而失败。 请稍后重试或使用其它 Wi-Fi 网络。此外,请确保您有足够的存储空间来下载地图。 - -在安卓设备上,请确保您已经为 Organic Maps 和系统下载管理器授予了网络访问权限。 - -另外,如果您的地图非常过时且应用程序无法更新它们,删除过时的地图并重新下载可能会有帮助。 diff --git a/content/faq/map/how-to-create-a-route/index.de.md b/content/faq/map/how-to-create-a-route/index.de.md deleted file mode 100644 index 9d913669..00000000 --- a/content/faq/map/how-to-create-a-route/index.de.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -title: Wie erstelle ich eine Route und starten die Navigation -description: "" -updated: "2024-07-15" - -taxonomies: - faq: ["Karte"] - -extra: - order: 40 ---- - -Nachdem Ihr Standort auf der Karte bestimmt ist, wählen Sie Ihr Ziel. Um das zu tun, können Sie: - -* die Suche verwenden -* den Ort aus den Lesezeichen wählen (tippen Sie auf die "Lesezeichen"-Taste auf dem Hauptbildschirm) -* einfach tippen auf einem beliebigen Kartenpunkt → tippen auf "Nach" - -Sobald Sie den Zielort gewählt haben, wird die Route erstellt. Sie sehen Distanz und ungefähre Fahrzeit. Oben können Sie die Art der Strecke ändern – Auto, Fußgänger, U-Bahn, Fahrrad oder Lineal. Um die Route zu beginnen, tippen Sie auf die "Start"-Taste. Drücken Sie die Pfeil-Zeichen in der rechten unteren Ecke des Bildschirms und tippen Sie auf "Anhalten" um die Strecke zu beenden. - -Sie können einen anderen Startpunkt (Schaltfläche Route von) auswählen, um eine Route in der Vorschau anzuzeigen. Die Navigation ist jedoch nur von Ihrem aktuellen Standort aus möglich. - -Sie können einer Route bis zu 100 Zwischenpunkte hinzufügen. So fügen Sie einen Zwischenpunkt hinzu: Erstellen Sie eine Route zwischen Start und Ziel → tippen Sie dann auf einen Punkt auf der Karte und anschließend auf "Zwischenstopp hinzufügen". - -Sie können die Einstellungen der Fahrzeugroute ändern und Straßentypen auswählen, die Sie vermeiden möchten (Mautstraßen, Erdwege, Fährstellen, Autobahnen). Öffnen Sie die App-Einstellungen → Einstellungen des Umweges → Erforderliche Optionen aktivieren/deaktivieren. diff --git a/content/faq/map/how-to-create-a-route/index.es.md b/content/faq/map/how-to-create-a-route/index.es.md deleted file mode 100644 index de3c184a..00000000 --- a/content/faq/map/how-to-create-a-route/index.es.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -title: Cómo crear una ruta e iniciar la navegación -description: "" -updated: "2024-07-15" - -taxonomies: - faq: ["Mapa"] - -extra: - order: 40 ---- - -Confirma que se haya establecido tu posición en el mapa y elige el destino. Puedes usar una de las maneras siguientes: - -* pulsa el botón de búsqueda -* pulsa el botón de marcadores -* pulsa (pulsa y mantén para las zonas abiertas) cualquier sitio en el mapa - -En cuanto has elegido el punto de destino, pulsa el botón "Ruta hasta" en el panel blanco del sitio. La ruta se creará y verás la distancia y tiempo estimado de llegada. Puedes cambiar el tipo de la ruta si pulsas los iconos "En coche", "A pie", "En el Metro", "En bicicleta" o "Regla" situados en la parte superior de la pantalla. Presiona el botón "Empezar" para empezar a moverte. Pulse el signo de la flecha en la esquina inferior derecha de la pantalla y toque "Detener" para finalizar la ruta. - -Puedes elegir un punto de partida diferente (el botón "Desde") para ver una ruta de antemano, pero la navegación solo está disponible cuando se crea una ruta desde tu ubicación actual. - -Puede agregar hasta 100 puntos intermedios a una ruta. Para agregar un punto intermedio: cree una ruta entre un inicio y un destino → luego toque un punto en el mapa y toque “Añadir parada”. - -Puede cambiar la configuración de la ruta del automóvil y seleccionar los tipos de carreteras que le gustaría evitar (peajes, carreteras sin pavimentar, autopistas, transbordadores). Abra la configuración de la aplicación → Configuración de desvío → Activar las opciones necesarias. diff --git a/content/faq/map/how-to-create-a-route/index.fr.md b/content/faq/map/how-to-create-a-route/index.fr.md deleted file mode 100644 index 97c3af9b..00000000 --- a/content/faq/map/how-to-create-a-route/index.fr.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -title: Comment créer un itinéraire et commencer la navigation -description: "" -updated: "2024-07-15" - -taxonomies: - faq: ["Carte"] - -extra: - order: 40 ---- - -Une fois votre position déterminée sur la carte, choisissez votre destination. Vous pouvez utiliser l'une des méthodes suivantes : - -* appuyez sur le bouton de recherche -* appuyez sur le bouton des favoris -* appuyez sur (appuyez et maintenez pour les zones vides) n'importe quel endroit sur la carte - -Une fois que vous avez choisi le point de destination, appuyez sur le bouton "Route vers" de la page d'accueil. L'itinéraire sera créé et vous verrez la distance et le temps de trajet estimé. Vous pouvez changer le type de route en appuyant sur l'icône Voiture, Piéton, Métro, Vélo ou Règle en haut de l'écran. Pour commencer à suivre l'itinéraire touchez le bouton "Démarrer". Appuyez sur le signe fléché dans le coin inférieur droit de l'écran et appuyez sur Arrêtez-vous pour terminer l'itinéraire. - -Vous pouvez choisir un point de départ différent (Itinéraire à partir du bouton) pour prévisualiser un itinéraire, mais la navigation est seulement disponible à partir de votre emplacement actuel. - -Vous pouvez ajouter jusqu'à 100 points intermédiaires à un itinéraire. Pour ajouter un point intermédiaire: créez un itinéraire entre un départ et une destination → puis touchez un point sur la carte et touchez "Ajouter un arrêt". - -Vous pouvez modifier les paramètres de l'itinéraire de la voiture et sélectionner les types de routes que vous souhaitez éviter (routes à péage, routes non revêtues, passage d'un cours d'eau, artères). Ouvrez les paramètres de l'application → Réglages de détour → Activer/désactiver les options souhaitées. diff --git a/content/faq/map/how-to-create-a-route/index.md b/content/faq/map/how-to-create-a-route/index.md deleted file mode 100644 index e8869e9f..00000000 --- a/content/faq/map/how-to-create-a-route/index.md +++ /dev/null @@ -1,26 +0,0 @@ ---- -title: How to create a route and start navigation -description: Guide for building a route and navigating using the map -updated: "2024-07-22" - -taxonomies: - faq: ["Map"] - -extra: - order: 40 ---- - -Once your location is determined on the map, choose your destination. -You can use one of the following ways: - -* tap the search button -* tap the bookmarks button -* tap (tap and hold for empty areas) any place on the map - -Once you have chosen point of destination, press “Route to” button at the bottom. The route will be created and you will see distance and estimated travel time. You can change the route type by pressing the Car, Pedestrian, Subway, Bike or Ruler icon at the top of the screen. To start following the route tap “Start” button. Press the arrow sign in the lower right corner of the screen and tap Stop to finish the route. - -You can choose a different starting point (“Route From“ button) to preview a route, but navigation is only available from your current location. - -You can add up to 100 intermediate points to a route. To add an intermediate point, create a route between the start and destination, then tap a point on the map (or select it from bookmarks/using the search) and tap “Add stop”. - -You can change the settings of the car route and select road types that you would like to avoid (tolls, unpaved roads, motorways, ferries). Open the app settings → Routing options → Toggle On needed options. Avoid options are also displayed when the route is built if changing any of the options may change the route. diff --git a/content/faq/map/how-to-create-a-route/index.pl.md b/content/faq/map/how-to-create-a-route/index.pl.md deleted file mode 100644 index d2ee2b47..00000000 --- a/content/faq/map/how-to-create-a-route/index.pl.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -title: Jak utworzyć trasę i rozpocząć nawigację -description: "" -updated: "2024-07-15" - -taxonomies: - faq: ["Mapa"] - -extra: - order: 40 ---- - -Po określeniu lokalizacji na mapie, wybierz miejsce docelowe. Możesz użyć jeden z następujących sposobów: - -* naciśnij przycisk wyszukiwania -* naciśnij przycisk zakładek -* naciśnij (przytrzymaj w pustych obszarach) dowolne miejsce na mapie - -Po wybraniu punktu docelowego naciśnij przycisk „Trasa do” na stronie miejsca. Trasa będzie utworzona i zobaczysz odległość i szacowany czas podróży. Możesz zmienić typ trasy używając ikon Samochodu, Pieszego, Metro, Rower lub Władca w górnej części ekranu. Aby zacząć śledzić trasę naciśnij przycisk „Start”. Naciśnij znak strzałki w prawym dolnym rogu ekranu i dotknij Zatrzymaj, aby zakończyć trasę. - -Możesz wybrać inny punkt początkowy (przycisk Trasa od), aby wyświetlić podgląd trasy, ale nawigacja jest tylko dostępna od Twojej bieżącej lokalizacji. - -Do trasy można dodać maksymalnie 100 punkty pośrednie. Aby dodać punkt pośredni: utwórz trasę między początkiem a miejscem docelowym → następnie dotknij punkt na mapie i przyciśnij "Dodaj postój”. - -Możesz zmienić ustawienia trasy samochodowej i wybrać typy dróg, których chcesz unikać (drogi platne, drogi gruntowe, przeprawy promowe, autostrady). Otwórz ustawienia aplikacji → Ustawienia nawigacji → Włącz wymagane opcje. diff --git a/content/faq/map/how-to-create-a-route/index.pt-BR.md b/content/faq/map/how-to-create-a-route/index.pt-BR.md deleted file mode 100644 index b87d43a6..00000000 --- a/content/faq/map/how-to-create-a-route/index.pt-BR.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -title: Como criar uma rota e iniciar a navegação -description: -updated: "2024-07-15" - -taxonomies: - faq: ["Mapa"] - -extra: - order: 40 ---- - -Depois que sua localização for determinada no mapa, escolha seu destino. Você pode usar uma das seguintes maneiras: - -* toque no botão de pesquisa -* toque no botão de favoritos -* toque (toque e segure para áreas vazias) em qualquer lugar no mapa - -Depois de escolher o ponto de destino, pressione o botão “Itinerário para” na parte inferior da tela. A rota será criada e você verá a distância e o tempo estimado de viagem. Você pode alterar o tipo de rota pressionando o ícone Carro, Pedestre, Metrô, Bicicleta ou Régua na parte superior da tela. Para começar a seguir o percurso, toque no botão “Iniciar”. Pressione o sinal de seta no canto inferior direito da tela e toque em “Parar” para finalizar a rota. - -Você pode escolher um ponto de partida diferente (botão “De”) para visualizar uma rota, mas a navegação só está disponível na sua localização atual. - -Você pode adicionar até 100 pontos intermediários a uma rota. Para adicionar um ponto intermediário: crie uma rota entre um ponto de partida e um destino → depois toque em um ponto no mapa e toque em “Adicionar parada”. - -Você pode alterar as configurações da rota do carro e selecionar os tipos de estrada que gostaria de evitar (estradas com portagem, estradas rurais, ferryboat, rodovias). Abra as configurações do aplicativo → Opções de direção → Ative as opções que deseja. diff --git a/content/faq/map/how-to-create-a-route/index.pt.md b/content/faq/map/how-to-create-a-route/index.pt.md deleted file mode 100644 index 3855cf20..00000000 --- a/content/faq/map/how-to-create-a-route/index.pt.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -title: Como criar um itinerário e iniciar a navegação -description: -updated: "2024-07-15" - -taxonomies: - faq: ["Mapa"] - -extra: - order: 40 ---- - -Depois da sua localização ter sido determinada no mapa, escolha o seu destino. Pode fazê-lo de duas formas: - -* toque no botão de pesquisa -* toque no botão de favoritos -* toque (em áreas vazias toque e mantenha pressionado) em qualquer lugar no mapa - -Depois de escolher o ponto de destino, pressione o botão “Itinerário para” na parte inferior do ecrã. A rota será criada e verá a distância e o tempo estimado da viagem. Pode alterar o tipo de rota tocando no ícone Carro, Pedestre, Metropolitano, Bicicleta ou Régua na parte superior do ecrã. Para começar a seguir o percurso, toque no botão “Iniciar”. Toque no sinal de seta no canto inferior direito do ecrã e toque em “Parar” para terminar a rota. - -Pode escolher um ponto de partida diferente (botão “De”) para ver uma rota, mas a navegação só está disponível a partir da sua localização atual por GPS. - -Pode adicionar até 100 pontos intermédios à rota. Para adicionar um ponto intermédio: crie uma rota entre um ponto de partida e um destino → depois toque num ponto qualquer do mapa e toque no botão “Adicionar paragem”. - -Pode alterar as configurações da rota do carro e selecionar os tipos de estrada que quer evitar (estradas com portagem, estradas não pavimentadas, ferry, autoestradas). Abra as configurações da aplicação (ícone com 3 linhas no canto inferior direito) → Configurações de direção e ative ou desative as estradas a evitar. diff --git a/content/faq/map/how-to-create-a-route/index.ru.md b/content/faq/map/how-to-create-a-route/index.ru.md deleted file mode 100644 index 439dc837..00000000 --- a/content/faq/map/how-to-create-a-route/index.ru.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -title: Как проложить маршрут и включить навигацию -description: "" -updated: "2024-07-22" - -taxonomies: - faq: ["Карта"] - -extra: - order: 40 ---- - -Убедитесь, что ваше местоположение определено и выберите пункт назначения. Вы можете: - -* использовать поиск -* выбрать место из меток (нажмите на значок звездочки на панели меню) -* просто нажать (нажать и удерживать для пустой области) любое место на карте - -После того как вы выбрали пункт назначения, нажмите кнопку "Сюда" на странице места. Маршрут будет построен, и вы увидите расстояние и приблизительное время в пути. Тип маршрута можно изменить, нажав на иконку автомобиля, пешехода, метро, велосипеда или линейки вверху экрана. Для движения по маршруту, нажмите кнопку "Начать". Чтобы закончить движение по маршруту, нажмите на значок стрелки в правом нижнем углу экрана и нажмите "Стоп". - -Чтобы выбрать другую точку старта, нажмите кнопку "Отсюда" на странице места или "Добавьте стартовую точку" на панели меню. Обратите внимание: навигация доступна только из текущего местоположения. - -Для маршрута можно добавить до 100 промежуточных точек. Чтобы добавить промежуточную точку: постройте маршрут от начальной до конечной точки → затем нажмите на точку на карте и на кнопку “Заехать”. - -Вы можете исключить из авто маршрутов определенные типы дорог (платные дороги, грунтовые дороги, паромные переправы, магистрали). Для этого откройте настройки приложения → Настройки объезда → Включите нужные опции. diff --git a/content/faq/map/how-to-create-a-route/index.tr.md b/content/faq/map/how-to-create-a-route/index.tr.md deleted file mode 100644 index 9f7c3b5e..00000000 --- a/content/faq/map/how-to-create-a-route/index.tr.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -title: Nasıl rota oluşturulur ve navigasyonu başlatma -description: "" -updated: "2024-07-15" - -taxonomies: - faq: ["Harita"] - -extra: - order: 40 ---- - -Haritada konumunuz belirlendikten sonra hedefinizi seçin. Aşağıdaki yollardan birini kullanabilirsiniz: - -* arama düğmesine dokunun -* yer imleri düğmesine dokunun -* haritada herhangi bir yere dokunun (boş alanlar için basılı tutun) - -Varış noktasını seçtikten sonra, yer bilgileri sayfasındaki “Varış Yeri” düğmesine basın. Rota oluşturulacak ve mesafeyi ve tahmini seyahat süresini göreceksiniz. Ekranın üst kısmındaki Araba, Yaya, Metro, Bisiklet veya Cetvel simgesine basarak rota türünü değiştirebilirsiniz. Rotayı başlatmak için “Başla” düğmesine dokunun. Rotayı bitirmek için ekranın sağ alt köşesindeki ok işaretine basın ve Durdur'a dokunun. - -Bir rotayı önizlemek için farklı bir başlangıç noktası (Başlangıç Yeri düğmesi) seçebilirsiniz, ancak navigasyon yalnızca mevcut konumunuzdan kullanılabilir. - -Bir rotaya en fazla 100 ara nokta ekleyebilirsiniz. Bir ara nokta eklemek için: başlangıç ve hedef arasında bir rota oluşturun → ardından haritada bir yere dokunun ve “Ara Nokta Ekle”ye dokunun. - -Araba rotasının ayarlarını değiştirebilir ve kaçınmak istediğiniz yol türlerini seçebilirsiniz (paralı yollar, asfaltsız yollar, otoyollar, feribotlar). Uygulama ayarlarını açın → Sürüş seçenekleri → gerekli seçenekleri açın. diff --git a/content/faq/map/how-to-create-a-route/index.uk.md b/content/faq/map/how-to-create-a-route/index.uk.md deleted file mode 100644 index 6f7c0696..00000000 --- a/content/faq/map/how-to-create-a-route/index.uk.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -title: Як побудувати маршрут і почати навігацію -description: "" -updated: "2024-07-15" - -taxonomies: - faq: ["Мапа"] - -extra: - order: 40 ---- - -Після того, як ваше місцезнаходження визначено на карті, оберіть пункт призначення. Ви можете скористатися одним із наступних способів: - -* торкніться кнопки пошуку -* торкніться кнопки закладок -* торкніться будь-якого місця на карті (торкніться і утримуйте для порожніх областей) - -Після того, як ви обрали пункт призначення, натисніть кнопку "Прокласти маршрут" на нижній панелі. Маршрут буде створено, і ви побачите відстань та приблизний час у дорозі. Ви можете змінити тип маршруту, натиснувши іконку Автомобіль, Пішохід, Метро, Велосипед або Лінійка у верхній частині екрана. Щоб почати рух за маршрутом, натисніть кнопку "Почати". Під час навігацію натисніть на значок у правому нижньому куті екрана і натисніть кнопку "Зупинити" щоб завершити маршрут. - -Такоже ви можете вибрати іншу початкову точку (кнопка "Маршрут від") для попереднього перегляду маршруту, але навігація доступна лише з вашого поточного місцезнаходження. - -До маршруту можна додати до 100 проміжних пунктів. Щоб додати проміжний пункт: створіть маршрут між пунктом відправлення та пунктом призначення → потім торкніться точки на мапі і натисніть "Додати зупинку". - -Ви можете змінити налаштування автомобільного маршруту і вибрати типи доріг які ви хотіли б уникати (платні дороги, ґрунтові дороги, автомагістралі, пороми). Відкрийте налаштування програми → Налаштування обʼїзду → увімкніть потрібні опції. diff --git a/content/faq/map/how-to-create-a-route/index.zh-Hans.md b/content/faq/map/how-to-create-a-route/index.zh-Hans.md deleted file mode 100644 index 377701a3..00000000 --- a/content/faq/map/how-to-create-a-route/index.zh-Hans.md +++ /dev/null @@ -1,31 +0,0 @@ ---- -title: 如何创建路线并开始导航 -description: "" -updated: "2024-07-15" - -taxonomies: - faq: ["地图"] - -extra: - order: 40 ---- - -一旦在地图上确定了您的位置,请选择您的目的地。您可以使用以下方法之一: - -* 点击搜索按钮 -* 点击书签按钮 -* 在地图上点击(对于空白区域,请点击并长按) - -选择了目的地后,点击底部的“到这去”按钮。 -路线将被创建,您将看到距离和预计行车时间。 -您可以通过点击屏幕顶部的汽车、步行、地铁、自行车或标尺图标来更改路线类型。 -要开始按照路线行驶,请点击“开始”按钮。 -点击屏幕右下角的箭头标志,然后点击“停止”以结束路线。 - -您可以选择不同的起点(点击“从这出发”按钮)来预览路线,但导航仅从您当前的位置开始。 - -您可以在一条路线上添加最多 100 个经停点。 -要添加一个经停点:创建起点和目的地之间的路线 → 然后在地图上点击一个点,然后点击“添加经停点”。 - -您可以更改汽车路线的设置,并选择要避免的道路类型(收费、未铺设的道路、高速公路、渡轮)。 -打开应用程序设置 → 导航选项 → 切换需要的选项。 diff --git a/content/faq/map/search-cannot-find-a-place/index.de.md b/content/faq/map/search-cannot-find-a-place/index.de.md deleted file mode 100644 index 126fbbe5..00000000 --- a/content/faq/map/search-cannot-find-a-place/index.de.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -title: Die Suche findet einen Ort nicht auf der Karte -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Karte"] - -extra: - order: 20 ---- - -Denken Sie daran, dass Sie zur Suche nach einem Ort in einem bestimmten Gebiet eine relevante Karte herunterladen und die Karte in dieses Gebiet zoomen müssen. Andernfalls sollte sich Ihr Standort in der Nähe dieses Gebiets befinden, bevor Sie mit der Suche beginnen. Wenn Sie beispielsweise einen Ort in Vietnam suchen möchten und sich an einem anderen Ort befinden, sollten Sie zuerst die Karte von Vietnam herunterladen und öffnen. - -Außerdem wurde der Ort möglicherweise noch nicht zur Karte auf [OpenStreetMap.org](https://www.openstreetmap.org/), unserer Kartendatenquelle, hinzugefügt. Wenn Sie helfen und die Karte verbessern möchten, lesen Sie [diese Anleitung](https://wiki.openstreetmap.org/wiki/Contribute_map_data). - -Wenn der Ort auf der Karte in Organic Maps angezeigt wird, unsere Suche ihn jedoch nicht finden kann, [geben Sie uns](mailto:support@organicmaps.app) die Koordinaten des Ortes und ein Beispiel für Ihre Suchanfrage. diff --git a/content/faq/map/search-cannot-find-a-place/index.es.md b/content/faq/map/search-cannot-find-a-place/index.es.md deleted file mode 100644 index e5b96239..00000000 --- a/content/faq/map/search-cannot-find-a-place/index.es.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -title: La función de búsqueda no encuentra un lugar en el mapa -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Mapa"] - -extra: - order: 20 ---- - -Recuerde que para buscar un lugar en un área específica, deberá descargar un mapa relevante y acercar el mapa a esa área, o su ubicación debe estar cerca de esa área antes de comenzar la búsqueda. Por ejemplo, si desea encontrar un lugar en Vietnam y su ubicación está en otro lugar, primero debe descargar y abrir el mapa de Vietnam. - -Además, es posible que el lugar aún no se haya agregado al mapa en [OpenStreetMap.org](https://www.openstreetmap.org/), nuestra fuente de datos de mapas. Si quieres ayudar y mejorar el mapa, consulta [esta guía](https://wiki.openstreetmap.org/wiki/ES:Contribuir_a_los_datos_del_mapa). - -Si el lugar se muestra en el mapa en Organic Maps, pero nuestra búsqueda no puede encontrarlo, [infórmanos](mailto:support@organicmaps.app) de las coordenadas del lugar y un ejemplo de tu solicitud de búsqueda. diff --git a/content/faq/map/search-cannot-find-a-place/index.fr.md b/content/faq/map/search-cannot-find-a-place/index.fr.md deleted file mode 100644 index 60789909..00000000 --- a/content/faq/map/search-cannot-find-a-place/index.fr.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -title: La recherche ne trouve pas le lieu sur la carte -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Carte"] - -extra: - order: 20 ---- - -N'oubliez pas que pour rechercher un lieu dans une zone spécifique, vous devrez télécharger une carte pertinente et zoomer sur la carte vers cette zone, ou votre emplacement doit être proche de cette zone avant de commencer la recherche. Par exemple, si vous voulez trouver un endroit au Vietnam et que votre emplacement est ailleurs, vous devez d'abord télécharger et ouvrir la carte du Vietnam. - -De plus, le lieu n'a peut-être pas encore été ajouté à la carte sur [OpenStreetMap.org](https://www.openstreetmap.org/), notre source de données cartographiques. Si vous souhaitez aider et améliorer la carte, consultez [ce guide](https://wiki.openstreetmap.org/wiki/FR:Contribuer_aux_donn%C3%A9es_cartographiques). - -Si le lieu est affiché sur la carte dans Organic Maps, mais que notre recherche ne le trouve pas, [indiquez-nous](mailto:support@organicmaps.app) les coordonnées du lieu et un exemple de votre demande de recherche. diff --git a/content/faq/map/search-cannot-find-a-place/index.md b/content/faq/map/search-cannot-find-a-place/index.md deleted file mode 100644 index 70bb5225..00000000 --- a/content/faq/map/search-cannot-find-a-place/index.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -title: Search cannot find a place on the map -description: Guide for improving search results and solving problems with finding objects on the map -updated: "2024-06-20" - -taxonomies: - faq: ["Map"] - -extra: - order: 20 ---- - -Remember that to search for a place in a specific area, you will need to download a relevant map and zoom in the map to that area, or your location should be near that area before you begin the search. For example, if you want to find a place in Vietnam and your location is somewhere else, you should download and open the map of Vietnam first, or explicitly mention the country (Vietnam) or desired city/town/village name in the search field. - -In addition, the place may not have been added to the map yet at [OpenStreetMap.org](https://www.openstreetmap.org/). If you want to help and improve the map, check [this guide](https://wiki.openstreetmap.org/wiki/Contribute_map_data) and add missing map information yourself. - -If the place is displayed on the map in Organic Maps, but our search cannot find it, [report us](mailto:support@organicmaps.app) coordinates of the place and an example of your search request. diff --git a/content/faq/map/search-cannot-find-a-place/index.pl.md b/content/faq/map/search-cannot-find-a-place/index.pl.md deleted file mode 100644 index 29797103..00000000 --- a/content/faq/map/search-cannot-find-a-place/index.pl.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -title: Wyszukiwanie nie może znaleźć miejsca na mapie -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Mapa"] - -extra: - order: 20 ---- - -Pamiętaj, że aby wyszukać miejsce w określonym obszarze, musisz pobrać odpowiednią mapę i powiększyć mapę do tego obszaru lub Twoja lokalizacja powinna znajdować się w pobliżu tego obszaru przed rozpoczęciem wyszukiwania. Na przykład, jeśli chcesz znaleźć miejsce w Wietnamie, a Twoja lokalizacja znajduje się gdzie indziej, najpierw pobierz i otwórz mapę Wietnamu. - -Ponadto miejsce mogło nie zostać jeszcze dodane do mapy w [OpenStreetMap.org](https://www.openstreetmap.org/), naszym źródle danych map. Jeśli chcesz pomóc i ulepszyć mapę, zajrzyj do [tego przewodnika](https://wiki.openstreetmap.org/wiki/Pl:Wk%C5%82ad_w_dane_mapowe). - -Jeśli miejsce jest wyświetlane na mapie w Organic Maps, ale nasze wyszukiwanie nie może go znaleźć, [zgłoś nam](mailto:support@organicmaps.app) współrzędne miejsca i przykład zapytania. diff --git a/content/faq/map/search-cannot-find-a-place/index.pt-BR.md b/content/faq/map/search-cannot-find-a-place/index.pt-BR.md deleted file mode 100644 index f8ab6991..00000000 --- a/content/faq/map/search-cannot-find-a-place/index.pt-BR.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -title: A pesquisa não pode encontrar um lugar no mapa -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Mapa"] - -extra: - order: 20 ---- - -Lembre-se de que para pesquisar um lugar em uma área específica, você precisará baixar um mapa desse local e ampliar o mapa para essa área, ou sua localização deve estar perto dessa área antes de iniciar a pesquisa. Por exemplo, se você deseja encontrar um lugar no Vietnã e sua localização é em outro lugar, você deve fazer o download e abrir o mapa do Vietnã primeiro. - -Além disso, o local pode não ter sido adicionado ao mapa ainda em [OpenStreetMap.org](https://www.openstreetmap.org/), nossa fonte de dados de mapas. Se você quer ajudar e melhorar o mapa, consulte [este guia](https://wiki.openstreetmap.org/wiki/Pt:Contribuir_com_dados_do_mapa). - -Se o local estiver exibido no mapa no Organic Maps, mas nossa pesquisa não o encontrar, [informe-nos](mailto:support@organicmaps.app) as coordenadas do local e as palavras que usou em sua pesquisa. diff --git a/content/faq/map/search-cannot-find-a-place/index.pt.md b/content/faq/map/search-cannot-find-a-place/index.pt.md deleted file mode 100644 index 3ad93e18..00000000 --- a/content/faq/map/search-cannot-find-a-place/index.pt.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -title: A pesquisa não encontrou um lugar no mapa -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Mapa"] - -extra: - order: 20 ---- - -Note que para pesquisar um lugar numa área específica, irá precisar de descarregar um mapa desse local e ampliar o mapa nessa área, ou a sua localização deve estar perto dessa área antes de iniciar a pesquisa. Por exemplo, se quer encontrar um lugar no Vietname e a sua localização atual é noutro país, tem de descarregar o mapa do Vietname e abrir o mapa desse país. - -Além disso, o local pode ainda não ter sido adicionado ao mapa em [OpenStreetMap.org](https://www.openstreetmap.org/), a nossa fonte de dados de mapas. Se quiser ajudar a melhorar o mapa, consulte [este guia](https://wiki.openstreetmap.org/wiki/Pt:Contribuir_com_dados_do_mapa). - -Se o local aparece no mapa no Organic Maps, mas a pesquisa não o encontra, [informe-nos](mailto:support@organicmaps.app) as coordenadas do local e as palavras que usou na pesquisa. diff --git a/content/faq/map/search-cannot-find-a-place/index.ru.md b/content/faq/map/search-cannot-find-a-place/index.ru.md deleted file mode 100644 index a750a83a..00000000 --- a/content/faq/map/search-cannot-find-a-place/index.ru.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -title: Поиск не находит то, что я ищу -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Карта"] - -extra: - order: 20 ---- - -Для поиска места в определенной области необходимо сначала загрузить карту, а затем приблизить ее (либо местоположение должно быть рядом с этой областью). Например, если вы хотите найти место во Вьетнаме, а ваше местоположение находится в другом месте, необходимо сначала загрузить и открыть карту Вьетнама. - -Также искомое место может отсутствовать на карте в [OpenStreetMap.org](https://www.openstreetmap.org/), нашем источнике данных. Если вы хотите помочь и улучшить карту, ознакомьтесь с руководством по [ссылке](https://wiki.openstreetmap.org/wiki/Contribute_map_data). - -Если место отображается на карте в Organic Maps, но поиск не может его найти, [сообщите нам](mailto:support@organicmaps.app) координаты места и пример вашего поискового запроса. diff --git a/content/faq/map/search-cannot-find-a-place/index.tr.md b/content/faq/map/search-cannot-find-a-place/index.tr.md deleted file mode 100644 index e9b0d15f..00000000 --- a/content/faq/map/search-cannot-find-a-place/index.tr.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -title: Arama, haritada bir yer bulamıyor -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Harita"] - -extra: - order: 20 ---- - -Belirli bir bölgedeki bir yeri aramak için, ilgili yerin haritasını indirmeniz ve o bölgeye haritayı yakınlaştırmanız veya aramaya başlamadan önce bulunduğunuz yerin o bölgeye yakın olması gerektiğini unutmayın. Örneğin, Vietnam'da bir yer bulmak istiyorsanız ve konumunuz başka bir yerdeyse, önce Vietnam haritasını indirip açmalısınız. - -Ayrıca, aradığınız yer henüz bizim harita veri kaynağımız olan [OpenStreetMap.org](https://www.openstreetmap.org/)'da haritaya eklenmemiş olabilir. Yardım etmek ve haritayı geliştirmek istiyorsanız, [bu kılavuza](https://wiki.openstreetmap.org/wiki/Contribute_map_data) göz atın. - -Yer, Organic Maps'te haritada görüntüleniyorsa ama arama sistemimiz onu bulamıyorsa, yerin koordinatlarını ve aramanızın bir örneğini [bize bildirin](mailto:support@organicmaps.app). diff --git a/content/faq/map/search-cannot-find-a-place/index.uk.md b/content/faq/map/search-cannot-find-a-place/index.uk.md deleted file mode 100644 index d5317f4f..00000000 --- a/content/faq/map/search-cannot-find-a-place/index.uk.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -title: Пошук не може знайти місце на карті -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["Мапа"] - -extra: - order: 20 ---- - -Пам'ятайте, що для пошуку місця в певному районі вам потрібно завантажити відповідну мапу і збільшити масштаб карти до цієї області. Або ж ваше місцезнаходження має бути поблизу цієї області, перш ніж ви почнете пошук. Наприклад, якщо ви хочете знайти місце у В'єтнамі, а ваше місцезнаходження десь в іншому місці, вам слід спочатку завантажити і відкрити мапу В'єтнаму. - -Крім того, місце може бути ще не додано на мапу в базі [OpenStreetMap.org](https://www.openstreetmap.org/), нашому джерелі картографічних даних. Якщо ви хочете допомогти і покращити мапу, перевірте [цей путівник](https://wiki.openstreetmap.org/wiki/Contribute_map_data). - -Якщо місце відображається на мапі в Organic Maps, але наш пошук не може його знайти, [повідомте нам](mailto:support@organicmaps.app) координати місця та приклад вашого пошукового запиту. diff --git a/content/faq/map/search-cannot-find-a-place/index.zh-Hans.md b/content/faq/map/search-cannot-find-a-place/index.zh-Hans.md deleted file mode 100644 index 13e33dde..00000000 --- a/content/faq/map/search-cannot-find-a-place/index.zh-Hans.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -title: 搜索功能无法在地图上找到地点 -description: "" -updated: "2024-06-12" - -taxonomies: - faq: ["地图"] - -extra: - order: 20 ---- - -请记住,要在特定区域搜索地方,您需要下载相关地图并将地图缩放到该区域,或者在开始搜索之前,您的位置应该接近该区域。 例如,如果您想在越南找到一个地方,而您的位置在其他地方,您应该先下载并打开越南的地图。 - -此外,该地方可能尚未添加到我们的地图数据源 [OpenStreetMap.org](https://www.openstreetmap.org)上。 如果您想帮助改进地图,请查看 [这份指南](https://wiki.openstreetmap.org/wiki/Contribute_map_data)。 - -如果在 Organic Maps 上显示了该地方,但搜索功能却找不到它,请 [向我们报告](mailto:support@organicmaps.app) 该地方的坐标以及您的搜索请求的示例。 diff --git a/content/faq/translation_status.md b/content/faq/translation_status.md deleted file mode 100644 index 6525fc00..00000000 --- a/content/faq/translation_status.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: FAQ translation status -description: FAQ translation status -extra: - menu_title: FAQ translation status -template: "faq/translation_status.html" ---- - -Table with all FAQ questions with translation status. diff --git a/content/faq/voice/cant-hear-instructions/index.de.md b/content/faq/voice/cant-hear-instructions/index.de.md deleted file mode 100644 index 3c40ae8e..00000000 --- a/content/faq/voice/cant-hear-instructions/index.de.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -title: Ich höre keine Sprachanweisungen -description: "" -updated: "2024-07-15" - -taxonomies: - faq: ["Sprachführung"] - -extra: - order: 20 ---- - - -**Hinweis:** Sprachanweisungen sind für Auto- und Fahrradrouten verfügbar. Bis jetzt können Sie nur während der Fahrt und wenn ein Bildschirm eingeschaltet ist, Sprachanweisungen hören. - -Wenn Sie keine Sprachanweisungen hören können: - -* Bitte stellen Sie sicher, dass die Lautstärke Ihres Geräts nicht stummgeschaltet ist. Sie können die Lautstärke mit den Lautstärketasten Ihres Geräts ändern. Dazu müssen Sie möglicherweise die Option "Mit Tasten ändern" (falls aktiviert) in den Geräteeinstellungen → Töne & Haptik deaktivieren. - -* Wenn Sie Bluetooth einschalten, sollte es keine Sprachanweisungen enthalten. Wir haben jedoch die Sprachführung mit Car-Audio nicht getestet, da dies zu Problemen führen kann. In diesem Fall können Sie Bluetooth deaktivieren. - -* Wenn Sie ein Android-Nutzer sind und die Option deaktiviert ist (oder einige der unterstützten Sprachen nicht verfügbar sind), überprüfen Sie die System-TTS-Einstellungen. diff --git a/content/faq/voice/cant-hear-instructions/index.es.md b/content/faq/voice/cant-hear-instructions/index.es.md deleted file mode 100644 index 08f5344c..00000000 --- a/content/faq/voice/cant-hear-instructions/index.es.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -title: No oigo las instrucciones de voz -description: "" -updated: "2024-07-15" - -taxonomies: - faq: ["Instrucciones de voz"] - -extra: - order: 20 ---- - -**Nota** por favor que las instrucciones de voz están disponibles para rutas en coche y en bicicleta. Por ahora, puede escuchar las instrucciones de voz solo mientras conduce y cuando una pantalla está encendida. - -Si no puede escuchar las instrucciones de voz: - -* Comprueba que el volumen de tu dispositivo no está silenciado. Puedes cambiar el nivel de volumen con los botones de volumen del dispositivo. Para hacerlo, es posible que deba desactivar la opción "Cambiar con botones" (si está habilitada) en la configuración del dispositivo → Sonidos. - -* Bluetooth no debe reflejar las instrucciones de voz si lo enciendes. Pero no hemos probado las instrucciones de voz con el audio de coche. Si hay problemas, apaga Bluetooth. - -* Si eres usuario de Android y la opción está desactivada (o uno de idiomas soportados no están disponibles), revisa los ajustes de síntesis de voz. diff --git a/content/faq/voice/cant-hear-instructions/index.fr.md b/content/faq/voice/cant-hear-instructions/index.fr.md deleted file mode 100644 index f936aa91..00000000 --- a/content/faq/voice/cant-hear-instructions/index.fr.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -title: Je n'arrive pas à entendre les instructions vocales -description: "" -updated: "2024-07-15" - -taxonomies: - faq: ["Instructions vocales"] - -extra: - order: 20 ---- - -**Remarque:** les instructions vocales sont disponibles pour les trajets en voiture et à vélo. Pour l'instant, vous pouvez entendre les instructions vocales uniquement pendant la conduite et lorsque l'écran est allumé. - -Si vous ne pouvez pas entendre les instructions vocales :

- -* Assurez-vous que le volume de votre appareil n'est pas coupé. Vous pouvez changer le niveau de volume avec les boutons de volume de votre appareil. Pour ce faire, vous devrez peut-être désactiver l'option "Utiliser avec les boutons" (si elle est activée) dans les paramètres du périphérique → Sons. - -* Lorsque vous activez Bluetooth, il ne doit pas refléter les instructions vocales. Cependant, nous n'avons pas testé le guidage vocal avec le système audio de la voiture, il peut causer des problèmes. Dans ce cas, vous pouvez désactiver le Bluetooth. - -* Si vous êtes un utilisateur Android et que l'option est désactivée (ou une partie des langues prises en charge est indisponible), veuillez vérifier le système Paramètres TTS. diff --git a/content/faq/voice/cant-hear-instructions/index.md b/content/faq/voice/cant-hear-instructions/index.md deleted file mode 100644 index 60a369f1..00000000 --- a/content/faq/voice/cant-hear-instructions/index.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: I can't hear voice instructions -description: Troubleshooting guide for voice instructions in navigation -updated: "2024-07-22" - -taxonomies: - faq: ["Voice Directions"] - -extra: - order: 20 ---- - -**Note:** voice instruction are available for car and cycling routes. For now, you can hear voice instructions only while driving and when the screen is on. - -If you can't hear voice instructions: - -* Please make sure that your device's volume is not muted. You can change the volume level with your device's volume buttons. To do that, you may need to disable "Change with Buttons" option (if enabled) in the device settings → Sounds. - -* Please report any Bluetooth issues with necessary details on our [GitHub](https://github.com/organicmaps/organicmaps/issues) - -* If you are an Android user and the option is disabled (or some of the supported languages are unavailable), please check [TTS settings](@/faq/voice/text-to-speech-android-tts/index.md). - -On Android voice instructions are available in 39 languages: English, Arabic, Basque, Belarusian, Catalan, Chinese (Simplified and Traditional), Croatian, Czech, Danish, Dutch, Finnish, French, German, Greek, Hindi, Hungarian, Indonesian, Italian, Japanese, Korean, Marathi, Norwegian, Persian (Farsi), Polish, Portuguese, Portuguese (Brasil), Romanian, Russian, Serbian, Slovak, Spanish, Spanish (Mexico), Swahili, Swedish, Thai, Turkish, Ukrainian, Vietnamese. - -Google TTS supports all listed languages except of Arabic and Persian (Farsi). For these languages you may need to install third party TTS (for example, eSpeak TTS, Vocalizer TTS or SVOX Classic TTS) and a language pack from app store (Google Play Store, Galaxy Store, etc). - -On iOS voice instructions are available in 26 languages: English, Arabic, Chinese (Traditional and Simplified), Czech, Danish, Dutch, Finnish, French, German, Greek, Hindi, Hungarian, Indonesian, Italian, Japanese, Korean, Polish, Portuguese, Romanian, Russian, Slovak, Spanish, Swedish, Thai, Turkish. diff --git a/content/faq/voice/cant-hear-instructions/index.pl.md b/content/faq/voice/cant-hear-instructions/index.pl.md deleted file mode 100644 index 418590c5..00000000 --- a/content/faq/voice/cant-hear-instructions/index.pl.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -title: Nie słyszę instrukcji głosowych -description: "" -updated: "2024-07-15" - -taxonomies: - faq: ["Komunikaty głosowe"] - -extra: - order: 20 ---- - -**Uwaga:** instrukcje głosowe są dostępne dla tras samochodowych i rowerowych. Na razie, można słyszeć instrukcje głosowe tylko podczas jazdy i gdy ekran jest włączony. - -Jeśli nie słyszysz instrukcji głosowych: - -* Upewnij się, że głośność urządzenia nie jest wyciszona. Możesz zmienić poziom głośności za pomocą przycisków głośności urządzenia. Aby to zrobić, może być konieczne wyłączenie opcji "Zmień za pomocą przycisków” opcja (jeśli włączona) w ustawieniach urządzenia → Dźwięki. - -* Po włączeniu Bluetooth nie powinien on odzwierciedlać instrukcji głosowych. Jednak nie testowaliśmy głosu wskazówki z car audio, mogą powodować problemy. W takim przypadku możesz wyłączyć Bluetooth. - -* Jeśli jesteś użytkownikiem Androida i opcja jest wyłączona (lub niektóre z nich obsługiwane języki są niedostępny), sprawdź system TTS ustawienia. diff --git a/content/faq/voice/cant-hear-instructions/index.pt-BR.md b/content/faq/voice/cant-hear-instructions/index.pt-BR.md deleted file mode 100644 index df971301..00000000 --- a/content/faq/voice/cant-hear-instructions/index.pt-BR.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -title: Não consigo ouvir instruções de voz -description: "" -updated: "2024-07-15" - -taxonomies: - faq: ["Orientação por voz"] - -extra: - order: 20 ---- - - -**Nota:** instruções de voz estão disponíveis para rotas de carro e de bicicleta. Por enquanto, você pode ouvir instruções de voz apenas enquanto estiver dirigindo e quando a tela estiver ligada. - -Se você não consegue ouvir instruções de voz: - -* Certifique-se de que o volume do seu dispositivo não esteja desativado. Você pode alterar o nível de volume com os botões de volume do seu dispositivo. Para fazer isso, você pode precisar desativar a opção "Regular com botões" (se habilitado) nas configurações do dispositivo → Sons. - -* Quando você ativa o Bluetooth, ele não deve refletir as instruções de voz. No entanto, não testamos a orientação por voz com o áudio do carro, isso pode causar problemas. Neste caso, você pode desligar o Bluetooth. - -* Se você for um usuário do Android e a opção estiver desativada (ou se alguns dos idiomas suportados estiverem indisponíveis), verifique as configurações do sistema TTS no Android. diff --git a/content/faq/voice/cant-hear-instructions/index.pt.md b/content/faq/voice/cant-hear-instructions/index.pt.md deleted file mode 100644 index d8ec6f5f..00000000 --- a/content/faq/voice/cant-hear-instructions/index.pt.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -title: Não consigo ouvir as instruções de voz -description: "" -updated: "2024-07-15" - -taxonomies: - faq: ["Instruções de voz"] - -extra: - order: 20 ---- - -**Nota:** as instruções de voz estão disponíveis apenas em rotas de carro e de bicicleta. Neste momento pode ouvir as instruções de voz apenas ao conduzir um veículo e quando o ecrã estiver ligado. - -Se não consegue ouvir as instruções de voz: - -* Certifique-se que o volume do seu dispositivo não está no mínimo. Pode alterar o nível de volume com os botões de volume do seu dispositivo. Para isso, pode ter de desativar a opção "Regular volume com botões" (se estiver ativado) nas configurações do dispositivo → Sons. - -* Quando tem o Bluetooth ativado, este não deve refletir as instruções de voz. No entanto, não testamos a orientação por voz com o áudio do carro, isso pode causar problemas. Neste caso, pode desativar o Bluetooth. - -* Se usar o Android e a opção estiver desativada (ou se alguns idiomas suportados estiverem indisponíveis), verifique as configurações do sistema TTS do Android. diff --git a/content/faq/voice/cant-hear-instructions/index.ru.md b/content/faq/voice/cant-hear-instructions/index.ru.md deleted file mode 100644 index f1ab28a3..00000000 --- a/content/faq/voice/cant-hear-instructions/index.ru.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -title: Я не слышу голосовые подсказки -description: "" -updated: "2024-07-22" - -taxonomies: - faq: ["Голосовые подсказки"] - -extra: - order: 20 ---- - - -**Обратите внимание:** голосовые подсказки доступны для автомобильных и велосипедных маршрутов. Сейчас подсказки озвучиваются только во время движения и только при включенном экране. - -Если подсказки не слышно: - -* Убедитесь, что на устройстве включен звук. Изменить громкость можно с помощью кнопок громкости на устройстве. Чтобы это сделать, может потребоваться отключить опцию "Изменение кнопками" (если она включена) в настройках устройства → Звуки, тактильные сигналы. - -* Если у вас включен Bluetooth, это не должно затронуть голосовые инструкции. В случае возникновения трудностей пришлите описание проблемы с подробностями через [GitHub](https://github.com/organicmaps/organicmaps/issues). - -* Если у вас Android-устройство и опция голосовых инструкций недоступна в настройках приложения или поддерживаемые языки не отображаются в списке, пожалуйста, проверьте [настройки синтеза речи](@/faq/voice/text-to-speech-android-tts/index.ru.md). - -Голосовые подсказки для Android доступны на 39 языках: Русский, Беларуский, Украинский, Английский, Арабский, Баскский, Венгерский, Вьетнамский, Греческий, Датский, Индонезийский, Испанский, Испанский (Мексика), Итальнский, Каталанский, Китайский (упрощенный и традиционный), Корейский, Маратхи, Немецкий, Нидерландский, Норвежский, Персидский, Польский, Португальский, Португальский (Бразилия), Румынский, Сербский, Словацкий, Суахили, Тайский, Турецкий, Финский, Французский, Хинди, Хорватский, Чешский, Шведский, Японский diff --git a/content/faq/voice/cant-hear-instructions/index.tr.md b/content/faq/voice/cant-hear-instructions/index.tr.md deleted file mode 100644 index 63ed8623..00000000 --- a/content/faq/voice/cant-hear-instructions/index.tr.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: Sesli yönergeleri duyamıyorum -description: "" -updated: "2024-07-15" - -taxonomies: - faq: ["Sesli Yönlendirme"] - -extra: - order: 20 ---- - -**Not:** Araba ve bisiklet yolları için sesli yönlendirme mevcuttur. Şimdilik sesli yönlendirmeyi yalnızca sürüş sırasında ve ekran açıkken duyabilirsiniz. - -Sesli yönlendirmeyi duyamıyorsanız: - -* Lütfen cihazınızın sesinin kapalı olmadığından emin olun. Cihazınızın ses düğmeleri ile ses seviyesini değiştirebilirsiniz. Bunu yapmak için, cihaz ayarları → Sesler'de "Düğmelerle Değiştir" seçeneğini (etkinleştirilmişse) devre dışı bırakmanız gerekebilir. - -* Bluetooth'u açtığınızda, sesli yönlendirmeyi aktarmamalıdır. Ancak sesli yönlendirmeyi araç sesiyle test etmedik, bazı sorunlar olabilir. Bu durumda Bluetooth'u kapatabilirsiniz. - -* Android kullanıcısıysanız ve sesli yönlendirme seçeneği devre dışıysa (veya desteklenen dillerden bazıları kullanılamıyorsa), lütfen sistem TTS ayarlarını kontrol edin. - -Android'de sesli yönlendirme 27 dilde mevcuttur: Türkçe, Almanca, Arapça, Çekçe, Çince (Geleneksel ve Basitleştirilmiş), Danca, Endonezyaca, Farsça, Felemenkçe, Fince, Fransızca, Hintçe, İngilizce, İspanyolca, İtalyanca, Japonca, Korece, Lehçe, Macarca, Portekizce, Rumence, Rusça, Tayca, Ukraynaca, Vietnamca, Yunanca. - -Google TTS, Arapça ve Farsça dışında listelenen tüm dilleri destekler. Bu diller için üçüncü taraf TTS (örneğin, eSpeak TTS, Vocalizer TTS veya SVOX Classic TTS) ve uygulama mağazasından (Google Play Store, Galaxy Store, vb.) bir dil paketi yüklemeniz gerekebilir. - -iOS'te sesli yönlendirme 26 dilde mevcuttur: Türkçe, Almanca, Arapça, Çince (Geleneksel ve Basitleştirilmiş), Çekçe, Danca, Endonezyaca, Felemenkçe, Fince, Fransızca, Hintçe, İngilizce, İspanyolca, İsveççe, İtalyanca, Japonca, Korece, Lehçe, Macarca, Portekizce, Rumence, Rusça, Slovakça, Tayca, Yunanca. diff --git a/content/faq/voice/cant-hear-instructions/index.uk.md b/content/faq/voice/cant-hear-instructions/index.uk.md deleted file mode 100644 index 4df39d81..00000000 --- a/content/faq/voice/cant-hear-instructions/index.uk.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: Я не чую голосових підказок -description: "" -updated: "2024-07-22" - -taxonomies: - faq: ["Голосові інструкції"] - -extra: - order: 20 ---- - - -**Зауваження:** голосові підказки доступні для автомобільних та велосипедних маршрутів. Наразі ви можете чути голосові підказки лише під час руху і коли екран увімкнено. - -Якщо ви не чуєте голосові підказки: - -* Переконайтеся, що на вашому пристрої не вимкнено звук. Ви можете змінити рівень гучності за допомогою кнопок гучності вашого пристрою. Щоб це зробити вам, можливо, доведеться вимкнути опцію "Змінювати кнопками" (якщо її увімкнено) у Налаштуваннях пристрою → Звуки. - -* Коли ви вмикаєте Bluetooth, він не повинен вплинути на голосові інструкції. В разі виникнення труднощів надішліть детальний опис проблеми через [GitHub](https://github.com/organicmaps/organicmaps/issues). - -* Якщо ви користувач Android і ця опція вимкнена (або деякі з підтримуваних мов недоступні), перевірте [налаштування TTS](@/faq/voice/text-to-speech-android-tts/index.md). - -На Android голосові інструкції доступні 39 мовами: Українська, Английська, Арабська, Баскська, Беларуська, В'єтнамська, Грецька, Гінді, Данська, Каталонська, Китайська (спрощена та традиційна), Корейська, Маратхі, Норвезька, Нідерландська, Німецька, Перська, Польська, Португальська, Португальська (Бразилія), Російська, Румунська, Сербська, Словацька, Суахілі, Тайська, Турецька, Угорська, Французька, Фінська, Хорватська, Чеська, Шведська, Японська, Індонезійська, Іспанська, Іспанська (Мексика), Італійська. - -Google TTS підтримує всі перелічені мови, окрім арабської та перської (фарсі). Для цих мов вам може знадобитися встановити сторонній TTS (наприклад, eSpeak TTS, Vocalizer TTS або SVOX Classic TTS) і мовний пакет з магазину додатків (Google Play Store, Galaxy Store тощо). - -На iOS голосові інструкції доступні 26 мовами: Англійська, арабська, китайська (традиційна та спрощена), чеська, данська, голландська, чеська, датська, фінська, французька, німецька, грецька, хінді, угорська, індонезійська, італійська, німецька, хорватська, чеська, шведська, японська, японська, корейська, польська, португальська, румунська, російська, словацька, словацька, іспанська, шведська, тайська, українсьска, турецька. diff --git a/content/faq/voice/cant-hear-instructions/index.zh-Hans.md b/content/faq/voice/cant-hear-instructions/index.zh-Hans.md deleted file mode 100644 index 42a90c16..00000000 --- a/content/faq/voice/cant-hear-instructions/index.zh-Hans.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: 我无法听到语音指示 -description: "" -updated: "2024-07-15" - -taxonomies: - faq: ["语音指导"] - -extra: - order: 20 ---- - -**请注意:** 语音指示仅适用于汽车和骑行路线。目前,您只能在驾驶时且屏幕打开时听到语音指示。 - -如果您无法听到语音指示: - -* 请确保您设备的音量未被静音。 您可以使用设备音量按钮更改音量级别。 为此,您可能需要在设备设置 → 声音中禁用“随按钮更改”选项(如果已启用)。 - -* 打开蓝牙时,不应该影响语音指示。 然而,我们没有在车载音频上测试语音引导,这可能会导致问题。 在这种情况下,您可以关闭蓝牙。 - -* 如果您是安卓用户并且选项已禁用(或一些支持的语言不可用),请检查系统 TTS 设置。 - -在安卓设备上,语音指示支持 27 种语言: -英语、阿拉伯语、中文(繁体和简体)、捷克语、丹麦语、荷兰语、芬兰语、法语、德语、 -希腊语、印地语、匈牙利语、印尼语、意大利语、日语、韩语、波斯语、波兰语、葡萄牙语、 -罗马尼亚语、俄语、西班牙语、泰语、土耳其语、乌克兰语、越南语。 - -Google TTS 支持除阿拉伯语和波斯语(波斯语)之外的所有列出的语言。 -对于这些语言,您可能需要安装第三方 TTS(例如 eSpeak TTS、Vocalizer TTS 或 SVOX Classic TTS)和应用商店(Google Play 商店、Galaxy 商店等)中的语言包。 - -在 iOS 设备上,语音指示支持 26 种语言: -英语、阿拉伯语、中文(繁体和简体)、捷克语、丹麦语、荷兰语、芬兰语、法语、德语、 -希腊语、印地语、匈牙利语、印尼语、意大利语、日语、韩语、波兰语、葡萄牙语、 -罗马尼亚语、俄语、斯洛伐克语、西班牙语、瑞典语、泰语、土耳其语。 diff --git a/content/faq/voice/text-to-speech-android-tts/index.es.md b/content/faq/voice/text-to-speech-android-tts/index.es.md deleted file mode 100644 index 67e5a288..00000000 --- a/content/faq/voice/text-to-speech-android-tts/index.es.md +++ /dev/null @@ -1,68 +0,0 @@ ---- -title: Instrucciones de voz (Text-To-Speech, TTS) en Android -description: Guía sobre cómo hacer que TTS funcione en Android -slug: instrucciones-de-voz-tts-en-android -aliases: ["/es/faq/instrucciones-de-voz-tts-en-android"] - -taxonomies: - faq: ["Instrucciones de voz"] - -extra: - order: 10 ---- - -## Información general - -Organic Maps utiliza el motor de texto a voz (Text-To-Speech, TTS) del sistema para las instrucciones de voz. Los motores predeterminados varían según el dispositivo, que puede ser el motor Text-To-Speech de Google, el motor del fabricante del dispositivo o un motor de terceros. - -La recomendación oficial de Organic Maps es [RHVoice](https://rhvoice.org/), que es un motor de voz gratuito y de código abierto que se puede descargar desde [Google Play](https://play.google.com/store/apps/details?id=com.github.olga_yakovleva.rhvoice.android) y [F-Droid](https://f-droid.org/en/packages/com.github.olga_yakovleva.rhvoice.android/). - -## Instrucciones - -- Abra la aplicación de Ajustes de su dispositivo Android -- Vaya a Ajustes Adicionales y después a Accesibilidad -- Elija su motor preferido, el tono y la velocidad de la voz -- **Reinicie la aplicación Organic Maps** -- Abra Ajustes => Instrucciones de voz en Organic Maps y configúrelo -- Reinicie de nuevo la aplicación Organic Maps (o reinicie el dispositivo) si la voz no funciona. - - -Si no puede encontrar estos ajustes, abra la aplicación de Ajustes y busque "Instrucciones de voz". - -Aviso: Note que estas instrucciones pueden variar en función de la marca de su dispositivo. - -Estas opciones pueden que no estén disponibles si no tiene la funcionalidad TTS (Instrucciones de voz) instaladas en su dispositivo. Por favor, revise la tabla más abajo para instalar cualquier motor que soporte su idioma. - -## Capturas de pantalla - -| | | -| ----------- | ----------- | -![Ajustes](tts_config_1.png "Ajustes") | ![Accesibilidad](tts_config_2.png "Accesibilidad") - -## Motores de síntesis de voz - -A continuación se muestra una lista completa de los idiomas y los motores soportados para cada uno de ellos (los enlaces de descarga de cada motor se pueden encontrar después de la tabla): - -{{ tts_table() }} - -## Soluciones a problemas con RHVoice - -Si tiene problemas para inicializar el motor de voz RHVoice en LineageOS o en otras ROM personalizadas, pruebe esta solución alternativa. Es posible que RHVoice no se inicialice correctamente y que la aplicación falle, especialmente si no ha utilizado ningún motor TTS en su teléfono antes (por ejemplo, una nueva instalación, un restablecimiento de fábrica, etc.). Si está utilizando una ROM personalizada como LineageOS sin los servicios de Google Play y los Servicios de Voz de Google, y desea utilizar RHVoice como su motor TTS preferido, siga las siguientes instrucciones como solución alternativa: - -1. Instale el [motor eSpeak TTS](https://f-droid.org/en/packages/com.reecedunn.espeak) disponible en F-Droid. -2. Configúrelo como el motor del sistema preferido. - - Vaya a los **Ajustes** principales de LineageOS. - - Desplácese hacia abajo hasta **Accesibilidad**. - - Seleccione **Salida de texto a voz** y **Motor preferido** (en el lado izquierdo) y asegúrese de que **eSpeak** esté seleccionado. -3. Regrese y pulse **Reproducir** para ver si está funcionando. -4. Instale [RHVoice](https://f-droid.org/en/packages/com.github.olga_yakovleva.rhvoice.android/), disponible en F-droid. - - Ábralo, seleccione el idioma que desea usar, toque el ícono de la nube (extremo izquierdo) para descargar las voces. - - Presione el botón de reproducción para verificar si está funcionando. -5. Configure **RHVoice** como motor preferido (vea el paso 2). -6. Ahora, debería poder utilizar RHVoice sin ningún problema. - -## Prueba de la síntesis de voz - -Para probar las instrucciones de voz, pulse en "Probar indicaciones de voz (TTS, Text-To-Speech)" en el menú "Ajustes → Instrucciones de voz" de OM, o puede iniciar una navegación para recibir cualquier salida de voz. Organic Maps no le dará instrucciones de voz si está parado. - -![Prueba de la funcionalidad de síntesis de voz](tts_test.png "Prueba de la funcionalidad de síntesis de voz") diff --git a/content/faq/voice/text-to-speech-android-tts/index.fr.md b/content/faq/voice/text-to-speech-android-tts/index.fr.md deleted file mode 100644 index e70198ad..00000000 --- a/content/faq/voice/text-to-speech-android-tts/index.fr.md +++ /dev/null @@ -1,66 +0,0 @@ ---- -title: Synthèse vocale sur Android -description: Guide pour utiliser la synthèse vocale sur Android -slug: synthèse-vocale-tts-sur-android - -taxonomies: - faq: ["Instructions vocales"] - -extra: - order: 10 ---- - -## Sommaire - -Organic Maps utilise le moteur de synthèse vocale du système pour les instructions vocales. Les moteurs par défaut varient selon les appareils. Il peut s'agir de Google Text-to Speech, du moteur du fabricant de l'appareil ou d'un moteur tiers. - -La recommandation officielle d'Organic Maps est [RHVoice](https://rhvoice.org/), qui est un moteur vocal libre et gratuit pouvant être téléchargé sur le [Google Play](https://play.google.com/store/apps/details?id=com.github.olga_yakovleva.rhvoice.android) et [F-Droid](https://f-droid.org/en/packages/com.github.olga_yakovleva.rhvoice.android/). - -## Instructions - -- Ouvrez l'application Paramètres sur votre appareil Android -- Sélectionnez Paramètres supplémentaires, puis Accessibilité -- Choisissez votre moteur, la vitesse d'élocution et la tonalité -- **Redémarrez l'application Organic Maps** -- Ouvrez Paramètres => Instructions vocales dans Organic Maps et configurez-les. -- Redémarrez l'application Organic Maps (ou redémarrez l'appareil) si la voix ne fonctionne pas. - -Si vous ne trouvez pas le paramètre approprié, ouvrez l'application Paramètres et recherchez Text-to-speech. - -P.S : Notez que ces étapes varient en fonction de la marque du téléphone que vous utilisez. - -Ces options peuvent ne pas apparaître si aucun TTS n'est installé sur votre appareil. Reportez-vous au tableau ci-dessous pour installer l'un d'entre eux qui prend en charge votre langue maternelle. - -## Captures d'écran - -| | | -| ----------- | ----------- | -![Paramètres](tts_config_1.fr.png "Paramètres") | ![Accessibilité](tts_config_2.fr.png "Accessibilité") - -## Moteurs de synthèse vocale {#engines} - -Vous trouverez ci-dessous une liste de plusieurs langues et moteurs et supportées (les liens de téléchargement se trouvent après le tableau) : - -{{ tts_table() }} - -## Solutions alternatives - -Si vous avez des difficultés à initialiser le moteur TTS de RHVoice sur LineageOS ou d'autres ROMs personnalisées, essayez cette solution alternative. RHVoice peut ne pas s'initialiser correctement et l'application peut se bloquer, en particulier si vous n'avez jamais utilisé de moteur de synthèse vocale sur votre téléphone (nouvelle installation, réinitialisation d'usine, etc.). Si vous utilisez une ROM personnalisée comme LineageOS sans les services Google Play et Speech Services by Google, et que vous souhaitez utiliser RHVoice comme moteur TTS préféré, suivez les instructions ci-dessous comme solution de contournement : - -1. Installez le [moteur eSpeak TTS] (https://f-droid.org/en/packages/com.reecedunn.espeak) disponible sur F-Droid -2. Définissez le comme le moteur préféré du système - - Allez dans les **Paramètres** de LineageOS. - - Descendez jusqu'à **Accessibilité**. - - Sélectionnez **Sortie de la synthèse vocale** et **Moteur préféré** (à gauche) et assurez-vous que **eSpeak** est sélectionné. -3. Revenez en arrière et appuyez sur **Lire** pour vérifier que cela fonctionne. -4. Installez [RHVoice](https://f-droid.org/en/packages/com.github.olga_yakovleva.rhvoice.android/) disponible sur F-droid. - - Ouvrez l'application, sélectionnez la langue que vous souhaitez utiliser et appuyez sur l'icône du nuage (à gauche) pour télécharger les voix. - - Appuyez sur le bouton de lecture pour vérifier qu'il fonctionne -5. Définissez **RHVoice** comme moteur préféré (voir étape 2) -6. Vous devriez maintenant pouvoir utiliser RHVoice sans problème. - -## Tests - -Pour tester les instructions vocales, vous pouvez cliquer sur "Tester les instructions vocales (TTS, Text-To-Speech)" dans le menu OM "Paramètres → Instructions vocales" ou vous pouvez démarrer la navigation pour entendre des instructions vocales. Organic Maps ne vous donnera pas d'instructions vocales tant que vous êtes à l'arrêt. - -![Test TTS](tts_test.fr.png "Test TTS") diff --git a/content/faq/voice/text-to-speech-android-tts/index.it.md b/content/faq/voice/text-to-speech-android-tts/index.it.md deleted file mode 100644 index 195271cb..00000000 --- a/content/faq/voice/text-to-speech-android-tts/index.it.md +++ /dev/null @@ -1,67 +0,0 @@ ---- -title: Sintesi vocale (Text-to-speech, TTS) su Android -description: Guida su come far funzionare la sintesi vocale su Android -slug: sintesi-vocale-tts-su-android -aliases: ["/it/faq/sintesi-vocale-tts-su-android"] - -taxonomies: - faq: ["Indicazioni vocali"] - -extra: - order: 10 ---- - -## Sommario - -Organic Maps utilizza il motore di sintesi vocale (Text-to-speech o semplicemente TTS) del sistema per le indicazioni vocali. I motori di sintesi vocale predefiniti variano a seconda del dispositivo. La scelta può includere Sintesi vocali di Google, il motore del produttore del dispositivo o un motore di terze parti. - -La raccomandazione ufficiale di Organic Maps è [RHVoice](https://rhvoice.org/), un motore vocale gratuito ed open source che può essere scaricato da [Google Play Store](https://play.google.com/store/apps/details?id=com.github.olga_yakovleva.rhvoice.android) e [F-Droid](https://f-droid.org/en/packages/com.github.olga_yakovleva.rhvoice.android/). - -## Istruzioni - -- Aprire l'applicazione Impostazioni sul dispositivo Android -- Selezionare Impostazioni aggiuntive, quindi selezionare Accessibilità -- Scegliere il motore di sintesi vocale, la velocità ed il tono di voce preferiti -- **Riavviare l'applicazione Organic Maps** -- Aprire Impostazioni => Istruzioni vocali in Organic Maps e impostarle -- Riavviare di nuovo l'app Organic Maps (o riavviare il dispositivo) se la voce non funziona - -Se non si riesce a trovare l'impostazione pertinente, aprire l'app Impostazioni e cercare Assistenza vocale. - -N.B.: Tenete presente che questi passaggi variano a seconda della marca del telefono che state utilizzando. - -Le suddette opzioni potrebbero non essere presenti se sul dispositivo non è già installato un software di sintesi vocale. Fare riferimento alla tabella seguente per installare uno dei motori TTS che supporta la propria lingua madre. - -## Schermate - -| | | -| ----------- | ----------- | -![Impostazioni](tts_config_1.png "Impostazioni") | ![Accessibilità](tts_config_2.png "Accessibilità") - -## Motori di sintesi vocale TTS {#engines} - -Di seguito è riportato un elenco completo di diversi motori di sintesi vocale e delle lingue supportate (i link per il download si trovano dopo la tabella): - -{{ tts_table() }} - -## Risoluzione dei problemi - -Se hai problemi ad inizializzare il motore TTS di RHVoice su LineageOS o altre ROM personalizzate, prova questa soluzione. RHVoice potrebbe non inizializzarsi correttamente e l'applicazione potrebbe bloccarsi, soprattutto se non è mai stato usato un motore TTS sul telefono (ad esempio, in caso di nuova installazione, reset di fabbrica, ecc.). Se si utilizza una ROM personalizzata come ad es. LineageOS senza i servizi Google Play e Speech Services by Google, e si desidera utilizzare RHVoice come motore TTS preferito, seguire le istruzioni riportate di seguito come soluzione alternativa: - -1. Installare il motore [eSpeak TTS] (https://f-droid.org/en/packages/com.reecedunn.espeak) disponibile su F-Droid. -2. Impostarlo come motore TTS di sistema preferito - - Aprire le **Impostazioni** principali di LineageOS. - - Scorrere fino a **Accessibilità**. - - Selezionare **Output sintesi vocale** e **Motore preferito** (lato sinistro) e assicurarsi che sia selezionato **eSpeak**. -3. Tornare indietro e premere **lay** per verificarne il funzionamento. -4. Installare [RHVoice](https://f-droid.org/en/packages/com.github.olga_yakovleva.rhvoice.android/) disponibile su F-droid. - - Aprirlo, selezionare la lingua che si desidera utilizzare e toccare l'icona della nuvola (all'estrema sinistra) per scaricare le voci desiderate. - - Premere il pulsante play per verificarne il funzionamento. -5. Impostare **RHVoice** come motore di sintesi vocale preferito (vedi punto 2). -6. A questo punto si dovrebbe essere in grado di utilizzare RHVoice senza problemi. - -## Test delle indicazioni vocali - -Per testare le indicazioni vocali, è possibile toccare in Organic Maps su "Prova indicazioni vocali (TTS, Text-to-speech)" nel menu "Impostazioni" → sotto "Navigazione" → "Istruzioni vocali" oppure semplicemente avviare una navigazione per ricevere le indicazioni vocali. Organic Maps non fornisce indicazioni vocali quando si è in sosta. - -![TTS Test](tts_test.png "TTS Test") diff --git a/content/faq/voice/text-to-speech-android-tts/index.ru.md b/content/faq/voice/text-to-speech-android-tts/index.ru.md deleted file mode 100644 index c8e0c365..00000000 --- a/content/faq/voice/text-to-speech-android-tts/index.ru.md +++ /dev/null @@ -1,67 +0,0 @@ ---- -title: Синтез речи (Text-to-Speech, TTS) на Android -description: Как настроить озвучку навигатора в Organic Maps на Android -slug: синтез-речи-tts-на-android -aliases: ["/ru/faq/синтез-речи-tts-на-android"] - -taxonomies: - faq: ["Голосовые подсказки"] - -extra: - order: 10 ---- - -## Общая информация - -Organic Maps использует системные службы (движки) и настройки преобразования текста в речь (TTS) для голосовых инструкций. На разных устройствах используются разные движки по умолчанию. Можно выбрать Google Text-to Speech, движок производителя устройства (например, Samsung) или сторонний движок. - -Если системные движки вас не устраивают, можете попробовать установить [RHVoice](https://rhvoice.org/), это бесплатный речевой движок с открытым исходным кодом, который можно загрузить из [Google Play](https://play.google.com/store/apps/details?id=com.github.olga_yakovleva.rhvoice.android) и [F-Droid](https://f-droid.org/en/packages/com.github.olga_yakovleva.rhvoice.android/). - -## Инструкции - -- Откройте приложение "Настройки" на устройстве Android -- Выберите Дополнительные настройки, а затем выберите Доступность -- Выберите предпочтительный движок, скорость речи и высоту тона -- **Перезапустите Organic Maps** -- Зайдите в Настройки => Голосовые инструкции в Organic Maps и настройте, как вам удобно -- Если голос не работает, то снова перезапустите Organic Maps - -Если вы не можете найти нужный параметр, откройте приложение "Настройки" и найдите "Текст в речь". - -P.S.: Обратите внимание, что эти шаги зависят от марки используемого телефона. - -Указанные опции могут не отображаться, если на вашем устройстве еще не установлен TTS. Обратитесь к таблице ниже, чтобы установить любой из них, поддерживающий ваш родной язык. - -## Скриншоты - -| | | -| ----------- | ----------- | -![Настройка TTS](tts_config_1.png "Настройка TTS") | ![Доступность](tts_config_2.png "Доступность") - -## Движки синтеза речи - -Ниже приведен полный список с указанием нескольких движков и поддерживаемых ими языков (ссылки на скачивание находятся после таблицы): - -{{ tts_table() }} - -## Проблемы с RHVoice - -Если у вас возникли проблемы с инициализацией механизма RHVoice TTS в LineageOS или других кастомных прошивках, попробуйте следующее. RHVoice может инициализироваться неправильно, и приложение может крешнуться, особенно если вы раньше не использовали какой-либо движок TTS на своем телефоне (например, новая установка, сброс настроек к заводским настройкам и т. д.). Если вы используете пользовательскую прошивку, например, LineageOS *без сервисов Google Play и речевых сервисов Google*, и вы хотите использовать RHVoice в качестве предпочтительного движка TTS, следуйте приведенным ниже инструкциям: - -1. Установите [eSpeak TTS engine](https://f-droid.org/en/packages/com.reecedunn.espeak), доступный на F-Droid. -2. Установите его в качестве предпочтительного системного движка - - Перейдите в главный раздел LineageOS **Настройки**. - - Прокрутите вниз до **Доступность**. - - Выберите **Вывод текста в речь** и **Предпочитаемый движок** (слева) и убедитесь, что выбран **eSpeak**. -3. Вернитесь назад и нажмите **play**, чтобы проверить, работает ли он. -4. Установите программу [RHVoice](https://f-droid.org/en/packages/com.github.olga_yakovleva.rhvoice.android/), доступную на F-droid. - - Откройте его, выберите язык, который хотите использовать, нажмите на значок облака (крайний слева), чтобы загрузить голоса. - - Нажмите кнопку воспроизведения, чтобы проверить, работает ли он. -5. Установите **RHVoice** в качестве предпочтительного движка (см. шаг 2). -6. Теперь вы сможете использовать RHVoice без каких-либо проблем - -## Проверка синтеза речи - -Чтобы проверить голосовые инструкции, вы можете нажать на "Проверить голосовые подсказки (TTS, Text-To-Speech)" в меню OM "Настройки → Голосовые инструкции" или начать навигацию, чтобы услышать голосовые инструкции. Пока вы стоите на месте, голосовых инструкций не будет. - -![Проверка работы синтеза речи](tts_test.png "Проверка работы синтеза речи") diff --git a/content/faq/voice/text-to-speech-android-tts/tts_config_1.fr.png b/content/faq/voice/text-to-speech-android-tts/tts_config_1.fr.png deleted file mode 100644 index e2686e33..00000000 Binary files a/content/faq/voice/text-to-speech-android-tts/tts_config_1.fr.png and /dev/null differ diff --git a/content/faq/voice/text-to-speech-android-tts/tts_config_1.png b/content/faq/voice/text-to-speech-android-tts/tts_config_1.png deleted file mode 100644 index 6c5ba020..00000000 Binary files a/content/faq/voice/text-to-speech-android-tts/tts_config_1.png and /dev/null differ diff --git a/content/faq/voice/text-to-speech-android-tts/tts_config_2.fr.png b/content/faq/voice/text-to-speech-android-tts/tts_config_2.fr.png deleted file mode 100644 index ba403a59..00000000 Binary files a/content/faq/voice/text-to-speech-android-tts/tts_config_2.fr.png and /dev/null differ diff --git a/content/faq/voice/text-to-speech-android-tts/tts_config_2.png b/content/faq/voice/text-to-speech-android-tts/tts_config_2.png deleted file mode 100644 index 75c159c5..00000000 Binary files a/content/faq/voice/text-to-speech-android-tts/tts_config_2.png and /dev/null differ diff --git a/content/faq/voice/text-to-speech-android-tts/tts_test.fr.png b/content/faq/voice/text-to-speech-android-tts/tts_test.fr.png deleted file mode 100644 index 7a6edcfb..00000000 Binary files a/content/faq/voice/text-to-speech-android-tts/tts_test.fr.png and /dev/null differ diff --git a/content/faq/voice/text-to-speech-android-tts/tts_test.png b/content/faq/voice/text-to-speech-android-tts/tts_test.png deleted file mode 100644 index 9fe7f517..00000000 Binary files a/content/faq/voice/text-to-speech-android-tts/tts_test.png and /dev/null differ diff --git a/content/news/2021-05-06/_index.md b/content/news/2021-05-06/_index.md index bf211b15..b9938fe4 100644 --- a/content/news/2021-05-06/_index.md +++ b/content/news/2021-05-06/_index.md @@ -1,4 +1,4 @@ --- +date: 2021-05-06 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2021-05-09/7/index.md b/content/news/2021-05-09/7/index.md index afa5e956..7ef29cf6 100644 --- a/content/news/2021-05-09/7/index.md +++ b/content/news/2021-05-09/7/index.md @@ -2,8 +2,6 @@ title: "A new version 2021-05-08 is availiable for iOS and Android." date: 2021-05-09T08:00:03+00:00 slug: "a-new-version-is-availiable-for-ios-and-android" -taxonomies: - news: ["Releases"] --- A new version 2021-05-08 is availiable for iOS and Android. diff --git a/content/news/2021-05-09/_index.md b/content/news/2021-05-09/_index.md index bf211b15..a22e7d9c 100644 --- a/content/news/2021-05-09/_index.md +++ b/content/news/2021-05-09/_index.md @@ -1,4 +1,4 @@ --- +date: 2021-05-09 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2021-05-24/8/index.md b/content/news/2021-05-24/8/index.md index 9b9c5e7a..fb2ebc37 100644 --- a/content/news/2021-05-24/8/index.md +++ b/content/news/2021-05-24/8/index.md @@ -2,8 +2,6 @@ title: "A new beta version 2021-05-21 is out." date: 2021-05-24T07:03:54+00:00 slug: "a-new-beta-version-is-out" -taxonomies: - news: ["Releases"] --- A new beta version 2021-05-21 is out. diff --git a/content/news/2021-05-24/_index.md b/content/news/2021-05-24/_index.md index bf211b15..bff8bb62 100644 --- a/content/news/2021-05-24/_index.md +++ b/content/news/2021-05-24/_index.md @@ -1,4 +1,4 @@ --- +date: 2021-05-24 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2021-05-25/9/index.md b/content/news/2021-05-25/9/index.md index 378ead05..41ffd92b 100644 --- a/content/news/2021-05-25/9/index.md +++ b/content/news/2021-05-25/9/index.md @@ -2,8 +2,6 @@ title: "Organic Maps app is now available on F-Droid!" date: 2021-05-25T21:40:15+00:00 slug: "organic-maps-app-is-now-available-on-f-droid" -taxonomies: - news: ["Releases"] --- Organic Maps app is now available [on F-Droid](https://f-droid.org/en/packages/app.organicmaps/)! diff --git a/content/news/2021-05-25/_index.md b/content/news/2021-05-25/_index.md index bf211b15..7d7469ec 100644 --- a/content/news/2021-05-25/_index.md +++ b/content/news/2021-05-25/_index.md @@ -1,4 +1,4 @@ --- +date: 2021-05-25 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2021-06-06/_index.md b/content/news/2021-06-06/_index.md index bf211b15..35cfdd7c 100644 --- a/content/news/2021-06-06/_index.md +++ b/content/news/2021-06-06/_index.md @@ -1,4 +1,4 @@ --- +date: 2021-06-06 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2021-06-17/12/index.md b/content/news/2021-06-17/12/index.md index 2f92b8e7..c7a79722 100644 --- a/content/news/2021-06-17/12/index.md +++ b/content/news/2021-06-17/12/index.md @@ -2,8 +2,6 @@ title: "🍃 Organic Maps is live!" date: 2021-06-17T08:17:18+00:00 slug: "organic-maps-is-live" -taxonomies: - news: ["Releases"] --- 🍃 Organic Maps is live! diff --git a/content/news/2021-06-17/_index.md b/content/news/2021-06-17/_index.md index bf211b15..800bfcd7 100644 --- a/content/news/2021-06-17/_index.md +++ b/content/news/2021-06-17/_index.md @@ -1,4 +1,4 @@ --- +date: 2021-06-17 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2021-06-20/13/index.md b/content/news/2021-06-20/13/index.md index 515a9b09..dbc4e94a 100644 --- a/content/news/2021-06-20/13/index.md +++ b/content/news/2021-06-20/13/index.md @@ -2,8 +2,6 @@ title: "Android 5 support, OSM login, bookmarks export, and some other fixes are already in review, as the CarPlay for iOS" date: 2021-06-20T12:12:15+00:00 slug: "android-5-support-osm-login-bookmarks-export-and-some-other-fixes-are-already-in-review-as-the-carplay-for-ios" -taxonomies: - news: ["Releases"] --- Android 5 support, OSM login, bookmarks export, and some other fixes are already in review, as the CarPlay for iOS. Please be patient, or install the latest betas. diff --git a/content/news/2021-06-20/_index.md b/content/news/2021-06-20/_index.md index bf211b15..9b4a6d66 100644 --- a/content/news/2021-06-20/_index.md +++ b/content/news/2021-06-20/_index.md @@ -1,4 +1,4 @@ --- +date: 2021-06-20 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2021-06-23/17/index.md b/content/news/2021-06-23/17/index.md index a49665dc..144e322b 100644 --- a/content/news/2021-06-23/17/index.md +++ b/content/news/2021-06-23/17/index.md @@ -2,8 +2,6 @@ title: "🚗 iOS update with a (finally!) working CarPlay is live" date: 2021-06-23T20:15:35+00:00 slug: "ios-update-with-a-finally-working-carplay-is-live" -taxonomies: - news: ["Releases"] --- 🚗 iOS update with a (finally!) working CarPlay is live. Happy driving! diff --git a/content/news/2021-06-23/_index.md b/content/news/2021-06-23/_index.md index bf211b15..b4dbb594 100644 --- a/content/news/2021-06-23/_index.md +++ b/content/news/2021-06-23/_index.md @@ -1,4 +1,4 @@ --- +date: 2021-06-23 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2021-06-24/_index.md b/content/news/2021-06-24/_index.md index bf211b15..158f6c66 100644 --- a/content/news/2021-06-24/_index.md +++ b/content/news/2021-06-24/_index.md @@ -1,4 +1,4 @@ --- +date: 2021-06-24 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2021-06-28/_index.md b/content/news/2021-06-28/_index.md index bf211b15..1589f934 100644 --- a/content/news/2021-06-28/_index.md +++ b/content/news/2021-06-28/_index.md @@ -1,4 +1,4 @@ --- +date: 2021-06-28 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2021-07-10/20/index.md b/content/news/2021-07-10/20/index.md index e78ccb5d..b4462aa7 100644 --- a/content/news/2021-07-10/20/index.md +++ b/content/news/2021-07-10/20/index.md @@ -2,8 +2,6 @@ title: "Updated OM 🧘 version 2021.07.08 is here!" date: 2021-07-10T15:23:44+00:00 slug: "updated-om-version-is-here" -taxonomies: - news: ["Releases"] --- Updated OM 🧘 version 2021.07.08 is here! diff --git a/content/news/2021-07-10/_index.md b/content/news/2021-07-10/_index.md index bf211b15..d6137ea9 100644 --- a/content/news/2021-07-10/_index.md +++ b/content/news/2021-07-10/_index.md @@ -1,4 +1,4 @@ --- +date: 2021-07-10 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2021-08-07/21/index.md b/content/news/2021-08-07/21/index.md index 02e4e0e0..48b391da 100644 --- a/content/news/2021-08-07/21/index.md +++ b/content/news/2021-08-07/21/index.md @@ -1,10 +1,7 @@ --- -title: "Meet a new app August 2021 update" +title: "Meet a new app update with" date: 2021-08-07T06:40:46+00:00 -slug: "august-2021-release-of-organic-maps" -aliases: ["/news/2021-08-07/meet-a-new-app-update-with/"] -taxonomies: - news: ["Releases"] +slug: "meet-a-new-app-update-with" --- Meet a new app update with: diff --git a/content/news/2021-08-07/_index.md b/content/news/2021-08-07/_index.md index bf211b15..728e1652 100644 --- a/content/news/2021-08-07/_index.md +++ b/content/news/2021-08-07/_index.md @@ -1,4 +1,4 @@ --- +date: 2021-08-07 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2021-08-13/_index.md b/content/news/2021-08-13/_index.md index bf211b15..8c47a8aa 100644 --- a/content/news/2021-08-13/_index.md +++ b/content/news/2021-08-13/_index.md @@ -1,4 +1,4 @@ --- +date: 2021-08-13 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2021-08-15/23/index.md b/content/news/2021-08-15/23/index.md index 5b4e15d3..a696ac79 100644 --- a/content/news/2021-08-15/23/index.md +++ b/content/news/2021-08-15/23/index.md @@ -2,8 +2,6 @@ title: "We have a temporary issue with Google Play app availability" date: 2021-08-15T15:14:17+00:00 slug: "we-have-a-temporary-issue-with-google-play-app-availability" -taxonomies: - news: ["Releases"] --- We have a temporary issue with Google Play app availability. Hopefully it will be fixed soon 🤞 diff --git a/content/news/2021-08-15/_index.md b/content/news/2021-08-15/_index.md index bf211b15..5140b5bf 100644 --- a/content/news/2021-08-15/_index.md +++ b/content/news/2021-08-15/_index.md @@ -1,4 +1,4 @@ --- +date: 2021-08-15 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2021-08-16/24/index.md b/content/news/2021-08-16/24/index.md index 876eb0b5..e49581d4 100644 --- a/content/news/2021-08-16/24/index.md +++ b/content/news/2021-08-16/24/index.md @@ -2,8 +2,6 @@ title: "Organic Maps is back on Google Play after a temporary problem 🎉" date: 2021-08-16T17:44:40+00:00 slug: "organic-maps-is-back-on-google-play-after-a-temporary-problem" -taxonomies: - news: ["Releases"] --- Organic Maps is back [on Google Play](https://play.google.com/store/apps/details?id=app.organicmaps) after a temporary problem 🎉 diff --git a/content/news/2021-08-16/_index.md b/content/news/2021-08-16/_index.md index bf211b15..5d1e1ce3 100644 --- a/content/news/2021-08-16/_index.md +++ b/content/news/2021-08-16/_index.md @@ -1,4 +1,4 @@ --- +date: 2021-08-16 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2021-08-21/25/index.md b/content/news/2021-08-21/25/index.md index a5d08866..a3ea4fae 100644 --- a/content/news/2021-08-21/25/index.md +++ b/content/news/2021-08-21/25/index.md @@ -2,8 +2,6 @@ title: "A minor update is available in Google Play" date: 2021-08-21T07:46:14+00:00 slug: "a-minor-update-is-available-in-google-play" -taxonomies: - news: ["Releases"] --- A minor update is available in Google Play diff --git a/content/news/2021-08-21/_index.md b/content/news/2021-08-21/_index.md index bf211b15..b1460bf4 100644 --- a/content/news/2021-08-21/_index.md +++ b/content/news/2021-08-21/_index.md @@ -1,4 +1,4 @@ --- +date: 2021-08-21 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2021-08-23/_index.md b/content/news/2021-08-23/_index.md index bf211b15..29c4cdb7 100644 --- a/content/news/2021-08-23/_index.md +++ b/content/news/2021-08-23/_index.md @@ -1,4 +1,4 @@ --- +date: 2021-08-23 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2021-08-27/27/index.md b/content/news/2021-08-27/27/index.md index 1b91ff5b..7dfadaff 100644 --- a/content/news/2021-08-27/27/index.md +++ b/content/news/2021-08-27/27/index.md @@ -2,8 +2,6 @@ title: "Some highlights about Organic Maps in the French article" date: 2021-08-27T18:34:36+00:00 slug: "some-highlights-about-organic-maps-in-the-french-article" -taxonomies: - news: ["Press"] --- You can read some highlights about Organic Maps in [the French article](https://start.lesechos.fr/au-quotidien/voyage-expatriation/organic-maps-lappli-de-navigation-gratuite-qui-respecte-votre-vie-privee-1340970). diff --git a/content/news/2021-08-27/_index.md b/content/news/2021-08-27/_index.md index bf211b15..4cae1848 100644 --- a/content/news/2021-08-27/_index.md +++ b/content/news/2021-08-27/_index.md @@ -1,4 +1,4 @@ --- +date: 2021-08-27 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2021-08-30/28/index.md b/content/news/2021-08-30/28/index.md index c3ff64c8..0e2bc212 100644 --- a/content/news/2021-08-30/28/index.md +++ b/content/news/2021-08-30/28/index.md @@ -2,8 +2,6 @@ title: "With the help of our community ❤️, in the 21.08.26 update we" date: 2021-08-30T21:38:20+00:00 slug: "with-the-help-of-our-community-in-the-update-we" -taxonomies: - news: ["Releases"] --- With the help of our community ❤️, in the 21.08.26 update we: diff --git a/content/news/2021-08-30/_index.md b/content/news/2021-08-30/_index.md index bf211b15..2ff0d95e 100644 --- a/content/news/2021-08-30/_index.md +++ b/content/news/2021-08-30/_index.md @@ -1,4 +1,4 @@ --- +date: 2021-08-30 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2021-09-05/29/index.md b/content/news/2021-09-05/29/index.md index f7761add..b09c0d04 100644 --- a/content/news/2021-09-05/29/index.md +++ b/content/news/2021-09-05/29/index.md @@ -2,8 +2,6 @@ title: "ℹ️ The latest 21.09.01 update is available in Google Play, App Store and AppGallery with updated OSM maps 🗺️ data snapshot, made on 25th of August." date: 2021-09-05T20:30:34+00:00 slug: "the-latest-update-is-available-in-google-play-app-store-and-appgallery-with-updated-osm-maps-data-snapshot-made-on-25th-of-august" -taxonomies: - news: ["Releases"] --- ℹ️ The latest 21.09.01 update is available in Google Play, App Store and AppGallery with updated OSM maps 🗺️ data snapshot, made on 25th of August. diff --git a/content/news/2021-09-05/_index.md b/content/news/2021-09-05/_index.md index bf211b15..7225b5e8 100644 --- a/content/news/2021-09-05/_index.md +++ b/content/news/2021-09-05/_index.md @@ -1,4 +1,4 @@ --- +date: 2021-09-05 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2021-09-15/30/index.md b/content/news/2021-09-15/30/index.md index 28b72794..c147599f 100644 --- a/content/news/2021-09-15/30/index.md +++ b/content/news/2021-09-15/30/index.md @@ -2,8 +2,6 @@ title: "21.09.14 app update is available in Google Play" date: 2021-09-15T20:34:14+00:00 slug: "app-update-is-available-in-google-play" -taxonomies: - news: ["Releases"] --- 21.09.14 app update is available in Google Play. We: diff --git a/content/news/2021-09-15/_index.md b/content/news/2021-09-15/_index.md index bf211b15..14b0f9f8 100644 --- a/content/news/2021-09-15/_index.md +++ b/content/news/2021-09-15/_index.md @@ -1,4 +1,4 @@ --- +date: 2021-09-15 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2021-09-26/_index.md b/content/news/2021-09-26/_index.md index bf211b15..3b988d6a 100644 --- a/content/news/2021-09-26/_index.md +++ b/content/news/2021-09-26/_index.md @@ -1,4 +1,4 @@ --- +date: 2021-09-26 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2021-10-09/33/index.md b/content/news/2021-10-09/33/index.md index 77a4329e..e23fda7a 100644 --- a/content/news/2021-10-09/33/index.md +++ b/content/news/2021-10-09/33/index.md @@ -2,8 +2,6 @@ title: "Sorry, the latest 21.10.07 release for Android has a bug" date: 2021-10-09T18:07:49+00:00 slug: "sorry-the-latest-release-for-android-has-a-bug" -taxonomies: - news: ["Releases"] --- Sorry, the latest 21.10.07 release for Android has a bug: if you clicked before on coordinates in the place info (to switch coordinates format), then you'll have a crash on startup. Only reinstall can help (but you'll loose your bookmarks!). If you have root access, then close the app and delete `/data/data/app.organicmaps.app/files/settings.ini` file. diff --git a/content/news/2021-10-09/_index.md b/content/news/2021-10-09/_index.md index bf211b15..195e9b6d 100644 --- a/content/news/2021-10-09/_index.md +++ b/content/news/2021-10-09/_index.md @@ -1,4 +1,4 @@ --- +date: 2021-10-09 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2021-10-14/34/index.md b/content/news/2021-10-14/34/index.md index 97e23df5..8b99af40 100644 --- a/content/news/2021-10-14/34/index.md +++ b/content/news/2021-10-14/34/index.md @@ -2,8 +2,6 @@ title: "A new app update is available" date: 2021-10-14T06:14:09+00:00 slug: "a-new-app-update-is-available" -taxonomies: - news: ["Releases"] --- A new app update is available! diff --git a/content/news/2021-10-14/_index.md b/content/news/2021-10-14/_index.md index bf211b15..e3daadaf 100644 --- a/content/news/2021-10-14/_index.md +++ b/content/news/2021-10-14/_index.md @@ -1,4 +1,4 @@ --- +date: 2021-10-14 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2021-10-21/35/index.md b/content/news/2021-10-21/35/index.md index 2c075895..3f477a16 100644 --- a/content/news/2021-10-21/35/index.md +++ b/content/news/2021-10-21/35/index.md @@ -2,8 +2,6 @@ title: "In 21.10.15 Google Play update we" date: 2021-10-21T09:36:45+00:00 slug: "in-google-play-update-we" -taxonomies: - news: ["Releases"] --- In 21.10.15 Google Play update we: diff --git a/content/news/2021-10-21/_index.md b/content/news/2021-10-21/_index.md index bf211b15..5052fb9c 100644 --- a/content/news/2021-10-21/_index.md +++ b/content/news/2021-10-21/_index.md @@ -1,4 +1,4 @@ --- +date: 2021-10-21 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2021-11-01/_index.md b/content/news/2021-11-01/_index.md index bf211b15..4905e8fd 100644 --- a/content/news/2021-11-01/_index.md +++ b/content/news/2021-11-01/_index.md @@ -1,4 +1,4 @@ --- +date: 2021-11-01 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2021-11-09/37/index.md b/content/news/2021-11-09/37/index.md index d4046878..e1c08519 100644 --- a/content/news/2021-11-09/37/index.md +++ b/content/news/2021-11-09/37/index.md @@ -2,8 +2,6 @@ title: "Meet November 4 Organic Maps update" date: 2021-11-09T22:05:28+00:00 slug: "meet-november-4-organic-maps-update" -taxonomies: - news: ["Releases"] --- Meet November 4 Organic Maps update! diff --git a/content/news/2021-11-09/_index.md b/content/news/2021-11-09/_index.md index bf211b15..3fa25832 100644 --- a/content/news/2021-11-09/_index.md +++ b/content/news/2021-11-09/_index.md @@ -1,4 +1,4 @@ --- +date: 2021-11-09 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2021-11-21/_index.md b/content/news/2021-11-21/_index.md index bf211b15..026894ff 100644 --- a/content/news/2021-11-21/_index.md +++ b/content/news/2021-11-21/_index.md @@ -1,4 +1,4 @@ --- +date: 2021-11-21 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2021-12-03/41/index.md b/content/news/2021-12-03/41/index.md index f96ecc96..45d78f41 100644 --- a/content/news/2021-12-03/41/index.md +++ b/content/news/2021-12-03/41/index.md @@ -2,12 +2,10 @@ title: "Meet Organic Maps app update 21.12.01" date: 2021-12-03T22:18:34+00:00 slug: "meet-organic-maps-app-update" -taxonomies: - news: ["Releases"] --- Meet Organic Maps app update 21.12.01 -🤖 + 🍏 +🤖 \+ 🍏 * New OSM maps data as of November 22 * Fixed routing between map regions, please test and report to us any issues! * Type "water" or "drinking water" in search to find it around yourself diff --git a/content/news/2021-12-03/_index.md b/content/news/2021-12-03/_index.md index bf211b15..b8668850 100644 --- a/content/news/2021-12-03/_index.md +++ b/content/news/2021-12-03/_index.md @@ -1,4 +1,4 @@ --- +date: 2021-12-03 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2022-01-14/42/index.md b/content/news/2022-01-14/42/index.md index 5855b835..730d083f 100644 --- a/content/news/2022-01-14/42/index.md +++ b/content/news/2022-01-14/42/index.md @@ -2,8 +2,6 @@ title: "Meet new January Organic Maps app update, with many improvements from our beloved contributors 🙏" date: 2022-01-14T14:44:07+00:00 slug: "meet-new-january-organic-maps-app-update-with-many-improvements-from-our-beloved-contributors" -taxonomies: - news: ["Releases"] --- Meet new January Organic Maps app update, with many improvements from our beloved contributors 🙏! diff --git a/content/news/2022-01-14/_index.md b/content/news/2022-01-14/_index.md index bf211b15..9f375f35 100644 --- a/content/news/2022-01-14/_index.md +++ b/content/news/2022-01-14/_index.md @@ -1,4 +1,4 @@ --- +date: 2022-01-14 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2022-01-15/43/index.md b/content/news/2022-01-15/43/index.md index 60f5c155..6b015b36 100644 --- a/content/news/2022-01-15/43/index.md +++ b/content/news/2022-01-15/43/index.md @@ -2,8 +2,6 @@ title: "There is a regression with KML import on Android" date: 2022-01-15T13:08:26+00:00 slug: "there-is-a-regression-with-kml-import-on-android" -taxonomies: - news: ["Releases"] --- There is a regression with KML import on Android. No worries, the fix is already in review. diff --git a/content/news/2022-01-15/_index.md b/content/news/2022-01-15/_index.md index bf211b15..317dad1c 100644 --- a/content/news/2022-01-15/_index.md +++ b/content/news/2022-01-15/_index.md @@ -1,4 +1,4 @@ --- +date: 2022-01-15 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2022-01-18/44/index.md b/content/news/2022-01-18/44/index.md index 53e0be60..3a32c125 100644 --- a/content/news/2022-01-18/44/index.md +++ b/content/news/2022-01-18/44/index.md @@ -2,8 +2,6 @@ title: "Finally, FDroid update is available too" date: 2022-01-18T11:47:38+00:00 slug: "finally-fdroid-update-is-available-too" -taxonomies: - news: ["Releases"] --- Finally, FDroid update is available too: diff --git a/content/news/2022-01-18/_index.md b/content/news/2022-01-18/_index.md index bf211b15..44c9624c 100644 --- a/content/news/2022-01-18/_index.md +++ b/content/news/2022-01-18/_index.md @@ -1,4 +1,4 @@ --- +date: 2022-01-18 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2022-01-23/_index.md b/content/news/2022-01-23/_index.md index bf211b15..dcb83545 100644 --- a/content/news/2022-01-23/_index.md +++ b/content/news/2022-01-23/_index.md @@ -1,4 +1,4 @@ --- +date: 2022-01-23 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2022-02-02/46/index.md b/content/news/2022-02-02/46/index.md index 92301de1..e0e421c8 100644 --- a/content/news/2022-02-02/46/index.md +++ b/content/news/2022-02-02/46/index.md @@ -1,9 +1,8 @@ --- -title: "We have created a Telegram group for Turkish users, moderated by @MetehanOzyurek" +title: "We''ve created a Telegram group for Turkish users, moderated by @MetehanOzyurek" date: 2022-02-02T11:26:11+00:00 -slug: "we-have-created-a-telegram-group-for-turkish-users-moderated-by-metehanozyurek" -aliases: ["/news/2022-02-02/we-ve-created-a-telegram-group-for-turkish-users-moderated-by-metehanozyurek/"] +slug: "we-ve-created-a-telegram-group-for-turkish-users-moderated-by-metehanozyurek" --- -We have created a Telegram group for Turkish users, moderated by [@MetehanOzyurek](https://t.me/MetehanOzyurek) +We've created a Telegram group for Turkish users, moderated by [@MetehanOzyurek](https://t.me/MetehanOzyurek) Join [@OrganicMapsTR](https://t.me/OrganicMapsTR) or [use](https://t.me/OrganicMapsTR) [this](https://t.me/OrganicMapsTR) [link](https://t.me/OrganicMapsTR). diff --git a/content/news/2022-02-02/_index.md b/content/news/2022-02-02/_index.md index bf211b15..3285809c 100644 --- a/content/news/2022-02-02/_index.md +++ b/content/news/2022-02-02/_index.md @@ -1,4 +1,4 @@ --- +date: 2022-02-02 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2022-02-12/_index.md b/content/news/2022-02-12/_index.md index bf211b15..f5fa5199 100644 --- a/content/news/2022-02-12/_index.md +++ b/content/news/2022-02-12/_index.md @@ -1,4 +1,4 @@ --- +date: 2022-02-12 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2022-02-14/48/index.md b/content/news/2022-02-14/48/index.md index d147c584..ea452ddc 100644 --- a/content/news/2022-02-14/48/index.md +++ b/content/news/2022-02-14/48/index.md @@ -2,8 +2,6 @@ title: "Meet new Organic Maps update 2022.02.11 for iOS" date: 2022-02-14T20:58:48+00:00 slug: "meet-new-organic-maps-update-for-ios" -taxonomies: - news: ["Releases"] --- Meet new Organic Maps update 2022.02.11 for iOS! diff --git a/content/news/2022-02-14/_index.md b/content/news/2022-02-14/_index.md index bf211b15..fcbcda17 100644 --- a/content/news/2022-02-14/_index.md +++ b/content/news/2022-02-14/_index.md @@ -1,4 +1,4 @@ --- +date: 2022-02-14 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2022-02-21/50/index.md b/content/news/2022-02-21/50/index.md index fe4f1b37..03b9374a 100644 --- a/content/news/2022-02-21/50/index.md +++ b/content/news/2022-02-21/50/index.md @@ -2,8 +2,6 @@ title: "Finally, meet the updated Organic Maps in Google Play" date: 2022-02-21T17:06:29+00:00 slug: "finally-meet-the-updated-organic-maps-in-google-play" -taxonomies: - news: ["Releases"] --- Finally, meet the updated Organic Maps in [Google Play](https://play.google.com/store/apps/details?id=app.organicmaps)! diff --git a/content/news/2022-02-21/_index.md b/content/news/2022-02-21/_index.md index bf211b15..31d9bfab 100644 --- a/content/news/2022-02-21/_index.md +++ b/content/news/2022-02-21/_index.md @@ -1,4 +1,4 @@ --- +date: 2022-02-21 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2022-02-22/51/index.md b/content/news/2022-02-22/51/index.md index 036888de..95c97e47 100644 --- a/content/news/2022-02-22/51/index.md +++ b/content/news/2022-02-22/51/index.md @@ -2,8 +2,6 @@ title: "🤖 February update of Organic Maps is finally also available in Huawei AppGallery and FDroid" date: 2022-02-22T11:05:05+00:00 slug: "february-update-of-organic-maps-is-finally-also-available-in-huawei-appgallery-and-fdroid" -taxonomies: - news: ["Releases"] --- 🤖 February update of Organic Maps is finally also available in [Huawei AppGallery](https://appgallery.huawei.com/#/app/C104325611) and [FDroid](https://f-droid.org/en/packages/app.organicmaps/)! The [changelog](https://organicmaps.app/news/2022-02-21/finally-meet-the-updated-organic-maps-in-google-play/) is the same as for the Google Play version. diff --git a/content/news/2022-02-22/_index.md b/content/news/2022-02-22/_index.md index bf211b15..9524dada 100644 --- a/content/news/2022-02-22/_index.md +++ b/content/news/2022-02-22/_index.md @@ -1,4 +1,4 @@ --- +date: 2022-02-22 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2022-03-11/_index.md b/content/news/2022-03-11/_index.md index bf211b15..13d631df 100644 --- a/content/news/2022-03-11/_index.md +++ b/content/news/2022-03-11/_index.md @@ -1,4 +1,4 @@ --- +date: 2022-03-11 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2022-03-16/_index.md b/content/news/2022-03-16/_index.md index bf211b15..b4f9690a 100644 --- a/content/news/2022-03-16/_index.md +++ b/content/news/2022-03-16/_index.md @@ -1,4 +1,4 @@ --- +date: 2022-03-16 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2022-03-25/54/index.md b/content/news/2022-03-25/54/index.md index c72a863f..a616e1f9 100644 --- a/content/news/2022-03-25/54/index.md +++ b/content/news/2022-03-25/54/index.md @@ -2,8 +2,6 @@ title: "A new Organic Maps update is available in all stores." date: 2022-03-25T08:21:01+00:00 slug: "a-new-organic-maps-update-is-available-in-all-stores" -taxonomies: - news: ["Releases"] --- A new Organic Maps update is available in all stores. diff --git a/content/news/2022-03-25/_index.md b/content/news/2022-03-25/_index.md index bf211b15..591f5005 100644 --- a/content/news/2022-03-25/_index.md +++ b/content/news/2022-03-25/_index.md @@ -1,4 +1,4 @@ --- +date: 2022-03-25 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2022-04-11/_index.md b/content/news/2022-04-11/_index.md index bf211b15..0130f17a 100644 --- a/content/news/2022-04-11/_index.md +++ b/content/news/2022-04-11/_index.md @@ -1,4 +1,4 @@ --- +date: 2022-04-11 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2022-04-18/_index.md b/content/news/2022-04-18/_index.md index bf211b15..51ebb606 100644 --- a/content/news/2022-04-18/_index.md +++ b/content/news/2022-04-18/_index.md @@ -1,4 +1,4 @@ --- +date: 2022-04-18 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2022-05-02/57/index.md b/content/news/2022-05-02/57/index.md index 66aa120a..35f36b4c 100644 --- a/content/news/2022-05-02/57/index.md +++ b/content/news/2022-05-02/57/index.md @@ -2,8 +2,6 @@ title: "A new April update of Organic Maps is live in all stores" date: 2022-05-02T06:38:52+00:00 slug: "a-new-april-update-of-organic-maps-is-live-in-all-stores" -taxonomies: - news: ["Releases"] --- A new April update of Organic Maps is live in all stores! diff --git a/content/news/2022-05-02/_index.md b/content/news/2022-05-02/_index.md index bf211b15..bcfabe12 100644 --- a/content/news/2022-05-02/_index.md +++ b/content/news/2022-05-02/_index.md @@ -1,4 +1,4 @@ --- +date: 2022-05-02 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2022-05-24/59/index.md b/content/news/2022-05-24/59/index.md index f545b5db..7c20e28b 100644 --- a/content/news/2022-05-24/59/index.md +++ b/content/news/2022-05-24/59/index.md @@ -2,8 +2,6 @@ title: "Meet the May Organic Maps update" date: 2022-05-24T04:24:18+00:00 slug: "meet-the-may-organic-maps-update" -taxonomies: - news: ["Releases"] --- Meet the May Organic Maps update! diff --git a/content/news/2022-05-24/_index.md b/content/news/2022-05-24/_index.md index bf211b15..100245d9 100644 --- a/content/news/2022-05-24/_index.md +++ b/content/news/2022-05-24/_index.md @@ -1,4 +1,4 @@ --- +date: 2022-05-24 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2022-06-05/60/index.md b/content/news/2022-06-05/60/index.md index 19604e3c..5832503a 100644 --- a/content/news/2022-06-05/60/index.md +++ b/content/news/2022-06-05/60/index.md @@ -2,8 +2,6 @@ title: "A hotfix Android release (May 31) is available in stores" date: 2022-06-05T23:15:02+00:00 slug: "a-hotfix-android-release-may-31-is-available-in-stores" -taxonomies: - news: ["Releases"] --- A hotfix Android release (May 31) is available in stores: diff --git a/content/news/2022-06-05/_index.md b/content/news/2022-06-05/_index.md index bf211b15..a0cb45de 100644 --- a/content/news/2022-06-05/_index.md +++ b/content/news/2022-06-05/_index.md @@ -1,4 +1,4 @@ --- +date: 2022-06-05 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2022-06-20/_index.md b/content/news/2022-06-20/_index.md index bf211b15..d82bd9a6 100644 --- a/content/news/2022-06-20/_index.md +++ b/content/news/2022-06-20/_index.md @@ -1,4 +1,4 @@ --- +date: 2022-06-20 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2022-06-28/80/index.md b/content/news/2022-06-28/80/index.md index 92e63b6f..ef913c52 100644 --- a/content/news/2022-06-28/80/index.md +++ b/content/news/2022-06-28/80/index.md @@ -2,8 +2,6 @@ title: "The June release is available only in the AppStore and Huawei AppGallery, the FDroid update is delayed for technical reasons and the Google Play update is still in review for more than one week" date: 2022-06-28T06:10:20+00:00 slug: "the-june-release-is-available-only-in-the-appstore-and-huawei-appgallery-the-fdroid-update-is-delayed-for-technical-reasons-and-the-google-play-update-is-still-in-review-for-more-than-one-week" -taxonomies: - news: ["Releases"] --- The June release is available only in the [AppStore](https://apps.apple.com/app/organic-maps/id1567437057) and [Huawei AppGallery](https://appgallery.huawei.com/#/app/C104325611), the FDroid update is delayed for technical reasons and the Google Play update is still in review for more than one week. Maybe it’s not so bad, as we expect potential crashes on some older Android devices in that release and forgot to activate Marathi translations. No worries, these and other issues have already been fixed and soon will be available in another update 😉 diff --git a/content/news/2022-06-28/_index.md b/content/news/2022-06-28/_index.md index bf211b15..b1f409d3 100644 --- a/content/news/2022-06-28/_index.md +++ b/content/news/2022-06-28/_index.md @@ -1,4 +1,4 @@ --- +date: 2022-06-28 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2022-06-29/83/index.md b/content/news/2022-06-29/83/index.md index 946b9b80..5c67251b 100644 --- a/content/news/2022-06-29/83/index.md +++ b/content/news/2022-06-29/83/index.md @@ -2,8 +2,6 @@ title: "Fdroid and Google Play updates are finally available" date: 2022-06-29T06:49:19+00:00 slug: "fdroid-and-google-play-updates-are-finally-available" -taxonomies: - news: ["Releases"] --- [Fdroid](https://f-droid.org/en/packages/app.organicmaps/) and [Google Play](https://play.google.com/store/apps/details?id=app.organicmaps) updates are finally available. Please let us know about any issues. And even better, please, contribute and [donate](https://organicmaps.app/donate/)! Organic Maps is Open Source, and there are many ways to [support ](https://organicmaps.app/support-us/)[the](https://organicmaps.app/support-us/) [development](https://organicmaps.app/support-us/). diff --git a/content/news/2022-06-29/_index.md b/content/news/2022-06-29/_index.md index bf211b15..91621a3b 100644 --- a/content/news/2022-06-29/_index.md +++ b/content/news/2022-06-29/_index.md @@ -1,4 +1,4 @@ --- +date: 2022-06-29 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2022-07-02/84/index.md b/content/news/2022-07-02/84/index.md index 8271df99..7955da9f 100644 --- a/content/news/2022-07-02/84/index.md +++ b/content/news/2022-07-02/84/index.md @@ -2,8 +2,6 @@ title: "New app update 2022.07.01 is available on AppStore and AppGalery." date: 2022-07-02T07:54:20+00:00 slug: "new-app-update-is-available-on-appstore-and-appgalery" -taxonomies: - news: ["Releases"] --- New app update 2022.07.01 is available on [AppStore](https://apps.apple.com/app/organic-maps/id1567437057) and [AppGalery](https://appgallery.huawei.com/#/app/C104325611). diff --git a/content/news/2022-07-02/_index.md b/content/news/2022-07-02/_index.md index bf211b15..56360b57 100644 --- a/content/news/2022-07-02/_index.md +++ b/content/news/2022-07-02/_index.md @@ -1,4 +1,4 @@ --- +date: 2022-07-02 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2022-07-04/85/index.md b/content/news/2022-07-04/85/index.md index 05f724bc..e66c44a4 100644 --- a/content/news/2022-07-04/85/index.md +++ b/content/news/2022-07-04/85/index.md @@ -2,8 +2,6 @@ title: "Google Play and FDroid updates are also available" date: 2022-07-04T22:15:31+00:00 slug: "google-play-and-fdroid-updates-are-also-available" -taxonomies: - news: ["Releases"] --- [Google Play](https://play.google.com/store/apps/details?id=app.organicmaps) and [FDroid](https://f-droid.org/en/packages/app.organicmaps/) updates are also available. Please note that FDroid build is not the latest one, it crashes with public transport routes. The fix should be available in upcoming days. The changelog is [here](https://organicmaps.app/news/2022-07-02/new-app-update-is-available-on-appstore-and-appgalery/). diff --git a/content/news/2022-07-04/_index.md b/content/news/2022-07-04/_index.md index 383cb17d..dec3e154 100644 --- a/content/news/2022-07-04/_index.md +++ b/content/news/2022-07-04/_index.md @@ -1,4 +1,4 @@ --- +date: 2022-07-04 sort_by: date -template: news/date_section.html --- diff --git a/content/news/2022-07-12/86/index.md b/content/news/2022-07-12/86/index.md index b118bcb3..af408c8b 100644 --- a/content/news/2022-07-12/86/index.md +++ b/content/news/2022-07-12/86/index.md @@ -2,8 +2,6 @@ title: "FDroid update 2022.07.01-6-FDroid with a crash fix for Public Transport is finally available" date: 2022-07-12T10:09:29+00:00 slug: "fdroid-update-6-fdroid-with-a-crash-fix-for-public-transport-is-finally-available" -taxonomies: - news: ["Releases"] --- FDroid update 2022.07.01-6-FDroid with a crash fix for Public Transport is finally [available](https://f-droid.org/en/packages/app.organicmaps/). We also got several reports from users that paths/tracks are not drawn in some map areas in the most recent version. Please let us know if you encounter it. diff --git a/content/news/2022-07-12/_index.md b/content/news/2022-07-12/_index.md index bf211b15..e1d3cc48 100644 --- a/content/news/2022-07-12/_index.md +++ b/content/news/2022-07-12/_index.md @@ -1,4 +1,4 @@ --- +date: 2022-07-12 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2022-07-28/88/index.md b/content/news/2022-07-28/88/index.md index 313edbe4..4cbc8443 100644 --- a/content/news/2022-07-28/88/index.md +++ b/content/news/2022-07-28/88/index.md @@ -2,8 +2,6 @@ title: "New update 2022.07.27 is already available in AppStore and Huawei AppGallery but is still reviewed in other stores" date: 2022-07-28T16:19:51+00:00 slug: "new-update-is-already-available-in-appstore-and-huawei-appgallery-but-is-still-reviewed-in-other-stores" -taxonomies: - news: ["Releases"] --- New update 2022.07.27 is already available in [AppStore](https://apps.apple.com/app/organic-maps/id1567437057) and [Huawei AppGallery](https://appgallery.huawei.com/#/app/C104325611) but is still reviewed in other stores. The detailed changelog for all platforms: diff --git a/content/news/2022-07-28/_index.md b/content/news/2022-07-28/_index.md index bf211b15..155b0732 100644 --- a/content/news/2022-07-28/_index.md +++ b/content/news/2022-07-28/_index.md @@ -1,4 +1,4 @@ --- +date: 2022-07-28 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2022-08-01/90/index.md b/content/news/2022-08-01/90/index.md index 84855ea6..b1934afd 100644 --- a/content/news/2022-08-01/90/index.md +++ b/content/news/2022-08-01/90/index.md @@ -2,8 +2,6 @@ title: "Organic Maps 2022.07.27 is available on FDroid" date: 2022-08-01T08:44:25+00:00 slug: "organic-maps-is-available-on-fdroid" -taxonomies: - news: ["Releases"] --- Organic Maps 2022.07.27 is available on [FDroid](https://f-droid.org/en/packages/app.organicmaps/)! Release notes are [here](https://organicmaps.app/news/2022-07-28/new-update-is-already-available-in-appstore-and-huawei-appgallery-but-is-still-reviewed-in-other-stores/). diff --git a/content/news/2022-08-01/_index.md b/content/news/2022-08-01/_index.md index bf211b15..e88cc282 100644 --- a/content/news/2022-08-01/_index.md +++ b/content/news/2022-08-01/_index.md @@ -1,4 +1,4 @@ --- +date: 2022-08-01 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2022-08-03/91/index.md b/content/news/2022-08-03/91/index.md index fe2b3487..a78805de 100644 --- a/content/news/2022-08-03/91/index.md +++ b/content/news/2022-08-03/91/index.md @@ -2,8 +2,6 @@ title: "Finally, Organic Maps 2022.07.27 is also available on Google Play" date: 2022-08-03T17:21:11+00:00 slug: "finally-organic-maps-is-also-available-on-google-play" -taxonomies: - news: ["Releases"] --- Finally, Organic Maps 2022.07.27 is also available on [Google Play](https://play.google.com/store/apps/details?id=app.organicmaps). Release notes are [here](https://organicmaps.app/news/2022-07-28/new-update-is-already-available-in-appstore-and-huawei-appgallery-but-is-still-reviewed-in-other-stores/). diff --git a/content/news/2022-08-03/_index.md b/content/news/2022-08-03/_index.md index bf211b15..2cfa84d3 100644 --- a/content/news/2022-08-03/_index.md +++ b/content/news/2022-08-03/_index.md @@ -1,4 +1,4 @@ --- +date: 2022-08-03 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2022-08-24/92/index.md b/content/news/2022-08-24/92/index.md index 4ce6f2c1..7f8680a2 100644 --- a/content/news/2022-08-24/92/index.md +++ b/content/news/2022-08-24/92/index.md @@ -2,8 +2,6 @@ title: "🍏 Meet many improvements in the Organic Maps update for iOS" date: 2022-08-24T20:51:26+00:00 slug: "meet-many-improvements-in-the-organic-maps-update-for-ios" -taxonomies: - news: ["Releases"] --- 🍏 Meet many improvements in the [Organic Maps](https://apps.apple.com/app/organic-maps/id1567437057) update for iOS! diff --git a/content/news/2022-08-24/_index.md b/content/news/2022-08-24/_index.md index bf211b15..13047a6e 100644 --- a/content/news/2022-08-24/_index.md +++ b/content/news/2022-08-24/_index.md @@ -1,4 +1,4 @@ --- +date: 2022-08-24 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2022-08-31/95/index.md b/content/news/2022-08-31/95/index.md index 017909b6..9d53e7a8 100644 --- a/content/news/2022-08-31/95/index.md +++ b/content/news/2022-08-31/95/index.md @@ -2,8 +2,6 @@ title: "🤖Finally, Organic Maps August update is also available in Google Play, Fdroid, Huawei AppGallery, and Flathub (iOS version passed review earlier)." date: 2022-08-31T22:10:03+00:00 slug: "finally-organic-maps-august-update-is-also-available-in-google-play-fdroid-huawei-appgallery-and-flathub-ios-version-passed-review-earlier" -taxonomies: - news: ["Releases"] --- 🤖Finally, Organic Maps August update is also available in [Google Play](https://play.google.com/store/apps/details?id=app.organicmaps), [Fdroid](https://f-droid.org/en/packages/app.organicmaps/), [Huawei AppGallery](https://appgallery.huawei.com/#/app/C104325611), and [Flathub](https://flathub.org/apps/details/app.organicmaps.desktop) (iOS version [passed review earlier](https://organicmaps.app/news/2022-08-24/meet-many-improvements-in-the-organic-maps-update-for-ios/)). diff --git a/content/news/2022-08-31/_index.md b/content/news/2022-08-31/_index.md index bf211b15..f159b61c 100644 --- a/content/news/2022-08-31/_index.md +++ b/content/news/2022-08-31/_index.md @@ -1,4 +1,4 @@ --- +date: 2022-08-31 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2022-09-17/_index.md b/content/news/2022-09-17/_index.md index bf211b15..6e114ace 100644 --- a/content/news/2022-09-17/_index.md +++ b/content/news/2022-09-17/_index.md @@ -1,4 +1,4 @@ --- +date: 2022-09-17 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2022-09-22/98/index.md b/content/news/2022-09-22/98/index.md index bfe22445..3603aeac 100644 --- a/content/news/2022-09-22/98/index.md +++ b/content/news/2022-09-22/98/index.md @@ -2,8 +2,6 @@ title: "As some of you have already discovered, a new September update of Organic Maps is already available in AppStore, AppGallery, and F-Droid." date: 2022-09-22T21:48:36+00:00 slug: "as-some-of-you-have-already-discovered-a-new-september-update-of-organic-maps-is-already-available-in-appstore-appgallery-and-f-droid" -taxonomies: - news: ["Releases"] --- As some of you have already discovered, a new September update of Organic Maps is already available in [AppStore](https://apps.apple.com/app/organic-maps/id1567437057), [AppGallery](https://appgallery.huawei.com/#/app/C104325611), and [F-Droid](https://f-droid.org/en/packages/app.organicmaps/). diff --git a/content/news/2022-09-22/_index.md b/content/news/2022-09-22/_index.md index bf211b15..ec38af10 100644 --- a/content/news/2022-09-22/_index.md +++ b/content/news/2022-09-22/_index.md @@ -1,4 +1,4 @@ --- +date: 2022-09-22 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2022-10-07/_index.it.md b/content/news/2022-10-07/_index.it.md index bf211b15..04f10969 100644 --- a/content/news/2022-10-07/_index.it.md +++ b/content/news/2022-10-07/_index.it.md @@ -1,4 +1,4 @@ --- +date: 2022-10-07 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2022-10-07/_index.md b/content/news/2022-10-07/_index.md index bf211b15..04f10969 100644 --- a/content/news/2022-10-07/_index.md +++ b/content/news/2022-10-07/_index.md @@ -1,4 +1,4 @@ --- +date: 2022-10-07 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2022-10-07/_index.ru.md b/content/news/2022-10-07/_index.ru.md index bf211b15..04f10969 100644 --- a/content/news/2022-10-07/_index.ru.md +++ b/content/news/2022-10-07/_index.ru.md @@ -1,4 +1,4 @@ --- +date: 2022-10-07 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2022-10-07/_index.tr.md b/content/news/2022-10-07/_index.tr.md index bf211b15..04f10969 100644 --- a/content/news/2022-10-07/_index.tr.md +++ b/content/news/2022-10-07/_index.tr.md @@ -1,4 +1,4 @@ --- +date: 2022-10-07 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2022-10-10/101/index.md b/content/news/2022-10-10/101/index.md index 4baefc60..dd436405 100644 --- a/content/news/2022-10-10/101/index.md +++ b/content/news/2022-10-10/101/index.md @@ -2,8 +2,6 @@ title: "Finally, the September update was approved by Google and is available in the Google Play Store" date: 2022-10-10T23:12:38+00:00 slug: "finally-the-september-update-was-approved-by-google-and-is-available-in-the-google-play-store" -taxonomies: - news: ["Releases"] --- Finally, the September update was approved by Google and is available in the [Google Play Store](https://play.google.com/store/apps/details?id=app.organicmaps). Please see the full changelog [here](https://organicmaps.app/news/2022-09-22/as-some-of-you-have-already-discovered-a-new-september-update-of-organic-maps-is-already-available-in-appstore-appgallery-and-f-droid/). diff --git a/content/news/2022-10-10/_index.md b/content/news/2022-10-10/_index.md index bf211b15..c6fc8d3b 100644 --- a/content/news/2022-10-10/_index.md +++ b/content/news/2022-10-10/_index.md @@ -1,4 +1,4 @@ --- +date: 2022-10-10 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2022-11-03/105/index.md b/content/news/2022-11-03/105/index.md index 17615672..5e4db7d0 100644 --- a/content/news/2022-11-03/105/index.md +++ b/content/news/2022-11-03/105/index.md @@ -2,8 +2,6 @@ title: "Finally, after fixing some critical issues, the November Organic Maps update is available in the Apple Store, Huawei AppGallery, and on our Github" date: 2022-11-03T17:30:48+00:00 slug: "finally-after-fixing-some-critical-issues-the-november-organic-maps-update-is-available-in-the-apple-store-huawei-appgallery-and-on-our-github" -taxonomies: - news: ["Releases"] --- Finally, after fixing some critical issues, the November Organic Maps update is available in the [Apple Store](https://apps.apple.com/app/organic-maps/id1567437057), [Huawei AppGallery](https://appgallery.huawei.com/#/app/C104325611), and on our [Github](https://github.com/organicmaps/organicmaps/releases/tag/2022.11.02-2-android). [Google Play](https://play.google.com/store/apps/details?id=app.organicmaps) and [FDroid](https://f-droid.org/en/packages/app.organicmaps/) are coming soon too. diff --git a/content/news/2022-11-03/_index.md b/content/news/2022-11-03/_index.md index bf211b15..e0dc46fc 100644 --- a/content/news/2022-11-03/_index.md +++ b/content/news/2022-11-03/_index.md @@ -1,4 +1,4 @@ --- +date: 2022-11-03 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2022-11-07/107/index.md b/content/news/2022-11-07/107/index.md index 0fea58c4..ef041d65 100644 --- a/content/news/2022-11-07/107/index.md +++ b/content/news/2022-11-07/107/index.md @@ -2,8 +2,6 @@ title: "For those impatient, here is the Google Play APK, the same as was uploaded several days ago in Google Play for review" date: 2022-11-07T09:35:41+00:00 slug: "for-those-impatient-here-is-the-google-play-apk-the-same-as-was-uploaded-several-days-ago-in-google-play-for-review" -taxonomies: - news: ["Releases"] --- For those impatient, here is the Google Play APK, the same as was uploaded several days ago in Google Play for review. It should install on top of your existing Google Play version without conflicts. And it should be 100% compatible with the upcoming Google Play release (if it is approved by Google, of course). diff --git a/content/news/2022-11-07/108/index.md b/content/news/2022-11-07/108/index.md index 71ce0963..9d214b5c 100644 --- a/content/news/2022-11-07/108/index.md +++ b/content/news/2022-11-07/108/index.md @@ -2,8 +2,6 @@ title: "October/November update of Organic Maps with many fixes and improvements is avaliable in FDroid" date: 2022-11-07T09:52:06+00:00 slug: "october-november-update-of-organic-maps-with-many-fixes-and-improvements-is-avaliable-in-fdroid" -taxonomies: - news: ["Releases"] --- October/November update of Organic Maps with _many_ fixes and improvements is avaliable in [FDroid](https://f-droid.org/en/packages/app.organicmaps/). See the full list of changes on [our ](https://organicmaps.app/news/2022-11-03/finally-after-fixing-some-critical-issues-the-november-organic-maps-update-is-available-in-the-apple-store-huawei-appgallery-and-on-our-github/)[web](https://organicmaps.app/news/2022-11-03/finally-after-fixing-some-critical-issues-the-november-organic-maps-update-is-available-in-the-apple-store-huawei-appgallery-and-on-our-github/) [site](https://organicmaps.app/news/2022-11-03/finally-after-fixing-some-critical-issues-the-november-organic-maps-update-is-available-in-the-apple-store-huawei-appgallery-and-on-our-github/) or in [Telegram](https://t.me/OrganicMapsApp/105). Many thanks to all our users and contributors. Your [donations](https://organicmaps.app/donate/) and [support](https://organicmaps.app/support-us/) are motivating and helping us to improve _the fastest_ maps app in the world 😉 diff --git a/content/news/2022-11-07/_index.md b/content/news/2022-11-07/_index.md index bf211b15..17395a40 100644 --- a/content/news/2022-11-07/_index.md +++ b/content/news/2022-11-07/_index.md @@ -1,4 +1,4 @@ --- +date: 2022-11-07 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2022-11-09/109/index.md b/content/news/2022-11-09/109/index.md index 6f29f3f6..80dab358 100644 --- a/content/news/2022-11-09/109/index.md +++ b/content/news/2022-11-09/109/index.md @@ -2,8 +2,6 @@ title: "After a one-week review delay, Organic Maps October/November update is finally available in Google Play" date: 2022-11-09T12:08:21+00:00 slug: "after-a-one-week-review-delay-organic-maps-october-november-update-is-finally-available-in-google-play" -taxonomies: - news: ["Releases"] --- After a one-week review delay, Organic Maps October/November update is finally available [in Google Play](https://play.google.com/store/apps/details?id=app.organicmaps). See the detailed list of changes and improvements [on our web site](https://organicmaps.app/news/2022-11-03/finally-after-fixing-some-critical-issues-the-november-organic-maps-update-is-available-in-the-apple-store-huawei-appgallery-and-on-our-github/). Your feedback and support are appreciated 🙏 diff --git a/content/news/2022-11-09/_index.md b/content/news/2022-11-09/_index.md index bf211b15..7ad59b00 100644 --- a/content/news/2022-11-09/_index.md +++ b/content/news/2022-11-09/_index.md @@ -1,4 +1,4 @@ --- +date: 2022-11-09 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2022-11-21/_index.md b/content/news/2022-11-21/_index.md index bf211b15..53fb613d 100644 --- a/content/news/2022-11-21/_index.md +++ b/content/news/2022-11-21/_index.md @@ -1,4 +1,4 @@ --- +date: 2022-11-21 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2022-11-21/_index.tr.md b/content/news/2022-11-21/_index.tr.md index bf211b15..53fb613d 100644 --- a/content/news/2022-11-21/_index.tr.md +++ b/content/news/2022-11-21/_index.tr.md @@ -1,4 +1,4 @@ --- +date: 2022-11-21 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2022-11-30/111/index.md b/content/news/2022-11-30/111/index.md index e59dcf06..718b7f30 100644 --- a/content/news/2022-11-30/111/index.md +++ b/content/news/2022-11-30/111/index.md @@ -2,8 +2,6 @@ title: "Meet the second November update of Organic Maps" date: 2022-11-30T09:58:35+00:00 slug: "meet-the-second-november-update-of-organic-maps" -taxonomies: - news: ["Releases"] --- Meet the second November update of Organic Maps! Enjoy your travels and share your experience with us. Let's make the best privacy-focused, fastest and easiest to use offline maps [together](https://organicmaps.app/donate)! diff --git a/content/news/2022-11-30/111/index.tr.md b/content/news/2022-11-30/111/index.tr.md index 5a4dddfa..bcd9e8b8 100644 --- a/content/news/2022-11-30/111/index.tr.md +++ b/content/news/2022-11-30/111/index.tr.md @@ -2,8 +2,6 @@ title: "Organic Maps’in ikinci Kasım güncellemesi karşınızda" date: 2022-11-30T09:58:35+00:00 slug: "meet-the-second-november-update-of-organic-maps" -taxonomies: - news: ["Releases"] --- Organic Maps’in ikinci Kasım güncellemesi karşınızda! Seyahatlerinizin tadını çıkarın ve deneyiminizi bizimle paylaşın. Gizlilik odaklı, en hızlı, kullanımı en kolay olan en iyi çevrimdışı haritaları birlikte yapalım! @@ -23,7 +21,7 @@ Organic Maps’in ikinci Kasım güncellemesi karşınızda! Seyahatlerinizin ta * Mekan Sayfasında yerin adı artık yerel dilde gösteriliyor * Yerin kapanmasına tam olarak 1 saat kaldığında daha iyi şekilde gösteriliyor -🗺️ Stiller +🗺️ Stiller * Bazı yanlış örtüşen tipler düzeltildi * highway=busway (otobüs yolu) ve fizyoterapist kategorisi eklendi * Artık adalar ve takımadalar dünya haritasında gösteriliyor @@ -39,6 +37,6 @@ Organic Maps’in ikinci Kasım güncellemesi karşınızda! Seyahatlerinizin ta 🖥️ Desktop (Linux, macOS, Windows) * GCC-12'de yapı hataları düzeltildi * Fareyi kullanarak haritayı sürüklerken oluşan hatalar düzeltildi -* "+" tuşu artık haritayı yakınlaştırıyor +* "+" tuşu artık haritayı yakınlaştırıyor * Mac'lerde yüksek DPI ekranlarda yüksek çözünürlüklü simgeler kullanılıyor * WSL ve masaüstü uygulamasını çalıştırma ile ilgili belgeleri iyileştirildi (yerel Windows sürümü [henüz hazır değil](https://github.com/organicmaps/organicmaps/tree/windows), ilgileniyorsanız lütfen bize bildirin) diff --git a/content/news/2022-11-30/_index.md b/content/news/2022-11-30/_index.md index bf211b15..02e56247 100644 --- a/content/news/2022-11-30/_index.md +++ b/content/news/2022-11-30/_index.md @@ -1,4 +1,4 @@ --- +date: 2022-11-30 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2022-11-30/_index.tr.md b/content/news/2022-11-30/_index.tr.md index bf211b15..02e56247 100644 --- a/content/news/2022-11-30/_index.tr.md +++ b/content/news/2022-11-30/_index.tr.md @@ -1,4 +1,4 @@ --- +date: 2022-11-30 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2022-12-02/113/index.md b/content/news/2022-12-02/113/index.md index 496b6eb8..3f67c7f3 100644 --- a/content/news/2022-12-02/113/index.md +++ b/content/news/2022-12-02/113/index.md @@ -2,8 +2,6 @@ title: The Hiking Club recommends Organic Maps to its clients date: 2022-12-02T08:42:36+00:00 slug: "it-s-inspiring-to-know-that-what-we-do-helps-people" -taxonomies: - news: ["Press"] --- It's inspiring to know that what we do helps people. Organic Maps is great for many outdoor activities, including hiking. If you are considering the Alps 🏔 for mountain hiking, you can turn to the experts on this subject: [The Hiking Club](https://www.thehiking.club/). They have a successful history of preparing and planning for long mountain trips. diff --git a/content/news/2022-12-02/113/index.ru.md b/content/news/2022-12-02/113/index.ru.md index 7b1b999d..24d8f5d5 100644 --- a/content/news/2022-12-02/113/index.ru.md +++ b/content/news/2022-12-02/113/index.ru.md @@ -2,8 +2,6 @@ title: The Hiking Club рекомендует Organic Maps своим клиентам date: 2022-12-02T08:42:36+00:00 slug: "it-s-inspiring-to-know-that-what-we-do-helps-people" -taxonomies: - news: ["Press"] --- Приятно осознавать, что то, что мы делаем, помогает людям. Organic Maps прекрасно подходит для разных активностей, в том числе для походов по горам. Если вам интересны Альпы, тогда можно обратиться к экспертам по этому вопросу: [The Hiking Club](https://www.thehiking.club/). Ребята давно уже занимаются подготовкой и планированием длительных путешествий по Альпам. Теперь [The Hiking Club рекомендует](https://www.thehiking.club/blog/the-hiking-club-partners-with-organic-maps) всем своим клиентам Organic Maps. И это здорово, потому что самое важное в горах — не заблудиться, и сэкономить заряд батареи вашего устройства. А здесь мы (по нашему скромному мнению 😉) лучшие! diff --git a/content/news/2022-12-02/113/index.tr.md b/content/news/2022-12-02/113/index.tr.md index 0e2cea3f..b9f7f6bf 100644 --- a/content/news/2022-12-02/113/index.tr.md +++ b/content/news/2022-12-02/113/index.tr.md @@ -2,8 +2,6 @@ title: The Hiking Club kullanıcılarına Organic Maps'i öneriyor date: 2022-12-02T08:42:36+00:00 slug: "it-s-inspiring-to-know-that-what-we-do-helps-people" -taxonomies: - news: ["Press"] --- Yaptığımız işin insanlara yardımcı olduğunu bilmek ilham verici. Organic Maps, doğa yürüyüşü de dahil olmak üzere birçok açık hava etkinliği için mükemmel bir uygulamadır. Dağ yürüyüşü için Alpleri🏔 düşünüyorsanız, bu konunun uzmanlarına başvurabilirsiniz: [The Hiking Club](https://www.thehiking.club/). Uzun dağ gezileri için hazırlık ve planlama konusunda başarılı bir geçmişe sahipler. diff --git a/content/news/2022-12-02/_index.md b/content/news/2022-12-02/_index.md index bf211b15..aa7d2eef 100644 --- a/content/news/2022-12-02/_index.md +++ b/content/news/2022-12-02/_index.md @@ -1,4 +1,4 @@ --- +date: 2022-12-02 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2022-12-02/_index.ru.md b/content/news/2022-12-02/_index.ru.md index bf211b15..aa7d2eef 100644 --- a/content/news/2022-12-02/_index.ru.md +++ b/content/news/2022-12-02/_index.ru.md @@ -1,4 +1,4 @@ --- +date: 2022-12-02 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2022-12-02/_index.tr.md b/content/news/2022-12-02/_index.tr.md index bf211b15..aa7d2eef 100644 --- a/content/news/2022-12-02/_index.tr.md +++ b/content/news/2022-12-02/_index.tr.md @@ -1,4 +1,4 @@ --- +date: 2022-12-02 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2022-12-23/122/index.cs.md b/content/news/2022-12-23/122/index.cs.md index 48ee5916..375365a4 100644 --- a/content/news/2022-12-23/122/index.cs.md +++ b/content/news/2022-12-23/122/index.cs.md @@ -2,8 +2,6 @@ title: "Přejeme vám veselé Vánoce 🎅 a šťastný nový rok 🎄" date: 2022-12-23T23:02:13+00:00 slug: "we-wish-you-a-merry-christmas-and-a-happy-new-year" -taxonomies: - news: ["Releases"] --- Přejeme vám veselé Vánoce 🎅 a šťastný nový rok 🎄! Nejlepším dárkem je pro nás vědomí, že děláme Správnou věc a že náš čas a úsilí někomu na planetě pomáhají 🌎. Tady je náš malý dárek 🎁 pro vás: novoroční vydání Organic Maps je dostupné v [AppStoru](https://apps.apple.com/app/organic-maps/id1567437057), [Google Play](https://play.google.com/store/apps/details?id=app.organicmaps), Huawei [AppGallery](https://appgallery.huawei.com/#/app/C104325611?local=en) a [FDroidu](https://f-droid.org/en/packages/app.organicmaps/)! diff --git a/content/news/2022-12-23/122/index.it.md b/content/news/2022-12-23/122/index.it.md index 40f80bce..70318ba0 100644 --- a/content/news/2022-12-23/122/index.it.md +++ b/content/news/2022-12-23/122/index.it.md @@ -2,8 +2,6 @@ title: "Vi auguriamo un Buon Natale 🎅 e un Felice Anno Nuovo 🎄" date: 2022-12-23T23:02:13+00:00 slug: "we-wish-you-a-merry-christmas-and-a-happy-new-year" -taxonomies: - news: ["Releases"] --- Vi auguriamo un Buon Natale 🎅 e un Felice Anno Nuovo 🎄! Il miglior regalo per noi è sapere che stiamo facendo La Cosa Giusta e che il nostro tempo e i nostri sforzi stanno aiutando qualcuno sul pianeta 🌎. Ecco il nostro piccolo regalo 🎁 per te: una versione di Capodanno di Organic Maps è disponibile in [AppStore](https://apps.apple.com/app/organic-maps/id1567437057), [Google Play](https://play.google.com/store/apps/details?id=app.organicmaps), Huawei [AppGallery](https://appgallery.huawei.com/#/app/C104325611?local=en) e [FDroid]( https://f-droid.org/en/packages/app.organicmaps/)! diff --git a/content/news/2022-12-23/122/index.md b/content/news/2022-12-23/122/index.md index 246f1392..348952fe 100644 --- a/content/news/2022-12-23/122/index.md +++ b/content/news/2022-12-23/122/index.md @@ -2,8 +2,6 @@ title: "We wish you a Merry Christmas 🎅 and a Happy New Year 🎄" date: 2022-12-23T23:02:13+00:00 slug: "we-wish-you-a-merry-christmas-and-a-happy-new-year" -taxonomies: - news: ["Releases"] --- We wish you a Merry Christmas 🎅 and a Happy New Year 🎄! The best gift for us is to know that we are doing The Right Thing and that our time and efforts are helping someone on the Planet 🌎. Meet our small gift 🎁 to you: a New Year's release of Organic Maps is available in [AppStore](https://apps.apple.com/app/organic-maps/id1567437057), [Google Play](https://play.google.com/store/apps/details?id=app.organicmaps), Huawei [AppGallery](https://appgallery.huawei.com/#/app/C104325611?local=en), and [FDroid](https://f-droid.org/en/packages/app.organicmaps/)! diff --git a/content/news/2022-12-23/122/index.ru.md b/content/news/2022-12-23/122/index.ru.md index bc349a3a..7acfe4b0 100644 --- a/content/news/2022-12-23/122/index.ru.md +++ b/content/news/2022-12-23/122/index.ru.md @@ -2,8 +2,6 @@ title: "Мы желаем вам счастливого Рождества 🎅 и Нового года 🎄" date: 2022-12-23T23:02:13+00:00 slug: "we-wish-you-a-merry-christmas-and-a-happy-new-year" -taxonomies: - news: ["Releases"] --- Мы поздравляем вас с Рождеством 🎅 и Новым годом 🎄! Лучший подарок для нас — это знать, что мы делаем что-то нужное и полезное. Встречайте наш маленький подарок 🎁 вам: новогодний релиз Organic Maps доступен в [AppStore](https://apps.apple.com/app/organic-maps/id1567437057), [Google Play](https://play.google.com/store/apps/details?id=app.organicmaps), Huawei [AppGallery](https://appgallery.huawei.com/#/app/C104325611?local=en) и [FDroid](https://f-droid.org/en/packages/app.organicmaps/)! diff --git a/content/news/2022-12-23/122/index.tr.md b/content/news/2022-12-23/122/index.tr.md index 3e3a8b93..5fac34a4 100644 --- a/content/news/2022-12-23/122/index.tr.md +++ b/content/news/2022-12-23/122/index.tr.md @@ -2,8 +2,6 @@ title: "Mutlu yıllar dileriz 🎄" date: 2022-12-23T23:02:13+00:00 slug: "we-wish-you-a-merry-christmas-and-a-happy-new-year" -taxonomies: - news: ["Releases"] --- Mutlu yıllar dileriz 🎄! Bizim için en güzel hediye; doğru şeyi yaptığımızı, zamanımızın ve çabalarımızın gezegendeki birilerine yardımcı olduğunu bilmektir 🌎. İşte size bizden küçük bir hediye 🎁: Yeni yılın Organic Maps güncellemesi [AppStore](https://apps.apple.com/app/organic-maps/id1567437057), [Google Play](https://play.google.com/store/apps/details?id=app.organicmaps), Huawei [AppGallery](https://appgallery.huawei.com/#/app/C104325611?local=en) ve [FDroid](https://f-droid.org/en/packages/app.organicmaps/)'de yayınlandı! diff --git a/content/news/2022-12-23/_index.cs.md b/content/news/2022-12-23/_index.cs.md index bf211b15..484a553c 100644 --- a/content/news/2022-12-23/_index.cs.md +++ b/content/news/2022-12-23/_index.cs.md @@ -1,4 +1,4 @@ --- +date: 2022-12-23 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2022-12-23/_index.it.md b/content/news/2022-12-23/_index.it.md index bf211b15..484a553c 100644 --- a/content/news/2022-12-23/_index.it.md +++ b/content/news/2022-12-23/_index.it.md @@ -1,4 +1,4 @@ --- +date: 2022-12-23 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2022-12-23/_index.md b/content/news/2022-12-23/_index.md index bf211b15..484a553c 100644 --- a/content/news/2022-12-23/_index.md +++ b/content/news/2022-12-23/_index.md @@ -1,4 +1,4 @@ --- +date: 2022-12-23 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2022-12-23/_index.ru.md b/content/news/2022-12-23/_index.ru.md index bf211b15..484a553c 100644 --- a/content/news/2022-12-23/_index.ru.md +++ b/content/news/2022-12-23/_index.ru.md @@ -1,4 +1,4 @@ --- +date: 2022-12-23 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2022-12-23/_index.tr.md b/content/news/2022-12-23/_index.tr.md index bf211b15..484a553c 100644 --- a/content/news/2022-12-23/_index.tr.md +++ b/content/news/2022-12-23/_index.tr.md @@ -1,4 +1,4 @@ --- +date: 2022-12-23 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2023-01-01/_index.it.md b/content/news/2023-01-01/_index.it.md index bf211b15..8ce05786 100644 --- a/content/news/2023-01-01/_index.it.md +++ b/content/news/2023-01-01/_index.it.md @@ -1,4 +1,4 @@ --- +date: 2023-01-01 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2023-01-01/_index.md b/content/news/2023-01-01/_index.md index bf211b15..8ce05786 100644 --- a/content/news/2023-01-01/_index.md +++ b/content/news/2023-01-01/_index.md @@ -1,4 +1,4 @@ --- +date: 2023-01-01 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2023-01-15/_index.it.md b/content/news/2023-01-15/_index.it.md index bf211b15..32646449 100644 --- a/content/news/2023-01-15/_index.it.md +++ b/content/news/2023-01-15/_index.it.md @@ -1,4 +1,4 @@ --- +date: 2023-01-15 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2023-01-15/_index.md b/content/news/2023-01-15/_index.md index bf211b15..32646449 100644 --- a/content/news/2023-01-15/_index.md +++ b/content/news/2023-01-15/_index.md @@ -1,4 +1,4 @@ --- +date: 2023-01-15 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2023-01-20/_index.it.md b/content/news/2023-01-20/_index.it.md index bf211b15..be32b9b7 100644 --- a/content/news/2023-01-20/_index.it.md +++ b/content/news/2023-01-20/_index.it.md @@ -1,4 +1,4 @@ --- +date: 2023-01-20 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2023-01-20/_index.md b/content/news/2023-01-20/_index.md index bf211b15..be32b9b7 100644 --- a/content/news/2023-01-20/_index.md +++ b/content/news/2023-01-20/_index.md @@ -1,4 +1,4 @@ --- +date: 2023-01-20 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2023-01-24/_index.it.md b/content/news/2023-01-24/_index.it.md index bf211b15..e8f85ab4 100644 --- a/content/news/2023-01-24/_index.it.md +++ b/content/news/2023-01-24/_index.it.md @@ -1,4 +1,4 @@ --- +date: 2023-01-24 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2023-01-24/_index.md b/content/news/2023-01-24/_index.md index bf211b15..e8f85ab4 100644 --- a/content/news/2023-01-24/_index.md +++ b/content/news/2023-01-24/_index.md @@ -1,4 +1,4 @@ --- +date: 2023-01-24 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2023-01-27/132/index.cs.md b/content/news/2023-01-27/132/index.cs.md index c27e4025..9c177c32 100644 --- a/content/news/2023-01-27/132/index.cs.md +++ b/content/news/2023-01-27/132/index.cs.md @@ -2,8 +2,6 @@ title: "Přinášíme aktualizaci Organic Maps pro leden 2023" date: 2023-01-27T21:26:12+00:00 slug: "meet-the-january-2023-update-of-organic-maps" -taxonomies: - news: ["Releases"] --- Přinášíme aktualizaci Organic Maps pro leden 2023! Doufáme, že jste měli skvělé prázdniny a užili si cestování, navštěvování zajímavých míst a potkávání zajímavých lidí. diff --git a/content/news/2023-01-27/132/index.es.md b/content/news/2023-01-27/132/index.es.md index f2b93792..a6e67ab9 100644 --- a/content/news/2023-01-27/132/index.es.md +++ b/content/news/2023-01-27/132/index.es.md @@ -2,8 +2,6 @@ title: "Conozca la actualización de enero de 2023 de Organic Maps" date: 2023-01-27T21:26:12+00:00 slug: "actualizacion-enero-2023-organic-maps" -taxonomies: - news: ["Releases"] --- Le damos la bienvenida a la actualización de enero de 2023 de Organic Maps. Esperamos que haya tenido un período vacacional espléndido y haya disfrutado de sitios y personas interesantes. diff --git a/content/news/2023-01-27/132/index.it.md b/content/news/2023-01-27/132/index.it.md index 0aee9446..a6a4f182 100644 --- a/content/news/2023-01-27/132/index.it.md +++ b/content/news/2023-01-27/132/index.it.md @@ -2,8 +2,6 @@ title: "Siamo lieti di annunciare il nostro primo aggiornamento del 2023" date: 2023-01-27T21:26:12+00:00 slug: "we-are-excited-to-announce-our-first-update-of-2023" -taxonomies: - news: ["Releases"] --- Siamo lieti di annunciare il nostro primo aggiornamento del 2023. Abbiamo incluso un elenco completo di miglioramenti, come sempre, grazie al supporto ed all'input della nostra devota comunità Organic Maps. Grazie a tutti dell'ottimo lavoro. 🙏 diff --git a/content/news/2023-01-27/132/index.md b/content/news/2023-01-27/132/index.md index 33778775..32e2663d 100644 --- a/content/news/2023-01-27/132/index.md +++ b/content/news/2023-01-27/132/index.md @@ -2,8 +2,6 @@ title: "We are excited to announce our first update of 2023" date: 2023-01-27T21:26:12+00:00 slug: "we-are-excited-to-announce-our-first-update-of-2023" -taxonomies: - news: ["Releases"] --- We are excited to announce our first update of 2023. We’ve included a comprehensive list of improvements, as always, thanks to the support and input from our dedicated Organic Maps community. Great work by all of us. 🙏 diff --git a/content/news/2023-01-27/132/index.nl.md b/content/news/2023-01-27/132/index.nl.md index 7393cb5c..a6b3cd15 100644 --- a/content/news/2023-01-27/132/index.nl.md +++ b/content/news/2023-01-27/132/index.nl.md @@ -2,8 +2,6 @@ title: "Maak kennis met de januari 2023 update van Organic Maps" date: 2023-01-27T21:26:12+00:00 slug: "maak-kennis-met-de-januari-2023-update-van-organic-maps" -taxonomies: - news: ["Releases"] --- Maak kennis met de januari 2023 update van Organic Maps! We hopen dat jullie fijne feestdagen hebben gehad, en ervan hebben genoten om te reizen, interessante plekken te bezoeken, en interessante mensen te ontmoeten. diff --git a/content/news/2023-01-27/132/index.pt-BR.md b/content/news/2023-01-27/132/index.pt-BR.md index 1926e751..44371801 100644 --- a/content/news/2023-01-27/132/index.pt-BR.md +++ b/content/news/2023-01-27/132/index.pt-BR.md @@ -2,8 +2,6 @@ title: "Conheça a atualização de janeiro de 2023 do Organic Maps" date: 2023-01-27T21:26:12+00:00 slug: "conheca-atualizacao-janeiro-2023-organic-maps" -taxonomies: - news: ["Releases"] --- Conheça a atualização de janeiro de 2023 do Organic Maps! esperamos que você tenha tido um ótimo período de festas e conseguido viajar e visitar lugares interessantes, além de conhecer pessoas divertidas. diff --git a/content/news/2023-01-27/132/index.ru.md b/content/news/2023-01-27/132/index.ru.md index 551a7927..dbabfa4d 100644 --- a/content/news/2023-01-27/132/index.ru.md +++ b/content/news/2023-01-27/132/index.ru.md @@ -2,8 +2,6 @@ title: "Мы рады объявить о нашем первом обновлении 2023 года" date: 2023-01-27T21:26:12+00:00 slug: "we-are-excited-to-announce-our-first-update-of-2023" -taxonomies: - news: ["Releases"] --- Мы рады объявить о нашем первом обновлении в 2023 году! Ниже полный список улучшений, как всегда, благодаря поддержке и вкладу нашего сообщества Organic Maps. Отличная работа! 🙏 diff --git a/content/news/2023-01-27/132/index.tr.md b/content/news/2023-01-27/132/index.tr.md index 0733b92b..1591f57f 100644 --- a/content/news/2023-01-27/132/index.tr.md +++ b/content/news/2023-01-27/132/index.tr.md @@ -2,8 +2,6 @@ title: "Organic Maps'in Ocak 2023 güncellemesi ile tanışın" date: 2023-01-27T21:26:12+00:00 slug: "meet-the-january-2023-update-of-organic-maps" -taxonomies: - news: ["Releases"] --- Organic Maps'in Ocak 2023 güncellemesiyle tanışın! Umarız harika bir tatil geçirmişsinizdir ve seyahat etmekten, ilginç yerleri görmekten, başka kültürlere sahip insanlarla tanışmaktan keyif almışsınızdır. diff --git a/content/news/2023-01-27/_index.cs.md b/content/news/2023-01-27/_index.cs.md index bf211b15..4a6ebd35 100644 --- a/content/news/2023-01-27/_index.cs.md +++ b/content/news/2023-01-27/_index.cs.md @@ -1,4 +1,4 @@ --- +date: 2023-01-27 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2023-01-27/_index.es.md b/content/news/2023-01-27/_index.es.md index bf211b15..4a6ebd35 100644 --- a/content/news/2023-01-27/_index.es.md +++ b/content/news/2023-01-27/_index.es.md @@ -1,4 +1,4 @@ --- +date: 2023-01-27 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2023-01-27/_index.it.md b/content/news/2023-01-27/_index.it.md index bf211b15..4a6ebd35 100644 --- a/content/news/2023-01-27/_index.it.md +++ b/content/news/2023-01-27/_index.it.md @@ -1,4 +1,4 @@ --- +date: 2023-01-27 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2023-01-27/_index.md b/content/news/2023-01-27/_index.md index bf211b15..4a6ebd35 100644 --- a/content/news/2023-01-27/_index.md +++ b/content/news/2023-01-27/_index.md @@ -1,4 +1,4 @@ --- +date: 2023-01-27 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2023-01-27/_index.nl.md b/content/news/2023-01-27/_index.nl.md index bf211b15..4a6ebd35 100644 --- a/content/news/2023-01-27/_index.nl.md +++ b/content/news/2023-01-27/_index.nl.md @@ -1,4 +1,4 @@ --- +date: 2023-01-27 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2023-01-27/_index.pt-BR.md b/content/news/2023-01-27/_index.pt-BR.md index bf211b15..4a6ebd35 100644 --- a/content/news/2023-01-27/_index.pt-BR.md +++ b/content/news/2023-01-27/_index.pt-BR.md @@ -1,4 +1,4 @@ --- +date: 2023-01-27 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2023-01-27/_index.ru.md b/content/news/2023-01-27/_index.ru.md index bf211b15..4a6ebd35 100644 --- a/content/news/2023-01-27/_index.ru.md +++ b/content/news/2023-01-27/_index.ru.md @@ -1,4 +1,4 @@ --- +date: 2023-01-27 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2023-01-27/_index.tr.md b/content/news/2023-01-27/_index.tr.md index bf211b15..4a6ebd35 100644 --- a/content/news/2023-01-27/_index.tr.md +++ b/content/news/2023-01-27/_index.tr.md @@ -1,4 +1,4 @@ --- +date: 2023-01-27 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2023-02-14/140/index.fr.md b/content/news/2023-02-14/140/index.fr.md index a11f2ca5..4cf4b0fc 100644 --- a/content/news/2023-02-14/140/index.fr.md +++ b/content/news/2023-02-14/140/index.fr.md @@ -2,8 +2,6 @@ title: "Cette version comprend les cartes mises à jour pour la Turquie et la Syrie, incluant les changements de l'Humanitarian OpenStreetMap Team après le récent tremblement de terre" date: 2023-02-14T23:23:55+00:00 slug: "this-release-includes-the-updated-map-data-for-turkey-and-syria-including-the-humanitarian-openstreetmap-team-changes-after-the-recent-earthquake" -taxonomies: - news: ["Releases"] --- Cette version comprend les cartes mises à jour pour la Turquie et la Syrie, incluant les changements de l'[Humanitarian OpenStreetMap Team](https://www.hotosm.org/) après le récent tremblement de terre. Des cartes précises sont cruciales pour répondre aux catastrophes car elles peuvent fournir une aide pour préparer et guider l'aide sur place. Nous remercions toutes les personnes ayant contribué à OpenStreetMap. Vous pouvez contribuer dès à présent en suivant le [lien suivant](https://www.openstreetmap.org/user/Heather%20Leson/diary/400951). diff --git a/content/news/2023-02-14/140/index.it.md b/content/news/2023-02-14/140/index.it.md index b71320ad..af070078 100644 --- a/content/news/2023-02-14/140/index.it.md +++ b/content/news/2023-02-14/140/index.it.md @@ -2,8 +2,6 @@ title: "Questa versione include i dati cartografici aggiornati per la Turchia e la Siria, comprese le modifiche apportate dal team umanitario di OpenStreetMap dopo il recente terremoto" date: 2023-02-14T23:23:55+00:00 slug: "this-release-includes-the-updated-map-data-for-turkey-and-syria-including-the-humanitarian-openstreetmap-team-changes-after-the-recent-earthquake" -taxonomies: - news: ["Releases"] --- Questa versione include i dati cartografici aggiornati per la Turchia e la Siria, incluse le ultime modifiche apportate dall'[Humanitarian OpenStreetMap Team](https://www.hotosm.org/) dopo il recente terremoto. Mappe accurate sono fondamentali nella risposta ai disastri, in quanto possono aiutare con una migliore pianificazione e navigazione a coloro che aiutano sul campo. Apprezziamo tutti coloro che hanno contribuito a OpenStreetMap. Se desideri iniziare anche tu a contribuire ora, segui [questo link](https://www.openstreetmap.org/user/Heather%20Leson/diary/400951). diff --git a/content/news/2023-02-14/140/index.md b/content/news/2023-02-14/140/index.md index 8aa6864d..83a6eb66 100644 --- a/content/news/2023-02-14/140/index.md +++ b/content/news/2023-02-14/140/index.md @@ -2,8 +2,6 @@ title: "This release includes the updated map data for Turkey and Syria, including the Humanitarian OpenStreetMap Team changes after the recent earthquake" date: 2023-02-14T23:23:55+00:00 slug: "this-release-includes-the-updated-map-data-for-turkey-and-syria-including-the-humanitarian-openstreetmap-team-changes-after-the-recent-earthquake" -taxonomies: - news: ["Releases"] --- This release includes the updated map data for Turkey and Syria, including the [Humanitarian OpenStreetMap Team](https://www.hotosm.org/) changes after the recent earthquake. Accurate maps are crucial in disaster response, as they may assist with better planning and navigation for those who help on the ground. We appreciate everyone who has ever contributed to the OpenStreetMap. If you would like to start contributing now, please follow [this link](https://www.openstreetmap.org/user/Heather%20Leson/diary/400951). diff --git a/content/news/2023-02-14/140/index.nl.md b/content/news/2023-02-14/140/index.nl.md index 0f221f3f..1d1704eb 100644 --- a/content/news/2023-02-14/140/index.nl.md +++ b/content/news/2023-02-14/140/index.nl.md @@ -2,8 +2,6 @@ title: "Deze versie bevat geüpdatete kaartengegevens voor Turkije en Syrië, inclusief de Humanitarian OpenStreetMap Team aanpassingen na de recente aardbeving" date: 2023-02-14T23:23:55+00:00 slug: "deze-versie-bevat-geupdatete-kaartengegevens-voor-turkije-en-syrie-inclusief-de-humanitarian-openstreetmap-teamhttpswwwhotosmorg-aanpassingen-na-de-recente-aardbeving" -taxonomies: - news: ["Releases"] --- Deze versie bevat geüpdatete kaartengegevens voor Turkije en Syrië, inclusief de [Humanitarian OpenStreetMap Team](https://www.hotosm.org/) aanpassingen na de recente aardbeving. Nauwkeurige kaarten zijn cruciaal in ramp-respons, omdat ze helpen bij betere planning en navigatie voor helpers in het veld. We zijn iedereen die ooit heeft bijgedraagd aan OpenStreetMap dankbaar. Als je nu wil beginnen met bijdragen, volg dan [deze link](https://www.openstreetmap.org/user/Heather%20Leson/diary/400951). diff --git a/content/news/2023-02-14/140/index.pt-BR.md b/content/news/2023-02-14/140/index.pt-BR.md index 0fc8d107..d0fee0fc 100644 --- a/content/news/2023-02-14/140/index.pt-BR.md +++ b/content/news/2023-02-14/140/index.pt-BR.md @@ -2,8 +2,6 @@ title: "Esta versão inclui os dados de mapa atualizados para a Turquia e a Síria, incluindo as alterações do Humanitarian OpenStreetMap Team (HOT) após o recente terremoto" date: 2023-02-14T23:23:55+00:00 slug: "esta-versao-inclui-dados-atualizados-para-turquia-siria-incluindo-alterações-hot-após-recente-terremoto" -taxonomies: - news: ["Releases"] --- Esta versão inclui os dados de mapa atualizados para a Turquia e a Síria, incluindo as alterações do [Humanitarian OpenStreetMap Team](https://www.hotosm.org/) (HOT) após o recente terremoto. Mapas precisos são cruciais na resposta a desastres, pois podem ajudar com um melhor planejamento e navegação para aqueles que ajudam in loco. Agradecemos a todos que já contribuíram para o OpenStreetMap. Se você gostaria de começar a contribuir agora, por favor siga [este link](https://www.openstreetmap.org/user/Heather%20Leson/diary/400951). diff --git a/content/news/2023-02-14/140/index.ru.md b/content/news/2023-02-14/140/index.ru.md index 65761482..09487791 100644 --- a/content/news/2023-02-14/140/index.ru.md +++ b/content/news/2023-02-14/140/index.ru.md @@ -2,8 +2,6 @@ title: "Обновлённые данные для Турции и Сирии после землетрясения" date: 2023-02-14T23:23:55+00:00 slug: "this-release-includes-the-updated-map-data-for-turkey-and-syria-including-the-humanitarian-openstreetmap-team-changes-after-the-recent-earthquake" -taxonomies: - news: ["Releases"] --- Эта версия Organic Maps включает обновленные картографические данные для Турции и Сирии, в том числе изменения, внесенные [Humanitarian OpenStreetMap Team](https://www.hotosm.org/) после недавнего землетрясения. Точные карты имеют решающее значение при ликвидации последствий стихийных бедствий, поскольку они могут помочь в лучшем планировании и навигации тем, кто помогает на местах. Мы признательны всем, кто когда-либо вносил свой вклад в [OpenStreetMap](https://openstreetmap.org). Если вы тоже хотите помочь, пожалуйста, перейдите по [этой ссылке](https://www.openstreetmap.org/user/Heather%20Leson/diary/400951). diff --git a/content/news/2023-02-14/140/index.tr.md b/content/news/2023-02-14/140/index.tr.md index ede84cd9..df0c3c59 100644 --- a/content/news/2023-02-14/140/index.tr.md +++ b/content/news/2023-02-14/140/index.tr.md @@ -2,8 +2,6 @@ title: "Geçmiş Olsun Türkiye🇹🇷" date: 2023-02-14T23:23:55+00:00 slug: "this-release-includes-the-updated-map-data-for-turkey-and-syria-including-the-humanitarian-openstreetmap-team-changes-after-the-recent-earthquake" -taxonomies: - news: ["Releases"] --- Kahramanmaraş ve çevre illerimizde gerçekleşen depremin büyük üzüntüsü içerisindeyiz. Kalbimiz depremden etkilenen herkesle birlikte... diff --git a/content/news/2023-02-14/140/index.zh-Hans.md b/content/news/2023-02-14/140/index.zh-CN.md similarity index 96% rename from content/news/2023-02-14/140/index.zh-Hans.md rename to content/news/2023-02-14/140/index.zh-CN.md index a7c7d5ae..4ce68be7 100644 --- a/content/news/2023-02-14/140/index.zh-Hans.md +++ b/content/news/2023-02-14/140/index.zh-CN.md @@ -2,8 +2,6 @@ title: "此版本已含HOTOSM团队在土耳其和叙利亚地震后所做的更改" date: 2023-02-14T23:23:55+00:00 slug: "this-release-includes-the-updated-map-data-for-turkey-and-syria-including-the-humanitarian-openstreetmap-team-changes-after-the-recent-earthquake" -taxonomies: - news: ["Releases"] --- 此版本包括更新的土耳其和叙利亚地图数据,包括[人道主义 OpenStreetMap 团队](https://www.hotosm.org/)在地震后做出的贡献。准确的地图对于灾难后的应急响应至关重要,因为它们可以更好地为当地的救援人员提供路线指引。我们感谢所有为 OpenStreetMap 做出过贡献的人。若您也想参与贡献,可点击[此处](https://www.openstreetmap.org/user/Heather%20Leson/diary/400951)。 @@ -20,7 +18,7 @@ Android * 修复了编辑器中不可见的错误消息 iOS -* 修复了打开 om:// 和 链接时的崩溃问题 +* 修复了打开 om:// 和 链接时的崩溃问题 * 在 om:// 和 链接中显示共享 POI 的名称 查看更多适用于 Android 和 iOS 的 API 和 URL 模式示例,请访问 diff --git a/content/news/2023-02-14/_index.fr.md b/content/news/2023-02-14/_index.fr.md index bf211b15..e797121d 100644 --- a/content/news/2023-02-14/_index.fr.md +++ b/content/news/2023-02-14/_index.fr.md @@ -1,4 +1,4 @@ --- +date: 2023-02-14 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2023-02-14/_index.it.md b/content/news/2023-02-14/_index.it.md index bf211b15..e797121d 100644 --- a/content/news/2023-02-14/_index.it.md +++ b/content/news/2023-02-14/_index.it.md @@ -1,4 +1,4 @@ --- +date: 2023-02-14 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2023-02-14/_index.md b/content/news/2023-02-14/_index.md index bf211b15..e797121d 100644 --- a/content/news/2023-02-14/_index.md +++ b/content/news/2023-02-14/_index.md @@ -1,4 +1,4 @@ --- +date: 2023-02-14 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2023-02-14/_index.nl.md b/content/news/2023-02-14/_index.nl.md index bf211b15..e797121d 100644 --- a/content/news/2023-02-14/_index.nl.md +++ b/content/news/2023-02-14/_index.nl.md @@ -1,4 +1,4 @@ --- +date: 2023-02-14 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2023-02-14/_index.pt-BR.md b/content/news/2023-02-14/_index.pt-BR.md index bf211b15..e797121d 100644 --- a/content/news/2023-02-14/_index.pt-BR.md +++ b/content/news/2023-02-14/_index.pt-BR.md @@ -1,4 +1,4 @@ --- +date: 2023-02-14 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2023-02-14/_index.ru.md b/content/news/2023-02-14/_index.ru.md index bf211b15..e797121d 100644 --- a/content/news/2023-02-14/_index.ru.md +++ b/content/news/2023-02-14/_index.ru.md @@ -1,4 +1,4 @@ --- +date: 2023-02-14 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2023-02-14/_index.tr.md b/content/news/2023-02-14/_index.tr.md index bf211b15..e797121d 100644 --- a/content/news/2023-02-14/_index.tr.md +++ b/content/news/2023-02-14/_index.tr.md @@ -1,4 +1,4 @@ --- +date: 2023-02-14 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2023-02-14/_index.zh-CN.md b/content/news/2023-02-14/_index.zh-CN.md index bf211b15..e797121d 100644 --- a/content/news/2023-02-14/_index.zh-CN.md +++ b/content/news/2023-02-14/_index.zh-CN.md @@ -1,4 +1,4 @@ --- +date: 2023-02-14 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2023-02-14/_index.zh-Hans.md b/content/news/2023-02-14/_index.zh-Hans.md deleted file mode 100644 index bf211b15..00000000 --- a/content/news/2023-02-14/_index.zh-Hans.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -sort_by: date -template: news/date_section.html ---- \ No newline at end of file diff --git a/content/news/2023-02-17/_index.it.md b/content/news/2023-02-17/_index.it.md index bf211b15..eddc1d39 100644 --- a/content/news/2023-02-17/_index.it.md +++ b/content/news/2023-02-17/_index.it.md @@ -1,4 +1,4 @@ --- +date: 2023-02-17 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2023-02-17/_index.md b/content/news/2023-02-17/_index.md index bf211b15..eddc1d39 100644 --- a/content/news/2023-02-17/_index.md +++ b/content/news/2023-02-17/_index.md @@ -1,4 +1,4 @@ --- +date: 2023-02-17 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2023-02-28/_index.it.md b/content/news/2023-02-28/_index.it.md index bf211b15..78740523 100644 --- a/content/news/2023-02-28/_index.it.md +++ b/content/news/2023-02-28/_index.it.md @@ -1,4 +1,4 @@ --- +date: 2023-02-28 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2023-02-28/_index.md b/content/news/2023-02-28/_index.md index bf211b15..78740523 100644 --- a/content/news/2023-02-28/_index.md +++ b/content/news/2023-02-28/_index.md @@ -1,4 +1,4 @@ --- +date: 2023-02-28 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2023-02-28/_index.tr.md b/content/news/2023-02-28/_index.tr.md index bf211b15..782096ea 100644 --- a/content/news/2023-02-28/_index.tr.md +++ b/content/news/2023-02-28/_index.tr.md @@ -1,4 +1,4 @@ --- +date: 2023-02-28 sort_by: date -template: news/date_section.html ---- \ No newline at end of file +--- diff --git a/content/news/2023-03-09/144/index.md b/content/news/2023-03-09/144/index.md index c293e925..ec7311fb 100644 --- a/content/news/2023-03-09/144/index.md +++ b/content/news/2023-03-09/144/index.md @@ -2,8 +2,6 @@ title: "Finally, iPad users can use their keyboards without Organic Maps freezing, and Android users can enjoy reading Wiki articles for bookmarked places 😉 We''ve also improved the search function, particularly for users who search by categories" date: 2023-03-09T11:37:31+00:00 slug: "finally-ipad-users-can-use-their-keyboards-without-organic-maps-freezing-and-android-users-can-enjoy-reading-wiki-articles-for-bookmarked-places-we-ve-also-improved-the-search-function-particularly-for-users-who-search-by-categories" -taxonomies: - news: ["Releases"] --- Finally, iPad users can use their keyboards without Organic Maps freezing, and Android users can enjoy reading Wiki articles for bookmarked places 😉 We've also improved the search function, particularly for users who search by categories. Specifically, we've separated vegan and vegetarian cuisine searches 🌱and added some new POI types, such as psychotherapist, speech therapist, audiologist, and blood donation center, which were previously grouped under one 'healthcare' tag. diff --git a/content/news/2023-03-09/144/index.tr.md b/content/news/2023-03-09/144/index.tr.md index 6b7b0ef5..00c8d841 100644 --- a/content/news/2023-03-09/144/index.tr.md +++ b/content/news/2023-03-09/144/index.tr.md @@ -2,8 +2,6 @@ title: "Sonunda iPad kullanıcıları Organic Maps donmadan klavyeyi kullanabilir ve Android kullanıcıları yer imlerine eklenen yerler için Vikipedi makalelerini okumanın keyfini çıkarabilir 😉 Ayrıca, özellikle kategorilere göre arama yapan kullanıcılar için haritada arama özelliğini geliştirdik. " date: 2023-03-09T11:37:31+00:00 slug: "finally-ipad-users-can-use-their-keyboards-without-organic-maps-freezing-and-android-users-can-enjoy-reading-wiki-articles-for-bookmarked-places-we-ve-also-improved-the-search-function-particularly-for-users-who-search-by-categories" -taxonomies: - news: ["Releases"] --- Sonunda iPad kullanıcıları Organic Maps donmadan klavyeyi kullanabilir ve Android kullanıcıları yer imlerine eklenen yerler için Vikipedi makalelerini okumanın keyfini çıkarabilir 😉 Ayrıca, özellikle kategorilere göre arama yapan kullanıcılar için haritada arama özelliğini geliştirdik. Özellikle vegan ve vejetaryen mutfak aramalarını ayırdık 🌱 ve daha önce tek bir 'sağlık' etiketi altında gruplandırılan psikoterapist, konuşma terapisti, odyolog ve kan bağışı merkezi gibi bazı yeni POI (İlgi Çekici Nokta) türleri ekledik. @@ -22,7 +20,7 @@ Sonunda iPad kullanıcıları Organic Maps donmadan klavyeyi kullanabilir ve And * Tarihi harabeler artık editör aracılığıyla haritaya eklenebilir * Türkçe çeviriler iyileştirildi -iOS +iOS * iPad'lerde bir klavye bağlandığında oluşan donma sorunu düzeltildi * Rota oluşturma butonundaki gereksiz ikinci tıklama kaldırıldı * Yinelenen kat ve posta kodu hücreleri kaldırıldı diff --git a/content/news/2023-03-09/_index.md b/content/news/2023-03-09/_index.md index bf211b15..ed09056b 100644 --- a/content/news/2023-03-09/_index.md +++ b/content/news/2023-03-09/_index.md @@ -1,4 +1,4 @@ --- +date: 2023-03-09 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2023-03-09/_index.tr.md b/content/news/2023-03-09/_index.tr.md index bf211b15..8843183b 100644 --- a/content/news/2023-03-09/_index.tr.md +++ b/content/news/2023-03-09/_index.tr.md @@ -1,4 +1,4 @@ --- +date: 2023-03-09 sort_by: date -template: news/date_section.html ---- \ No newline at end of file +--- diff --git a/content/news/2023-04-06/150/index.md b/content/news/2023-04-06/150/index.md index a97923a2..3a1360fd 100644 --- a/content/news/2023-04-06/150/index.md +++ b/content/news/2023-04-06/150/index.md @@ -2,8 +2,6 @@ title: "You can easily find the nearest cannabis 🌿 store with the latest Organic Maps update" date: 2023-04-06T22:29:27+00:00 slug: "you-can-easily-find-the-nearest-cannabis-store-with-the-latest-organic-maps-update" -taxonomies: - news: ["Releases"] --- You can easily find the nearest cannabis 🌿 store with the latest Organic Maps update! Android users can test the experimental lanes suggestion while driving (don’t forget to [add lanes in your city](https://wiki.openstreetmap.org/wiki/Lanes) if they are not added yet in [OpenStreetMap.org](http://OpenStreetMap.org/)). Navigation directions should now display correctly on iPads. This update introduces new shops, such as pet grooming, motorcycle repair, and locksmithing among others. Together with our beloved contributors, we’re constantly improving Organic Maps to make it The Best Maps App! Please check out the full list of improvements: diff --git a/content/news/2023-04-06/150/index.tr.md b/content/news/2023-04-06/150/index.tr.md index ce7e5c56..b257533f 100644 --- a/content/news/2023-04-06/150/index.tr.md +++ b/content/news/2023-04-06/150/index.tr.md @@ -2,15 +2,13 @@ title: "Mutlu, Sağlıklı ve Huzur Dolu bir Ramazan dileriz" date: 2023-04-06T22:29:27+00:00 slug: "mutlu-sağlıklı-ve-huzur-dolu-ramazanlar-dileriz" -taxonomies: - news: ["Releases"] --- Mutlu, Sağlıklı ve Huzur Dolu bir Ramazan dileriz. Yeni Organic Maps güncellemesi ile size en yakın aktarı 🌿 kolayca bulabilirsiniz! Android kullanıcıları bu güncelleme ile sürüş sırasında deneysel şerit önerisini test edebilirler (şehrinizdeki şeritler henüz eklenmemişlerse OpenStreetMap org üzerinden eklemeyi unutmayın). Navigasyon yönergeleri artık iPad'lerde doğru şekilde görüntülenmelidir. Bu güncellemede evcil hayvan bakımı, motosiklet tamircisi ve çilingir gibi yeni dükkan türleri de eklendi. Sevgili katkıda bulunan gönüllülerimizle birlikte, Organic Maps'i en iyi harita uygulaması yapmak için sürekli geliştiriyoruz! Lütfen tam güncelleme notuna göz atın: -* 29 Mart tarihine ait yeni OpenStreetMap harita verileri +* 29 Mart tarihine ait yeni OpenStreetMap harita verileri * OpenStreetMap wiki bağlantıları artık Türkçe sayfalara yönlendiriyor * KML yer işaretleri artık yol kaydı verileriyle doğru bir şekilde içe aktarılıyor * Müzik ve enstrüman kategorileri editör aracılığıyla haritaya eklenebilir diff --git a/content/news/2023-04-06/_index.md b/content/news/2023-04-06/_index.md index bf211b15..683b42a3 100644 --- a/content/news/2023-04-06/_index.md +++ b/content/news/2023-04-06/_index.md @@ -1,4 +1,4 @@ --- +date: 2023-04-06 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2023-04-06/_index.tr.md b/content/news/2023-04-06/_index.tr.md index bf211b15..153a2111 100644 --- a/content/news/2023-04-06/_index.tr.md +++ b/content/news/2023-04-06/_index.tr.md @@ -1,4 +1,4 @@ --- +date: 2023-04-06 sort_by: date -template: news/date_section.html ---- \ No newline at end of file +--- diff --git a/content/news/2023-05-12/164/index.md b/content/news/2023-05-12/164/index.md index b14e301e..fc9c7817 100644 --- a/content/news/2023-05-12/164/index.md +++ b/content/news/2023-05-12/164/index.md @@ -2,8 +2,6 @@ title: "It was a busy time for our team and our beloved contributors" date: 2023-05-12T14:10:24+00:00 slug: "it-was-a-busy-time-for-our-team-and-our-beloved-contributors" -taxonomies: - news: ["Releases"] --- It was a busy time for our team and our beloved contributors. We prepared a new app and map data update for you. diff --git a/content/news/2023-05-12/164/index.ru.md b/content/news/2023-05-12/164/index.ru.md index 5c61a4d0..6a2420d4 100644 --- a/content/news/2023-05-12/164/index.ru.md +++ b/content/news/2023-05-12/164/index.ru.md @@ -2,8 +2,6 @@ title: "Майское обновление Organic Maps и Google Summer of Code" date: 2023-05-12T14:10:24+00:00 slug: "it-was-a-busy-time-for-our-team-and-our-beloved-contributors" -taxonomies: - news: ["Releases"] --- Мы подготовили для вас новое приложение и обновление картографических данных. Кроме того, в этом году Organic Maps получили 4 слота в программе Google Summer of Code 2023 для следующих функций: diff --git a/content/news/2023-05-12/164/index.tr.md b/content/news/2023-05-12/164/index.tr.md index 1b1190ec..328cabcf 100644 --- a/content/news/2023-05-12/164/index.tr.md +++ b/content/news/2023-05-12/164/index.tr.md @@ -2,8 +2,6 @@ title: "Ekibimiz ve sevgili katılımcılarımız için yoğun bir dönemdi" date: 2023-05-12T14:10:24+00:00 slug: "it-was-a-busy-time-for-our-team-and-our-beloved-contributors" -taxonomies: - news: ["Releases"] --- Ekibimiz ve sevgili katılımcılarımız için yoğun bir dönemdi. Sizler için yeni bir uygulama ve harita verisi güncellemesi hazırladık. diff --git a/content/news/2023-05-12/_index.md b/content/news/2023-05-12/_index.md index bf211b15..983e7e54 100644 --- a/content/news/2023-05-12/_index.md +++ b/content/news/2023-05-12/_index.md @@ -1,4 +1,4 @@ --- +date: 2023-05-12 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2023-05-12/_index.ru.md b/content/news/2023-05-12/_index.ru.md index bf211b15..983e7e54 100644 --- a/content/news/2023-05-12/_index.ru.md +++ b/content/news/2023-05-12/_index.ru.md @@ -1,4 +1,4 @@ --- +date: 2023-05-12 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2023-05-12/_index.tr.md b/content/news/2023-05-12/_index.tr.md index bf211b15..e503f30c 100644 --- a/content/news/2023-05-12/_index.tr.md +++ b/content/news/2023-05-12/_index.tr.md @@ -1,4 +1,4 @@ --- +date: 2023-05-12 sort_by: date -template: news/date_section.html ---- \ No newline at end of file +--- diff --git a/content/news/2023-06-01/166/index.md b/content/news/2023-06-01/166/index.md index 4482d72d..9fa25013 100644 --- a/content/news/2023-06-01/166/index.md +++ b/content/news/2023-06-01/166/index.md @@ -2,8 +2,6 @@ title: "Roman, co-founder of Organic Maps, speaks about FOSS (Free and Open-Source Software) and privacy-focused offline maps" date: 2023-06-01T20:52:02+00:00 slug: "roman-co-founder-of-organic-maps-speaks-about-foss-free-and-open-source-software" -taxonomies: - news: ["Press"] --- Roman, co-founder of Organic Maps, speaks about FOSS (Free and Open-Source Software), our project, and other interesting things. [Donate](https://organicmaps.app/donate/) and spread the word to [support the development](https://organicmaps.app/support-us/) of privacy-focused offline maps! diff --git a/content/news/2023-06-01/166/index.tr.md b/content/news/2023-06-01/166/index.tr.md index 8305b646..58e5dfd0 100644 --- a/content/news/2023-06-01/166/index.tr.md +++ b/content/news/2023-06-01/166/index.tr.md @@ -2,8 +2,6 @@ title: "Organic Maps'in kurucu ortağı Roman, FOSS (Özgür ve Açık Kaynak Kodlu Yazılım) ve gizlilik odaklı çevrimdışı harita hakkında konuşuyor" date: 2023-06-01T20:52:02+00:00 slug: "roman-co-founder-of-organic-maps-speaks-about-foss-free-and-open-source-software" -taxonomies: - news: ["Press"] --- Organic Maps'in kurucu ortağı Roman, FOSS (Özgür ve Açık Kaynak Yazılım), projemiz ve diğer ilginç şeyler hakkında konuştu. [Bağış yapın](https://organicmaps.app/tr/donate/) yapın ve gizlilik odaklı çevrimdışı haritaların [gelişimini desteklemek](https://organicmaps.app/tr/support-us/) için bizi tanıdıklarınızla paylaşın! diff --git a/content/news/2023-06-01/_index.md b/content/news/2023-06-01/_index.md index bf211b15..ed51fa5f 100644 --- a/content/news/2023-06-01/_index.md +++ b/content/news/2023-06-01/_index.md @@ -1,4 +1,4 @@ --- +date: 2023-06-01 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2023-06-01/_index.tr.md b/content/news/2023-06-01/_index.tr.md index bf211b15..72819a35 100644 --- a/content/news/2023-06-01/_index.tr.md +++ b/content/news/2023-06-01/_index.tr.md @@ -1,4 +1,4 @@ --- +date: 2023-06-01 sort_by: date -template: news/date_section.html ---- \ No newline at end of file +--- diff --git a/content/news/2023-06-07/167/index.md b/content/news/2023-06-07/167/index.md index 8167ad7f..d81204a4 100644 --- a/content/news/2023-06-07/167/index.md +++ b/content/news/2023-06-07/167/index.md @@ -2,8 +2,6 @@ title: "GPX import is now supported in Organic Maps" date: 2023-06-07T21:54:20+00:00 slug: "gpx-import-is-now-supported-in-organic-maps" -taxonomies: - news: ["Releases"] --- GPX import is now supported in Organic Maps! You don't need to convert your GPX tracks into KML anymore. diff --git a/content/news/2023-06-07/167/index.tr.md b/content/news/2023-06-07/167/index.tr.md index 8ca7b4e4..8e7c4af7 100644 --- a/content/news/2023-06-07/167/index.tr.md +++ b/content/news/2023-06-07/167/index.tr.md @@ -2,8 +2,6 @@ title: "Organic Maps'te GPX içe aktarma artık destekleniyor" date: 2023-06-07T21:54:20+00:00 slug: "gpx-import-is-now-supported-in-organic-maps" -taxonomies: - news: ["Releases"] --- Organic Maps'te GPX içe aktarma artık destekleniyor! Artık GPX kayıtlarınızı KML'ye dönüştürmenize gerek yok. @@ -43,7 +41,7 @@ Stiller: * Münih'in en kuzeyindeki metro istasyonunun simgesi düzeltildi Çeviriler: -* Çalışma saatlerini seçme menüsü için çeviriler eklendi +* Çalışma saatlerini seçme menüsü için çeviriler eklendi * Düzeltilmiş Baskça, Belarusça, İngilizce (BK), İngilizce (ABD) ve Ukraynaca çeviriler Masaüstü diff --git a/content/news/2023-06-07/_index.md b/content/news/2023-06-07/_index.md index bf211b15..7417dc07 100644 --- a/content/news/2023-06-07/_index.md +++ b/content/news/2023-06-07/_index.md @@ -1,4 +1,4 @@ --- +date: 2023-06-07 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2023-06-07/_index.tr.md b/content/news/2023-06-07/_index.tr.md index bf211b15..094b4ab6 100644 --- a/content/news/2023-06-07/_index.tr.md +++ b/content/news/2023-06-07/_index.tr.md @@ -1,4 +1,4 @@ --- +date: 2023-06-07 sort_by: date -template: news/date_section.html ---- \ No newline at end of file +--- diff --git a/content/news/2023-07-17/175/index.md b/content/news/2023-07-17/175/index.md index 760dddf8..1fea5737 100644 --- a/content/news/2023-07-17/175/index.md +++ b/content/news/2023-07-17/175/index.md @@ -2,8 +2,6 @@ title: "Geospatial podcast with Roman Tsisyk" date: 2023-07-17T09:57:20+00:00 slug: "geospatial-podcast-with-roman-tsisyk" -taxonomies: - news: ["Press"] --- … OpenStreetMap is well known by the geospatial community, but does the average person use it? To help answer this question this week Ed welcomes Roman Tsisyk to the podcast. Roman, a co-founder of [Organic Maps](https://organicmaps.app/), the most widely used consumer-facing, OSM-based mapping service. In their discussion, Ed and Roman explain the differences users experience with Google Maps vs OSM and discuss how the two can work together. Organic Maps is a privacy-focused, open-source fork of Maps.me app. The offline feature makes it particularly convenient for travellers, hikers, and cyclists. Listen as Roman explains how he and his team use the power of community to keep evolving their maps, and why having "regular people" contribute to mapping is so important. diff --git a/content/news/2023-07-17/_index.md b/content/news/2023-07-17/_index.md index bf211b15..a6a8170e 100644 --- a/content/news/2023-07-17/_index.md +++ b/content/news/2023-07-17/_index.md @@ -1,4 +1,4 @@ --- +date: 2023-07-17 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2023-07-18/176/index.de.md b/content/news/2023-07-18/176/index.de.md index c79614b2..7bc814a8 100644 --- a/content/news/2023-07-18/176/index.de.md +++ b/content/news/2023-07-18/176/index.de.md @@ -3,8 +3,7 @@ title: "Lerne die Juli-Version von Organic Maps kennen" date: 2023-07-18T22:49:37+00:00 slug: "lerne-die-juli-version-von-organic-maps" -taxonomies: - news: ["Releases"] + --- Lerne die Juli-Version von Organic Maps kennen! Beachte, dass diese Version auf dem Nexus 5X (und vielleicht auf einigen anderen älteren Geräten) abstürzt. Wir arbeiten an einem Fix. diff --git a/content/news/2023-07-18/176/index.md b/content/news/2023-07-18/176/index.md index 5d5d6936..fa4ca60a 100644 --- a/content/news/2023-07-18/176/index.md +++ b/content/news/2023-07-18/176/index.md @@ -2,8 +2,6 @@ title: "Meet the July release of Organic Maps" date: 2023-07-18T22:49:37+00:00 slug: "meet-the-july-release-of-organic-maps" -taxonomies: - news: ["Releases"] --- Meet the July release of Organic Maps! Note that this release crashes on Nexus 5X (and maybe on some other older devices), but we're working on a fix. diff --git a/content/news/2023-07-18/_index.de.md b/content/news/2023-07-18/_index.de.md index bf211b15..527882b7 100644 --- a/content/news/2023-07-18/_index.de.md +++ b/content/news/2023-07-18/_index.de.md @@ -1,4 +1,4 @@ --- +date: 2023-07-18 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2023-07-18/_index.md b/content/news/2023-07-18/_index.md index bf211b15..527882b7 100644 --- a/content/news/2023-07-18/_index.md +++ b/content/news/2023-07-18/_index.md @@ -1,4 +1,4 @@ --- +date: 2023-07-18 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2023-07-23/_index.md b/content/news/2023-07-23/_index.md index bf211b15..c2fdb083 100644 --- a/content/news/2023-07-23/_index.md +++ b/content/news/2023-07-23/_index.md @@ -1,4 +1,4 @@ --- +date: 2023-07-23 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2023-08-21/185/index.md b/content/news/2023-08-21/185/index.md index 40999af9..321683a6 100644 --- a/content/news/2023-08-21/185/index.md +++ b/content/news/2023-08-21/185/index.md @@ -2,8 +2,6 @@ title: "While many are enjoying their holidays, our community and contributors are creating better maps" date: 2023-08-21T22:05:00+00:00 slug: "while-many-are-enjoying-their-holidays-our-community-and-contributors-are-creating-better-maps" -taxonomies: - news: ["Releases"] --- While many are enjoying their holidays, our community and contributors are creating better maps! Thanks ♥️ to everyone who helps and supports us, it motivates us more and more 🚀 diff --git a/content/news/2023-08-21/_index.md b/content/news/2023-08-21/_index.md index bf211b15..463fc734 100644 --- a/content/news/2023-08-21/_index.md +++ b/content/news/2023-08-21/_index.md @@ -1,4 +1,4 @@ --- +date: 2023-08-21 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2023-09-15/_index.md b/content/news/2023-09-15/_index.md index bf211b15..9531ce3f 100644 --- a/content/news/2023-09-15/_index.md +++ b/content/news/2023-09-15/_index.md @@ -1,4 +1,4 @@ --- +date: 2023-09-15 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2023-09-21/213/index.md b/content/news/2023-09-21/213/index.md index c2e0e784..00771c17 100644 --- a/content/news/2023-09-21/213/index.md +++ b/content/news/2023-09-21/213/index.md @@ -2,8 +2,6 @@ title: "Please vote for us again on HackerNews" date: 2023-09-21T11:06:49+00:00 slug: "please-vote-for-us-again-on-hackernews" -taxonomies: - news: ["Press"] --- Please vote for us again on [HackerNews](https://news.ycombinator.com/item?id=37592712)! diff --git a/content/news/2023-09-21/_index.md b/content/news/2023-09-21/_index.md index bf211b15..ec9999a7 100644 --- a/content/news/2023-09-21/_index.md +++ b/content/news/2023-09-21/_index.md @@ -1,4 +1,4 @@ --- +date: 2023-09-21 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2023-09-28/219/index.md b/content/news/2023-09-28/219/index.md index c3bd1abf..47a35485 100644 --- a/content/news/2023-09-28/219/index.md +++ b/content/news/2023-09-28/219/index.md @@ -2,8 +2,6 @@ title: "Un artículo sobre Organic Maps en español." date: 2023-09-28T19:27:52+00:00 slug: "nuestra-piscina-espanola" -taxonomies: - news: ["Press"] --- [Nuestra piscina española](https://www.elespanol.com/elandroidelibre/aplicaciones/20230909/adios-google-maps-wikiloc-organic-avanzada-apps-mapas-no-necesita-conexion/792421133%5F0.html) :) diff --git a/content/news/2023-09-28/_index.md b/content/news/2023-09-28/_index.md index bf211b15..7f7fc4ef 100644 --- a/content/news/2023-09-28/_index.md +++ b/content/news/2023-09-28/_index.md @@ -1,4 +1,4 @@ --- +date: 2023-09-28 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2023-09-30/221/index.md b/content/news/2023-09-30/221/index.md index 39cbc01a..2dc89ee3 100644 --- a/content/news/2023-09-30/221/index.md +++ b/content/news/2023-09-30/221/index.md @@ -2,8 +2,6 @@ title: "Organic Crowdfunding and the September update" date: 2023-09-30T22:50:03+00:00 slug: "organic-maps-crowdfunding-and-september-update" -taxonomies: - news: ["Releases"] --- A short announcement before the details about the September Organic Maps release. diff --git a/content/news/2023-09-30/_index.md b/content/news/2023-09-30/_index.md index bf211b15..ddbbba3f 100644 --- a/content/news/2023-09-30/_index.md +++ b/content/news/2023-09-30/_index.md @@ -1,4 +1,4 @@ --- +date: 2023-09-30 sort_by: date -template: news/date_section.html --- \ No newline at end of file diff --git a/content/news/2023-10-19/229/index.md b/content/news/2023-10-19/229/index.md deleted file mode 100644 index a4c889a8..00000000 --- a/content/news/2023-10-19/229/index.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: "Organic Maps shares the 5th and 6th place on the list of most popular OSM editors together with Rapid" -date: 2023-10-19T10:56:17+00:00 -slug: "organic-maps-shares-the-5th-and-6th-place-on-the-list-of-most-popular-osm-editors-together-with-rapid" -taxonomies: - news: ["Press"] ---- - -Organic Maps [shares the 5th and 6th place](https://wiki.openstreetmap.org/wiki/Editor%5Fusage%5Fstats#by%5Fnumber%5Fof%5Fusers%5F%28distinct%5Fuids%29) on the list of most popular OSM editors together with Rapid! diff --git a/content/news/2023-10-19/_index.md b/content/news/2023-10-19/_index.md deleted file mode 100644 index bf211b15..00000000 --- a/content/news/2023-10-19/_index.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -sort_by: date -template: news/date_section.html ---- \ No newline at end of file diff --git a/content/news/2023-11-10/239/1.jpg b/content/news/2023-11-10/239/1.jpg deleted file mode 100644 index 11c159e7..00000000 Binary files a/content/news/2023-11-10/239/1.jpg and /dev/null differ diff --git a/content/news/2023-11-10/239/2.jpg b/content/news/2023-11-10/239/2.jpg deleted file mode 100644 index 50d31d4f..00000000 Binary files a/content/news/2023-11-10/239/2.jpg and /dev/null differ diff --git a/content/news/2023-11-10/239/3.jpg b/content/news/2023-11-10/239/3.jpg deleted file mode 100644 index 7a6cff10..00000000 Binary files a/content/news/2023-11-10/239/3.jpg and /dev/null differ diff --git a/content/news/2023-11-10/239/index.md b/content/news/2023-11-10/239/index.md deleted file mode 100644 index 1f549191..00000000 --- a/content/news/2023-11-10/239/index.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -title: "Checking in at SOTM EU 2023 in Antwerp" -date: 2023-11-10T16:07:01+00:00 -slug: "checking-in-at-sotm-eu-2023-in-antwerp" ---- - -Checking in at SOTM EU 2023 in Antwerp. Organic Maps (OM) would not be possible without the OpenStreetMap (OSM) community. Thanks to everyone who volunteers and improves the Map! - -We aim to create easy-to-use maps for everyone on the Planet while respecting privacy and keeping the code open. It is hard to do alone, so we are looking for motivated community members who can lead the development of the complex features (better OSM editor, Public Transport, traffic info, user-generated content, and many more), help with scaling app support, and promote OpenStreetMap and Organic Maps. The more users know about OM, the more users know about OSM. More OSM contributors mean better quality map data for everyone. That's a win-win! - -P.S. The app update is coming soon, please stay tuned! diff --git a/content/news/2023-11-10/_index.md b/content/news/2023-11-10/_index.md deleted file mode 100644 index bf211b15..00000000 --- a/content/news/2023-11-10/_index.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -sort_by: date -template: news/date_section.html ---- \ No newline at end of file diff --git a/content/news/2023-11-22/244/1.PNG b/content/news/2023-11-22/244/1.PNG deleted file mode 100644 index 298d538e..00000000 Binary files a/content/news/2023-11-22/244/1.PNG and /dev/null differ diff --git a/content/news/2023-11-22/244/2.PNG b/content/news/2023-11-22/244/2.PNG deleted file mode 100644 index 58dbfd9f..00000000 Binary files a/content/news/2023-11-22/244/2.PNG and /dev/null differ diff --git a/content/news/2023-11-22/244/3.PNG b/content/news/2023-11-22/244/3.PNG deleted file mode 100644 index a54f8219..00000000 Binary files a/content/news/2023-11-22/244/3.PNG and /dev/null differ diff --git a/content/news/2023-11-22/244/4.PNG b/content/news/2023-11-22/244/4.PNG deleted file mode 100644 index 789ee836..00000000 Binary files a/content/news/2023-11-22/244/4.PNG and /dev/null differ diff --git a/content/news/2023-11-22/244/index.md b/content/news/2023-11-22/244/index.md deleted file mode 100644 index 8c7b2efc..00000000 --- a/content/news/2023-11-22/244/index.md +++ /dev/null @@ -1,74 +0,0 @@ ---- -title: "Organic Maps November 2023 Release with outdoor map style preview" -date: 2023-11-22T11:46:18+00:00 -slug: "organic-maps-november-2023-release-with-outdoor-map-style-preview" -taxonomies: - news: ["Releases"] ---- - -This release was delayed due to [OpenStreetMap vandalism](https://community.openstreetmap.org/t/vandalism-and-blocks-in-israel/105176), and due to a longer testing of many fixes and changes prepared by our contributors. - -Highlights -* New OpenStreetMap data as of November 13, 2023 -* It is possible to zoom in deeper now and see more POIs in dense areas -* Outdoors map style preview (please read on to know how to activate it) -* Added an experimental referral link "Details on Kayak" for some hotels that are already present in OpenStreetMap. Booking a hotel using this link will give a few dollars to Organic Maps as a donation toward the project development. This is not expected to bring in much, but every dollar counts. Remember, that Organic Maps doesn’t collect or share any information about you or your device. Please be aware that Kayak may have tracking on their website like most other websites, including Facebook and Twitter. -* "Inertial" kinetic scroll improvements -* Removed max limit to search bookmarks -* Brands are displayed on the Place Page - -Android -* Fixed import of bookmarks in KMB format from Maps.Me -- kudos to strump -* Fixed missing system location indicator at the right top of the Android screen -- rtsisyk -* Disabled the screen wake lock by default to improve power-saving -- rtsisyk -* Corrected the location search indication when the map is moved or zoomed -- rtsisyk -* Smoother corners for the place page -- Vinod Patil -* Landscape layout for About screen and other theme color fixes -- Jean-Baptiste - -iOS -- most changes are done by Kiryl Kaveryn -* Removed the bottom tab bar to show more map on the screen -* Removed the unnecessary "route" button on the map (tap or long-tap a place on the map or select a search result to build a route using the "Route To" button instead) -* Highlighted the Route To button and hinted the FAQ for new users -* Fixed CarPlay dark/light mode colors -* Fixed keyboard input on iPadOS 15+ -- Keith Conger - -Routing -- vng -* Don't route through access=emergency, military, agricultural, forestry -* Tuned ferry crossing estimations -* Improved cross-country and cross-region routing -* Improved residential routes - -Search -- vng -* Process platz-pl like strasse-str -* Improved address matching -* Improved search of brands - -Map Styling -- kudos to RedAuburn, pastk, map-per, dvdmrtnz, vng, RicoElectrico -* Added flowerbeds, rental shops, bicycle rentals, motorcycle repairs, petting zoo, prison areas, compressed air -* Added nature reserves and military zones rendering to the car navigation mode -* Added Docklands Light Railway, Porto metro -* Display names of ski pistes -* Tuned/updated icons of fitness center, yoga, theatre, artwork, statue, theme park, bbq, lighthouse, windmill, heliport & helipad, hunting stand, Kingdom Hall of Jehovah's Witnesses, paid & private versions of parking and parking entrances, convenience, deli, farm, grocery, health food, tobacco shops -* Better farmyard & garage landuse area fills -* Increased scrubs, alpine huts visibility -* Updated sanitary dump station icons and adjusted their priority -* Reduced visibility of cave entrances and improved the icon -* Increased visibility of standalone house numbers -* Reduced Tokyo subway visibility -- kudos to charlie2clarke -* Removed minor road markers/shields cluttering the map in Estonia -* Fix colors of Estonia and Germany road markers/shields -* Increased visibilities of road markers/shields on tertiary and residential roads -* Fixed "gaps" in some densely mapped lines -* Fixed "gaps" in the outlines of bridges and other compound lines - -Outdoors map style preview -* Tailored for out-of-the-city outdoor activities like hiking, backcountry cycling/MTB, 4x4, etc. -* Emphasizes paths/tracks, cliffs, railways, powerlines, rivers and streams, water sources, peaks, mountain saddles and passes, waterfalls, lighthouses, caves, viewpoints, campsites, huts, shelters, picnic sites, gates, stiles, fords, etc. -* Make sure to update your downloaded maps! -* Enable by typing `?olight` in the search field and return to the map; type `?light` to switch back to the main style -* Use `?odark` and `?dark` for a dark style -* Android and iOS developers [wanted](https://github.com/organicmaps/organicmaps/issues/6269) to help with adding a nice UI for style switching! - -Translations -* Improved "avoid …" routing options wording -* Improved Arabic, Basque, Chinese, Czech, Danish, Finnish, Greek, Hungarian, Indonesian, Italian, Korean, Marathi, Polish, Romanian, Slovak, Spanish, Sweden, Thai, Turkish, Ukrainian, and Vietnamese translations diff --git a/content/news/2023-11-22/_index.md b/content/news/2023-11-22/_index.md deleted file mode 100644 index bf211b15..00000000 --- a/content/news/2023-11-22/_index.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -sort_by: date -template: news/date_section.html ---- \ No newline at end of file diff --git a/content/news/2023-12-05/264/1.jpg b/content/news/2023-12-05/264/1.jpg deleted file mode 100644 index 5b5099ca..00000000 Binary files a/content/news/2023-12-05/264/1.jpg and /dev/null differ diff --git a/content/news/2023-12-05/264/index.md b/content/news/2023-12-05/264/index.md deleted file mode 100644 index 55ebcf48..00000000 --- a/content/news/2023-12-05/264/index.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: "On this International Volunteer Day, we are sharing our gratitude to everyone who helps us to develop and maintain Organic Maps, the community-built project" -date: 2023-12-05T18:36:39+00:00 -slug: "on-this-international-volunteer-day-we-are-sharing-our-gratitude-to-everyone-who-helps-us-to-develop-and-maintain-organic-maps-the-community-built-project" ---- - -On this International Volunteer Day, we are sharing our gratitude to everyone who helps us to develop and maintain Organic Maps, the community-built project. Together, we can make the best OpenStreetMap-based maps for anyone on the Planet 🙏 diff --git a/content/news/2023-12-05/_index.md b/content/news/2023-12-05/_index.md deleted file mode 100644 index bf211b15..00000000 --- a/content/news/2023-12-05/_index.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -sort_by: date -template: news/date_section.html ---- \ No newline at end of file diff --git a/content/news/2023-12-14/265/1.jpg b/content/news/2023-12-14/265/1.jpg deleted file mode 100644 index c48ba342..00000000 Binary files a/content/news/2023-12-14/265/1.jpg and /dev/null differ diff --git a/content/news/2023-12-14/265/index.md b/content/news/2023-12-14/265/index.md deleted file mode 100644 index a9c92e95..00000000 --- a/content/news/2023-12-14/265/index.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: " A hotfix update of Organic Maps for iOS is available, it fixes freezes when any object is selected on the map on iOS 12, 13 and 14." -date: 2023-12-14T22:26:21+00:00 -slug: "a-hotfix-update-of-organic-maps-for-ios-is-available-it-fixes-freezes-when-any-object-is-selected-on-the-map-on-ios-12-13-and-14" ---- - - A [hotfix update](https://apps.apple.com/app/organic-maps/id1567437057) of Organic Maps for iOS is available, it fixes freezes when any object is selected on the map on iOS 12, 13 and 14. - -Do you like [that beautiful place](https://omaps.app/04Jglxr0gS/Paleis_het_Loo) on the OpenStreetMap? diff --git a/content/news/2023-12-14/_index.md b/content/news/2023-12-14/_index.md deleted file mode 100644 index bf211b15..00000000 --- a/content/news/2023-12-14/_index.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -sort_by: date -template: news/date_section.html ---- \ No newline at end of file diff --git a/content/news/2023-12-18/270/1.jpg b/content/news/2023-12-18/270/1.jpg deleted file mode 100644 index eadff211..00000000 Binary files a/content/news/2023-12-18/270/1.jpg and /dev/null differ diff --git a/content/news/2023-12-18/270/index.md b/content/news/2023-12-18/270/index.md deleted file mode 100644 index c2220589..00000000 --- a/content/news/2023-12-18/270/index.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: "Does anyone use OpenCollective? Is it worth collecting donations there? Please share your experience" -date: 2023-12-18T15:06:30+00:00 -slug: "does-anyone-use-opencollective-is-it-worth-collecting-donations-there-please-share-your-experience" ---- - -Does anyone use OpenCollective? Is it worth collecting donations there? Please share your experience! - -In addition to [other donation methods](https://organicmaps.app/donate/), you can support Organic Maps development there too: diff --git a/content/news/2023-12-18/_index.md b/content/news/2023-12-18/_index.md deleted file mode 100644 index bf211b15..00000000 --- a/content/news/2023-12-18/_index.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -sort_by: date -template: news/date_section.html ---- \ No newline at end of file diff --git a/content/news/2023-12-19/280/1.jpg b/content/news/2023-12-19/280/1.jpg deleted file mode 100644 index 1a4a75e0..00000000 Binary files a/content/news/2023-12-19/280/1.jpg and /dev/null differ diff --git a/content/news/2023-12-19/280/index.md b/content/news/2023-12-19/280/index.md deleted file mode 100644 index 81072418..00000000 --- a/content/news/2023-12-19/280/index.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: "Thanks for the support" -date: 2023-12-19T22:14:35+00:00 -slug: "thanks-for-the-support" ---- - -Thanks for the support! Someone got it right. Together with the [OpenStreetMap](https://openstreetmap.org/) community and you, our beloved users, we will create fast and easy-to-use, privacy-focused maps for everyone. 🚀 diff --git a/content/news/2023-12-19/_index.md b/content/news/2023-12-19/_index.md deleted file mode 100644 index bf211b15..00000000 --- a/content/news/2023-12-19/_index.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -sort_by: date -template: news/date_section.html ---- \ No newline at end of file diff --git a/content/news/2023-12-23/281/beach.jpg b/content/news/2023-12-23/281/beach.jpg deleted file mode 100644 index 0ec86bfe..00000000 Binary files a/content/news/2023-12-23/281/beach.jpg and /dev/null differ diff --git a/content/news/2023-12-23/281/california.jpeg b/content/news/2023-12-23/281/california.jpeg deleted file mode 100644 index a29f792f..00000000 Binary files a/content/news/2023-12-23/281/california.jpeg and /dev/null differ diff --git a/content/news/2023-12-23/281/fuji.jpg b/content/news/2023-12-23/281/fuji.jpg deleted file mode 100644 index f21113cd..00000000 Binary files a/content/news/2023-12-23/281/fuji.jpg and /dev/null differ diff --git a/content/news/2023-12-23/281/index.md b/content/news/2023-12-23/281/index.md deleted file mode 100644 index 691a7145..00000000 --- a/content/news/2023-12-23/281/index.md +++ /dev/null @@ -1,78 +0,0 @@ ---- -title: "In 2023 Organic Maps got its first million users" -date: 2023-12-23T12:12:33+00:00 -slug: "in-2023-organic-maps-got-its-first-million-users" -taxonomies: - news: ["Releases"] ---- - -In 2023 Organic Maps got its **first million users**. It would not be possible to scale without the help from our beloved community. A million thanks for your energy and time, your [donations](https://organicmaps.app/donate/) and [support](https://organicmaps.app/support-us/) 🙏 ❤️ 🍃 - -In 2023: -* New features were added, including GPX import, Ruler tool, Outdoors map style, Background voice directions, Android Auto (in Google's review now), and others (see our [news](https://organicmaps.app/news/) for details) -* 15 app updates and hotfixes were released -* A lot of improvements for the search and routing, map icons and styles, and general usability -* 4.6 average rating on Google Play from 7,372 users -* 4.8 rating on the AppStore from 2717 users -* 1992 commits from 167 contributors [on Github](https://github.com/organicmaps/organicmaps/) -* 960 merged Pull Requests -* 724 closed issues (almost [2000 open issues](https://github.com/organicmaps/organicmaps/issues/) left to fix/implement 💪) -* Total 7710 stars on GitHub -* More than a thousand support emails were answered -* Almost [9K edits and map contributions](https://wiki.openstreetmap.org/wiki/Editor%5Fusage%5Fstats) in OpenStreetMap - -It's possible to do even more in 2024 if we get enough [donations](https://organicmaps.app/donate/) to scale the infrastructure, reward our contributors, or hire a full-time working team. -One of our goals is to provide a privacy-focused map alternative to Google and Apple Maps. Another goal is to educate and engage more users in contributing to [OpenStreetMap](https://openstreetmap.org/). Good map quality means happier hikers, cyclists, drivers, locals, tourists, and explorers. Happier everyone! - -Check our [Donations page](https://organicmaps.app/donate/) to sneak-peak the roadmap, and subscribe to our [Telegram Channel](https://t.me/OrganicMapsApp) or to the [matrix space](https://omaps.app/matrix) for updates, or follow OM on [Fosstodon](https://fosstodon.org/@organicmaps), [Mastodon.social](https://mastodon.social/@organicmaps), [Facebook](https://facebook.com/OrganicMaps), [X (Twitter)](https://twitter.com/OrganicMapsApp), [Instagram](https://instagram.com/organicmaps.app/), [Reddit](https://www.reddit.com/r/organicmaps/), [LinkedIn](https://www.linkedin.com/company/organic-maps/). - -And finally, [install](https://omaps.app/get) the December 2023 release! We have prepared several Christmas 🎅 and New Year presents 🎁 for you: - -* Android Auto is in review, you can test it by joining a beta program in [Google Play](https://play.google.com/store/apps/details?id=app.organicmaps) after [telling us](mailto:beta@organicmaps.app) your gmail 🤖 🚗 -- kudos to Andrew Shkrob -* Outdoors map style for hiking, cycling, and exploring Nature (make sure you've updated maps to the latest version!) 🥾 🏕️ 🚣 🚵 -- a long-time work by Konstantin Pastbin -* Search for village addresses without streets in Austria, Czechia, Germany, Poland, Slovakia, and some other countries (the [addr:place OSM tag](https://wiki.openstreetmap.org/wiki/Key:addr:place), and other search improvements too) -- by Viktor Govako -* Type "skiing" or "ski run" to find downhill and Nordic pistes ⛷️ 🏂 🚡 -* OpenStreetMap map data as of December 13 -* Fixed several crashes -* Multiple KML files can be imported from a single KMZ file, as the first pre-requisite to backup all bookmarks and tracks -- by cyber-toad -* A credit card 💳 is displayed for selected places with ATM -* A dollar emoji 💲 is displayed where a fee is required -- both by David Martinez -* Prettified website links in Place Page -* You can open a browser to check photos, reviews, and prices for some hotels. Every booking and every donation contribute to the development of Organic Maps! - -Android -* We need your feedback on how to improve Android Auto! [Tell us](mailto:beta@organicmaps.app) your gmail address and join the closed beta program on Google Play -* Open addresses from Contacts, Calendar, and other apps -- by Roman Tsisyk -* "Keep Search History" setting for better privacy -- by Bukkapatnam Sandilya -* Connect your phone to TV with Samsung DeX -- by Meenbeese -* Fix missing buttons when OM is restarted during navigation -* Minor interface fixes and improvements -- by Jean-Baptiste and Kiryl Kaveryn -* Fixed wrong voice language for the TTS Test button -- by Gonzalo Pesquero - -Most iOS fixes by Kiryl Kaveryn -* Fixed freezing on iOS 13, 14 -* "Zoom in to see isolines" message does not cover buttons -* CarPlay Search button now properly shows search results -- by Fabian Wüthrich -* Improved user interface for the Search on iPad - -Styles -- a lot of fixes by Konstantin Pastbin -* Any feedback on the Outdoors style is appreciated -* Singapore metro icon -- RedAuburn -* Hackerspace -- RedAuburn -* Fix Porto metro icon -- Matheus Gomes -* Fixed residential leisure garden area fills disappearing on some zoom levels -* Display house numbers regardless of buildings' sizes -* Fine-tuned priorities of many POIs in the main style -* Less "gaps" in highways on the World map -* Removed very short ferry lines from the World map - -Translations -* Improved Chinese, Dutch, Finnish, Polish, Russian translations -* Added Dutch, French, Polish, Romanian, and Russian translations for edition Opening Hours instructions -* Fixed missing parking translations - -Linux -* Show Wikipedia articles in a separate dialog -* Touchscreen pinch-zoom support -- by Ferenc- - -We wish you Organic Christmas and Organic New Year! diff --git a/content/news/2023-12-23/281/mountains.jpg b/content/news/2023-12-23/281/mountains.jpg deleted file mode 100644 index d1c077b4..00000000 Binary files a/content/news/2023-12-23/281/mountains.jpg and /dev/null differ diff --git a/content/news/2023-12-23/_index.md b/content/news/2023-12-23/_index.md deleted file mode 100644 index bf211b15..00000000 --- a/content/news/2023-12-23/_index.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -sort_by: date -template: news/date_section.html ---- \ No newline at end of file diff --git a/content/news/2024-01-04/287/index.md b/content/news/2024-01-04/287/index.md deleted file mode 100644 index a4a7e08b..00000000 --- a/content/news/2024-01-04/287/index.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -title: "Is building routes easier or more complex in Organic Maps compared to other apps? Can it be done even more conveniently/with less clicks? How to make it easier for new users to discover the way to build a route in OM?" -date: 2024-01-04T19:41:13+00:00 -slug: "is-building-routes-easier-or-more-complex-in-organic-maps-compared-to-other-apps-can-it-be-done-even-more-conveniently-with-less-clicks-how-to-make-it-easier-for-new-users-to-discover-the-way-to-build-a-route-in-om" -taxonomies: - news: ["Press"] ---- - -Is building routes easier or more complex in Organic Maps compared to other apps? Can it be done even more conveniently/with less clicks? How to make it easier for new users to discover the way to build a route in OM? - -Here is [an article](https://www.gearrice.com/update/i-have-tried-this-open-source-ad-free-and-completely-private-google-maps-alternative-and-i-have-reasons-to-use-it-every-day/) with a user's opinion. \ No newline at end of file diff --git a/content/news/2024-01-04/_index.md b/content/news/2024-01-04/_index.md deleted file mode 100644 index bf211b15..00000000 --- a/content/news/2024-01-04/_index.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -sort_by: date -template: news/date_section.html ---- \ No newline at end of file diff --git a/content/news/2024-01-06/288/index.md b/content/news/2024-01-06/288/index.md deleted file mode 100644 index dc26a0fa..00000000 --- a/content/news/2024-01-06/288/index.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: "A humble request to the whole community" -date: 2024-01-06T17:02:42+00:00 -slug: "a-humble-request-to-the-whole-community" ---- - -A humble request to the whole community: please enter detailed information about the bugs [on our GitHub](https://github.com/organicmaps/organicmaps/issues/new/). Otherwise, it may be lost and the bugs may not be fixed. - -If you can help someone else, please do. We are grateful for any saved bit of time 🙏 diff --git a/content/news/2024-01-06/_index.md b/content/news/2024-01-06/_index.md deleted file mode 100644 index bf211b15..00000000 --- a/content/news/2024-01-06/_index.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -sort_by: date -template: news/date_section.html ---- \ No newline at end of file diff --git a/content/news/2024-01-10/292/1.jpg b/content/news/2024-01-10/292/1.jpg deleted file mode 100644 index 0c65d9a2..00000000 Binary files a/content/news/2024-01-10/292/1.jpg and /dev/null differ diff --git a/content/news/2024-01-10/292/index.md b/content/news/2024-01-10/292/index.md deleted file mode 100644 index 294a57fa..00000000 --- a/content/news/2024-01-10/292/index.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -title: "Android Auto is finally available in Google Play" -date: 2024-01-10T23:52:48+00:00 -slug: "android-auto-is-finally-available-in-google-play" -taxonomies: - news: ["Releases"] ---- - -Android Auto is finally [available in Google Play](https://play.google.com/store/apps/details?id=app.organicmaps). Many thanks to the team and beta testers! - -P.S. Don't forget to update maps after updating the app to see all improvements and avoid unexpected issues. diff --git a/content/news/2024-01-10/_index.md b/content/news/2024-01-10/_index.md deleted file mode 100644 index bf211b15..00000000 --- a/content/news/2024-01-10/_index.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -sort_by: date -template: news/date_section.html ---- \ No newline at end of file diff --git a/content/news/2024-01-27/298/1.jpg b/content/news/2024-01-27/298/1.jpg deleted file mode 100644 index 48779755..00000000 Binary files a/content/news/2024-01-27/298/1.jpg and /dev/null differ diff --git a/content/news/2024-01-27/298/index.md b/content/news/2024-01-27/298/index.md deleted file mode 100644 index e3e49aa9..00000000 --- a/content/news/2024-01-27/298/index.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -title: "How to run Organic Maps on Windows" -date: 2024-01-27T20:42:57+00:00 -slug: "how-to-run-organic-maps-on-windows" -taxonomies: - news: ["Press"] ---- - -How to run Organic Maps on Windows: - diff --git a/content/news/2024-01-27/_index.md b/content/news/2024-01-27/_index.md deleted file mode 100644 index bf211b15..00000000 --- a/content/news/2024-01-27/_index.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -sort_by: date -template: news/date_section.html ---- \ No newline at end of file diff --git a/content/news/2024-02-14/303/index.md b/content/news/2024-02-14/303/index.md deleted file mode 100644 index b3d065b8..00000000 --- a/content/news/2024-02-14/303/index.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: "A list of articles about Organic Maps we have recently found on the web" -date: 2024-02-14T14:09:49+00:00 -slug: "a-list-of-articles-about-organic-maps-we-have-recently-found-on-the-web" -taxonomies: - news: ["Press"] ---- - -A list of articles about Organic Maps we have recently found on the web. Read, enjoy, share! A bit of organic word-of-mouth marketing doesn't hurt 😉 - -1. Organic Maps, an alternative to Google Maps -2. Let Google Maps rest, this is the app that's coming to replace it, it's free and it doesn't spy on you -3. Esta alternativa a Google Maps es de código abierto y permite la navegación GPS sin conexión -4. Adiós a Google Maps y Wikiloc: así es Organic Maps, la avanzada apps de mapas que no necesita conexión -5. Abandona Google Maps con esta otra app que sí cuida tu privacidad en Android y iOS diff --git a/content/news/2024-02-14/304/1.png b/content/news/2024-02-14/304/1.png deleted file mode 100644 index ec62c714..00000000 Binary files a/content/news/2024-02-14/304/1.png and /dev/null differ diff --git a/content/news/2024-02-14/304/2.png b/content/news/2024-02-14/304/2.png deleted file mode 100644 index 8b851f5c..00000000 Binary files a/content/news/2024-02-14/304/2.png and /dev/null differ diff --git a/content/news/2024-02-14/304/3.png b/content/news/2024-02-14/304/3.png deleted file mode 100644 index 3dcaa39b..00000000 Binary files a/content/news/2024-02-14/304/3.png and /dev/null differ diff --git a/content/news/2024-02-14/304/index.md b/content/news/2024-02-14/304/index.md deleted file mode 100644 index 25cf8aac..00000000 --- a/content/news/2024-02-14/304/index.md +++ /dev/null @@ -1,78 +0,0 @@ ---- -title: "If you missed it, the February 2024 Organic Maps update is already available in Google Play, Huawei AppGallery, and AppStore." -date: 2024-02-14T22:19:01+00:00 -slug: "february-2024-organic-maps-update-is-already-available-in-google-play-huawei-appgallery-and-appstore" -taxonomies: - news: ["Releases"] ---- - -If you missed it, the February 2024 Organic Maps update is already available in [Google Play](https://play.google.com/store/apps/details?id=app.organicmaps), [Huawei AppGallery](https://appgallery.huawei.com/#/app/C104325611), and [AppStore](https://apps.apple.com/app/organic-maps/id1567437057). - -Thanks to our [contributors](https://github.com/organicmaps/organicmaps/compare/2024.01.09-5-android...2024.02.06-11-android) ❤️, there is a big list of changes! - -* OpenStreetMap data as of February 2 -* Restroom emoji for places with toilets -* Display parking operator -* More precise turn notifications for small distances -* Fixed absent speed limit on some speed cameras -* Open Location Codes (OLC, Plus Codes) search shows results relative to the current position and to the screen center -* Fixed crash in search -* Name editing for playgrounds -* Parse coordinates from OpenStreetMap links -* Allow editing of Greek names for Cyprus -* Hindi support -* Better and more precise search on the map, more relevant search results in the list -* Removed "Continue detecting your location?" dialog, now location search can be stopped by pressing the "rotating radar" location button - -Android: -* Fixed Spanish and Portuguese TTS languages -* Fixed KML, KMZ, GPX import crash -* Fixed KMZ import from WhatsApp -* Show what is copied to the clipboard on the lock screen for Android 13+ -* Fixed blurry buttons on Android 5 - -Android Auto: -* Fixed indefinite loading -* Fixed World map download -* Show addresses on the Search Screen - -iOS: -* Current position is properly updated when returning back to the app -* Improved the look of search bars -* Auto Light/Dark theme setting is synced with the system -* Properly display a longer cuisines list -* Fixed location services permissions request for the first app start -* Reduced the navigation screen top bar height - -Map styles: -* Orange color for secondary roads -* Wider and brighter white tertiary roads -* Nicer looking on- and off-ramp road links joins -* Raised visibility of secondary and tertiary road links -* Less bright farmlands color -* Smaller mountain passes/saddles icons -* Reduced visibilities of mountain saddles (compared to passes) -* New ford icon -* Made hospital and clinic icons look different -* Reduced visibility of light rail stations -* Added Boston and updated Taipei subway icons -* Fixed Delhi subway entrance icons, Minsk & Spb subway captions on detailed zoom -* Increased font size of towns and suburbs labels and decreased for neighborhoods -* Fixed bookmark icon for water parks -* Adjust the visibilities of many POIs - -Outdoors map style: -* Increased 50m & 100m contour lines visibilities -* Raised visibility of campsites, survey points, toilets, and touristic information features -* New power tower and flagpole/mast icons -* Made bridleways to be the same brown color as paths -* Increased contrast of footways on overview zooms - -Car navigation map style: -* Added toilets, convenience stores -* Reduced visibilities of artwork features and subway station captions -* Bigger roundabout exit number - -Updated Catalan, Chinese, Czech, Finnish, French, Romanian, Slovak, and Ukrainian translations - -[Donate](https://organicmaps.app/donate/) to support the development and scaling of the better Google Maps alternative! diff --git a/content/news/2024-02-14/_index.md b/content/news/2024-02-14/_index.md deleted file mode 100644 index bf211b15..00000000 --- a/content/news/2024-02-14/_index.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -sort_by: date -template: news/date_section.html ---- \ No newline at end of file diff --git a/content/news/2024-03-02/311/index.md b/content/news/2024-03-02/311/index.md deleted file mode 100644 index ba68b6f9..00000000 --- a/content/news/2024-03-02/311/index.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: "📣 Call for Participation" -date: 2024-03-02T08:29:12+00:00 -slug: "call-for-participation" ---- - -📣 Call for Participation: Seeking **Technical Writers** for **Google Season of Docs 2024** - -**Organic Maps** is applying to participate in **Google Season of Docs 2024** (). - -Are you passionate about clear communication and simplifying complex technical concepts? As a technical writer, you'll play a crucial role in shaping the user experience of our product. Your contributions will help users navigate our platform with ease and confidence. Whether it's creating user guides, writing FAQs, or crafting help documentation, your words will make a difference. Do you have a knack for crafting user-friendly guides and documentation? If so, we invite you to join us in an exciting opportunity! - -Please follow the link below to learn how to participate in **Google Season of Docs 2024** program: - -👉 diff --git a/content/news/2024-03-02/_index.md b/content/news/2024-03-02/_index.md deleted file mode 100644 index bf211b15..00000000 --- a/content/news/2024-03-02/_index.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -sort_by: date -template: news/date_section.html ---- \ No newline at end of file diff --git a/content/news/2024-03-11/317/1.jpg b/content/news/2024-03-11/317/1.jpg deleted file mode 100644 index e87f5f26..00000000 Binary files a/content/news/2024-03-11/317/1.jpg and /dev/null differ diff --git a/content/news/2024-03-11/317/2.jpg b/content/news/2024-03-11/317/2.jpg deleted file mode 100644 index 47427ba9..00000000 Binary files a/content/news/2024-03-11/317/2.jpg and /dev/null differ diff --git a/content/news/2024-03-11/317/3.jpg b/content/news/2024-03-11/317/3.jpg deleted file mode 100644 index 99f4497a..00000000 Binary files a/content/news/2024-03-11/317/3.jpg and /dev/null differ diff --git a/content/news/2024-03-11/317/4.jpg b/content/news/2024-03-11/317/4.jpg deleted file mode 100644 index ae5c3d06..00000000 Binary files a/content/news/2024-03-11/317/4.jpg and /dev/null differ diff --git a/content/news/2024-03-11/317/colors.mp4 b/content/news/2024-03-11/317/colors.mp4 deleted file mode 100644 index 9bf29a39..00000000 Binary files a/content/news/2024-03-11/317/colors.mp4 and /dev/null differ diff --git a/content/news/2024-03-11/317/index.md b/content/news/2024-03-11/317/index.md deleted file mode 100644 index 7c0626f2..00000000 --- a/content/news/2024-03-11/317/index.md +++ /dev/null @@ -1,56 +0,0 @@ ---- -title: "Now everyone can back up or share all bookmarks and imported tracks as one KMZ file with just one click" -date: 2024-03-11T18:18:56+00:00 -slug: "now-everyone-can-back-up-or-share-all-bookmarks-and-imported-tracks-as-one-kmz-file-with-just-one-click" -taxonomies: - news: ["Releases"] ---- - -Now everyone can back up or share all bookmarks and imported tracks as one KMZ file with just one click! And then import everything back from the same file. - -Apple users can now edit colors of imported tracks and have a more convenient way of editing bookmarks. And don't forget to check our updated About dialog! - -The March update is already available in all app stores. An apk for Android is also [available on our GitHub](https://github.com/organicmaps/organicmaps/releases/) if you want to install the latest Organic Maps version immediately when we publish the release, without any delays caused by slow reviews or publishing. This apk can be installed together with Organic Maps from other app stores! We also plan to add notifications about available GitHub apk updates, similar to what [Obtainium](https://github.com/organicmaps/organicmaps/wiki/Installing-Organic-Maps-from-GitHub-using-Obtainium) already does. - -Here is a more detailed list of changes: - -* OSM map data as of February 28 -* Share/export/backup all bookmarks as a single KMZ file readable by Organic Maps and Google Earth -* Show when drinking water is available 🚰 or not 🚱 when selecting an object -* Show elevation and recycling container types in search results -* Included wheelchair accessibility information on place pages -* Bus stops and platforms now display their number or letter -* The routing options panel is no longer displayed when using the Ruler -* Fixed wrong negative altitude display -* Routing properly ignores roads under construction - -Android only: -* Our GitHub ("web") apk now can be installed in parallel to Organic Maps from other app stores -* Fixed import of one or more GPX/KML/KMZ files from File Explorer, GPS Logger, and some other apps -* Move Speed Cam preference into the Voice Instruction preference menu -* Fixed several crashes -* More app tips for the TTS test button - -iOS only: -* Track colors can be edited -* Change a bookmark or track color by pressing the color icon in the list -* Easier editing of bookmarks and tracks using the (i) button in the Bookmarks and Tracks dialog -* Redesigned the About dialog -* Fixed several crashes -* Consistent search bars -* Updated the primary app color -* Renamed Night Mode to Appearance as it follows the system setting -* Bottom buttons are better tappable - -Style improvements: -* Added Aboriginal Lands -* Made road tunnels more transparent -* Lighter buildings and labels in the Dark style -* Fixed small fonts for islands, bus stations and ferry terminals on detailed zooms -* Fixed inconsistencies in road labels - -Our beloved contributors have updated French, Hebrew, Hungarian, Slovak, and Spanish translations. - -Did you know we have started building a FAQ section [on our website](https://github.com/organicmaps/organicmaps.github.io)? You can help to populate and translate it! - -We hope you are enjoying Organic Maps (we kindly call it OM) as we are enjoying it. Let's improve OM together! Your [donations](https://organicmaps.app/donate/) and [support](https://organicmaps.app/support-us/) are warmly welcomed! They help to speed up the development, improvements and bugfixes. diff --git a/content/news/2024-03-11/_index.md b/content/news/2024-03-11/_index.md deleted file mode 100644 index bf211b15..00000000 --- a/content/news/2024-03-11/_index.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -sort_by: date -template: news/date_section.html ---- \ No newline at end of file diff --git a/content/news/2024-03-18/323/1.jpg b/content/news/2024-03-18/323/1.jpg deleted file mode 100644 index d644ceb0..00000000 Binary files a/content/news/2024-03-18/323/1.jpg and /dev/null differ diff --git a/content/news/2024-03-18/323/index.md b/content/news/2024-03-18/323/index.md deleted file mode 100644 index f261963b..00000000 --- a/content/news/2024-03-18/323/index.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: "OpenStreetMap login was fixed in Google Play" -date: 2024-03-18T17:45:35+00:00 -slug: "openstreetmap-login-was-fixed-in-google-play" -taxonomies: - news: ["Releases"] ---- - -OpenStreetMap login was fixed in Google Play. Please install [the latest Organic Maps update](https://play.google.com/store/apps/details?id=app.organicmaps), and enjoy updating the map! Don't forget that you can edit anything directly at the [osm.org](http://osm.org/) website. diff --git a/content/news/2024-03-18/_index.md b/content/news/2024-03-18/_index.md deleted file mode 100644 index bf211b15..00000000 --- a/content/news/2024-03-18/_index.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -sort_by: date -template: news/date_section.html ---- \ No newline at end of file diff --git a/content/news/2024-03-20/324/index.md b/content/news/2024-03-20/324/index.md deleted file mode 100644 index 3f8f6490..00000000 --- a/content/news/2024-03-20/324/index.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: "Interested in seeing public transport, satellite imagery, track recording, or other features in Organic Maps?" -date: 2024-03-20T05:42:45+00:00 -slug: "interested-in-seeing-public-transport-satellite-imagery-track-recording-or-other-features-in-organic-maps-we-are-open-for-google-summer-of-code-2024-proposals-from-motivated-contributors-students-read-more-here" ---- - -Interested in seeing public transport, satellite imagery, track recording, or other features in Organic Maps? We are open for Google Summer of Code 2024 proposals from motivated contributors/students, [read more here](https://github.com/organicmaps/organicmaps/wiki/GSoC-2024-ideas) diff --git a/content/news/2024-03-20/_index.md b/content/news/2024-03-20/_index.md deleted file mode 100644 index bf211b15..00000000 --- a/content/news/2024-03-20/_index.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -sort_by: date -template: news/date_section.html ---- \ No newline at end of file diff --git a/content/news/2024-03-22/325/index.md b/content/news/2024-03-22/325/index.md deleted file mode 100644 index 8ba3dd93..00000000 --- a/content/news/2024-03-22/325/index.md +++ /dev/null @@ -1,46 +0,0 @@ ---- -title: "Let's build the best maps app together" -date: 2024-03-22T14:51:39+00:00 -slug: "lets-build-the-best-maps-app-together" ---- - -### Let's build the best Ad-Free, Open-Source, Privacy-First maps together! - -We have added additional currencies and payment methods to our [donation page](@/donate/index.md) to minimize transaction fees. - -#### Visa, MasterCard, Apple Pay, Google Pay, PayPal: - -* € 💶 [Euro EUR](https://donate.organicmaps.app/?currency=eur) -* $ 💵 [US Dollar USD](https://donate.organicmaps.app/?currency=usd) -* £ 💷 [British Pound GBP](https://donate.organicmaps.app/?currency=gbp) -* ₣ 🇨🇭 [Swiss Franc CHF](https://donate.organicmaps.app/?currency=chf) -* ₴ 🇺🇦 [Ukrainian Hryvnia UAH](https://donate.organicmaps.app/?currency=uah) - -#### S€PA 🇪🇺 bank transfer with 0% fee: - -| | | -|---|---| -SWIFT/BIC: | TRWIBEB1XXX -IBAN: | BE39 9672 0031 0319 -Bank name: | Wise -Bank address: | Rue du Trône 100, 3rd floor, Brussels, 1050, Belgium - -See other currencies [here](@/donate/index.md). - -#### Crypto: - -``` -BTC: bc1qjkq3tpy2gutsfdlcvys8slkempywk230u8rc8u -ETH: 0x1D59bBe5d4332e34116DccDE5c1a8c736E1C2810 -USDT+TRX: TNQGZwAUCpwy1cuVSyu1vc6AT19nsmWqRF -``` -See more networks [here](/donate/#crypto). - -#### Donate via [Telegram](https://t.me/OrganicMapsApp/117) - ---- - -Your donations are sponsoring the development and scaling of Organic Maps, and greatly motivate our team. -Maintaining a project with more than [one million users](@/news/2023-12-23/281/index.md) would not be possible without your support! - -Can't donate now? Check [other ways to support the project](@/support-us/index.md), or join our contributors team! diff --git a/content/news/2024-03-22/325/index.ru.md b/content/news/2024-03-22/325/index.ru.md deleted file mode 100644 index f527e004..00000000 --- a/content/news/2024-03-22/325/index.ru.md +++ /dev/null @@ -1,46 +0,0 @@ ---- -Название: "Давайте вместе создадим лучшие карты для мобильных устройств!" -date: 2024-03-22T14:51:39+00:00 -slug: "lets-build-the-best-maps-app-together" ---- - -### Давайте вместе создадим удобные и быстрые карты без рекламы, с открытым исходным кодом, с защитой персональных данных! - -Мы добавили другие валюты на нашу [страницу пожертвований](@/donate/index.ru.md), чтобы минимизировать комиссию - -#### Visa, MasterCard, Apple Pay, Google Pay, PayPal: - -* € 💶 [Евро EUR](https://donate.organicmaps.app/?currency=eur) -* $ 💵 [Доллар США USD](https://donate.organicmaps.app/?currency=usd) -* £ 💷 [Британский фунт стерлингов](https://donate.organicmaps.app/?currency=gbp) -* ₣ 🇨🇭 [Швейцарский франк CHF](https://donate.organicmaps.app/?currency=chf) - -#### S€PA 🇪🇺 банковский перевод без комиссии: - -| | | -|---|---| -SWIFT/BIC: | TRWIBEB1XXX -IBAN: | BE39 9672 0031 0319 -Название банка: | Wise -Адрес банка: | Rue du Trône 100, 3 floor, Brussels, 1050, Belgium - -Переводы в других валютах доступны [здесь](https://organicmaps.app/donate/#crypto). - -#### Криптовалюты: - -``` -BTC: bc1qjkq3tpy2gutsfdlcvys8slkempywk230u8rc8u -ETH: 0x1D59bBe5d4332e34116DccDE5c1a8c736E1C2810 -USDT+TRX: TNQGZwAUCpwy1cuVSyu1vc6AT19nsmWqRF -``` - -Больше различных криптовалют [здесь](https://organicmaps.app/donate/#crypto). - -#### Пожертвования в [Telegram](https://t.me/OrganicMapsApp/117) - ---- - -Ваши пожертвования способствуют развитию и масштабированию Organic Maps, а так же сильно мотивируют нашу команду. -Без вашей поддержки мы бы не справились с более чем [миллионом пользователей](@/news/2023-12-23/281/index.md). - -Не можете пожертвовать сейчас? Посмотрите [другие способы поддержать проект](@/support-us/index.ru.md) или присоединяйтесь к нашей команде контрибьюторов! diff --git a/content/news/2024-03-22/_index.md b/content/news/2024-03-22/_index.md deleted file mode 100644 index bf211b15..00000000 --- a/content/news/2024-03-22/_index.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -sort_by: date -template: news/date_section.html ---- \ No newline at end of file diff --git a/content/news/2024-03-22/_index.ru.md b/content/news/2024-03-22/_index.ru.md deleted file mode 100644 index bf211b15..00000000 --- a/content/news/2024-03-22/_index.ru.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -sort_by: date -template: news/date_section.html ---- \ No newline at end of file diff --git a/content/news/2024-03-28/328/1.jpg b/content/news/2024-03-28/328/1.jpg deleted file mode 100644 index 75491762..00000000 Binary files a/content/news/2024-03-28/328/1.jpg and /dev/null differ diff --git a/content/news/2024-03-28/328/2.jpg b/content/news/2024-03-28/328/2.jpg deleted file mode 100644 index 6a39cc6c..00000000 Binary files a/content/news/2024-03-28/328/2.jpg and /dev/null differ diff --git a/content/news/2024-03-28/328/index.md b/content/news/2024-03-28/328/index.md deleted file mode 100644 index 10dc031f..00000000 --- a/content/news/2024-03-28/328/index.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -title: "An article about Organic Maps for Android Auto, and OM advantages compared to other maps" -date: 2024-03-28T20:58:47+00:00 -slug: "an-article-about-organic-maps-for-android-auto-and-om-advantages-compared-to-other-maps" -taxonimies: - news: ["Press"] ---- - -An article about Organic Maps for Android Auto, and OM advantages compared to other maps: - diff --git a/content/news/2024-03-28/_index.md b/content/news/2024-03-28/_index.md deleted file mode 100644 index bf211b15..00000000 --- a/content/news/2024-03-28/_index.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -sort_by: date -template: news/date_section.html ---- \ No newline at end of file diff --git a/content/news/2024-04-02/339/1.jpg b/content/news/2024-04-02/339/1.jpg deleted file mode 100644 index 62c81cf8..00000000 Binary files a/content/news/2024-04-02/339/1.jpg and /dev/null differ diff --git a/content/news/2024-04-02/339/index.md b/content/news/2024-04-02/339/index.md deleted file mode 100644 index 8015b7c7..00000000 --- a/content/news/2024-04-02/339/index.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -title: "🌎 Six new languages have been added to" -date: 2024-04-02T09:10:51+00:00 -slug: "six-new-languages-have-been-added-to" ---- - -🌎 Six new languages have been added to [https://organicmaps.app](https://organicmaps.app/) website. - -- Estonian -- Galician -- Lithuanian -- Malayalam -- Telugu -- Welsh - -All other languages have been updated from Weblate as well. - -Kudos to everybody who contributed translations via Weblate (). - -Please kindly review website in your language and submit any corrections to . diff --git a/content/news/2024-04-02/_index.md b/content/news/2024-04-02/_index.md deleted file mode 100644 index bf211b15..00000000 --- a/content/news/2024-04-02/_index.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -sort_by: date -template: news/date_section.html ---- \ No newline at end of file diff --git a/content/news/2024-04-05/342/1.jpg b/content/news/2024-04-05/342/1.jpg deleted file mode 100644 index 8c5d7762..00000000 Binary files a/content/news/2024-04-05/342/1.jpg and /dev/null differ diff --git a/content/news/2024-04-05/342/2.jpg b/content/news/2024-04-05/342/2.jpg deleted file mode 100644 index c340aa64..00000000 Binary files a/content/news/2024-04-05/342/2.jpg and /dev/null differ diff --git a/content/news/2024-04-05/342/index.md b/content/news/2024-04-05/342/index.md deleted file mode 100644 index bd016740..00000000 --- a/content/news/2024-04-05/342/index.md +++ /dev/null @@ -1,66 +0,0 @@ ---- -title: "Meet new contributors and improved European elevation data in March/April release" -date: 2024-04-05T18:04:24+00:00 -slug: "improved-europe-elevation-data-in-app-release" -taxonomies: - news: ["Releases"] ---- - -Let us announce the **March/April release** ([install here](https://omaps.app/get)) and welcome new contributors: - -* Isira-Seneviratne made their first contribution in [#7494](https://github.com/organicmaps/organicmaps/issues/7494) -* Mannivu made their first contribution in [#7547](https://github.com/organicmaps/organicmaps/issues/7547) -* Usland123 made their first contribution in [#7571](https://github.com/organicmaps/organicmaps/issues/7571) -* muralito made their first contribution in [#7574](https://github.com/organicmaps/organicmaps/issues/7574) -* renderexpert made their first contribution in [#7618](https://github.com/organicmaps/organicmaps/issues/7618) -* kavikhalique made their first contribution in [#7664](https://github.com/organicmaps/organicmaps/issues/7664) -* abhibana made their first contribution in [#5047](https://github.com/organicmaps/organicmaps/issues/5047) -* griffinonacid made their first contribution in [#7734](https://github.com/organicmaps/organicmaps/issues/7734) -* alnzrv made their first contribution in [#7750](https://github.com/organicmaps/organicmaps/issues/7750) - -Don’t like or miss something in Organic Maps? [Fix it](https://github.com/organicmaps/organicmaps), or ask your friends to fix it 😉 - -Here is the full list of changes. And don’t forget to rate Organic Maps in [Google Play](https://play.google.com/store/apps/details?id=app.organicmaps), [AppStore](https://apps.apple.com/app/organic-maps/id1567437057), [Huawei AppGallery](https://appgallery.huawei.com/#/app/C104325611) and [donate](https://organicmaps.app/donate/) to support the development of the best maps app! - -* Better isolines elevation data for European countries, thanks to [Sonny](https://sonny.4lima.de/) -* OpenStreetMap data as of March 26 -* Bookmark lists are sorted by modification time (recent at the top) -* Eye icons for visible/hidden bookmark lists -* Many new objects can be added to OpenStreetMap: various shops and crafts, BBQs, food courts, lang schools, cairns, money transfer points, etc. -* Add "wheelchair" to the search input to limit results to wheelchair-accessible -* Searchable orders pickup points (shop=outpost) - -**iOS:** -* Distance and time do not freeze anymore in CarPlay -* Fixed wrong time and distance when switching planned route modes -* Fixed the wrong 'saved bookmark' icon -* Added a long tap back button menu - -**Android:** -* OpenStreetMap login works again! -* Made the "View On Map" search results button bigger and with a caption -- by a new contributor kavikhalique! -* Fixed button overlaps in landscape route building for RTL languages -- also by kavikhalique -* Fixed crash when importing GPX, KML, KMZ from the Files app -* Serbian TTS voice -* Button to open system TTS settings in voice options -* Deleted bookmark lists are properly removed -* Removed ripples effect from sliding tabs in search - -**Android Auto 🚘:** -* FreeDrive screen -* Navigation is automatically starting -* Faster bookmarks screen - -**Linux desktop/mobile version:** -* Place information page is much more user-friendly - -**Map styling:** -* Added wind turbines and power plant icons -* Reduced visibilities of many outdoors-specific POIs when in the main map style, e.g., waterfalls, mountain peaks, shelters, power towers, etc. (use the Outdoors style for those!) -* More consistent font sizes and caption appearances - -**Translations updates:** -* Slovak, Italian, Spanish, Hindi -* Fixed police, parking, and sights category search for simplified Chinese - -♥️ ♥️ ♥️ ♥️ ♥️ diff --git a/content/news/2024-04-05/342/index.ru.md b/content/news/2024-04-05/342/index.ru.md deleted file mode 100644 index 4a5a10b6..00000000 --- a/content/news/2024-04-05/342/index.ru.md +++ /dev/null @@ -1,67 +0,0 @@ ---- -title: "Встречайте новых контрибуторов и улучшенные данные рельефа Европы в мартовском/апрельском обновлении" -date: 2024-04-05T18:04:24+00:00 -slug: "весеннее-обновление-Organic-Maps-улучшенные-данные-рельефа-Европы" -taxonomies: - news: ["Releases"] ---- - -Объявляем о выходе **мартовского/апрельского релиза** ([установить здесь](https://omaps.app/get)) и приветствуем новых контрибуторов: - -* Isira-Seneviratne [#7494](https://github.com/organicmaps/organicmaps/issues/7494) -* Mannivu [#7547](https://github.com/organicmaps/organicmaps/issues/7547) -* Usland123 [#7571](https://github.com/organicmaps/organicmaps/issues/7571) -* muralito [#7574](https://github.com/organicmaps/organicmaps/issues/7574) -* renderexpert [#7618](https://github.com/organicmaps/organicmaps/issues/7618) -* kavikhalique [#7664](https://github.com/organicmaps/organicmaps/issues/7664) -* abhibana [#5047](https://github.com/organicmaps/organicmaps/issues/5047) -* griffinonacid [#7734](https://github.com/organicmaps/organicmaps/issues/7734) -* alnzrv [#7750](https://github.com/organicmaps/organicmaps/issues/7750) - -Вам что-то не нравится или чего-то не хватает в Organic Maps? [Всё можно исправить самостоятельно](https://github.com/organicmaps/organicmaps), или попросить друзей, ведь наш код открыт 😉. - -Вот полный список изменений. И не забудьте оценить Organic Maps в [Google Play](https://play.google.com/store/apps/details?id=app.organicmaps), [AppStore](https://apps.apple.com/app/organic-maps/id1567437057), [Huawei AppGallery](https://appgallery.huawei.com/#/app/C104325611) и [donate](https://organicmaps.app/donate/), чтобы поддержать развитие лучших карт! - - -* Более точные высотные данные для европейских стран -* Свежие карты от OpenStreetMap по состоянию на 26 марта -* Списки меток сортируются по времени изменения (сначала новые) -* Иконки в виде глаз для видимых/скрытых списков меток -* Множество новых объектов теперь могут быть добавлены в OpenStreetMap: различные магазины и сервисы, места для барбекю, фуд-корты, языковые школы, туры, пункты перевода денег и т.д. -* Чтобы ограничить результаты поиска местами, оборудованными для инвалидов, добавьте в строку поска "инвалид" или "инвалидная коляска" -* Поиск точек выдачи заказов - -iOS: -* Время и расстояние всегда корректно отображаются в CarPlay -* Исправлена ошибка с неверным временем и расстоянием при смене режимов маршрута -* Исправлен неверный значок "сохраненной метки" -* Добавлено меню по долгому нажатию на кнопку "назад" - -Android: -* Снова заработал логин в OpenStreetMap! -* Добавлена кнопка для открытия системных настроек TTS в опциях голоса -* Кнопка результатов поиска "Посмотреть на карте" теперь больше и с подписью -- от нового участника kavikhalique! -* Исправлен креш при импорте GPX, KML, KMZ из приложения Files -* Сербский язык для TTS -* Исправлено наложение кнопок в альбомном режиме при построении маршрута для языков RTL -* Исправлено удаление списков меток -* Убран эффект ряби при переключении вкладок в поиске - -Android Auto: -* Режим свободной езды -* Автозапуск навигации -* Ускорена работа с метками - -Linux: -* Более удобный диалог с информацией о выбранном месте - -Стиль карты: -* Добавлены иконки ветряных турбин и электростанций -* В основном стиле карты уменьшена видимость многих "походных" объектов, например, водопадов, горных вершин, укрытий, опор ЛЭП и т.д. (используйте стиль для Активного отдыха!) -* Более однородные размеры шрифтов и внешний вид подписей - -Обновления переводов: -* Словацкий, итальянский, испанский, хинди -* Исправлен поиск полиции, парковок и достопримечательностей для упрощённого китайского - -♥️ ♥️ ♥️ ♥️ ♥️ diff --git a/content/news/2024-04-05/_index.md b/content/news/2024-04-05/_index.md deleted file mode 100644 index bf211b15..00000000 --- a/content/news/2024-04-05/_index.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -sort_by: date -template: news/date_section.html ---- \ No newline at end of file diff --git a/content/news/2024-04-05/_index.ru.md b/content/news/2024-04-05/_index.ru.md deleted file mode 100644 index bf211b15..00000000 --- a/content/news/2024-04-05/_index.ru.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -sort_by: date -template: news/date_section.html ---- \ No newline at end of file diff --git a/content/news/2024-04-26/343/index.md b/content/news/2024-04-26/343/index.md deleted file mode 100644 index cc6209a4..00000000 --- a/content/news/2024-04-26/343/index.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: "We''re also happy that we make our users happy 🙃" -date: 2024-04-26T09:20:10+00:00 -slug: "we-re-also-happy-that-we-make-our-users-happy" ---- - -We're also happy that we make our users happy 🙃 diff --git a/content/news/2024-04-26/343/review.png b/content/news/2024-04-26/343/review.png deleted file mode 100644 index 046eaa93..00000000 Binary files a/content/news/2024-04-26/343/review.png and /dev/null differ diff --git a/content/news/2024-04-26/344/Travel with Organic Maps.mp3 b/content/news/2024-04-26/344/Travel with Organic Maps.mp3 deleted file mode 100644 index efc0f50f..00000000 Binary files a/content/news/2024-04-26/344/Travel with Organic Maps.mp3 and /dev/null differ diff --git a/content/news/2024-04-26/344/index.md b/content/news/2024-04-26/344/index.md deleted file mode 100644 index c9c30f2d..00000000 --- a/content/news/2024-04-26/344/index.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: "Travel with Organic Maps song" -date: 2024-04-26T09:23:52+00:00 -slug: "travel-with-organic-maps-song" -description: "So let's dance along, in this magical flight, with Organic Maps, our hearts take flight. In every corner of this earth we roam, with Organic Maps, we'll always find home." ---- - -One of [our users](https://t.me/OrganicMapsZH/95) has generated a song about Organic Maps. How does it sound to you? 😄 - -Update: there is also [another song in a different style](@/news/2024-04-27/347/index.md), hope you enjoy it too! 🎵🎵🎵 - -### Travel with Organic Maps song - -{{ audio(title="Travel with Organic Maps", url="/news/2024-04-26/travel-with-organic-maps-song/Travel with Organic Maps.mp3") }} - -
-(Verse 1)
-Beneath the twinkling stars, I stroll hand in hand,
-With Organic Maps, exploring enchanted lands.
-From Eiffel's gentle glow to Iceland's black sand shore,
-Every step a melody, every sight, pure amore.
-
-(Verse 2)
-Through Rome's timeless Colosseum, echoes of history's might,
-And Egypt's majestic pyramids, kissing the sun's light.
-Organic Maps, a faithful guide, whispers tales of yore,
-In its embrace, I find solace, forevermore.
-
-(Chorus)
-Travel with Organic Maps, a symphony of peace,
-From OpenStreetMap's embrace, all worries cease.
-Crafted with love, by volunteers' tender care,
-Every destination, a moment rare.
-
-(Outro)
-So let's dance along, in this magical flight,
-With Organic Maps, our hearts take flight.
-In every corner of this earth we roam,
-With Organic Maps, we'll always find home.
-
diff --git a/content/news/2024-04-26/_index.md b/content/news/2024-04-26/_index.md deleted file mode 100644 index bf211b15..00000000 --- a/content/news/2024-04-26/_index.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -sort_by: date -template: news/date_section.html ---- \ No newline at end of file diff --git a/content/news/2024-04-27/347/The Organic Maps Anthem of community-driven privacy and freedom.mp3 b/content/news/2024-04-27/347/The Organic Maps Anthem of community-driven privacy and freedom.mp3 deleted file mode 100644 index 0266dd52..00000000 Binary files a/content/news/2024-04-27/347/The Organic Maps Anthem of community-driven privacy and freedom.mp3 and /dev/null differ diff --git a/content/news/2024-04-27/347/index.md b/content/news/2024-04-27/347/index.md deleted file mode 100644 index 32d00ee7..00000000 --- a/content/news/2024-04-27/347/index.md +++ /dev/null @@ -1,52 +0,0 @@ ---- -title: "Please enjoy and share another song about Organic Maps 🎶" -date: 2024-04-27T08:24:02+00:00 -slug: "organic-maps-privacy-and-freedom-anthem-driven-by-community" -description: "No tracking! No crapware! No pesticides! Organic Maps, where freedom resides! Navigate with privacy, feel the vibe, community-driven, let's take the ride." ---- - -Please enjoy and share another song created by [one of our users](https://t.me/organicmaps/39839) about Organic Maps, now in a different style 🎶 - -Did you like the [previous one](@/news/2024-04-26/344/index.md)? - -### The anthem of community-driven privacy and freedom - -{{ audio(title="The anthem of community-driven privacy and freedom", url="/news/2024-04-27/organic-maps-privacy-and-freedom-anthem-driven-by-community/The Organic Maps Anthem of community-driven privacy and freedom.mp3") }} - -
-(Verse 1)
-Organic Maps, no tracking in sight,
-Community-driven, with privacy right.
-No ads, no traps, just maps with flair,
-Navigate with freedom, we're beyond compare.
-
-(Chorus)
-No tracking! No crapware! No pesticides!
-Organic Maps, where freedom resides!
-Navigate with privacy, feel the vibe,
-Community-driven, let's take the ride.
-
-(Verse 2)
-Open-source, no data grab,
-Offline maps, with trails to nab.
-Cycling routes, hiking trails, all in view,
-Voice guidance, privacy true.
-
-(Chorus)
-No tracking! No crapware! No pesticides!
-Organic Maps, where freedom resides!
-Navigate with privacy, feel the vibe,
-Community-driven, let's take the ride.
-
-(Bridge)
-Blazing fast, privacy intact,
-Simple to use, that's a fact.
-No tracking, just maps so clear,
-Navigate with Organic, have no fear.
-
-(Outro)
-Try us out, see what's in store,
-Freedom's our motto, now and forevermore.
-Organic Maps, leading the way,
-Navigate with privacy, every day.
-
diff --git a/content/news/2024-04-27/_index.md b/content/news/2024-04-27/_index.md deleted file mode 100644 index bf211b15..00000000 --- a/content/news/2024-04-27/_index.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -sort_by: date -template: news/date_section.html ---- \ No newline at end of file diff --git a/content/news/2024-05-01/353/Summit Serenity with Organic Maps.mp3 b/content/news/2024-05-01/353/Summit Serenity with Organic Maps.mp3 deleted file mode 100644 index 2c5e8741..00000000 Binary files a/content/news/2024-05-01/353/Summit Serenity with Organic Maps.mp3 and /dev/null differ diff --git a/content/news/2024-05-01/353/index.md b/content/news/2024-05-01/353/index.md deleted file mode 100644 index 91bee6d7..00000000 --- a/content/news/2024-05-01/353/index.md +++ /dev/null @@ -1,54 +0,0 @@ ---- -draft: true -title: "Summit Serenity with Organic Maps Song" -date: 2024-05-01T00:04:07+00:00 -slug: "summit-serenity-with-organic-maps-song" -description: "Public transit, just the road ahead, Organic Maps, my guide, my thread. Contours and elevations, guide my pace, With each step, I find my grace." ---- - -Another song about Organic Maps, now in a calmer tempo. -You can enjoy all 3 songs here: [@OrganicMaps\_song](https://t.me/OrganicMaps%5Fsong) -or check them in our previous news posts: - -- [Travel with Organic Maps](@/news/2024-04-26/344/index.md) -- [Privacy and freedom Anthem](@/news/2024-04-27/347/index.md) - -### Summit Serenity with Organic Maps - -{{ audio(title="Summit Serenity with Organic Maps", url="/news/2024-05-01/summit-serenity-with-organic-maps-song/Summit Serenity with Organic Maps.mp3") }} - -
-(Verse)
-With Organic Maps, I start to climb,
-Guided by love, each peak in time.
-No ads, no tracking, just nature's call,
-On this journey, I stand tall.
-
-(Chorus)
-Scaling heights, 'neath skies so blue,
-Pedaling through valleys, paths anew.
-With Organic Maps, my journey's true.
-
-(Verse)
-No public transit, just the road ahead,
-Organic Maps, my guide, my thread.
-Contours and elevations, guide my pace,
-With each step, I find my grace.
-
-(Bridge)
-Blazing fast, offline and pure,
-Organic Maps, my journey's lure.
-No trackers, just nature's light,
-With Organic Maps, my freedom's bright.
-
-(Interlude)
-Through forests deep and mountains high,
-Organic Maps, beneath the sky.
-With every turn, a new delight,
-Guided by nature's gentle light.
-
-(Chorus)
-Scaling heights, 'neath skies so blue,
-Pedaling through valleys, paths anew.
-With Organic Maps, my journey's true.
-
diff --git a/content/news/2024-05-01/_index.md b/content/news/2024-05-01/_index.md deleted file mode 100644 index bf211b15..00000000 --- a/content/news/2024-05-01/_index.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -sort_by: date -template: news/date_section.html ---- \ No newline at end of file diff --git a/content/news/2024-05-05/360/Organic Maps With Me Anthem.mp4 b/content/news/2024-05-05/360/Organic Maps With Me Anthem.mp4 deleted file mode 100644 index 5b1bb6df..00000000 Binary files a/content/news/2024-05-05/360/Organic Maps With Me Anthem.mp4 and /dev/null differ diff --git a/content/news/2024-05-05/360/index.md b/content/news/2024-05-05/360/index.md deleted file mode 100644 index 861ad97f..00000000 --- a/content/news/2024-05-05/360/index.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -title: "Can you guess the places we visited with Organic Maps? Enable sound to enjoy the full experience 🎵" -date: 2024-05-05T19:56:22+00:00 -slug: "can-you-guess-the-places-we-visited-with-organic-maps-enable-sound-to-enjoy-the-full-experience" ---- - -Can you guess the places we visited with [Organic Maps](https://organicmaps.app/)? Enable sound to enjoy the full experience 🎵 - -The full text and mp3 [is here](@/news/2024-04-27/347/index.md). - -Thank you for inspiring and supporting us! diff --git a/content/news/2024-05-05/_index.md b/content/news/2024-05-05/_index.md deleted file mode 100644 index bf211b15..00000000 --- a/content/news/2024-05-05/_index.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -sort_by: date -template: news/date_section.html ---- \ No newline at end of file diff --git a/content/news/2024-05-09/361/index.md b/content/news/2024-05-09/361/index.md deleted file mode 100644 index 1bdde0b7..00000000 --- a/content/news/2024-05-09/361/index.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "Did you try Organic Maps on Linux? We use it on Mac and Linux for development, Windows PC desktop version is also possible" -date: 2024-05-09T21:59:53+00:00 -slug: "did-you-try-organic-maps-on-linux-we-use-it-on-mac-and-linux-for-development-so-it-s-not-yet-as-user-friendly-as-it-is-on-ios-and-android" -taxonomies: - news: ["Press"] ---- - -Did you try Organic Maps on Linux? We use it on Mac and Linux for development 🧑‍💻👨‍💻👨‍💻, so it's not yet as user-friendly as it is on iOS and Android. - - - -P.S. Windows version is also possible with a bit of love and support. Any volunteering help is welcome! diff --git a/content/news/2024-05-09/_index.md b/content/news/2024-05-09/_index.md deleted file mode 100644 index bf211b15..00000000 --- a/content/news/2024-05-09/_index.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -sort_by: date -template: news/date_section.html ---- \ No newline at end of file diff --git a/content/news/2024-05-11/362/1.jpg b/content/news/2024-05-11/362/1.jpg deleted file mode 100644 index 873d4a0a..00000000 Binary files a/content/news/2024-05-11/362/1.jpg and /dev/null differ diff --git a/content/news/2024-05-11/362/index.md b/content/news/2024-05-11/362/index.md deleted file mode 100644 index 5972bd58..00000000 --- a/content/news/2024-05-11/362/index.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: "You can check the recording of the Zoom session organized by OpenStreetMap Ghana with Ilya Zverev presenting Organic Maps" -date: 2024-05-11T15:06:40+00:00 -slug: "you-can-check-the-recording-of-the-zoom-session-organized-by-openstreetmap-ghana-with-ilya-zverev-presenting-organic-maps" ---- - -You can check [the recording](https://us06web.zoom.us/rec/share/geMEiQzyzk1A29%5FntH0Qg9FzrxqyAbPmVsIF91szmNyTDdY6TRjRvj21WR5Xv06C.hFN0tmfrfkBV2nRU) of the Zoom session organized by OpenStreetMap Ghana with [Ilya Zverev](https://ilya.zverev.info/) presenting Organic Maps! diff --git a/content/news/2024-05-11/_index.md b/content/news/2024-05-11/_index.md deleted file mode 100644 index bf211b15..00000000 --- a/content/news/2024-05-11/_index.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -sort_by: date -template: news/date_section.html ---- \ No newline at end of file diff --git a/content/news/2024-05-19/364/0.jpg b/content/news/2024-05-19/364/0.jpg deleted file mode 100644 index 69b72750..00000000 Binary files a/content/news/2024-05-19/364/0.jpg and /dev/null differ diff --git a/content/news/2024-05-19/364/1.png b/content/news/2024-05-19/364/1.png deleted file mode 100644 index c174ff26..00000000 Binary files a/content/news/2024-05-19/364/1.png and /dev/null differ diff --git a/content/news/2024-05-19/364/2.png b/content/news/2024-05-19/364/2.png deleted file mode 100644 index 7d7df3ee..00000000 Binary files a/content/news/2024-05-19/364/2.png and /dev/null differ diff --git a/content/news/2024-05-19/364/3.png b/content/news/2024-05-19/364/3.png deleted file mode 100644 index 342c95d9..00000000 Binary files a/content/news/2024-05-19/364/3.png and /dev/null differ diff --git a/content/news/2024-05-19/364/4.png b/content/news/2024-05-19/364/4.png deleted file mode 100644 index b5050e6d..00000000 Binary files a/content/news/2024-05-19/364/4.png and /dev/null differ diff --git a/content/news/2024-05-19/364/index.md b/content/news/2024-05-19/364/index.md deleted file mode 100644 index 400d1f90..00000000 --- a/content/news/2024-05-19/364/index.md +++ /dev/null @@ -1,71 +0,0 @@ ---- -title: "The May 2024 Organic Maps update with bookmarks and tracks sorting by name, better paved/unpaved paths colors, GPX import fixes, drive-thorough, and many other changes" -date: 2024-05-19T09:48:57+00:00 -slug: "the-may-2024-organic-maps-update-bookmarks-and-tracks-sorting-by-name-gpx-fixes" -taxonomies: - news: ["Releases"] ---- - -The May 2024 Organic Maps update ([get it here](https://omaps.app/get)) supports bookmarks and tracks sorting by name, paved paths are white, and unpaved ones are brown. And there are so many other changes and fixes, thanks to our contributors! Update and enjoy, and don't forget to update maps too. And [donate](https://organicmaps.app/donate/) to [support](https://organicmaps.app/support-us/) the open-source, community-driven, privacy-focused maps project! - -General: -* upgraded to the new [OpenStreetMap authentication method](https://github.com/organicmaps/organicmaps/issues/6144) (OAuth 2). All previously authenticated users must re-login! -* new OpenStreetMap data as of April 29 -* sort bookmarks and tracks in a list by name -* more feature types could be added to OSM now, e.g. marketplaces, taxi stands, kiosks, wilderness huts, garden centers, historic aircraft, cannons, boundary stones, tombs, etc. -* show the availability of Drive-through service for selected POIs -* ability to toggle Drive through in the OSM editor -* simplify handling of multiple languages feature names in the OSM editor and fix related bugs -* show "Can't find a suitable category?" message hint in the OSM editor -* elevator icon instead of "stairs" for displaying the level number of selected POI -* fix missing local language name versions for selected POIs -* better visible in dark mode $ emoji for paid map features -* improve bicycle routing for some cases - -Android: -* import .gpx and .gpx.xml files from Google Files app -* retain routing origin point upon re-opening the app -* night theme fixes -* fix router mode always changing to public transport if the subway layer was active -* fix buttons overlap in landscape navigation mode -* fix freezes on Samsung A50 -* fix the incorrect state of the "Keep Search History" setting if toggled two times - -iOS: -* fix isolines reminder being displayed on top of other dialogs -* fix circular downloading progress bar layout in selected POIs -* fix On/Off button icons -* fix the alignment of RTL languages in the bottom menu -* fix bug allowing to add the same language two times in the OSM editor -* correct location of "more" menu in bookmark lists -* default email client is supported for bug reports - -Mobile Linux and Mac (Windows is possible too!): -* add route marking buttons to place pages -* add an "Exit" menu option and keyboard shortcuts for all menu entries -* improve font clarity on MDPI screens - -Map: -* display difficult or indistinct hiking trails as brown-dotted, extreme/expert or indiscernible ones as black sparse dotted -* dark blue lines for dedicated cycleways -* blue lines under white/brown dashes for shared bicycle/pedestrian paths, or over white dashes for segregated ones -* more consistency in displaying paved paths as white dashed lines, unpaved ones as brown dashed -* roads visible under semi-transparent bridge outlines -* added scree and shingle areas; better color of bare rock surfaces -* stop displaying vacant/unused shops -* added natural=stone (displayed as natural=rock), miniature golf -* separate public transport shelters, basic huts and lean-tos from generic shelters -* added icons for animal enclosures and dry cleaning; updated laundry icon -* fix too small font size for smaller cities -* make city labels visible at higher zooms -* reduce the opacity of indigenous lands hatching fill -* don't display nature reserves' hatching fill and icon/caption on very detailed zooms - -Search: -* category search improvements (padel, subway stations, wilderness huts, etc.) -* searchable drinking water refills (participating cafes, etc.) -* made private swimming pools not searchable -* type ?wiki in the search to highlight Wikipedia articles on the map -* tuned category search ranking - -Updated Basque, German, Greek, and Slovak translations diff --git a/content/news/2024-05-19/_index.md b/content/news/2024-05-19/_index.md deleted file mode 100644 index bf211b15..00000000 --- a/content/news/2024-05-19/_index.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -sort_by: date -template: news/date_section.html ---- \ No newline at end of file diff --git a/content/news/2024-05-20/371/index.md b/content/news/2024-05-20/371/index.md deleted file mode 100644 index cfc66916..00000000 --- a/content/news/2024-05-20/371/index.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -title: We are working on the Recent Track feature for Android and Record Track for iOS and Android -date: 2024-05-20T09:32:17+00:00 -slug: "we-are-working-on-the-recent-track-feature-for-android-and-record-track-for-ios-and-android" ---- - -As we're working now on the Recent Track for Android and Track Recorder for iOS and Android, it would be great to hear your real use-cases, where and why do you need it, in more details. And how to make these features in the easiest-to-use way, so even your grandma and grandpa can use them. - -The best ideas and examples from other apps are also welcome. Any feedback in our [Telegram][], [Matrix][] or by [email](mailto:support@organicmaps.app) is appreciated ❤️❤️❤️ - -{{ references() }} diff --git a/content/news/2024-05-20/_index.md b/content/news/2024-05-20/_index.md deleted file mode 100644 index bf211b15..00000000 --- a/content/news/2024-05-20/_index.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -sort_by: date -template: news/date_section.html ---- \ No newline at end of file diff --git a/content/news/2024-06-06/379/index.md b/content/news/2024-06-06/379/index.md deleted file mode 100644 index db4ddb86..00000000 --- a/content/news/2024-06-06/379/index.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -title: "Organic Maps now with iCloud backup and sync" -date: 2024-06-06T14:43:37+00:00 -slug: "organic-maps-now-with-icloud-backup-and-sync" -taxonomies: - news: ["Press"] ---- - -Organic Maps now backs up and syncs all bookmarks and tracks using iCloud! -You can also use it on the Mac with the Apple Silicon processor. - -Read the article in German: diff --git a/content/news/2024-06-06/_index.md b/content/news/2024-06-06/_index.md deleted file mode 100644 index bf211b15..00000000 --- a/content/news/2024-06-06/_index.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -sort_by: date -template: news/date_section.html ---- \ No newline at end of file diff --git a/content/news/2024-06-21/_index.md b/content/news/2024-06-21/_index.md deleted file mode 100644 index bf211b15..00000000 --- a/content/news/2024-06-21/_index.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -sort_by: date -template: news/date_section.html ---- \ No newline at end of file diff --git a/content/news/2024-06-21/site/index.md b/content/news/2024-06-21/site/index.md deleted file mode 100644 index 4a79a3c5..00000000 --- a/content/news/2024-06-21/site/index.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: "Both RSS and ATOM feeds are available to watch for our news and site updates" -date: 2024-06-21T09:40:00+00:00 -slug: "both-rss-and-atom-feeds-are-available-to-watch-for-our-news-and-site-updates" ---- - -Now you can subscribe to [RSS](/rss.xml) or [ATOM](/atom.xml) news feeds in English (other languages are also available in corresponding /lang/ folders, but not all news articles are translater). - -Any help to update the website is appreciated! diff --git a/content/news/2024-06-22/380/1.jpeg b/content/news/2024-06-22/380/1.jpeg deleted file mode 100644 index dce2bae9..00000000 Binary files a/content/news/2024-06-22/380/1.jpeg and /dev/null differ diff --git a/content/news/2024-06-22/380/2.jpeg b/content/news/2024-06-22/380/2.jpeg deleted file mode 100644 index 2d4aaab5..00000000 Binary files a/content/news/2024-06-22/380/2.jpeg and /dev/null differ diff --git a/content/news/2024-06-22/380/3.jpeg b/content/news/2024-06-22/380/3.jpeg deleted file mode 100644 index 64ebb20a..00000000 Binary files a/content/news/2024-06-22/380/3.jpeg and /dev/null differ diff --git a/content/news/2024-06-22/380/4.jpeg b/content/news/2024-06-22/380/4.jpeg deleted file mode 100644 index bc939a11..00000000 Binary files a/content/news/2024-06-22/380/4.jpeg and /dev/null differ diff --git a/content/news/2024-06-22/380/5.jpeg b/content/news/2024-06-22/380/5.jpeg deleted file mode 100644 index d1d1fb53..00000000 Binary files a/content/news/2024-06-22/380/5.jpeg and /dev/null differ diff --git a/content/news/2024-06-22/380/6.jpeg b/content/news/2024-06-22/380/6.jpeg deleted file mode 100644 index 7c81c833..00000000 Binary files a/content/news/2024-06-22/380/6.jpeg and /dev/null differ diff --git a/content/news/2024-06-22/380/index.md b/content/news/2024-06-22/380/index.md deleted file mode 100644 index d72a7178..00000000 --- a/content/news/2024-06-22/380/index.md +++ /dev/null @@ -1,58 +0,0 @@ ---- -title: "The major June update and a follow-up OSM data-only update (with a hotfix for the iOS app hanging) were successfully published and are available in all app stores and on our GitHub." -date: 2024-06-22T14:08:52+00:00 -slug: june-release-with-uk-and-us-postal-zip-code-search-street-name-announcements-and-gpx-export -aliases: ["/news/2024-06-22/the-major-june-update-and-a-follow-up-osm-data-only-update-with-a-hotfix-for-the-ios-app-hanging-were-successfully-published-and-are-available-in-all-app-stores-and-on-our-github/"] -taxonomies: - news: ["Releases"] ---- - -The major June update and a follow-up OSM data-only update (with a hotfix for the iOS app hanging) were successfully published and are available in [all app stores](https://omaps.app/get) and on our [GitHub](https://github.com/organicmaps/organicmaps/releases/). - -Thanks to Viktar Havaka, now you can search for the US zip codes and UK postcodes! The external address data is taken from the TIGER database and Ordnance Survey, and pre-processed by [Nominatim project](https://nominatim.org/) used in OpenStreetMap search. - -Another major feature is street name announcements during the navigation, contributed by Will Bradley. Please enable it in OM settings, and let us know about any issues. - -A long-awaited iOS iCloud synchronization is also available, thanks to Kiryl Kaveryn. Please enable it in OM settings (you will be offered to back up all your bookmarks and tracks first) and report any issues. - -Bookmarks and tracks GPX export is also ready, in addition to the existing KML (KMZ) export. It will become very handy when we finish the long-awaited Track Recorder feature. Kudos to cyber-toad! - -As always, thanks to everyone for your contributions, [donations](https://organicmaps.app/donate/), [support](https://organicmaps.app/support-us/), and positive reviews. They motivate and inspire our team! - -General changes and fixes: -* new OpenStreetMap data as of June 13 -* search for US zip codes and UK (GB) postcodes -- by Viktar Havaka -* street name announcements in verbal TTS turn instructions (please enable it in settings) -- by Will Bradley -* export bookmarks and tracks in GPX file format -- by cyber-toad and Kiryl Kaveryn -* add, edit, and display web links to menus of restaurants, bars, and food services -- by Arthur Gayot and Kiryl Kaveryn -* fix missing addresses in fitness center details -* add "pastry" and "cakes" search keywords -* fix Wikipedia links that contain a question mark - -Android: -* export bookmarks and tracks to a local device -* always show the next turn (in navigation mode) -* add an Exit button to navigation notifications -* improved OSM user profile settings page -- by Harry Bond -* fix display of stop points in the ruler and transit mode for RTL languages - -Android Auto: -* use compass and location data from car sensors -- by Andrew Shkrob -* update the UI for the main and category screens -- by Andrew Shkrob - -iOS: -* iCloud bookmarks and tracks synchronization (please enable it in settings) -- by Kiryl Kaveryn -* use the map when CarPlay is connected -- by Oleg Montak -* fix CarPlay text color in dark mode -* more TTS voice options -* TTS turn announcements interrupt podcasts instead of ducking them -* fix some buttons that disappeared when adding a place to the map -* fix place details not updated after a bookmark's edit -* fix the non-business hours button in the Editor to work after midnight - -Mobile Linux and Desktop versions: -* improve selected place details dialog - -Updated Czech, German, and Portuguese translations. - -🚀 🚀 🚀 🚀 🚀 diff --git a/content/news/2024-06-22/_index.md b/content/news/2024-06-22/_index.md deleted file mode 100644 index bf211b15..00000000 --- a/content/news/2024-06-22/_index.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -sort_by: date -template: news/date_section.html ---- \ No newline at end of file diff --git a/content/news/2024-07-15/392/0.jpg b/content/news/2024-07-15/392/0.jpg deleted file mode 100644 index 13b711e7..00000000 Binary files a/content/news/2024-07-15/392/0.jpg and /dev/null differ diff --git a/content/news/2024-07-15/392/1.jpg b/content/news/2024-07-15/392/1.jpg deleted file mode 100644 index f4a14155..00000000 Binary files a/content/news/2024-07-15/392/1.jpg and /dev/null differ diff --git a/content/news/2024-07-15/392/2.jpg b/content/news/2024-07-15/392/2.jpg deleted file mode 100644 index 6818c852..00000000 Binary files a/content/news/2024-07-15/392/2.jpg and /dev/null differ diff --git a/content/news/2024-07-15/392/4.jpg b/content/news/2024-07-15/392/4.jpg deleted file mode 100644 index 10b1b9a3..00000000 Binary files a/content/news/2024-07-15/392/4.jpg and /dev/null differ diff --git a/content/news/2024-07-15/392/index.fr.md b/content/news/2024-07-15/392/index.fr.md deleted file mode 100644 index 96625d85..00000000 --- a/content/news/2024-07-15/392/index.fr.md +++ /dev/null @@ -1,63 +0,0 @@ ---- -title: "Avez-vous déjà installé la version d'Organic Maps du mois de juillet ? Elle introduit deux fonctionnalités majeures financées par le fonds d'investissement de l'NGI0" -date: 2024-07-15T21:13:23+00:00 -slug: version-de-juillet-avec-une-recherche-amelioree-dadresses-aux-etats-unis-utilisant-les-donnees-tiger-et-un-rendu-de-texte-corrige-pour-les-ecritures-non-latines-financees-par-le-fonds-dinvestissement-de-lngi0 -taxonomies: - news: ["Releases"] ---- - -Avez-vous déjà [installé](https://omaps.app/get) la version d'Organic Maps du mois de juillet ? Elle introduit deux fonctionnalités majeures [financées](https://nlnet.nl/project/OrganicMaps/) par le fond d'investissement de l'NGI0 : - -1. Meilleure recherche d'adresses aux États-Unis basée sur les données du système _Topologically Integrated Geographic Encoding and Referencing_ (TIGER) (prétraitées par le [projet Nominatim](https://nominatim.org/data/)), [implémentées](https://github.com/organicmaps/organicmaps/issues/2532) par Viktor Havaka. Les adresses sont stockées, recherchées et affichées sous forme d'interpolations (lignes le long des rues avec un numéro de maison de départ et un numéro de maison d'arrivée), donc ne vous attendez pas à voir des bâtiments sur la carte (saviez-vous que vous pouvez dessiner des bâtiments et ajouter des adresses vous-même sur [OpenStreetMap.org](https://openstreetmap.org/) ?) -Il existe une heuristique pour décider quand utiliser les données TIGER et quand utiliser les données OpenStreetMap existantes. -La taille de la carte pour l'ensemble des États-Unis est passée de 10 Go à 13 Go (y compris Wikipedia et les données d'élévation, il y a quelques [idées](https://github.com/organicmaps/organicmaps/issues/8672) pour [la diviser](https://github.com/organicmaps/organicmaps/issues/5912) afin d'améliorer [les mises à jour incrémentielles de la carte](https://github.com/organicmaps/organicmaps/issues/2317)). - -2. Rendu correct des textes en alphabet indien (Devanagari, Bengali, Gujarati, Gurmukhi, Kannada, Malayalam, Oriya, Tamil, Telugu), arabe (N'Ko, syriaque, mongol), thaï et lao, khmer, myanmar, tibétain, hangul, hébreu, [implémenté](https://github.com/organicmaps/organicmaps/issues/4281) par Alexander Borsuk en intégrant la bibliothèque de mise en forme de texte [Harfbuzz](https://harfbuzz.github.io/) avec le moteur de rendu d'Organic Maps (appelé "Drape"). - -D'autres améliorations notables ont été apportées grâce à nos contributeurs bien-aimés: - -* Données OpenStreetMap du 2 juillet -* Nouvelles polices de caractères pour le Malayalam et le Bengali (veuillez nous faire savoir si d'autres polices ont besoin d'être mises à jour) -* Une simple pression permet désormais de sélectionner n'importe quel point sur la carte, même si celle-ci est vide -- par Sergiy Kozyr -* Modification de l'appui long pour basculer en mode plein écran -- par Sergiy Kozyr -* Un signet supprimé accidentellement sur la carte peut maintenant être restauré immédiatement (le bouton Enregistrer devient Restaurer) -- par Kiryl Kaveryn -* Affichage des routes principales plus tôt sur la carte du monde -- par Konstantin Pastbin -* Un lieu sélectionné affiche maintenant plus de types/catégories/aménagements -- par David Martinez -* Un texte plus explicite pour indiquer l'étage à laquelle se trouve un POI -- par Antonin Delpeuch -* Affichage des chemins piétonniers en graviers fin de bonne qualité en pointillés blancs -- par Konstantin Pastbin -* Prise en charge de plus de types de surfaces de routes/chemins (briques, pierres, pavés d'herbe, terre) -- par Konstantin Pastbin -* Des conseils plus clairs lors de la construction d'une route - -La recherche -- merci à Viktor Havaka : -* La recherche de montagnes montre également les volcans -* Meilleurs résultats de recherche pour les lieux éloignés -* La recherche permet désormais de trouver les lieux dont le nom contient un chiffre -* Trouver les consignes à colis à l'aide de leur numéro de référence - -Android: -* Correction du lien de la FAQ pour la synthèse vocale dans les paramètres -* Correction de l'importation de GPX depuis WhatsApp -* Sauvegarde des fichiers exportés sur le périphérique de stockage local -- par Kiryl Razhdzestvenski - -iOS (un grand merci à Kiryl Kaveryn): -* Utilisez le bouton Importer dans la boîte de dialogue Signets et traces pour charger des fichiers KML, KMZ, GPX. -* Correction de l'importation des signets et des traces via l'application "Fichiers" lors d'un démarrage à froid (vous pouvez appuyer sur un fichier KML, KMZ, GPX ou KMB dans n'importe quelle application, puis sur le bouton "partager" , et enfin choisir l'icône Organic Maps dans la liste des applications). -* Ajout d'un bouton de test de la synthèse vocale dans les paramètres de navigation -- par Fabian Wüthrich -* Vous pouvez activer les journaux dans les paramètres pour nous aider à résoudre les bugs. -* Ouverture des liens vers les médias sociaux dans les applications installées -* Suppression du bouton trafic non fonctionnel de CarPlay -- par Fabian Wüthrich -* Remplacement de la case à cocher circulaire par un rectangle arrondi dans l'éditeur d'horaires d'ouverture -* Correction de la couleur d'arrière-plan du démarrage en mode sombre -- par Evgeny Fayvuzhinsky - -Linux: -* Correction de l'icône Wayland générique affichée à la place de l'icône d'Organic Maps sur certains systèmes -- par Ferenc Géczi - -Nos traducteurs et réviseurs nous ont aidés à mettre à jour les traductions en biélorusse, chinois, néerlandais, euskara, hongrois, polonais, portugais, russe et ukrainien. - -Nous avons également commencé à mettre à jour la [section FAQ](https://organicmaps.app/faq/) sur notre site web. Toute aide pour [ajouter de nouveaux articles](https://github.com/organicmaps/organicmaps.github.io/) et leurs traductions est appréciée ! - -Nous vous invitons à nous signaler tous les bugs en utilisant le bouton Signaler un bug dans l'application, en nous envoyant un email, ou (le mieux !) en créant/mettant à jour [un problème] (https://github.com/organicmaps/organicmaps/issues/) sur notre GitHub. - -P.S. Nous travaillons actuellement sur la [fonction d'enregistrement des traces](https://github.com/organicmaps/organicmaps/labels/Track%20Recording). Toute aide sous forme d'idées, de [tests](https://organicmaps.app/#community), de [contributions](https://organicmaps.app/support-us/) et de [dons](https://organicmaps.app/donate/) est chaleureusement appréciée ❤️ - -Profitez de vos voyages avec Organic Maps ! 🚕 🛤 ✈️ 🏕 👣 diff --git a/content/news/2024-07-15/392/index.md b/content/news/2024-07-15/392/index.md deleted file mode 100644 index c70a7644..00000000 --- a/content/news/2024-07-15/392/index.md +++ /dev/null @@ -1,64 +0,0 @@ ---- -title: "Have you already installed a July release of Organic Maps? It introduces two major features funded through the NGI0 Entrust Fund" -date: 2024-07-15T21:13:23+00:00 -slug: july-release-with-improved-usa-address-search-using-tiger-data-and-fixed-text-rendering-for-non-latin-scripts-funded-by-ngi0-entrust-fund -aliases: ["/news/2024-07-15/have-you-already-installed-a-july-release-of-organic-maps-it-introduces-two-major-features-funded-through-the-ngi0-entrust-fund/"] -taxonomies: - news: ["Releases"] ---- - -Have you already [installed](https://omaps.app/get) a July release of Organic Maps? It introduces two major features [funded](https://nlnet.nl/project/OrganicMaps/) through the NGI0 Entrust Fund: - -1. Better address search in the USA based on Topologically Integrated Geographic Encoding and Referencing system (TIGER) data (preprocessed by [Nominatim project](https://nominatim.org/data/)), [implemented](https://github.com/organicmaps/organicmaps/issues/2532) by Viktor Havaka. Addresses are stored, searched, and displayed as interpolations (lines along streets with a starting house number and ending house number), so don't expect to see buildings on the map (did you know that you can draw buildings and add addresses at [OpenStreetMap.org](https://openstreetmap.org/) yourself?). -There is a heuristic to decide when to use TIGER data and when to use existing OpenStreetMap data. -Map size for the whole USA has increased from 10Gb to 13Gb (including Wikipedia and elevation data, there are some [ideas](https://github.com/organicmaps/organicmaps/issues/8672) to [split it](https://github.com/organicmaps/organicmaps/issues/5912) to improve [incremental map updates](https://github.com/organicmaps/organicmaps/issues/2317)). - -2. Proper rendering of texts in Indic (Devanagari, Bengali, Gujarati, Gurmukhi, Kannada, Malayalam, Oriya, Tamil, Telugu), Arabic (N'Ko, Syriac, Mongolian), Thai and Lao, Khmer, Myanmar, Tibetan, Hangul, Hebrew scripts, [implemented](https://github.com/organicmaps/organicmaps/issues/4281) by Alexander Borsuk by integrating [Harfbuzz](https://harfbuzz.github.io/) text shaping library with Organic Maps rendering engine (called "Drape"). - -There are other notable improvements, thanks to our beloved contributors: - -* OpenStreetMap data as of July 2 -* New Malayalam and Bengali fonts (please let us know if any other fonts need updating) -* Single tap now selects any point on the map, even if the map is empty -- by Sergiy Kozyr -* Changed long tap to toggle full-screen mode -- by Sergiy Kozyr -* Accidentally deleted bookmark on the map now can be restored immediately (Save button changes to Restore) -- by Kiryl Kaveryn -* Display major roads earlier on the world overview map -- by Konstantin Pastbin -* A selected place now shows more types/categories/amenities -- by David Martinez -* Clearer label for POI's building level -- by Antonin Delpeuch -* Display good quality fine gravel pedestrian paths as white dashed -- by Konstantin Pastbin -* Support more road/path surface types (bricks, stone, grass paver, soil) -- by Konstantin Pastbin -* More clear hints when building a route - -Search -- kudos to Viktor Havaka: -* Mountain search also shows volcanoes -* Better search results for faraway places -* Search now finds places with a number in their names -* Find parcel lockers using their ref numbers - -Android: -* Fix TTS FAQ link in the settings -* Fix GPX import from WhatsApp -* Save exported files to the local device storage -- by Kiryl Razhdzestvenski - -iOS (many kudos to Kiryl Kaveryn): -* Use the Import button in Bookmarks and Tracks dialog to load KML, KMZ, GPX files -* Fix importing of bookmarks and tracks via the "Files" app on a cold start (you can tap a KML, KMZ, GPX or KMB file in any app, then "share" it using a rectangular icon with an up arrow at the bottom left, and then choose Organic Maps icon in the list of all apps) -* Added a TTS voice test button in navigation settings -- by Fabian Wüthrich -* Enable logs in settings to help us with bug fixing -* Open social media links in installed applications -* Removed a non-working traffic button from CarPlay -- by Fabian Wüthrich -* Replaced circle checkboxex with a rounded rectangle in the time editor -* Correct dark mode startup background color -- by Evgeny Fayvuzhinsky - -Linux: -* Fix a generic Wayland icon displayed instead of an Organic Maps icon on some systems -- by Ferenc Géczi - -Our translators and reviewers helped us to update Belarusian, Chinese, Dutch, Euskara, Hungarian, Polish, Portuguese, Russian, and Ukrainian translations. - -We have also started to update the [FAQ section](https://organicmaps.app/faq/) on our website, any help with [adding new articles](https://github.com/organicmaps/organicmaps.github.io/) and their translations is appreciated! - -Please report all issues using Report a Bug button in the app, by sending us an email, or (the best!) by creating/updating [an issue](https://github.com/organicmaps/organicmaps/issues/) on our GitHub. - -P.S. We're now working on the [track recorder feature](https://github.com/organicmaps/organicmaps/labels/Track%20Recording). Any help with ideas, [testing](https://organicmaps.app/#community), [contributions](https://organicmaps.app/support-us/) and [donations](https://organicmaps.app/donate/) is warmly appreciated ❤️ - -Enjoy traveling with Organic Maps! 🚕 🛤 ✈️ 🏕 👣 diff --git a/content/news/2024-07-15/_index.fr.md b/content/news/2024-07-15/_index.fr.md deleted file mode 100644 index bf211b15..00000000 --- a/content/news/2024-07-15/_index.fr.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -sort_by: date -template: news/date_section.html ---- \ No newline at end of file diff --git a/content/news/2024-07-15/_index.md b/content/news/2024-07-15/_index.md deleted file mode 100644 index bf211b15..00000000 --- a/content/news/2024-07-15/_index.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -sort_by: date -template: news/date_section.html ---- \ No newline at end of file diff --git a/content/news/2024-08-17/401/1.jpg b/content/news/2024-08-17/401/1.jpg deleted file mode 100644 index 5ef35d8f..00000000 Binary files a/content/news/2024-08-17/401/1.jpg and /dev/null differ diff --git a/content/news/2024-08-17/401/index.md b/content/news/2024-08-17/401/index.md deleted file mode 100644 index c9e9f13f..00000000 --- a/content/news/2024-08-17/401/index.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -title: "Last night Organic Maps was removed from the Play Store without any warnings or additional details due to \"not meeting the requirements for the Family Program\"" -date: 2024-08-17T08:40:51+00:00 -slug: "last-night-organic-maps-was-removed-from-the-play-store-without-any-warnings-or-additional-details-due-to-not-meeting-the-requirements-for-the-family-program" ---- - -{{ googleplaynews(lang="en") }} - diff --git a/content/news/2024-08-17/401/index.ru.md b/content/news/2024-08-17/401/index.ru.md deleted file mode 100644 index aa527a58..00000000 --- a/content/news/2024-08-17/401/index.ru.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -title: 17 августа приложение Organic Maps были удалены из Google Play за несоответствие политикам программы "Приложения для всей семьи" без объяснения причин -date: 2024-08-17T08:40:51+00:00 -slug: organic-maps-были-удалены-из-Google-Play-без-объяснения-причин ---- - -{{ googleplaynews(lang="ru") }} - diff --git a/content/news/2024-08-17/_index.md b/content/news/2024-08-17/_index.md deleted file mode 100644 index bf211b15..00000000 --- a/content/news/2024-08-17/_index.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -sort_by: date -template: news/date_section.html ---- \ No newline at end of file diff --git a/content/news/2024-08-17/_index.ru.md b/content/news/2024-08-17/_index.ru.md deleted file mode 100644 index bf211b15..00000000 --- a/content/news/2024-08-17/_index.ru.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -sort_by: date -template: news/date_section.html ---- \ No newline at end of file diff --git a/content/news/_index.af.md b/content/news/_index.af.md index 66b0b46d..a7b81598 100644 --- a/content/news/_index.af.md +++ b/content/news/_index.af.md @@ -2,8 +2,8 @@ description: "Bl op hoogte van nuwe Organic Maps-weergawes, nuus en bywerkings van ons span" extra: menu_title: Nuus -page_template: news/page.html +page_template: news_post.html sort_by: date -template: news/list.html +template: news.html title: "Organic Maps: Jongste nuus en bywerkings van ons span" --- diff --git a/content/news/_index.ar.md b/content/news/_index.ar.md index e4695c24..ff449b6a 100644 --- a/content/news/_index.ar.md +++ b/content/news/_index.ar.md @@ -2,8 +2,8 @@ description: "ابقَ على تواصل بأحدث الإصدارات Organic Maps والأخبار والتحديثات من فريقنا" extra: menu_title: الأخبار -page_template: news/page.html +page_template: news_post.html sort_by: date -template: news/list.html +template: news.html title: "Organic Maps: آخر الأخبار والتحديثات من فريقنا" --- diff --git a/content/news/_index.ca.md b/content/news/_index.ca.md index 5fbbc5e1..e5237c2a 100644 --- a/content/news/_index.ca.md +++ b/content/news/_index.ca.md @@ -1,9 +1,9 @@ --- -description: "Seguiu les novetats de l'Organic Maps, notícies i actualitzacions del nostre equip" +description: "Segueix les últimes novetats de Organic Maps, notícies i actualitzacions del nostre equip." extra: menu_title: Notícies -page_template: news/page.html +page_template: news_post.html sort_by: date -template: news/list.html +template: news.html title: "Organic Maps: les notícies i novetats més recents del nostre equip" --- diff --git a/content/news/_index.cs.md b/content/news/_index.cs.md index 7ef4dfb1..133966b6 100644 --- a/content/news/_index.cs.md +++ b/content/news/_index.cs.md @@ -2,8 +2,8 @@ description: "Zůstaňte v kontaktu s nejnovějšími verzemi Organic Maps, novinkami a aktualizacemi od našeho týmu" extra: menu_title: Novinky -page_template: news/page.html +page_template: news_post.html sort_by: date -template: news/list.html +template: news.html title: "Organic Maps: Nejnovější zprávy a aktualizace od našeho týmu" --- diff --git a/content/news/_index.cy.md b/content/news/_index.cy.md deleted file mode 100644 index 74453e51..00000000 --- a/content/news/_index.cy.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -description: "Arhoswch mewn cysylltiad gyda chyhoeddiadau o fersiynau newydd o Organic Maps a newyddion o'n tîm" -extra: - menu_title: Newyddion -page_template: news/page.html -sort_by: date -template: news/list.html -title: "Organic Maps: Y newyddion a chyhoeddiadau diweddaf o'n tîm" ---- diff --git a/content/news/_index.de.md b/content/news/_index.de.md index 03821685..6f8a32d1 100644 --- a/content/news/_index.de.md +++ b/content/news/_index.de.md @@ -2,8 +2,8 @@ description: "Bleibe auf dem Laufenden mit den neuesten Veröffentlichungen von Organic Maps, Neuigkeiten und Updates von unserem Team" extra: menu_title: Neuigkeiten -page_template: news/page.html +page_template: news_post.html sort_by: date -template: news/list.html +template: news.html title: "Organic Maps: Neueste Nachrichten und Updates von unserem Team" --- diff --git a/content/news/_index.es.md b/content/news/_index.es.md index da8684b4..a3f7d2b7 100644 --- a/content/news/_index.es.md +++ b/content/news/_index.es.md @@ -2,8 +2,8 @@ description: "Permanezca al tanto de los últimos lanzamientos de Organic Maps, las noticias y las actualizaciones de nuestro equipo" extra: menu_title: Noticias -page_template: news/page.html +page_template: news_post.html sort_by: date -template: news/list.html +template: news.html title: "Organic Maps: noticias y actualizaciones más recientes de nuestro equipo" --- diff --git a/content/news/_index.eu.md b/content/news/_index.eu.md index c651533c..c7d1ada8 100644 --- a/content/news/_index.eu.md +++ b/content/news/_index.eu.md @@ -1,9 +1,9 @@ --- description: "Mantendu informatuta gure taldearen azken bertsio-publikazio, albiste eta eguneraketekin" extra: - menu_title: Albisteak -page_template: news/page.html + menu_title: Berriak +page_template: news_post.html sort_by: date -template: news/list.html +template: news.html title: "Organic Maps: azken albiste eta eguneraketak gure lan-taldetik" --- diff --git a/content/news/_index.fr.md b/content/news/_index.fr.md index bee5c8f0..9f1e2cff 100644 --- a/content/news/_index.fr.md +++ b/content/news/_index.fr.md @@ -1,8 +1,8 @@ --- title: "Organic Maps: Dernières nouvelles et mises à jour de notre équipe" description: Restez en contact avec les dernières versions de Organic Maps, les nouvelles et les mises à jour de notre équipe -template: news/list.html -page_template: news/page.html +template: news.html +page_template: news_post.html sort_by: date extra: menu_title: Actualités diff --git a/content/news/_index.gl.md b/content/news/_index.gl.md deleted file mode 100644 index 1004e612..00000000 --- a/content/news/_index.gl.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -description: "Mantéñase en contacto coas últimas novidades, novas e actualizacións de Organic Maps do noso equipo" -extra: - menu_title: Novidades -page_template: news/page.html -sort_by: date -template: news/list.html -title: "Organic Maps: últimas noticias e actualizacións do noso equipo" ---- diff --git a/content/news/_index.hi.md b/content/news/_index.hi.md index fb712a7a..349a2e80 100644 --- a/content/news/_index.hi.md +++ b/content/news/_index.hi.md @@ -2,8 +2,8 @@ description: "हमारी टीम के आधुनिकतम ऑर्गेनिक मानचित्र रिलीज़, समाचार, एवम अपडेट के संपर्क में रहें" extra: menu_title: समाचार -page_template: news/page.html +page_template: news_post.html sort_by: date -template: news/list.html +template: news.html title: "ऑर्गेनिक मैप्स: हमारी टीम से नवीनतम समाचार और अपडेट" --- diff --git a/content/news/_index.hu.md b/content/news/_index.hu.md index c1283590..a0124045 100644 --- a/content/news/_index.hu.md +++ b/content/news/_index.hu.md @@ -2,8 +2,8 @@ description: "Maradjon kapcsolatban a legfrissebb Organic Maps kiadványokkal, hírekkel és frissítésekkel csapatunktól" extra: menu_title: Hírek -page_template: news/page.html +page_template: news_post.html sort_by: date -template: news/list.html +template: news.html title: "Organic Maps: Legfrissebb hírek és újdonságok a csapatunktól" --- diff --git a/content/news/_index.id.md b/content/news/_index.id.md index c7e82ac3..3ae7d8b0 100644 --- a/content/news/_index.id.md +++ b/content/news/_index.id.md @@ -2,8 +2,8 @@ description: "Tetap terhubung dengan rilis Organic Maps terbaru, berita dan pembaruan dari tim kami" extra: menu_title: Berita -page_template: news/page.html +page_template: news_post.html sort_by: date -template: news/list.html +template: news.html title: "Organic Maps: Berita dan pembaruan terbaru dari tim kami" --- diff --git a/content/news/_index.it.md b/content/news/_index.it.md index dfd1e740..6f365bf4 100644 --- a/content/news/_index.it.md +++ b/content/news/_index.it.md @@ -1,8 +1,8 @@ --- title: "Organic Maps: Ultime notizie e aggiornamenti dal nostro team" description: Rimanete in contatto con gli ultimi rilasci di app, le novità e gli aggiornamenti del nostro team -template: news/list.html -page_template: news/page.html +template: news.html +page_template: news_post.html sort_by: date extra: menu_title: Notizie diff --git a/content/news/_index.md b/content/news/_index.md index 4f79eb8b..726dcee7 100644 --- a/content/news/_index.md +++ b/content/news/_index.md @@ -1,8 +1,8 @@ --- title: "Organic Maps: Latest news and updates from our team" description: Stay in touch with the latest Organic Maps releases, news and updates from our team -template: news/list.html -page_template: news/page.html +template: news.html +page_template: news_post.html sort_by: date extra: menu_title: News diff --git a/content/news/_index.nl.md b/content/news/_index.nl.md index 16bc8bc2..2d6a9525 100644 --- a/content/news/_index.nl.md +++ b/content/news/_index.nl.md @@ -2,8 +2,8 @@ description: "Blijf op de hoogte van nieuwe Organic Maps versies, nieuws en updates van ons team" extra: menu_title: Nieuws -page_template: news/page.html +page_template: news_post.html sort_by: date -template: news/list.html +template: news.html title: "Organic Maps: Laatste nieuws en updates van ons team" --- diff --git a/content/news/_index.pl.md b/content/news/_index.pl.md index 789b0c6f..5ea8851d 100644 --- a/content/news/_index.pl.md +++ b/content/news/_index.pl.md @@ -2,8 +2,8 @@ description: "Bądź na bieżąco z najnowszymi wydaniami Organic Maps, wiadomościami i aktualizacjami od naszego zespołu" extra: menu_title: Nowości -page_template: news/page.html +page_template: news_post.html sort_by: date -template: news/list.html +template: news.html title: "Organic Maps: Najnowsze wiadomości i aktualizacje od naszego zespołu" --- diff --git a/content/news/_index.pt-BR.md b/content/news/_index.pt-BR.md index 4c797817..3be081bc 100644 --- a/content/news/_index.pt-BR.md +++ b/content/news/_index.pt-BR.md @@ -2,8 +2,8 @@ description: "Fique atualizado com os últimos lançamentos, notícias e atualizações do Organic Maps" extra: menu_title: Notícias -page_template: news/page.html +page_template: news_post.html sort_by: date -template: news/list.html +template: news.html title: "Organic Maps: Últimas notícias e atualizações de nossa equipe" --- diff --git a/content/news/_index.pt.md b/content/news/_index.pt.md deleted file mode 100644 index 32a7e910..00000000 --- a/content/news/_index.pt.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -description: "Mantenha-se informado com os últimos lançamentos, notícias e atualizações do Organic Maps" -extra: - menu_title: Notícias -page_template: news/page.html -sort_by: date -template: news/list.html -title: "Organic Maps: últimas notícias e atualizações" ---- diff --git a/content/news/_index.ru.md b/content/news/_index.ru.md index 714fa806..6c88d297 100644 --- a/content/news/_index.ru.md +++ b/content/news/_index.ru.md @@ -1,8 +1,8 @@ --- title: "Organic Maps: Свежие новости и обновления от нашей команды" description: Оставайтесь в курсе последних обновлений и новостей от нашей команды -template: news/list.html -page_template: news/page.html +template: news.html +page_template: news_post.html sort_by: date extra: menu_title: Новости diff --git a/content/news/_index.sv.md b/content/news/_index.sv.md index 7aa002d7..a6f24188 100644 --- a/content/news/_index.sv.md +++ b/content/news/_index.sv.md @@ -2,8 +2,8 @@ description: "Håll dig uppdaterad med de senaste versionerna av Organic Maps, nyheter samt uppdateringar från vårt team" extra: menu_title: Nyheter -page_template: news/page.html +page_template: news_post.html sort_by: date -template: news/list.html +template: news.html title: "Organic Maps: De senaste nyheterna och uppdateringarna från vårt team" --- diff --git a/content/news/_index.tr.md b/content/news/_index.tr.md index 8b93bd8a..31e9ee49 100644 --- a/content/news/_index.tr.md +++ b/content/news/_index.tr.md @@ -1,8 +1,8 @@ --- title: "Organic Maps: Ekibimizden son haberler ve güncellemeler" description: Ekibimizin en son Organic Maps bültenleri, haberleri ve güncellemeleri ile iletişimde kalın -template: news/list.html -page_template: news/page.html +template: news.html +page_template: news_post.html sort_by: date extra: menu_title: Haberler diff --git a/content/news/_index.uk.md b/content/news/_index.uk.md index fb762e97..f2e549e8 100644 --- a/content/news/_index.uk.md +++ b/content/news/_index.uk.md @@ -2,8 +2,8 @@ description: "Залишайтеся на зв'язку з останніми випусками Organic Maps, новинами та оновленнями від нашої команди" extra: menu_title: Новини -page_template: news/page.html +page_template: news_post.html sort_by: date -template: news/list.html +template: news.html title: "Organic Maps: Останні новини та оновлення від нашої команди" --- diff --git a/content/news/_index.zh-CN.md b/content/news/_index.zh-CN.md new file mode 100644 index 00000000..1d5dc9f4 --- /dev/null +++ b/content/news/_index.zh-CN.md @@ -0,0 +1,9 @@ +--- +title: "有机地图:我们团队的最新消息和更新" +description: 与我们团队的最新有机地图发布、新闻和更新保持联系 +template: news.html +page_template: news_post.html +sort_by: date +extra: + menu_title: 消息 +--- diff --git a/content/news/_index.zh-Hans.md b/content/news/_index.zh-Hans.md index 75e0498e..b1170846 100644 --- a/content/news/_index.zh-Hans.md +++ b/content/news/_index.zh-Hans.md @@ -2,8 +2,8 @@ description: "关注Organic Maps新版发布、新闻和更新" extra: menu_title: 新闻 -page_template: news/page.html +page_template: news_post.html sort_by: date -template: news/list.html +template: news.html title: "Organic Maps:近期新闻和更新" --- diff --git a/content/privacy/index.ca.md b/content/privacy/index.ca.md index 78d63c04..49a1cd05 100644 --- a/content/privacy/index.ca.md +++ b/content/privacy/index.ca.md @@ -1,21 +1,21 @@ --- description: "Sense rastrejament, anuncis, recopilació de dades i estadístiques o programari espia" extra: - menu_title: Privadesa -title: "Organic Maps: Política de Privadesa" + menu_title: Privacitat +title: "Organic Maps: Política de Privacitat" weight: 900 --- -Organic Maps respecta la vostra privadesa i NO US RASTREJA. +Organic Maps respecta la vostra privacitat i NO US RASTREJA. -A diferència d'altres aplicacions, a l'Organic Maps no hi ha rastrejadors, -anuncis o programes espia, ni recol·lecció de dades o estadístiques. +A diferència d'altres aplicacions, no hi ha rastrejadors, ni anuncis, ni +programes espia, ni recol·lecció de dades i estadístiques en Organic Maps. -Rebutgeu la vigilància. Assumiu la vostra llibertat. +Rebutgi la vigilància. Assumeixi la seva llibertat. -Allunyeu-vos de les mirades indiscretes de les grans tecnològiques! +Allunya't de les mirades indiscretes de les grans tecnològiques ! -Si teniu cap dubte o suggeriment, contacteu (en anglès) amb nosaltres a +Si tens preguntes o suggeriments, posa't en contacte amb nosaltres en [legal@organicmaps.app](mailto:legal@organicmaps.app). Aquesta normativa és efectiva des del 24/04/2021. diff --git a/content/privacy/index.cy.md b/content/privacy/index.cy.md deleted file mode 100644 index 1e4ebb2e..00000000 --- a/content/privacy/index.cy.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -description: "Dim tracio, dim hysbysebion, dim casgliad data, dim casgliad ystadegau, dim ysbiwedd" -extra: - menu_title: Preifatrwydd -title: "Organic Maps: Polisi Preifatrwydd" -weight: 900 ---- - -Mae Organic Maps yn parchu eich preifatrwydd ac NID YW'N EICH TRACIO. - -Yn wahanol i'r rhan fwyaf o apiau arall, does yna ddim tracio, dim -hysbysebion, dim ysbiwedd, a dim casgliad data na chasgliad ystadegau yn -Organic Maps. - -Gwrthodwch wyliadwriaeth - mwynhewch eich rhyddid. - -Arhoswch i ffwrdd o lygaid cwmnïau technoleg fawr! - -Os oes gennych chi unrhyw gwestiynau neu awgrymiadau, cysylltwch â ni at -[legal@organicmaps.app](mailto:legal@organicmaps.app). - -Mae'r polisi yma'n gweithredu ers 2021-04-24. diff --git a/content/privacy/index.gl.md b/content/privacy/index.gl.md deleted file mode 100644 index a99752e0..00000000 --- a/content/privacy/index.gl.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -description: "Sen seguimento, sen anuncios, sen recollida de datos, sen recollida de estatísticas, sen programas espía" -extra: - menu_title: Privacidade -title: "Organic Maps: Política de privacidade" -weight: 900 ---- - -Organic Maps respecta a túa privacidade e NON TE RASTREXA. - -A diferencia da maioría das outras aplicacións, non hai seguimento, -anuncios, programas espía, recollida de datos e estatísticas en Organic -Maps. - -Rexeita a vixilancia - abraza a túa liberdade. - -Mantéñase lonxe dos ollos indiscretos das grandes tecnolóxicas! - -Se tes algunha pregunta ou suxestión, póñase en contacto connosco en -[legal@organicmaps.app](mailto:legal@organicmaps.app). - -Esta política entrará en vigor o 24/04/2021. diff --git a/content/privacy/index.pt.md b/content/privacy/index.pt.md deleted file mode 100644 index eb582915..00000000 --- a/content/privacy/index.pt.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -description: 'Sem rastreamento, sem anúncios, sem recolha de dados, sem recolha de estatísticas, sem "spyware"' -extra: - menu_title: Privacidade -title: "Organic Maps: política de privacidade" -weight: 900 ---- - -O Organic Maps respeita a sua privacidade e NÃO O RASTREIA. - -Ao contrário da maioria das outras aplicações, o Organic Maps não faz -rastreio, não tem anúncios, não tem spyware, não recolhe dados nem -estatísticas. - -Rejeite a vigilância - abrace a sua liberdade. - -Fique longe dos olhos curiosos das grandes empresas! - -Se tiver alguma dúvida ou sugestão, por favor entre em contacto connosco em -[legal@organicmaps.app](mailto:legal@organicmaps.app). - -Esta política é efetiva a partir de 2021-04-24. diff --git a/content/support-us/index.ca.md b/content/support-us/index.ca.md index 439b772c..352888d1 100644 --- a/content/support-us/index.ca.md +++ b/content/support-us/index.ca.md @@ -1,44 +1,44 @@ --- description: "Diferents maneres de donar suport al desenvolupament de la nostra aplicació lliure" extra: - menu_title: "Doneu suport" + menu_title: "Dona'ns suport" preview_image: support-us/support-us.jpg -title: "Doneu suport al desenvolupament de l'Organic Maps" +title: "Dona suport al desenvolupament de Organic Maps" weight: 20 --- -L'Organic Maps és una aplicació oberta i gratuïta, lliure d'anuncis que no -recopila cap dada personal i és desenvolupada per uns quants entusiastes amb -l'ajuda de la comunitat. +Organic Maps és una aplicació oberta i gratis. Està lliure d'anuncis, no +recull la seva informació personal i està desenvolupada per uns pocs +entusiastes amb l'ajuda de la comunitat. -Hi ha diferents formes d'ajudar al desenvolupament: +Hi ha diferents maneres de fer costat al desenvolupament: -- [Doneu](@/donate/index.ca.md)! Qualsevol quantitat compta i ens ajuda a - pagar els servidors i ampliar serveis. -- Informeu d'errors i compartiu idees al nostre [GitHub][github] o - mitjançant el [correu-e][email]. -- Ajudeu-nos a [corregir errors][contributing] i fer revisions de codi si en - sabeu programar. Cada petit problema solucionat farà més feliç a alguna - persona. -- [Traduïu][translations] i milloreu les cadenes de la interfície de +- [Donar](@/donate/index.ca.md)! Cada dòlar o euro compta i ens ajuda a + pagar els servidors i ampliar l'escala. +- Informa d'errors i comparteix idees en el nostre [GitHub][github] o a + través de [email][email]. +- Ajuda'ns a [corregir errores][contributing] i fer revisions de codi si ets + desenvolupadorx. Cada petit problema solucionat fa més feliç a algú. +- [Tradueixi][translations] cadenes que falten en la interfície de l'aplicació. -- Traduïu les descripcions de l'[AppStore][translations_appstore] i - l'[Android][translations_googleplay] a la vostra llengua. -- [Traduïu][translations_website] el web a la vostra llengua. -- Uniu-vos a la comunitat de l'[OpenStreetMap][openstreetmap] i contribuïu - amb dades dels mapes. -- Corregiu les ciutats marcades en vermell que ha trobat el nostre - [validador de transport públic][public_transport_validator], perquè el - metro i tramvies funcionin a l'aplicació. -- Doneu un cop de mà a altres usuaris al [GitHub][issues], +- Tradueix les descripcions de [App Store][translations_appstore] i + [Android][translations_googleplay] al teu idioma. +- [Traduir][translations_website] el nostre lloc web al teu idioma. +- Uneix-te a la comunitat [OpenStreetMap][openstreetmap] i contribueix a les + dades dels mapes. +- Corregeix les ciutats vermelles trobades pel nostre [validador de + transport públic][public_transport_validator], perquè el metre i tramvies + funcionin en l'aplicació. +- Dona suport a altres usuaris en [GitHub][issues], [Telegram][telegram_chat], [Matrix][matrix], [Twitter][twitter], - [Facebook][facebook], i [Instagram][instagram]. -- Difoneu l'Organic Maps. Una comunitat més gran és una comunitat més forta. -- Puntueu-nos al [Google Play][googleplay_review], - l'[AppStore][appstore_review], [Huawei Appgallery][appgallery_review]. + [Facebook][facebook], [Instagram][instagram]. +- Comenta-li a tothom sobre Organic Maps. Una comunitat més gran és una + comunitat més forta. +- Valora'ns en [Google Play][googleplay_review], [Apple + Store][appstore_review], [Huawei Appgallery][appgallery_review]. - Tota ajuda és benvinguda! -El nostre petit equip estarà molt agraït pels vostres comentaris i -suport. L'Organic Maps no seria possible sense els seus usuaris ❤️. +El nostre petit equip està molt agraït pels teus comentaris i +suport. Organic Maps no seria possible sense els nostres usuaris ❤️. {{ references() }} diff --git a/content/support-us/index.cy.md b/content/support-us/index.cy.md deleted file mode 100644 index e7c1365d..00000000 --- a/content/support-us/index.cy.md +++ /dev/null @@ -1,44 +0,0 @@ ---- -description: "Ffyrdd gwahanol o gynorthwyo’r datblygiad o'n hap am ddim" -extra: - menu_title: "Cefnogi Ni" - preview_image: support-us/support-us.jpg -title: "Cefnogwch ddatblygiad Organic Maps" -weight: 20 ---- - -Mae Organic Maps yn ap ffynhonnell agored am ddim. Does dim hysbysebion, nid -yw'n casglu eich gwybodaeth bersonol, ac mae'n cael ei datblygu gan ychydig -o bobl frwdfrydig gyda chefnogaeth y gymuned. - -Mae yna nifer o ffyrdd gwahanol o gefnogi'r datblygiad: - -- [Cyfrannwch](@/donate/index.md)! Mae pob doler neu ewro yn cyfri ac yn ein - helpu i dalu am weinyddion a graddio. -- Adroddwch broblemau a rhannwch syniadau ar ein [GitHub][github] neu trwy - [e-bost][email]. -- Helpwch ni i [drwsio problemau][contributing] a gwnewch adolygiadau cod os - ydych chi'n ddatblygwr. Mae pob problem fach sy'n cael ei drwsio yn gwneud - i rywun yn fwy hapus. -- [Cyfieithwch][translations] linynnau sydd ar goll yn rhyngwyneb yr ap. -- Cyfieithwch ddisgrifiadau'r ap ar [App Store][translations_appstore] ac - [Android][translations_googleplay] i'ch iaith chi. -- [Cyfieithwch][translations_website] ein gwefan i'ch iaith chi. -- Ymunwch â'r gymuned [OpenStreetMap][openstreetmap] a chyfrannwch at - ddata'r map. -- Trwsiwch ddinasoedd coch sydd wedi'i ffeindio gan ein [dilyswr - trafnidiaeth gyhoeddus][public_transport_validator], er mwyn i drenau - tanddaearol a rheilffyrdd ysgafn weithio yn yr ap. -- Cynorthwywch ddefnyddwyr arall ar [GitHub][issues], - [Telegram][telegram_chat], [Matrix][matrix], [Twitter][twitter], - [Facebook][facebook], [Instagram][instagram]. -- Dywedwch wrth bawb am Organic Maps. Mae cymuned ehangach yn gymuned - gryfach. -- Sgoriwch ni ar [Google Play][googleplay_review], [Apple - Store][appstore_review], [Huawei Appgallery][appgallery_review]. -- Rydyn ni'n croesawi unrhyw help! - -Mae ein tîm bach yn werthfawr iawn o'ch adborth a'ch cefnogaeth. Ni fydd -Organic Maps yn bosib heb ein defnyddwyr ❤️. - -{{ references() }} diff --git a/content/support-us/index.eu.md b/content/support-us/index.eu.md index 1dab1c13..f60bf305 100644 --- a/content/support-us/index.eu.md +++ b/content/support-us/index.eu.md @@ -1,7 +1,7 @@ --- description: "Gure doako aplikazioaren garapenean laguntzeko hainbat modu daude" extra: - menu_title: "Lagundu garapenean" + menu_title: "Lagundu garapena" preview_image: support-us/support-us.jpg title: "Lagundu Organic Maps-en garapenean" weight: 20 diff --git a/content/support-us/index.gl.md b/content/support-us/index.gl.md deleted file mode 100644 index 3d28a0d9..00000000 --- a/content/support-us/index.gl.md +++ /dev/null @@ -1,44 +0,0 @@ ---- -description: "Diferentes formas de apoiar o desenvolvemento da nosa aplicación gratuíta" -extra: - menu_title: Apoianos - preview_image: support-us/support-us.jpg -title: "Apoiar o desenvolvemento de Organic Maps" -weight: 20 ---- - -Organic Maps é unha aplicación gratuíta de código aberto. Está libre de -anuncios, non recolle a túa información persoal e é desenvolvido por algúns -entusiastas coa axuda da comunidade. - -Hai diferentes formas de apoiar o desenvolvemento: - -- [Doar](@/donate/index.md)! Cada dólar ou euro conta e axúdanos a pagar os - servidores e escalar. -- Informa de erros e comparte ideas no noso [GitHub][github] ou a través do - [email][email]. -- Axúdanos a [fix bugs][contributing] e facer revisións de código se es un - programador. Cada pequeno problema solucionado fai que alguén sexa máis - feliz. -- [Translate][translations] faltan cadeas na interface da aplicación. -- Traduce as descricións de [App Store][translations_appstore] e - [Android][translations_googleplay] ao teu idioma. -- [Translate][translations_website] o noso sitio web ao teu idioma. -- Únete á comunidade [OpenStreetMap][openstreetmap] e contribúe cos datos - dos mapas. -- Corrixe as cidades vermellas atopadas polo noso [public transport - validator][public_transport_validator], para que o metro e os trens - lixeiros funcionen na aplicación. -- Soporte a outros usuarios en [GitHub][issues], [Telegram][telegram_chat], - [Matrix][matrix], [Twitter][twitter], [Facebook][facebook], - [Instagram][instagram]. -- Fala a todos sobre os Organic Maps. Unha comunidade máis grande é unha - comunidade máis forte. -- Califícanos en [Google Play][googleplay_review], [Apple - Store][appstore_review], [Huawei Appgallery][appgallery_review]. -- Calquera axuda é benvida! - -O noso pequeno equipo está moi agradecido polos teus comentarios e apoio. Os -mapas orgánicos non serían posibles sen os nosos usuarios ❤️. - -{{references()}} diff --git a/content/support-us/index.pt.md b/content/support-us/index.pt.md deleted file mode 100644 index 68869151..00000000 --- a/content/support-us/index.pt.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -description: "Diferentes formas de apoiar o desenvolvimento da nossa aplicação gratuita" -extra: - menu_title: Apoie-nos - preview_image: support-us/support-us.jpg -title: "Apoie o desenvolvimento do Organic Maps" -weight: 20 ---- - -O Organic Maps é uma aplicação gratuita e de código aberto. Não tem -anúncios, não recolhe as suas informações pessoais e é desenvolvida por -alguns entusiastas com a ajuda da comunidade. - -Existem diferentes formas de apoiar o desenvolvimento: - -- [Doar](@/donate/index.md)! Cada dólar ou euro conta e ajuda-nos a pagar os - servidores e o desenvolvimento. -- Reporte erros e partilhe ideias no [GitHub][github] ou por [email][email]. -- Ajude-nos a [corrigir erros][contributing] e fazer revisões do código se - for um programador. Cada pequeno problema resolvido deixa alguém mais - feliz. -- [Traduzir][translations] os textos que faltam na interface da aplicação. -- Traduza as descrições da [App Store][translations_appstore] e - [Android][translations_googleplay] para o seu idioma. -- [Traduza][translations_website] o nosso site para o seu idioma. -- Junte-se à comunidade [OpenStreetMap][openstreetmap] e contribua com os - dados do mapa. -- Corrija as cidades vermelhas encontradas pelo nosso [verificador de - transportes públicos][public_transport_validator], para que os - metropolitanos e os metros ligeiros funcionem na aplicação. -- Apoie outros utilizadores no [GitHub][issues], [Telegram][telegram_chat], - [Matrix][matrix], [Twitter][twitter], [Facebook][facebook] e - [Instagram][instagram]. -- Fale a toda a gente sobre o Organic Maps. Uma comunidade maior é uma - comunidade mais forte. -- Avalie-nos no [Google Play][googleplay_review], [Apple - Store][appstore_review], [Huawei Appgallery][appgallery_review]. -- Qualquer ajuda é bem-vinda! - -A nossa pequena equipa está muito grata pelas suas opiniões e apoio. O -Organic Maps não seria possível sem os nossos utilizadores ❤️. - -{{ references() }} diff --git a/content/terms/index.af.md b/content/terms/index.af.md index ce95f062..bb13b35a 100644 --- a/content/terms/index.af.md +++ b/content/terms/index.af.md @@ -36,4 +36,4 @@ Indien u vrae of opmerkings het, kontak ons asb. by [github]: https://github.com/organicmaps/organicmaps [license]: http://www.apache.org/licenses/LICENSE-2.0 -[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html +[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html diff --git a/content/terms/index.ar.md b/content/terms/index.ar.md index 08b74301..e32c23b0 100644 --- a/content/terms/index.ar.md +++ b/content/terms/index.ar.md @@ -32,5 +32,5 @@ weight: 1000 [legal@organicmaps.app (mailto:legal@organicmaps.app). [github]: https://github.com/organicmaps/organicmaps -[license]: http://www.apache.org/licenses/LICENSE-2.0 -[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html +[الترخيص]: http://www.apache.org/licenses/LICENSE-2.0 +[حقوق النشر]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html diff --git a/content/terms/index.ca.md b/content/terms/index.ca.md index a845eb53..96eb80e9 100644 --- a/content/terms/index.ca.md +++ b/content/terms/index.ca.md @@ -6,34 +6,35 @@ title: "Organic Maps: condicions" weight: 1000 --- -Aquesta aplicació sota la Llicència Apache, Versió 2.0 (la «Llicència»); -només podreu fer servir aquesta aplicació si compliu amb la Llicència. +Aquesta aplicació està llicenciada sota la Llicència Apatxe, Versió 2.0 (la +"Llicència"); només podràs fer servir aquesta aplicació si compleixes amb la +Llicència. -Podeu obtenir una còpia de la Llicència a: +Pots obtenir una còpia de la Llicència en [http://www.apache.org/licenses/license-2.0][license] Tret que ho exigeixi la legislació aplicable o s'acordi per escrit, el -programari distribuït sota la Llicència es distribueix «TAL QUAL», SENSE -GARANTIES NI CONDICIONS DE CAP MENA; siguin expresses o -implícites. Consulteu la Llicència per a conèixer el llenguatge específic -que regeix els permisos i limitacions sota la Llicència. +programari distribuït sota la Llicència es distribueix "TAL QUAL", SENSE +GARANTIES NI CONDICIONS DE CAP MENA, ja siguin expresses o +implícites. Consulti la Llicència per a conèixer el llenguatge específic que +regeix els permisos i limitacions sota la Llicència. -La majoria de les biblioteques dels següents directoris al [GitHub][github] -són creades per altres organitzacions o persones i llicenciades de diferents -formes: +La majoria de les biblioteques dels següents directoris en [GitHub][github] +són creades per altres persones i organitzacions i llicenciades de diferents +maneres: -- Terceres parts -- eines +- 3party +- tools -Consulteu les seves LLICÈNCIES, CÒPIES o AVISOS per a conèixer les -condicions d'ús. +Consulti les seves LLICÈNCIES, CÒPIES o AVISOS per a conèixer les condicions +d'ús. -Consulteu també el fitxer [data/copyright.html][copyright] per a una llista +Consulta també el fitxer [data/copyright.html][copyright] per a una llista completa d’avisos de drets d’autor per a l’aplicació Organic Maps. -Si teniu cap dubte o suggeriment, contacteu (en anglès) amb nosaltres a +Si tens preguntes o suggeriments, posa't en contacte amb nosaltres en [legal@organicmaps.app](mailto:legal@organicmaps.app). [github]: https://github.com/organicmaps/organicmaps [license]: http://www.apache.org/licenses/LICENSE-2.0 -[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html +[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html diff --git a/content/terms/index.cs.md b/content/terms/index.cs.md index ef00a1d4..38f701c9 100644 --- a/content/terms/index.cs.md +++ b/content/terms/index.cs.md @@ -35,4 +35,4 @@ Máte-li jakékoli dotazy nebo návrhy, kontaktujte nás prosím na adrese [github]: https://github.com/organicmaps/organicmaps [license]: http://www.apache.org/licenses/LICENSE-2.0 -[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html +[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html diff --git a/content/terms/index.cy.md b/content/terms/index.cy.md deleted file mode 100644 index d2d2f174..00000000 --- a/content/terms/index.cy.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -description: "Telerau Defnyddio ap Organic Maps" -extra: - menu_title: Telerau -title: "Organic Maps: telerau" -weight: 1000 ---- - -Mae'r ap yma wedi'i thrwyddedu o dan y drwydded Apache License, fersiwn 2.0 -(y "Trwydded"); ni chewch ddefnyddio'r ap yma heblaw am mewn cydymffurfiad -â'r Drwydded. - -Fe allech gael copi o'r drwydded at -[http://www.apache.org/licenses/LICENSE-2.0][license] - -Heblaw ei bod yn ofynnol gan gyfraith gymwys neu wedi'i chytuno'n -ysgrifenedig, mae meddalwedd sy'n cael ei ddosbarthu o dan y Drwydded yn -cael ei ddosbarthu ar SAIL "FEL Y MAE", HEB WARANTAU NEU AMODAU O UNRHYW -FATH, naill ai wedi'i ddatgan neu'n ymhlyg. Gwelwch y Drwydded ar gyfer yr -iaith benodol sy'n llywodraethu'r caniatadau ac unrhyw gyfyngiadau o dan y -Drwydded. - -Mae'r rhan fwyaf o lyfrgelloedd yn y cyfeiriaduron canlynol ar -[GitHub][github] wedi'u creu gan bobl a sefydliadau gwahanol ac wedi'u -drwyddedu yn ffyrdd gwahanol: - -- 3party -- Offer - -Os gwelwch yn dda, cyfeiriwch at eu ffeiliau TRWYDDED, COPÏO neu SYLWADAU ar -gyfer y telerau o ddefnydd. - -Gwelwch hefyd y ffeil [data/copyright.html][copyright] ar gyfer rhestr lawn -o hysbysiadau hawlfraint am yr ap Organic Maps. - -Os oes gennych chi unrhyw gwestiynau neu awgrymiadau, cysylltwch â ni at -[legal@organicmaps.app](mailto:legal@organicmaps.app). - -[github]: https://github.com/organicmaps/organicmaps -[license]: http://www.apache.org/licenses/LICENSE-2. -[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html diff --git a/content/terms/index.de.md b/content/terms/index.de.md index 4affe9e0..5c0b7085 100644 --- a/content/terms/index.de.md +++ b/content/terms/index.de.md @@ -37,4 +37,4 @@ Wenn du Fragen oder Anregungen hast, kontaktiere uns bitte unter [github]: https://github.com/organicmaps/organicmaps [license]: http://www.apache.org/licenses/LICENSE-2.0 -[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html +[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html diff --git a/content/terms/index.es.md b/content/terms/index.es.md index bea6c556..f8153f3e 100644 --- a/content/terms/index.es.md +++ b/content/terms/index.es.md @@ -36,4 +36,4 @@ Si tiene preguntas o sugerencias, póngase en contacto con nosotros en [github]: https://github.com/organicmaps/organicmaps [license]: http://www.apache.org/licenses/LICENSE-2.0 -[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html +[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html diff --git a/content/terms/index.eu.md b/content/terms/index.eu.md index 6b2a0a1e..9cd8dc7c 100644 --- a/content/terms/index.eu.md +++ b/content/terms/index.eu.md @@ -1,7 +1,7 @@ --- description: "Organic Maps aplikazioaren erabilera baldintzak" extra: - menu_title: "Erabilera baldintzak" + menu_title: Baldintzak title: "Organic Maps: baldintzak" weight: 1000 --- @@ -35,4 +35,4 @@ honetan [legal@organicmaps.app](mailto:legal@organicmaps.app). [github]: https://github.com/organicmaps/organicmaps [license]: http://www.apache.org/licenses/LICENSE-2.0 -[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html +[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html diff --git a/content/terms/index.fr.md b/content/terms/index.fr.md index f7b6e2ec..a1e461fa 100644 --- a/content/terms/index.fr.md +++ b/content/terms/index.fr.md @@ -24,7 +24,7 @@ ont été créées par d'autres personnes et organisations et font l'objet de di Veuillez vous référer à leurs fichiers LICENCE, COPYING ou NOTICE pour connaître les conditions d'utilisation. -Voir également [data/copyright.html](https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html) +Voir également [data/copyright.html](https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html) pour une liste complète des avis de droits d'auteur pour l'application Organic Maps. Si vous avez des questions ou des suggestions, veuillez nous contacter à l'adresse [legal@organicmaps.app](mailto:legal@organicmaps.app). diff --git a/content/terms/index.gl.md b/content/terms/index.gl.md deleted file mode 100644 index 3846cdd4..00000000 --- a/content/terms/index.gl.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -description: "Condicións de uso da aplicación Organic Maps" -extra: - menu_title: Termos -title: "Organic Maps: termoss" -weight: 1000 ---- - -Esta aplicación está licenciada baixo a licenza Apache, versión 2.0 (a -"Licenza"); non pode usar esta aplicación excepto en cumprimento da Licenza. - -Podes obter unha copia da licenza en -[http://www.apache.org/licenses/LICENSE-2.0][license] - -Salvo que o requira a lexislación aplicable ou se acorde por escrito, a -aplicación distribuído baixo a Licenza distribúese "TAL CUAL", SEN GARANTÍAS -OU CONDICIÓNS DE NINGÚN TIPO, nin expresas nin implícitas. Consulte a -Licenza para coñecer os permisos e limitacións específicas que regulan a -lingua na Licenza. - -A maioría das bibliotecas dos seguintes directorios en [GitHub][github] -feitas por outras persoas e organizacións e con licenza de diferentes -formas: - -- Aplicacións de terceiros -- ferramentas - -Consulte os seus ficheiros de LICENZA, COPIA ou AVISO para coñecer os termos -de uso. - -Consulte tamén o ficheiro [data/copyright.html][copyright] para obter unha -lista completa de avisos de copyright para a aplicación Organic Maps. - -Se tes algunha pregunta ou suxestión, póñase en contacto connosco en -[legal@organicmaps.app](mailto:legal@organicmaps.app). - -[github]: https://github.com/organicmaps/organicmaps -[license]: http://www.apache.org/licenses/LICENSE-2.0 -[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html diff --git a/content/terms/index.hi.md b/content/terms/index.hi.md index 7b7cdbba..06fb3626 100644 --- a/content/terms/index.hi.md +++ b/content/terms/index.hi.md @@ -34,4 +34,4 @@ weight: 1000 [github]: https://github.com/organicmaps/organicmaps [license]: http://www.apache.org/licenses/LICENSE-2.0 -[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html +[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html diff --git a/content/terms/index.hu.md b/content/terms/index.hu.md index 740cac92..74cae147 100644 --- a/content/terms/index.hu.md +++ b/content/terms/index.hu.md @@ -34,4 +34,4 @@ Ha bármilyen kérdése vagy javaslata van, kérjük, lépjen kapcsolatba velün [github]: https://github.com/organicmaps/organicmaps [license]: http://www.apache.org/licenses/LICENSE-2.0 -[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html +[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html diff --git a/content/terms/index.id.md b/content/terms/index.id.md index 6580aca8..21c31b8f 100644 --- a/content/terms/index.id.md +++ b/content/terms/index.id.md @@ -35,4 +35,4 @@ Jika Anda memiliki pertanyaan atau saran, silakan hubungi kami di [github]: https://github.com/organicmaps/organicmaps [license]: http://www.apache.org/licenses/LICENSE-2.0 -[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html +[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html diff --git a/content/terms/index.it.md b/content/terms/index.it.md index c642de34..f8e4e5f3 100644 --- a/content/terms/index.it.md +++ b/content/terms/index.it.md @@ -24,7 +24,7 @@ e organizzazioni e concesse in licenza in modi diversi: Si prega di fare riferimento ai loro file di LICENZA, COPIA o AVVISO per le condizioni di utilizzo. -Vedere anche [data/copyright.html](https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html) +Vedere anche [data/copyright.html](https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html) per un elenco completo delle note di copyright per l'applicazione Organic Maps. Se avete domande o suggerimenti, contattateci all'indirizzo [legal@organicmaps.app](mailto:legal@organicmaps.app). diff --git a/content/terms/index.md b/content/terms/index.md index 991ed480..6a690451 100644 --- a/content/terms/index.md +++ b/content/terms/index.md @@ -25,4 +25,4 @@ If you have any questions or suggestions, please contact us at [legal@organicmap [github]: https://github.com/organicmaps/organicmaps [license]: http://www.apache.org/licenses/LICENSE-2.0 -[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html +[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html diff --git a/content/terms/index.nl.md b/content/terms/index.nl.md index ad6afef2..2db9023e 100644 --- a/content/terms/index.nl.md +++ b/content/terms/index.nl.md @@ -37,4 +37,4 @@ via[legal@organicmaps.app](mailto:legal@organicmaps.app). [github]: https://github.com/organicmaps/organicmaps [license]: http://www.apache.org/licenses/LICENSE-2.0 -[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html +[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html diff --git a/content/terms/index.pl.md b/content/terms/index.pl.md index 7c18422e..c9eea641 100644 --- a/content/terms/index.pl.md +++ b/content/terms/index.pl.md @@ -34,5 +34,5 @@ Jeśli masz jakiekolwiek pytania lub sugestie, skontaktuj się z nami pod adresem [legal@organicmaps.app](mailto:legal@organicmaps.app). [github]: https://github.com/organicmaps/organicmaps -[license]: http://www.apache.org/licenses/LICENSE-2.0 -[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html +[licencja]: http://www.apache.org/licenses/LICENSE-2.0 +[prawa autorskie]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html diff --git a/content/terms/index.pt-BR.md b/content/terms/index.pt-BR.md index 424a1c5c..e739c42f 100644 --- a/content/terms/index.pt-BR.md +++ b/content/terms/index.pt-BR.md @@ -36,4 +36,4 @@ em [legal@organicmaps.app](mailto:legal@organicmaps.app). [github]: https://github.com/organicmaps/organicmaps [license]: http://www.apache.org/licenses/LICENSE-2.0 -[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html +[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html diff --git a/content/terms/index.pt.md b/content/terms/index.pt.md deleted file mode 100644 index 645bb70e..00000000 --- a/content/terms/index.pt.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -description: "Termos de utilização da aplicação Organic Maps" -extra: - menu_title: "Termos de utilização" -title: "Organic Maps: termos de utilização" -weight: 1000 ---- - -Esta aplicação está licenciada ao abrigo da Licença Apache, Versão 2.0 (a -"Licença"); você não pode utilizar esta aplicação exceto em conformidade com -a Licença. - -Pode obter uma cópia da Licença em -[http://www.apache.org/licenses/LICENSE-2.0][license] - -Exceto se exigido pela lei aplicável ou acordado por escrito, o software -distribuído ao abrigo da Licença é distribuído numa BASE "TAL COMO ESTÁ", -SEM GARANTIAS OU CONDIÇÕES DE QUALQUER TIPO, expressas ou -implícitas. Consulte a Licença para obter o idioma específico que rege as -permissões e limitações sob a Licença. - -A maioria das bibliotecas nos seguintes diretórios no [GitHub][github] foram -criadas por outras pessoas e organizações e licenciadas de diferentes -formas: - -- Recursos de terceiros -- ferramentas - -Consulte os respetivos ficheiros LICENSE, COPYING ou NOTICE para obter -informações sobre os termos de utilização. - -Consulte também o ficheiro [data/copyright.html][copyright] para obter uma -lista completa de avisos de direitos de autor para a aplicação Organic Maps. - -Se tiver alguma dúvida ou sugestão, por favor entre em contacto connosco em -[legal@organicmaps.app](mailto:legal@organicmaps.app). - -[github]: https://github.com/organicmaps/organicmaps -[license]: http://www.apache.org/licenses/LICENSE-2.0 -[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html diff --git a/content/terms/index.ru.md b/content/terms/index.ru.md index ff683532..bed8270a 100644 --- a/content/terms/index.ru.md +++ b/content/terms/index.ru.md @@ -21,7 +21,7 @@ extra: Пожалуйста, обратитесь к их файлам LICENCE, COPYING или NOTICE для получения информации об условиях использования. -См. также [data/copyright.html](https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html) +См. также [data/copyright.html](https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html) файл для полного списка уведомлений об авторских правах для приложения Organic Maps. Если у вас есть вопросы или предложения, пожалуйста, свяжитесь с нами по адресу [legal@organicmaps.app](mailto:legal@organicmaps.app). diff --git a/content/terms/index.sv.md b/content/terms/index.sv.md index 971b1005..92e867d5 100644 --- a/content/terms/index.sv.md +++ b/content/terms/index.sv.md @@ -35,5 +35,5 @@ Om du har några frågor eller förslag kan du kontakta oss på [legal@organicmaps.app](mailto:legal@organicmaps.app). [github]: https://github.com/organicmaps/organicmaps -[license]: http://www.apache.org/licenses/LICENSE-2.0 -[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html +[licens]: http://www.apache.org/licenses/LICENSE-2.0 +[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html diff --git a/content/terms/index.tr.md b/content/terms/index.tr.md index f575f23b..58450cbc 100644 --- a/content/terms/index.tr.md +++ b/content/terms/index.tr.md @@ -25,6 +25,6 @@ kuruluşlar tarafından yapılmış ve farklı şekillerde lisanslanmıştır: Kullanım şartları için lütfen bu kütüphanelerin LICENCE, COPYING veya NOTICE dosyalarına bakın. Organic Maps uygulamasına ilişkin telif hakkı bildirimlerinin tam listesi için ayrıca -[data/copyright.html](https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html) adresine bakın. +[data/copyright.html](https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html) adresine bakın. Eğer herhangi bir soru veya öneriniz varsa lütfen [legal@organicmaps.app](mailto:legal@organicmaps.app) adresinden bizimle iletişime geçin. diff --git a/content/terms/index.uk.md b/content/terms/index.uk.md index 752f62f0..b41d39e0 100644 --- a/content/terms/index.uk.md +++ b/content/terms/index.uk.md @@ -36,4 +36,4 @@ weight: 1000 [github]: https://github.com/organicmaps/organicmaps [license]: http://www.apache.org/licenses/LICENSE-2.0 -[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html +[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html diff --git a/content/terms/index.zh-Hans.md b/content/terms/index.zh-Hans.md index 41367299..70c469a6 100644 --- a/content/terms/index.zh-Hans.md +++ b/content/terms/index.zh-Hans.md @@ -23,6 +23,6 @@ weight: 1000 如有任何意见建议,欢迎通过[legal@organicmaps.app](mailto:legal@organicmaps.app)联系我们。 -[github]: https://github.com/organicmaps/organicmaps -[license]: http://www.apache.org/licenses/LICENSE-2.0 -[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html +[Github]: https://github.com/organicmaps/organicmaps +[许可协议]: http://www.apache.org/licenses/LICENSE-2.0 +[版权信息]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html diff --git a/package-lock.json b/package-lock.json index b775e7c7..c32882c5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,57 +9,118 @@ "version": "1.0.0", "license": "Apache-2.0", "devDependencies": { - "js-beautify": "^1.15.1", + "js-beautify": "^1.14.9", "node-html-markdown": "^1.3.0", - "node-html-parser": "^6.1.13", - "postcss-scss": "^4.0.9", - "prettier": "^3.3.3", - "stylelint": "^16.7.0", - "stylelint-config-recommended": "^14.0.1", - "stylelint-config-standard": "^36.0.1", - "stylelint-scss": "^6.4.1" + "node-html-parser": "^6.1.10", + "postcss-scss": "^4.0.8", + "prettier": "^3.0.3", + "stylelint": "^15.10.3", + "stylelint-config-recommended": "^13.0.0", + "stylelint-config-standard": "^34.0.0", + "stylelint-scss": "^5.2.1" } }, "node_modules/@babel/code-frame": { - "version": "7.23.5", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.5.tgz", - "integrity": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz", + "integrity": "sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==", "dev": true, "dependencies": { - "@babel/highlight": "^7.23.4", - "chalk": "^2.4.2" + "@babel/highlight": "^7.16.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-identifier": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", - "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz", + "integrity": "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/highlight": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.23.4.tgz", - "integrity": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==", + "version": "7.16.10", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.10.tgz", + "integrity": "sha512-5FnTQLSLswEj6IkgVw5KusNUUFY9ZGqe/TRFnP/BKYHYgfh7tc+C7mwiy95/yNP7Dh9x580Vv8r7u7ZfTBFxdw==", "dev": true, "dependencies": { - "@babel/helper-validator-identifier": "^7.22.20", - "chalk": "^2.4.2", + "@babel/helper-validator-identifier": "^7.16.7", + "chalk": "^2.0.0", "js-tokens": "^4.0.0" }, "engines": { "node": ">=6.9.0" } }, + "node_modules/@babel/highlight/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@babel/highlight/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "node_modules/@babel/highlight/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, "node_modules/@csstools/css-parser-algorithms": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-2.7.1.tgz", - "integrity": "sha512-2SJS42gxmACHgikc1WGesXLIT8d/q2l0UFM7TaEeIzdFCE/FPMtTiizcPGGJtlPo2xuQzY09OhrLTzRxqJqwGw==", + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-2.3.1.tgz", + "integrity": "sha512-xrvsmVUtefWMWQsGgFffqWSK03pZ1vfDki4IVIIUxxDKnGBzqNgv0A7SB1oXtVNEkcVO8xi1ZrTL29HhSu5kGA==", "dev": true, "funding": [ { @@ -71,18 +132,17 @@ "url": "https://opencollective.com/csstools" } ], - "license": "MIT", "engines": { "node": "^14 || ^16 || >=18" }, "peerDependencies": { - "@csstools/css-tokenizer": "^2.4.1" + "@csstools/css-tokenizer": "^2.2.0" } }, "node_modules/@csstools/css-tokenizer": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-2.4.1.tgz", - "integrity": "sha512-eQ9DIktFJBhGjioABJRtUucoWR2mwllurfnM8LuNGAqX3ViZXaUchqk+1s7jjtkFiT9ySdACsFEA3etErkALUg==", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-2.2.0.tgz", + "integrity": "sha512-wErmsWCbsmig8sQKkM6pFhr/oPha1bHfvxsUY5CYSQxwyhA9Ulrs8EqCgClhg4Tgg2XapVstGqSVcz0xOYizZA==", "dev": true, "funding": [ { @@ -94,15 +154,14 @@ "url": "https://opencollective.com/csstools" } ], - "license": "MIT", "engines": { "node": "^14 || ^16 || >=18" } }, "node_modules/@csstools/media-query-list-parser": { - "version": "2.1.13", - "resolved": "https://registry.npmjs.org/@csstools/media-query-list-parser/-/media-query-list-parser-2.1.13.tgz", - "integrity": "sha512-XaHr+16KRU9Gf8XLi3q8kDlI18d5vzKSKCY510Vrtc9iNR0NJzbY9hhTmwhzYZj/ZwGL4VmB3TA9hJW0Um2qFA==", + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@csstools/media-query-list-parser/-/media-query-list-parser-2.1.4.tgz", + "integrity": "sha512-V/OUXYX91tAC1CDsiY+HotIcJR+vPtzrX8pCplCpT++i8ThZZsq5F5dzZh/bDM3WUOjrvC1ljed1oSJxMfjqhw==", "dev": true, "funding": [ { @@ -114,19 +173,18 @@ "url": "https://opencollective.com/csstools" } ], - "license": "MIT", "engines": { "node": "^14 || ^16 || >=18" }, "peerDependencies": { - "@csstools/css-parser-algorithms": "^2.7.1", - "@csstools/css-tokenizer": "^2.4.1" + "@csstools/css-parser-algorithms": "^2.3.1", + "@csstools/css-tokenizer": "^2.2.0" } }, "node_modules/@csstools/selector-specificity": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-3.1.1.tgz", - "integrity": "sha512-a7cxGcJ2wIlMFLlh8z2ONm+715QkPHiyJcxwQlKOz/03GPw1COpfhcmC9wm4xlZfp//jWHNNMwzjtqHXVWU9KA==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-3.0.0.tgz", + "integrity": "sha512-hBI9tfBtuPIi885ZsZ32IMEU/5nlZH/KOVYJCOh7gyMxaVLGmLedYqFN6Ui1LXkI8JlC8IsuC0rF0btcRZKd5g==", "dev": true, "funding": [ { @@ -145,83 +203,6 @@ "postcss-selector-parser": "^6.0.13" } }, - "node_modules/@dual-bundle/import-meta-resolve": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/@dual-bundle/import-meta-resolve/-/import-meta-resolve-4.1.0.tgz", - "integrity": "sha512-+nxncfwHM5SgAtrVzgpzJOI1ol0PkumhVo469KCf9lUi21IGcY90G98VuHm9VRrUypmAzawAHO9bs6hqeADaVg==", - "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/@isaacs/cliui": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", - "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", - "dev": true, - "dependencies": { - "string-width": "^5.1.2", - "string-width-cjs": "npm:string-width@^4.2.0", - "strip-ansi": "^7.0.1", - "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", - "wrap-ansi": "^8.1.0", - "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@isaacs/cliui/node_modules/ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" - } - }, - "node_modules/@isaacs/cliui/node_modules/emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "dev": true - }, - "node_modules/@isaacs/cliui/node_modules/string-width": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", - "dev": true, - "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@isaacs/cliui/node_modules/strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", - "dev": true, - "dependencies": { - "ansi-regex": "^6.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" - } - }, "node_modules/@nodelib/fs.scandir": { "version": "2.1.5", "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", @@ -263,29 +244,28 @@ "integrity": "sha512-XuySG1E38YScSJoMlqovLru4KTUNSjgVTIjyh7qMX6aNN5HY5Ct5LhRJdxO79JtTzKfzV/bnWpz+zquYrISsvw==", "dev": true }, - "node_modules/@pkgjs/parseargs": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", - "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", - "dev": true, - "optional": true, - "engines": { - "node": ">=14" - } + "node_modules/@types/minimist": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.2.tgz", + "integrity": "sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==", + "dev": true + }, + "node_modules/@types/normalize-package-data": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz", + "integrity": "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==", + "dev": true }, "node_modules/abbrev": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-2.0.0.tgz", - "integrity": "sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==", - "dev": true, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", + "dev": true }, "node_modules/ajv": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", - "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "version": "8.11.2", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.2.tgz", + "integrity": "sha512-E4bfmKAhGiSTvMfL1Myyycaub+cUEU2/IvpylXkUu7CHBkBj1f/ikdzbD7YQ6FKUbixDxeYvB/xY4fvyroDlQg==", "dev": true, "dependencies": { "fast-deep-equal": "^3.1.1", @@ -337,6 +317,15 @@ "node": ">=8" } }, + "node_modules/arrify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", + "integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/astral-regex": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", @@ -359,21 +348,22 @@ "dev": true }, "node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "dev": true, "dependencies": { - "balanced-match": "^1.0.0" + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" } }, "node_modules/braces": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", - "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", "dev": true, "dependencies": { - "fill-range": "^7.1.1" + "fill-range": "^7.0.1" }, "engines": { "node": ">=8" @@ -388,66 +378,34 @@ "node": ">=6" } }, - "node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/camelcase-keys": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-7.0.2.tgz", + "integrity": "sha512-Rjs1H+A9R+Ig+4E/9oyB66UC5Mj9Xq3N//vcLf2WzgdTi/3gUu3Z9KoqmlrEG4VuuLK8wJHofxzdQXz/knhiYg==", "dev": true, "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" + "camelcase": "^6.3.0", + "map-obj": "^4.1.0", + "quick-lru": "^5.1.1", + "type-fest": "^1.2.1" }, "engines": { - "node": ">=4" - } - }, - "node_modules/chalk/node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "dependencies": { - "color-convert": "^1.9.0" + "node": ">=12" }, - "engines": { - "node": ">=4" - } - }, - "node_modules/chalk/node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dev": true, - "dependencies": { - "color-name": "1.1.3" - } - }, - "node_modules/chalk/node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", - "dev": true - }, - "node_modules/chalk/node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/chalk/node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=4" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/color-convert": { @@ -483,6 +441,12 @@ "node": ">=14" } }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + }, "node_modules/config-chain": { "version": "1.1.13", "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz", @@ -494,67 +458,30 @@ } }, "node_modules/cosmiconfig": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-9.0.0.tgz", - "integrity": "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==", + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.2.0.tgz", + "integrity": "sha512-3rTMnFJA1tCOPwRxtgF4wd7Ab2qvDbL8jX+3smjIbS4HlZBagTlpERbdN7iAbWlrfxE3M8c27kTwTawQ7st+OQ==", "dev": true, "dependencies": { - "env-paths": "^2.2.1", - "import-fresh": "^3.3.0", + "import-fresh": "^3.2.1", "js-yaml": "^4.1.0", - "parse-json": "^5.2.0" + "parse-json": "^5.0.0", + "path-type": "^4.0.0" }, "engines": { "node": ">=14" }, "funding": { "url": "https://github.com/sponsors/d-fischer" - }, - "peerDependencies": { - "typescript": ">=4.9.5" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dev": true, - "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/cross-spawn/node_modules/which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dev": true, - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "node-which": "bin/node-which" - }, - "engines": { - "node": ">= 8" } }, "node_modules/css-functions-list": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/css-functions-list/-/css-functions-list-3.2.2.tgz", - "integrity": "sha512-c+N0v6wbKVxTu5gOBBFkr9BEdBWaqqjQeiJ8QvSRIJOf+UxlJh930m8e6/WNeODIK0mYLFkoONrnj16i2EcvfQ==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/css-functions-list/-/css-functions-list-3.2.0.tgz", + "integrity": "sha512-d/jBMPyYybkkLVypgtGv12R+pIFw4/f/IHtCTxWpZc8ofTYOPigIgmA6vu5rMHartZC+WuXhBUHfnyNUIQSYrg==", "dev": true, "engines": { - "node": ">=12 || >=16" + "node": ">=12.22" } }, "node_modules/css-select": { @@ -611,11 +538,10 @@ } }, "node_modules/debug": { - "version": "4.3.5", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz", - "integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==", + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "dev": true, - "license": "MIT", "dependencies": { "ms": "2.1.2" }, @@ -628,6 +554,52 @@ } } }, + "node_modules/decamelize": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-5.0.1.tgz", + "integrity": "sha512-VfxadyCECXgQlkoEAjeghAr5gY3Hf+IKjKb+X8tGVDtveCjN+USwprd2q3QXBR9T1+x2DG0XZF5/w+7HAtSaXA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/decamelize-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.1.tgz", + "integrity": "sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==", + "dev": true, + "dependencies": { + "decamelize": "^1.1.0", + "map-obj": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/decamelize-keys/node_modules/decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/decamelize-keys/node_modules/map-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", + "integrity": "sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/dir-glob": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", @@ -695,12 +667,6 @@ "url": "https://github.com/fb55/domutils?sponsor=1" } }, - "node_modules/eastasianwidth": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", - "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", - "dev": true - }, "node_modules/editorconfig": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/editorconfig/-/editorconfig-1.0.4.tgz", @@ -719,6 +685,15 @@ "node": ">=14" } }, + "node_modules/editorconfig/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, "node_modules/editorconfig/node_modules/minimatch": { "version": "9.0.1", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.1.tgz", @@ -752,15 +727,6 @@ "url": "https://github.com/fb55/entities?sponsor=1" } }, - "node_modules/env-paths": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", - "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", - "dev": true, - "engines": { - "node": ">=6" - } - }, "node_modules/error-ex": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", @@ -773,7 +739,7 @@ "node_modules/escape-string-regexp": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", "dev": true, "engines": { "node": ">=0.8.0" @@ -786,9 +752,9 @@ "dev": true }, "node_modules/fast-glob": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", - "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz", + "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==", "dev": true, "dependencies": { "@nodelib/fs.stat": "^2.0.2", @@ -820,21 +786,21 @@ } }, "node_modules/file-entry-cache": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-9.0.0.tgz", - "integrity": "sha512-6MgEugi8p2tiUhqO7GnPsmbCCzj0YRCwwaTbpGRyKZesjRSzkqkAE9fPp7V2yMs5hwfgbQLgdvSSkGNg1s5Uvw==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", "dev": true, "dependencies": { - "flat-cache": "^5.0.0" + "flat-cache": "^3.0.4" }, "engines": { - "node": ">=18" + "node": "^10.12.0 || >=12.0.0" } }, "node_modules/fill-range": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", - "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", "dev": true, "dependencies": { "to-regex-range": "^5.0.1" @@ -843,58 +809,68 @@ "node": ">=8" } }, - "node_modules/flat-cache": { + "node_modules/find-up": { "version": "5.0.0", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-5.0.0.tgz", - "integrity": "sha512-JrqFmyUl2PnPi1OvLyTVHnQvwQ0S+e6lGSwu8OkAZlSaNIZciTY2H/cOOROxsBA1m/LZNHDsqAgDZt6akWcjsQ==", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", "dev": true, "dependencies": { - "flatted": "^3.3.1", - "keyv": "^4.5.4" + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" }, "engines": { - "node": ">=18" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "dev": true, + "dependencies": { + "flatted": "^3.1.0", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" } }, "node_modules/flatted": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", - "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", + "version": "3.2.5", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.5.tgz", + "integrity": "sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg==", "dev": true }, - "node_modules/foreground-child": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz", - "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==", - "dev": true, - "dependencies": { - "cross-spawn": "^7.0.0", - "signal-exit": "^4.0.1" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "dev": true + }, + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true }, "node_modules/glob": { - "version": "10.3.10", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz", - "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", "dev": true, "dependencies": { - "foreground-child": "^3.1.0", - "jackspeak": "^2.3.5", - "minimatch": "^9.0.1", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", - "path-scurry": "^1.10.1" - }, - "bin": { - "glob": "dist/esm/bin.mjs" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" }, "engines": { - "node": ">=16 || 14 >=14.17" + "node": "*" }, "funding": { "url": "https://github.com/sponsors/isaacs" @@ -964,6 +940,27 @@ "integrity": "sha1-L0SUrIkZ43Z8XLtpHp9GMyQoXUM=", "dev": true }, + "node_modules/hard-rejection": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz", + "integrity": "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, "node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", @@ -982,6 +979,18 @@ "he": "bin/he" } }, + "node_modules/hosted-git-info": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", + "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, "node_modules/html-tags": { "version": "3.3.1", "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.3.1.tgz", @@ -995,9 +1004,9 @@ } }, "node_modules/ignore": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", - "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", "dev": true, "engines": { "node": ">= 4" @@ -1028,6 +1037,15 @@ "node": ">=4" } }, + "node_modules/import-lazy": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-4.0.0.tgz", + "integrity": "sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, "node_modules/imurmurhash": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", @@ -1037,6 +1055,34 @@ "node": ">=0.8.19" } }, + "node_modules/indent-string": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz", + "integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, "node_modules/ini": { "version": "1.3.8", "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", @@ -1046,9 +1092,21 @@ "node_modules/is-arrayish": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", "dev": true }, + "node_modules/is-core-module": { + "version": "2.13.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", + "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", + "dev": true, + "dependencies": { + "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-extglob": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", @@ -1088,6 +1146,15 @@ "node": ">=0.12.0" } }, + "node_modules/is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/is-plain-object": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", @@ -1103,35 +1170,16 @@ "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", "dev": true }, - "node_modules/jackspeak": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.3.6.tgz", - "integrity": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==", - "dev": true, - "dependencies": { - "@isaacs/cliui": "^8.0.2" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - }, - "optionalDependencies": { - "@pkgjs/parseargs": "^0.11.0" - } - }, "node_modules/js-beautify": { - "version": "1.15.1", - "resolved": "https://registry.npmjs.org/js-beautify/-/js-beautify-1.15.1.tgz", - "integrity": "sha512-ESjNzSlt/sWE8sciZH8kBF8BPlwXPwhR6pWKAw8bw4Bwj+iZcnKW6ONWUutJ7eObuBZQpiIb8S7OYspWrKt7rA==", + "version": "1.14.9", + "resolved": "https://registry.npmjs.org/js-beautify/-/js-beautify-1.14.9.tgz", + "integrity": "sha512-coM7xq1syLcMyuVGyToxcj2AlzhkDjmfklL8r0JgJ7A76wyGMpJ1oA35mr4APdYNO/o/4YY8H54NQIJzhMbhBg==", "dev": true, "dependencies": { "config-chain": "^1.1.13", - "editorconfig": "^1.0.4", - "glob": "^10.3.3", - "js-cookie": "^3.0.5", - "nopt": "^7.2.0" + "editorconfig": "^1.0.3", + "glob": "^8.1.0", + "nopt": "^6.0.0" }, "bin": { "css-beautify": "js/bin/css-beautify.js", @@ -1139,16 +1187,47 @@ "js-beautify": "js/bin/js-beautify.js" }, "engines": { - "node": ">=14" + "node": ">=12" } }, - "node_modules/js-cookie": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/js-cookie/-/js-cookie-3.0.5.tgz", - "integrity": "sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw==", + "node_modules/js-beautify/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/js-beautify/node_modules/glob": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", + "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "once": "^1.3.0" + }, "engines": { - "node": ">=14" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/js-beautify/node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" } }, "node_modules/js-tokens": { @@ -1169,12 +1248,6 @@ "js-yaml": "bin/js-yaml.js" } }, - "node_modules/json-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", - "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", - "dev": true - }, "node_modules/json-parse-even-better-errors": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", @@ -1187,15 +1260,6 @@ "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", "dev": true }, - "node_modules/keyv": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", - "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", - "dev": true, - "dependencies": { - "json-buffer": "3.0.1" - } - }, "node_modules/kind-of": { "version": "6.0.3", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", @@ -1206,11 +1270,10 @@ } }, "node_modules/known-css-properties": { - "version": "0.34.0", - "resolved": "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.34.0.tgz", - "integrity": "sha512-tBECoUqNFbyAY4RrbqsBQqDFpGXAEbdD5QKr8kACx3+rnArmuuR22nKQWKazvp07N9yjTyDZaw/20UIH8tL9DQ==", - "dev": true, - "license": "MIT" + "version": "0.28.0", + "resolved": "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.28.0.tgz", + "integrity": "sha512-9pSL5XB4J+ifHP0e0jmmC98OGC1nL8/JjS+fi6mnTlIf//yt/MfVLtKg7S6nCtj/8KTcWX7nRlY0XywoYY1ISQ==", + "dev": true }, "node_modules/lines-and-columns": { "version": "1.2.4", @@ -1218,6 +1281,21 @@ "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", "dev": true }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/lodash.truncate": { "version": "4.4.2", "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", @@ -1236,6 +1314,18 @@ "node": ">=10" } }, + "node_modules/map-obj": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz", + "integrity": "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/mathml-tag-names": { "version": "2.1.3", "resolved": "https://registry.npmjs.org/mathml-tag-names/-/mathml-tag-names-2.1.3.tgz", @@ -1253,12 +1343,26 @@ "dev": true }, "node_modules/meow": { - "version": "13.2.0", - "resolved": "https://registry.npmjs.org/meow/-/meow-13.2.0.tgz", - "integrity": "sha512-pxQJQzB6djGPXh08dacEloMFopsOqGVRKFPYvPOt9XDZ1HasbgDZA74CJGreSU4G3Ak7EFJGoiH2auq+yXISgA==", + "version": "10.1.5", + "resolved": "https://registry.npmjs.org/meow/-/meow-10.1.5.tgz", + "integrity": "sha512-/d+PQ4GKmGvM9Bee/DPa8z3mXs/pkvJE2KEThngVNOqtmljC6K7NMPxtc2JeZYTmpWb9k/TmxjeL18ez3h7vCw==", "dev": true, + "dependencies": { + "@types/minimist": "^1.2.2", + "camelcase-keys": "^7.0.0", + "decamelize": "^5.0.0", + "decamelize-keys": "^1.1.0", + "hard-rejection": "^2.1.0", + "minimist-options": "4.1.0", + "normalize-package-data": "^3.0.2", + "read-pkg-up": "^8.0.0", + "redent": "^4.0.0", + "trim-newlines": "^4.0.2", + "type-fest": "^1.2.2", + "yargs-parser": "^20.2.9" + }, "engines": { - "node": ">=18" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" @@ -1274,53 +1378,63 @@ } }, "node_modules/micromatch": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.7.tgz", - "integrity": "sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==", + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", "dev": true, "dependencies": { - "braces": "^3.0.3", + "braces": "^3.0.2", "picomatch": "^2.3.1" }, "engines": { "node": ">=8.6" } }, - "node_modules/minimatch": { - "version": "9.0.3", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", - "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "node_modules/min-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", + "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", "dev": true, - "dependencies": { - "brace-expansion": "^2.0.1" - }, "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "node": ">=4" } }, - "node_modules/minipass": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz", - "integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==", + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, "engines": { - "node": ">=16 || 14 >=14.17" + "node": "*" + } + }, + "node_modules/minimist-options": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz", + "integrity": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==", + "dev": true, + "dependencies": { + "arrify": "^1.0.1", + "is-plain-obj": "^1.1.0", + "kind-of": "^6.0.3" + }, + "engines": { + "node": ">= 6" } }, "node_modules/ms": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true, - "license": "MIT" + "dev": true }, "node_modules/nanoid": { - "version": "3.3.7", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", - "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", + "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", "dev": true, "funding": [ { @@ -1348,9 +1462,9 @@ } }, "node_modules/node-html-parser": { - "version": "6.1.13", - "resolved": "https://registry.npmjs.org/node-html-parser/-/node-html-parser-6.1.13.tgz", - "integrity": "sha512-qIsTMOY4C/dAa5Q5vsobRpOOvPfC4pB61UVW2uSwZNUp0QU/jCekTal1vMmbO0DgdHeLUJpv/ARmDqErVxA3Sg==", + "version": "6.1.10", + "resolved": "https://registry.npmjs.org/node-html-parser/-/node-html-parser-6.1.10.tgz", + "integrity": "sha512-6/uWdWxjQWQ7tMcFK2wWlrflsQUzh1HsEzlIf2j5+TtzfhT2yUvg3DwZYAmjEHeR3uX74ko7exjHW69J0tOzIg==", "dev": true, "dependencies": { "css-select": "^5.1.0", @@ -1358,18 +1472,33 @@ } }, "node_modules/nopt": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-7.2.0.tgz", - "integrity": "sha512-CVDtwCdhYIvnAzFoJ6NJ6dX3oga9/HyciQDnG1vQDjSLMeKLJ4A93ZqYKDrgYSr1FBY5/hMYC+2VCi24pgpkGA==", + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-6.0.0.tgz", + "integrity": "sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==", "dev": true, "dependencies": { - "abbrev": "^2.0.0" + "abbrev": "^1.0.0" }, "bin": { "nopt": "bin/nopt.js" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/normalize-package-data": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", + "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", + "dev": true, + "dependencies": { + "hosted-git-info": "^4.0.1", + "is-core-module": "^2.5.0", + "semver": "^7.3.4", + "validate-npm-package-license": "^3.0.1" + }, + "engines": { + "node": ">=10" } }, "node_modules/normalize-path": { @@ -1393,6 +1522,45 @@ "url": "https://github.com/fb55/nth-check?sponsor=1" } }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/parent-module": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", @@ -1423,38 +1591,22 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", "dev": true, "engines": { "node": ">=8" } }, - "node_modules/path-scurry": { - "version": "1.10.1", - "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.1.tgz", - "integrity": "sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==", - "dev": true, - "dependencies": { - "lru-cache": "^9.1.1 || ^10.0.0", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/path-scurry/node_modules/lru-cache": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.0.1.tgz", - "integrity": "sha512-IJ4uwUTi2qCccrioU6g9g/5rvvVl13bsdczUUcqbciD9iLr095yj8DQKdObriEvuNSx325N1rV1O0sJFszx75g==", + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", "dev": true, "engines": { - "node": "14 || >=16.14" + "node": ">=0.10.0" } }, "node_modules/path-type": { @@ -1467,9 +1619,9 @@ } }, "node_modules/picocolors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz", - "integrity": "sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==", + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", "dev": true }, "node_modules/picomatch": { @@ -1485,9 +1637,9 @@ } }, "node_modules/postcss": { - "version": "8.4.39", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.39.tgz", - "integrity": "sha512-0vzE+lAiG7hZl1/9I8yzKLx3aR9Xbof3fBHKunvMfOCYAtMhrsnccJY2iTURb9EZd5+pLuiNV9/c/GZJOHsgIw==", + "version": "8.4.29", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.29.tgz", + "integrity": "sha512-cbI+jaqIeu/VGqXEarWkRCCffhjgXc0qjBtXpqJhTBohMUjUQnbBr0xqX3vEKudc4iviTewcJo5ajcec5+wdJw==", "dev": true, "funding": [ { @@ -1503,11 +1655,10 @@ "url": "https://github.com/sponsors/ai" } ], - "license": "MIT", "dependencies": { - "nanoid": "^3.3.7", - "picocolors": "^1.0.1", - "source-map-js": "^1.2.0" + "nanoid": "^3.3.6", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" }, "engines": { "node": "^10 || ^12 || >=14" @@ -1526,35 +1677,25 @@ "dev": true }, "node_modules/postcss-safe-parser": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-7.0.0.tgz", - "integrity": "sha512-ovehqRNVCpuFzbXoTb4qLtyzK3xn3t/CUBxOs8LsnQjQrShaB4lKiHoVqY8ANaC0hBMHq5QVWk77rwGklFUDrg==", + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-6.0.0.tgz", + "integrity": "sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==", "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss-safe-parser" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], "engines": { - "node": ">=18.0" + "node": ">=12.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" }, "peerDependencies": { - "postcss": "^8.4.31" + "postcss": "^8.3.3" } }, "node_modules/postcss-scss": { - "version": "4.0.9", - "resolved": "https://registry.npmjs.org/postcss-scss/-/postcss-scss-4.0.9.tgz", - "integrity": "sha512-AjKOeiwAitL/MXxQW2DliT28EKukvvbEWx3LBmJIRN8KfBGZbRTxNYW0kSqi1COiTZ57nZ9NW06S6ux//N1c9A==", + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/postcss-scss/-/postcss-scss-4.0.8.tgz", + "integrity": "sha512-Cr0X8Eu7xMhE96PJck6ses/uVVXDtE5ghUTKNUYgm8ozgP2TkgV3LWs3WgLV1xaSSLq8ZFiXaUrj0LVgG1fGEA==", "dev": true, "funding": [ { @@ -1578,9 +1719,9 @@ } }, "node_modules/postcss-selector-parser": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.0.tgz", - "integrity": "sha512-UMz42UD0UY0EApS0ZL9o1XnLhSTtvvvLe5Dc2H2O56fvRZi+KulDyf5ctDhhtYJBGKStV2FL1fy6253cmLgqVQ==", + "version": "6.0.13", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz", + "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", "dev": true, "dependencies": { "cssesc": "^3.0.0", @@ -1597,11 +1738,10 @@ "dev": true }, "node_modules/prettier": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.3.3.tgz", - "integrity": "sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==", + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.0.3.tgz", + "integrity": "sha512-L/4pUDMxcNa8R/EthV08Zt42WBO4h1rarVtK0K+QJG0X187OLo7l699jWw0GKuwzkPQ//jMFA/8Xm6Fh3J/DAg==", "dev": true, - "license": "MIT", "bin": { "prettier": "bin/prettier.cjs" }, @@ -1619,9 +1759,9 @@ "dev": true }, "node_modules/punycode": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", - "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", "dev": true, "engines": { "node": ">=6" @@ -1647,6 +1787,69 @@ } ] }, + "node_modules/quick-lru": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", + "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/read-pkg": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-6.0.0.tgz", + "integrity": "sha512-X1Fu3dPuk/8ZLsMhEj5f4wFAF0DWoK7qhGJvgaijocXxBmSToKfbFtqbxMO7bVjNA1dmE5huAzjXj/ey86iw9Q==", + "dev": true, + "dependencies": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^3.0.2", + "parse-json": "^5.2.0", + "type-fest": "^1.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/read-pkg-up": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-8.0.0.tgz", + "integrity": "sha512-snVCqPczksT0HS2EC+SxUndvSzn6LRCwpfSvLrIfR5BKDQQZMaI6jPRC9dYvYFDRAuFEAnkwww8kBBNE/3VvzQ==", + "dev": true, + "dependencies": { + "find-up": "^5.0.0", + "read-pkg": "^6.0.0", + "type-fest": "^1.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/redent": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-4.0.0.tgz", + "integrity": "sha512-tYkDkVVtYkSVhuQ4zBgfvciymHaeuel+zFKXShfDnFP5SyVEP7qo70Rf1jTOTCx3vGNAbnEi/xFkcfQVMIBWag==", + "dev": true, + "dependencies": { + "indent-string": "^5.0.0", + "strip-indent": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/require-from-string": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", @@ -1675,6 +1878,21 @@ "node": ">=0.10.0" } }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, "node_modules/run-parallel": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", @@ -1713,27 +1931,6 @@ "node": ">=10" } }, - "node_modules/shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dev": true, - "dependencies": { - "shebang-regex": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true, - "engines": { - "node": ">=8" - } - }, "node_modules/signal-exit": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.0.1.tgz", @@ -1773,30 +1970,47 @@ } }, "node_modules/source-map-js": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz", - "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", "dev": true, "engines": { "node": ">=0.10.0" } }, - "node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "node_modules/spdx-correct": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", + "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", "dev": true, "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" } }, - "node_modules/string-width-cjs": { - "name": "string-width", + "node_modules/spdx-exceptions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", + "dev": true + }, + "node_modules/spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "dev": true, + "dependencies": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-license-ids": { + "version": "3.0.13", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.13.tgz", + "integrity": "sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==", + "dev": true + }, + "node_modules/string-width": { "version": "4.2.3", "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", @@ -1822,160 +2036,126 @@ "node": ">=8" } }, - "node_modules/strip-ansi-cjs": { - "name": "strip-ansi", - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "node_modules/strip-indent": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-4.0.0.tgz", + "integrity": "sha512-mnVSV2l+Zv6BLpSD/8V87CW/y9EmmbYzGCIavsnsI6/nwn26DwffM/yztm30Z/I2DY9wdS3vXVCMnHDgZaVNoA==", "dev": true, "dependencies": { - "ansi-regex": "^5.0.1" + "min-indent": "^1.0.1" }, "engines": { - "node": ">=8" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/style-search": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/style-search/-/style-search-0.1.0.tgz", + "integrity": "sha1-eVjHk+R+MuB9K1yv5cC/jhLneQI=", + "dev": true + }, "node_modules/stylelint": { - "version": "16.7.0", - "resolved": "https://registry.npmjs.org/stylelint/-/stylelint-16.7.0.tgz", - "integrity": "sha512-Q1ATiXlz+wYr37a7TGsfvqYn2nSR3T/isw3IWlZQzFzCNoACHuGBb6xBplZXz56/uDRJHIygxjh7jbV/8isewA==", + "version": "15.10.3", + "resolved": "https://registry.npmjs.org/stylelint/-/stylelint-15.10.3.tgz", + "integrity": "sha512-aBQMMxYvFzJJwkmg+BUUg3YfPyeuCuKo2f+LOw7yYbU8AZMblibwzp9OV4srHVeQldxvSFdz0/Xu8blq2AesiA==", "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/stylelint" - }, - { - "type": "github", - "url": "https://github.com/sponsors/stylelint" - } - ], - "license": "MIT", "dependencies": { - "@csstools/css-parser-algorithms": "^2.7.1", - "@csstools/css-tokenizer": "^2.4.1", - "@csstools/media-query-list-parser": "^2.1.13", - "@csstools/selector-specificity": "^3.1.1", - "@dual-bundle/import-meta-resolve": "^4.1.0", + "@csstools/css-parser-algorithms": "^2.3.1", + "@csstools/css-tokenizer": "^2.2.0", + "@csstools/media-query-list-parser": "^2.1.4", + "@csstools/selector-specificity": "^3.0.0", "balanced-match": "^2.0.0", "colord": "^2.9.3", - "cosmiconfig": "^9.0.0", - "css-functions-list": "^3.2.2", + "cosmiconfig": "^8.2.0", + "css-functions-list": "^3.2.0", "css-tree": "^2.3.1", - "debug": "^4.3.5", - "fast-glob": "^3.3.2", + "debug": "^4.3.4", + "fast-glob": "^3.3.1", "fastest-levenshtein": "^1.0.16", - "file-entry-cache": "^9.0.0", + "file-entry-cache": "^6.0.1", "global-modules": "^2.0.0", "globby": "^11.1.0", "globjoin": "^0.1.4", "html-tags": "^3.3.1", - "ignore": "^5.3.1", + "ignore": "^5.2.4", + "import-lazy": "^4.0.0", "imurmurhash": "^0.1.4", "is-plain-object": "^5.0.0", - "known-css-properties": "^0.34.0", + "known-css-properties": "^0.28.0", "mathml-tag-names": "^2.1.3", - "meow": "^13.2.0", - "micromatch": "^4.0.7", + "meow": "^10.1.5", + "micromatch": "^4.0.5", "normalize-path": "^3.0.0", - "picocolors": "^1.0.1", - "postcss": "^8.4.39", + "picocolors": "^1.0.0", + "postcss": "^8.4.27", "postcss-resolve-nested-selector": "^0.1.1", - "postcss-safe-parser": "^7.0.0", - "postcss-selector-parser": "^6.1.0", + "postcss-safe-parser": "^6.0.0", + "postcss-selector-parser": "^6.0.13", "postcss-value-parser": "^4.2.0", "resolve-from": "^5.0.0", "string-width": "^4.2.3", - "strip-ansi": "^7.1.0", + "strip-ansi": "^6.0.1", + "style-search": "^0.1.0", "supports-hyperlinks": "^3.0.0", "svg-tags": "^1.0.0", - "table": "^6.8.2", + "table": "^6.8.1", "write-file-atomic": "^5.0.1" }, "bin": { "stylelint": "bin/stylelint.mjs" }, "engines": { - "node": ">=18.12.0" + "node": "^14.13.1 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/stylelint" } }, "node_modules/stylelint-config-recommended": { - "version": "14.0.1", - "resolved": "https://registry.npmjs.org/stylelint-config-recommended/-/stylelint-config-recommended-14.0.1.tgz", - "integrity": "sha512-bLvc1WOz/14aPImu/cufKAZYfXs/A/owZfSMZ4N+16WGXLoX5lOir53M6odBxvhgmgdxCVnNySJmZKx73T93cg==", + "version": "13.0.0", + "resolved": "https://registry.npmjs.org/stylelint-config-recommended/-/stylelint-config-recommended-13.0.0.tgz", + "integrity": "sha512-EH+yRj6h3GAe/fRiyaoO2F9l9Tgg50AOFhaszyfov9v6ayXJ1IkSHwTxd7lB48FmOeSGDPLjatjO11fJpmarkQ==", "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/stylelint" - }, - { - "type": "github", - "url": "https://github.com/sponsors/stylelint" - } - ], "engines": { - "node": ">=18.12.0" + "node": "^14.13.1 || >=16.0.0" }, "peerDependencies": { - "stylelint": "^16.1.0" + "stylelint": "^15.10.0" } }, "node_modules/stylelint-config-standard": { - "version": "36.0.1", - "resolved": "https://registry.npmjs.org/stylelint-config-standard/-/stylelint-config-standard-36.0.1.tgz", - "integrity": "sha512-8aX8mTzJ6cuO8mmD5yon61CWuIM4UD8Q5aBcWKGSf6kg+EC3uhB+iOywpTK4ca6ZL7B49en8yanOFtUW0qNzyw==", + "version": "34.0.0", + "resolved": "https://registry.npmjs.org/stylelint-config-standard/-/stylelint-config-standard-34.0.0.tgz", + "integrity": "sha512-u0VSZnVyW9VSryBG2LSO+OQTjN7zF9XJaAJRX/4EwkmU0R2jYwmBSN10acqZisDitS0CLiEiGjX7+Hrq8TAhfQ==", "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/stylelint" - }, - { - "type": "github", - "url": "https://github.com/sponsors/stylelint" - } - ], "dependencies": { - "stylelint-config-recommended": "^14.0.1" + "stylelint-config-recommended": "^13.0.0" }, "engines": { - "node": ">=18.12.0" + "node": "^14.13.1 || >=16.0.0" }, "peerDependencies": { - "stylelint": "^16.1.0" + "stylelint": "^15.10.0" } }, "node_modules/stylelint-scss": { - "version": "6.4.1", - "resolved": "https://registry.npmjs.org/stylelint-scss/-/stylelint-scss-6.4.1.tgz", - "integrity": "sha512-+clI2bQC2FPOt06ZwUlXZZ95IO2C5bKTP0GLN1LNQPVvISfSNcgMKv/VTwym1mK9vnqhHbOk8lO4rj4nY7L9pw==", + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/stylelint-scss/-/stylelint-scss-5.2.1.tgz", + "integrity": "sha512-ZoTJUM85/qqpQHfEppjW/St//8s6p9Qsg8deWlYlr56F9iUgC9vXeIDQvH4odkRRJLTLFQzYMALSOFCQ3MDkgw==", "dev": true, - "license": "MIT", "dependencies": { - "known-css-properties": "^0.34.0", + "known-css-properties": "^0.28.0", "postcss-media-query-parser": "^0.2.3", "postcss-resolve-nested-selector": "^0.1.1", - "postcss-selector-parser": "^6.1.0", + "postcss-selector-parser": "^6.0.13", "postcss-value-parser": "^4.2.0" }, - "engines": { - "node": ">=18.12.0" - }, "peerDependencies": { - "stylelint": "^16.0.2" - } - }, - "node_modules/stylelint/node_modules/ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" + "stylelint": "^14.5.1 || ^15.0.0" } }, "node_modules/stylelint/node_modules/balanced-match": { @@ -1984,21 +2164,6 @@ "integrity": "sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==", "dev": true }, - "node_modules/stylelint/node_modules/strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", - "dev": true, - "dependencies": { - "ansi-regex": "^6.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" - } - }, "node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", @@ -2031,9 +2196,9 @@ "dev": true }, "node_modules/table": { - "version": "6.8.2", - "resolved": "https://registry.npmjs.org/table/-/table-6.8.2.tgz", - "integrity": "sha512-w2sfv80nrAh2VCbqR5AK27wswXhqcck2AhfnNW76beQXskGZ1V12GwS//yYVa3d3fcvAip2OUnbDAjW2k3v9fA==", + "version": "6.8.1", + "resolved": "https://registry.npmjs.org/table/-/table-6.8.1.tgz", + "integrity": "sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==", "dev": true, "dependencies": { "ajv": "^8.0.1", @@ -2058,6 +2223,30 @@ "node": ">=8.0" } }, + "node_modules/trim-newlines": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-4.1.1.tgz", + "integrity": "sha512-jRKj0n0jXWo6kh62nA5TEh3+4igKDXLvzBJcPpiizP7oOolUrYIxmVBG9TOtHYFHoddUk6YvAkGeGoSVTXfQXQ==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/type-fest": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz", + "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/uri-js": { "version": "4.4.1", "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", @@ -2073,6 +2262,16 @@ "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", "dev": true }, + "node_modules/validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "dev": true, + "dependencies": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, "node_modules/which": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", @@ -2085,103 +2284,12 @@ "which": "bin/which" } }, - "node_modules/wrap-ansi": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", - "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", - "dev": true, - "dependencies": { - "ansi-styles": "^6.1.0", - "string-width": "^5.0.1", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/wrap-ansi-cjs": { - "name": "wrap-ansi", - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/wrap-ansi/node_modules/ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" - } - }, - "node_modules/wrap-ansi/node_modules/ansi-styles": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", - "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/wrap-ansi/node_modules/emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", "dev": true }, - "node_modules/wrap-ansi/node_modules/string-width": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", - "dev": true, - "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/wrap-ansi/node_modules/strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", - "dev": true, - "dependencies": { - "ansi-regex": "^6.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" - } - }, "node_modules/write-file-atomic": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-5.0.1.tgz", @@ -2200,117 +2308,135 @@ "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true + }, + "node_modules/yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } } }, "dependencies": { "@babel/code-frame": { - "version": "7.23.5", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.5.tgz", - "integrity": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz", + "integrity": "sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==", "dev": true, "requires": { - "@babel/highlight": "^7.23.4", - "chalk": "^2.4.2" + "@babel/highlight": "^7.16.7" } }, "@babel/helper-validator-identifier": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", - "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz", + "integrity": "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==", "dev": true }, "@babel/highlight": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.23.4.tgz", - "integrity": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==", + "version": "7.16.10", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.10.tgz", + "integrity": "sha512-5FnTQLSLswEj6IkgVw5KusNUUFY9ZGqe/TRFnP/BKYHYgfh7tc+C7mwiy95/yNP7Dh9x580Vv8r7u7ZfTBFxdw==", "dev": true, "requires": { - "@babel/helper-validator-identifier": "^7.22.20", - "chalk": "^2.4.2", + "@babel/helper-validator-identifier": "^7.16.7", + "chalk": "^2.0.0", "js-tokens": "^4.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } } }, "@csstools/css-parser-algorithms": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-2.7.1.tgz", - "integrity": "sha512-2SJS42gxmACHgikc1WGesXLIT8d/q2l0UFM7TaEeIzdFCE/FPMtTiizcPGGJtlPo2xuQzY09OhrLTzRxqJqwGw==", + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-2.3.1.tgz", + "integrity": "sha512-xrvsmVUtefWMWQsGgFffqWSK03pZ1vfDki4IVIIUxxDKnGBzqNgv0A7SB1oXtVNEkcVO8xi1ZrTL29HhSu5kGA==", "dev": true, "requires": {} }, "@csstools/css-tokenizer": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-2.4.1.tgz", - "integrity": "sha512-eQ9DIktFJBhGjioABJRtUucoWR2mwllurfnM8LuNGAqX3ViZXaUchqk+1s7jjtkFiT9ySdACsFEA3etErkALUg==", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-2.2.0.tgz", + "integrity": "sha512-wErmsWCbsmig8sQKkM6pFhr/oPha1bHfvxsUY5CYSQxwyhA9Ulrs8EqCgClhg4Tgg2XapVstGqSVcz0xOYizZA==", "dev": true }, "@csstools/media-query-list-parser": { - "version": "2.1.13", - "resolved": "https://registry.npmjs.org/@csstools/media-query-list-parser/-/media-query-list-parser-2.1.13.tgz", - "integrity": "sha512-XaHr+16KRU9Gf8XLi3q8kDlI18d5vzKSKCY510Vrtc9iNR0NJzbY9hhTmwhzYZj/ZwGL4VmB3TA9hJW0Um2qFA==", + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@csstools/media-query-list-parser/-/media-query-list-parser-2.1.4.tgz", + "integrity": "sha512-V/OUXYX91tAC1CDsiY+HotIcJR+vPtzrX8pCplCpT++i8ThZZsq5F5dzZh/bDM3WUOjrvC1ljed1oSJxMfjqhw==", "dev": true, "requires": {} }, "@csstools/selector-specificity": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-3.1.1.tgz", - "integrity": "sha512-a7cxGcJ2wIlMFLlh8z2ONm+715QkPHiyJcxwQlKOz/03GPw1COpfhcmC9wm4xlZfp//jWHNNMwzjtqHXVWU9KA==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-3.0.0.tgz", + "integrity": "sha512-hBI9tfBtuPIi885ZsZ32IMEU/5nlZH/KOVYJCOh7gyMxaVLGmLedYqFN6Ui1LXkI8JlC8IsuC0rF0btcRZKd5g==", "dev": true, "requires": {} }, - "@dual-bundle/import-meta-resolve": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/@dual-bundle/import-meta-resolve/-/import-meta-resolve-4.1.0.tgz", - "integrity": "sha512-+nxncfwHM5SgAtrVzgpzJOI1ol0PkumhVo469KCf9lUi21IGcY90G98VuHm9VRrUypmAzawAHO9bs6hqeADaVg==", - "dev": true - }, - "@isaacs/cliui": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", - "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", - "dev": true, - "requires": { - "string-width": "^5.1.2", - "string-width-cjs": "npm:string-width@^4.2.0", - "strip-ansi": "^7.0.1", - "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", - "wrap-ansi": "^8.1.0", - "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" - }, - "dependencies": { - "ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", - "dev": true - }, - "emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "dev": true - }, - "string-width": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", - "dev": true, - "requires": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - } - }, - "strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", - "dev": true, - "requires": { - "ansi-regex": "^6.0.1" - } - } - } - }, "@nodelib/fs.scandir": { "version": "2.1.5", "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", @@ -2343,23 +2469,28 @@ "integrity": "sha512-XuySG1E38YScSJoMlqovLru4KTUNSjgVTIjyh7qMX6aNN5HY5Ct5LhRJdxO79JtTzKfzV/bnWpz+zquYrISsvw==", "dev": true }, - "@pkgjs/parseargs": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", - "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", - "dev": true, - "optional": true + "@types/minimist": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.2.tgz", + "integrity": "sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==", + "dev": true + }, + "@types/normalize-package-data": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz", + "integrity": "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==", + "dev": true }, "abbrev": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-2.0.0.tgz", - "integrity": "sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", "dev": true }, "ajv": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", - "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "version": "8.11.2", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.2.tgz", + "integrity": "sha512-E4bfmKAhGiSTvMfL1Myyycaub+cUEU2/IvpylXkUu7CHBkBj1f/ikdzbD7YQ6FKUbixDxeYvB/xY4fvyroDlQg==", "dev": true, "requires": { "fast-deep-equal": "^3.1.1", @@ -2395,6 +2526,12 @@ "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", "dev": true }, + "arrify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", + "integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==", + "dev": true + }, "astral-regex": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", @@ -2414,21 +2551,22 @@ "dev": true }, "brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "dev": true, "requires": { - "balanced-match": "^1.0.0" + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" } }, "braces": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", - "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", "dev": true, "requires": { - "fill-range": "^7.1.1" + "fill-range": "^7.0.1" } }, "callsites": { @@ -2437,56 +2575,22 @@ "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", "dev": true }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true + }, + "camelcase-keys": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-7.0.2.tgz", + "integrity": "sha512-Rjs1H+A9R+Ig+4E/9oyB66UC5Mj9Xq3N//vcLf2WzgdTi/3gUu3Z9KoqmlrEG4VuuLK8wJHofxzdQXz/knhiYg==", "dev": true, "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, - "dependencies": { - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dev": true, - "requires": { - "color-name": "1.1.3" - } - }, - "color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", - "dev": true - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "dev": true - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } + "camelcase": "^6.3.0", + "map-obj": "^4.1.0", + "quick-lru": "^5.1.1", + "type-fest": "^1.2.1" } }, "color-convert": { @@ -2516,6 +2620,12 @@ "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==", "dev": true }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + }, "config-chain": { "version": "1.1.13", "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz", @@ -2527,43 +2637,21 @@ } }, "cosmiconfig": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-9.0.0.tgz", - "integrity": "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==", + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.2.0.tgz", + "integrity": "sha512-3rTMnFJA1tCOPwRxtgF4wd7Ab2qvDbL8jX+3smjIbS4HlZBagTlpERbdN7iAbWlrfxE3M8c27kTwTawQ7st+OQ==", "dev": true, "requires": { - "env-paths": "^2.2.1", - "import-fresh": "^3.3.0", + "import-fresh": "^3.2.1", "js-yaml": "^4.1.0", - "parse-json": "^5.2.0" - } - }, - "cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dev": true, - "requires": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, - "dependencies": { - "which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dev": true, - "requires": { - "isexe": "^2.0.0" - } - } + "parse-json": "^5.0.0", + "path-type": "^4.0.0" } }, "css-functions-list": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/css-functions-list/-/css-functions-list-3.2.2.tgz", - "integrity": "sha512-c+N0v6wbKVxTu5gOBBFkr9BEdBWaqqjQeiJ8QvSRIJOf+UxlJh930m8e6/WNeODIK0mYLFkoONrnj16i2EcvfQ==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/css-functions-list/-/css-functions-list-3.2.0.tgz", + "integrity": "sha512-d/jBMPyYybkkLVypgtGv12R+pIFw4/f/IHtCTxWpZc8ofTYOPigIgmA6vu5rMHartZC+WuXhBUHfnyNUIQSYrg==", "dev": true }, "css-select": { @@ -2602,14 +2690,44 @@ "dev": true }, "debug": { - "version": "4.3.5", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz", - "integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==", + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "dev": true, "requires": { "ms": "2.1.2" } }, + "decamelize": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-5.0.1.tgz", + "integrity": "sha512-VfxadyCECXgQlkoEAjeghAr5gY3Hf+IKjKb+X8tGVDtveCjN+USwprd2q3QXBR9T1+x2DG0XZF5/w+7HAtSaXA==", + "dev": true + }, + "decamelize-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.1.tgz", + "integrity": "sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==", + "dev": true, + "requires": { + "decamelize": "^1.1.0", + "map-obj": "^1.0.0" + }, + "dependencies": { + "decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", + "dev": true + }, + "map-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", + "integrity": "sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==", + "dev": true + } + } + }, "dir-glob": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", @@ -2656,12 +2774,6 @@ "domhandler": "^5.0.1" } }, - "eastasianwidth": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", - "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", - "dev": true - }, "editorconfig": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/editorconfig/-/editorconfig-1.0.4.tgz", @@ -2674,6 +2786,15 @@ "semver": "^7.5.3" }, "dependencies": { + "brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0" + } + }, "minimatch": { "version": "9.0.1", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.1.tgz", @@ -2697,12 +2818,6 @@ "integrity": "sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA==", "dev": true }, - "env-paths": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", - "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", - "dev": true - }, "error-ex": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", @@ -2715,7 +2830,7 @@ "escape-string-regexp": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", "dev": true }, "fast-deep-equal": { @@ -2725,9 +2840,9 @@ "dev": true }, "fast-glob": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", - "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz", + "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==", "dev": true, "requires": { "@nodelib/fs.stat": "^2.0.2", @@ -2753,60 +2868,73 @@ } }, "file-entry-cache": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-9.0.0.tgz", - "integrity": "sha512-6MgEugi8p2tiUhqO7GnPsmbCCzj0YRCwwaTbpGRyKZesjRSzkqkAE9fPp7V2yMs5hwfgbQLgdvSSkGNg1s5Uvw==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", "dev": true, "requires": { - "flat-cache": "^5.0.0" + "flat-cache": "^3.0.4" } }, "fill-range": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", - "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", "dev": true, "requires": { "to-regex-range": "^5.0.1" } }, - "flat-cache": { + "find-up": { "version": "5.0.0", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-5.0.0.tgz", - "integrity": "sha512-JrqFmyUl2PnPi1OvLyTVHnQvwQ0S+e6lGSwu8OkAZlSaNIZciTY2H/cOOROxsBA1m/LZNHDsqAgDZt6akWcjsQ==", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", "dev": true, "requires": { - "flatted": "^3.3.1", - "keyv": "^4.5.4" + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + } + }, + "flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "dev": true, + "requires": { + "flatted": "^3.1.0", + "rimraf": "^3.0.2" } }, "flatted": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", - "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", + "version": "3.2.5", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.5.tgz", + "integrity": "sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg==", "dev": true }, - "foreground-child": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz", - "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==", - "dev": true, - "requires": { - "cross-spawn": "^7.0.0", - "signal-exit": "^4.0.1" - } + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "dev": true + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true }, "glob": { - "version": "10.3.10", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz", - "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", "dev": true, "requires": { - "foreground-child": "^3.1.0", - "jackspeak": "^2.3.5", - "minimatch": "^9.0.1", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", - "path-scurry": "^1.10.1" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" } }, "glob-parent": { @@ -2858,6 +2986,21 @@ "integrity": "sha1-L0SUrIkZ43Z8XLtpHp9GMyQoXUM=", "dev": true }, + "hard-rejection": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz", + "integrity": "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==", + "dev": true + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, + "requires": { + "function-bind": "^1.1.1" + } + }, "has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", @@ -2870,6 +3013,15 @@ "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", "dev": true }, + "hosted-git-info": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", + "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, "html-tags": { "version": "3.3.1", "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.3.1.tgz", @@ -2877,9 +3029,9 @@ "dev": true }, "ignore": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", - "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", "dev": true }, "import-fresh": { @@ -2900,12 +3052,40 @@ } } }, + "import-lazy": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-4.0.0.tgz", + "integrity": "sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==", + "dev": true + }, "imurmurhash": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", "dev": true }, + "indent-string": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz", + "integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==", + "dev": true + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, "ini": { "version": "1.3.8", "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", @@ -2915,9 +3095,18 @@ "is-arrayish": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", "dev": true }, + "is-core-module": { + "version": "2.13.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", + "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", + "dev": true, + "requires": { + "has": "^1.0.3" + } + }, "is-extglob": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", @@ -2945,6 +3134,12 @@ "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", "dev": true }, + "is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", + "dev": true + }, "is-plain-object": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", @@ -2957,35 +3152,51 @@ "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", "dev": true }, - "jackspeak": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.3.6.tgz", - "integrity": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==", - "dev": true, - "requires": { - "@isaacs/cliui": "^8.0.2", - "@pkgjs/parseargs": "^0.11.0" - } - }, "js-beautify": { - "version": "1.15.1", - "resolved": "https://registry.npmjs.org/js-beautify/-/js-beautify-1.15.1.tgz", - "integrity": "sha512-ESjNzSlt/sWE8sciZH8kBF8BPlwXPwhR6pWKAw8bw4Bwj+iZcnKW6ONWUutJ7eObuBZQpiIb8S7OYspWrKt7rA==", + "version": "1.14.9", + "resolved": "https://registry.npmjs.org/js-beautify/-/js-beautify-1.14.9.tgz", + "integrity": "sha512-coM7xq1syLcMyuVGyToxcj2AlzhkDjmfklL8r0JgJ7A76wyGMpJ1oA35mr4APdYNO/o/4YY8H54NQIJzhMbhBg==", "dev": true, "requires": { "config-chain": "^1.1.13", - "editorconfig": "^1.0.4", - "glob": "^10.3.3", - "js-cookie": "^3.0.5", - "nopt": "^7.2.0" + "editorconfig": "^1.0.3", + "glob": "^8.1.0", + "nopt": "^6.0.0" + }, + "dependencies": { + "brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0" + } + }, + "glob": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", + "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "once": "^1.3.0" + } + }, + "minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "dev": true, + "requires": { + "brace-expansion": "^2.0.1" + } + } } }, - "js-cookie": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/js-cookie/-/js-cookie-3.0.5.tgz", - "integrity": "sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw==", - "dev": true - }, "js-tokens": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", @@ -3001,12 +3212,6 @@ "argparse": "^2.0.1" } }, - "json-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", - "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", - "dev": true - }, "json-parse-even-better-errors": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", @@ -3019,15 +3224,6 @@ "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", "dev": true }, - "keyv": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", - "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", - "dev": true, - "requires": { - "json-buffer": "3.0.1" - } - }, "kind-of": { "version": "6.0.3", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", @@ -3035,9 +3231,9 @@ "dev": true }, "known-css-properties": { - "version": "0.34.0", - "resolved": "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.34.0.tgz", - "integrity": "sha512-tBECoUqNFbyAY4RrbqsBQqDFpGXAEbdD5QKr8kACx3+rnArmuuR22nKQWKazvp07N9yjTyDZaw/20UIH8tL9DQ==", + "version": "0.28.0", + "resolved": "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.28.0.tgz", + "integrity": "sha512-9pSL5XB4J+ifHP0e0jmmC98OGC1nL8/JjS+fi6mnTlIf//yt/MfVLtKg7S6nCtj/8KTcWX7nRlY0XywoYY1ISQ==", "dev": true }, "lines-and-columns": { @@ -3046,6 +3242,15 @@ "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", "dev": true }, + "locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "requires": { + "p-locate": "^5.0.0" + } + }, "lodash.truncate": { "version": "4.4.2", "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", @@ -3061,6 +3266,12 @@ "yallist": "^4.0.0" } }, + "map-obj": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz", + "integrity": "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==", + "dev": true + }, "mathml-tag-names": { "version": "2.1.3", "resolved": "https://registry.npmjs.org/mathml-tag-names/-/mathml-tag-names-2.1.3.tgz", @@ -3074,10 +3285,24 @@ "dev": true }, "meow": { - "version": "13.2.0", - "resolved": "https://registry.npmjs.org/meow/-/meow-13.2.0.tgz", - "integrity": "sha512-pxQJQzB6djGPXh08dacEloMFopsOqGVRKFPYvPOt9XDZ1HasbgDZA74CJGreSU4G3Ak7EFJGoiH2auq+yXISgA==", - "dev": true + "version": "10.1.5", + "resolved": "https://registry.npmjs.org/meow/-/meow-10.1.5.tgz", + "integrity": "sha512-/d+PQ4GKmGvM9Bee/DPa8z3mXs/pkvJE2KEThngVNOqtmljC6K7NMPxtc2JeZYTmpWb9k/TmxjeL18ez3h7vCw==", + "dev": true, + "requires": { + "@types/minimist": "^1.2.2", + "camelcase-keys": "^7.0.0", + "decamelize": "^5.0.0", + "decamelize-keys": "^1.1.0", + "hard-rejection": "^2.1.0", + "minimist-options": "4.1.0", + "normalize-package-data": "^3.0.2", + "read-pkg-up": "^8.0.0", + "redent": "^4.0.0", + "trim-newlines": "^4.0.2", + "type-fest": "^1.2.2", + "yargs-parser": "^20.2.9" + } }, "merge2": { "version": "1.4.1", @@ -3086,29 +3311,40 @@ "dev": true }, "micromatch": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.7.tgz", - "integrity": "sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==", + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", "dev": true, "requires": { - "braces": "^3.0.3", + "braces": "^3.0.2", "picomatch": "^2.3.1" } }, + "min-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", + "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", + "dev": true + }, "minimatch": { - "version": "9.0.3", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", - "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, "requires": { - "brace-expansion": "^2.0.1" + "brace-expansion": "^1.1.7" } }, - "minipass": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz", - "integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==", - "dev": true + "minimist-options": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz", + "integrity": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==", + "dev": true, + "requires": { + "arrify": "^1.0.1", + "is-plain-obj": "^1.1.0", + "kind-of": "^6.0.3" + } }, "ms": { "version": "2.1.2", @@ -3117,9 +3353,9 @@ "dev": true }, "nanoid": { - "version": "3.3.7", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", - "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", + "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", "dev": true }, "node-html-markdown": { @@ -3132,9 +3368,9 @@ } }, "node-html-parser": { - "version": "6.1.13", - "resolved": "https://registry.npmjs.org/node-html-parser/-/node-html-parser-6.1.13.tgz", - "integrity": "sha512-qIsTMOY4C/dAa5Q5vsobRpOOvPfC4pB61UVW2uSwZNUp0QU/jCekTal1vMmbO0DgdHeLUJpv/ARmDqErVxA3Sg==", + "version": "6.1.10", + "resolved": "https://registry.npmjs.org/node-html-parser/-/node-html-parser-6.1.10.tgz", + "integrity": "sha512-6/uWdWxjQWQ7tMcFK2wWlrflsQUzh1HsEzlIf2j5+TtzfhT2yUvg3DwZYAmjEHeR3uX74ko7exjHW69J0tOzIg==", "dev": true, "requires": { "css-select": "^5.1.0", @@ -3142,12 +3378,24 @@ } }, "nopt": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-7.2.0.tgz", - "integrity": "sha512-CVDtwCdhYIvnAzFoJ6NJ6dX3oga9/HyciQDnG1vQDjSLMeKLJ4A93ZqYKDrgYSr1FBY5/hMYC+2VCi24pgpkGA==", + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-6.0.0.tgz", + "integrity": "sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==", "dev": true, "requires": { - "abbrev": "^2.0.0" + "abbrev": "^1.0.0" + } + }, + "normalize-package-data": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", + "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", + "dev": true, + "requires": { + "hosted-git-info": "^4.0.1", + "is-core-module": "^2.5.0", + "semver": "^7.3.4", + "validate-npm-package-license": "^3.0.1" } }, "normalize-path": { @@ -3165,6 +3413,33 @@ "boolbase": "^1.0.0" } }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "requires": { + "wrappy": "1" + } + }, + "p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "requires": { + "yocto-queue": "^0.1.0" + } + }, + "p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "requires": { + "p-limit": "^3.0.2" + } + }, "parent-module": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", @@ -3186,29 +3461,17 @@ "lines-and-columns": "^1.1.6" } }, - "path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", "dev": true }, - "path-scurry": { - "version": "1.10.1", - "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.1.tgz", - "integrity": "sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==", - "dev": true, - "requires": { - "lru-cache": "^9.1.1 || ^10.0.0", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" - }, - "dependencies": { - "lru-cache": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.0.1.tgz", - "integrity": "sha512-IJ4uwUTi2qCccrioU6g9g/5rvvVl13bsdczUUcqbciD9iLr095yj8DQKdObriEvuNSx325N1rV1O0sJFszx75g==", - "dev": true - } - } + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true }, "path-type": { "version": "4.0.0", @@ -3217,9 +3480,9 @@ "dev": true }, "picocolors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz", - "integrity": "sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==", + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", "dev": true }, "picomatch": { @@ -3229,14 +3492,14 @@ "dev": true }, "postcss": { - "version": "8.4.39", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.39.tgz", - "integrity": "sha512-0vzE+lAiG7hZl1/9I8yzKLx3aR9Xbof3fBHKunvMfOCYAtMhrsnccJY2iTURb9EZd5+pLuiNV9/c/GZJOHsgIw==", + "version": "8.4.29", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.29.tgz", + "integrity": "sha512-cbI+jaqIeu/VGqXEarWkRCCffhjgXc0qjBtXpqJhTBohMUjUQnbBr0xqX3vEKudc4iviTewcJo5ajcec5+wdJw==", "dev": true, "requires": { - "nanoid": "^3.3.7", - "picocolors": "^1.0.1", - "source-map-js": "^1.2.0" + "nanoid": "^3.3.6", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" } }, "postcss-media-query-parser": { @@ -3252,23 +3515,23 @@ "dev": true }, "postcss-safe-parser": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-7.0.0.tgz", - "integrity": "sha512-ovehqRNVCpuFzbXoTb4qLtyzK3xn3t/CUBxOs8LsnQjQrShaB4lKiHoVqY8ANaC0hBMHq5QVWk77rwGklFUDrg==", + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-6.0.0.tgz", + "integrity": "sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==", "dev": true, "requires": {} }, "postcss-scss": { - "version": "4.0.9", - "resolved": "https://registry.npmjs.org/postcss-scss/-/postcss-scss-4.0.9.tgz", - "integrity": "sha512-AjKOeiwAitL/MXxQW2DliT28EKukvvbEWx3LBmJIRN8KfBGZbRTxNYW0kSqi1COiTZ57nZ9NW06S6ux//N1c9A==", + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/postcss-scss/-/postcss-scss-4.0.8.tgz", + "integrity": "sha512-Cr0X8Eu7xMhE96PJck6ses/uVVXDtE5ghUTKNUYgm8ozgP2TkgV3LWs3WgLV1xaSSLq8ZFiXaUrj0LVgG1fGEA==", "dev": true, "requires": {} }, "postcss-selector-parser": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.0.tgz", - "integrity": "sha512-UMz42UD0UY0EApS0ZL9o1XnLhSTtvvvLe5Dc2H2O56fvRZi+KulDyf5ctDhhtYJBGKStV2FL1fy6253cmLgqVQ==", + "version": "6.0.13", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz", + "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", "dev": true, "requires": { "cssesc": "^3.0.0", @@ -3282,9 +3545,9 @@ "dev": true }, "prettier": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.3.3.tgz", - "integrity": "sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==", + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.0.3.tgz", + "integrity": "sha512-L/4pUDMxcNa8R/EthV08Zt42WBO4h1rarVtK0K+QJG0X187OLo7l699jWw0GKuwzkPQ//jMFA/8Xm6Fh3J/DAg==", "dev": true }, "proto-list": { @@ -3294,9 +3557,9 @@ "dev": true }, "punycode": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", - "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", "dev": true }, "queue-microtask": { @@ -3305,6 +3568,45 @@ "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", "dev": true }, + "quick-lru": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", + "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", + "dev": true + }, + "read-pkg": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-6.0.0.tgz", + "integrity": "sha512-X1Fu3dPuk/8ZLsMhEj5f4wFAF0DWoK7qhGJvgaijocXxBmSToKfbFtqbxMO7bVjNA1dmE5huAzjXj/ey86iw9Q==", + "dev": true, + "requires": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^3.0.2", + "parse-json": "^5.2.0", + "type-fest": "^1.0.1" + } + }, + "read-pkg-up": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-8.0.0.tgz", + "integrity": "sha512-snVCqPczksT0HS2EC+SxUndvSzn6LRCwpfSvLrIfR5BKDQQZMaI6jPRC9dYvYFDRAuFEAnkwww8kBBNE/3VvzQ==", + "dev": true, + "requires": { + "find-up": "^5.0.0", + "read-pkg": "^6.0.0", + "type-fest": "^1.0.1" + } + }, + "redent": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-4.0.0.tgz", + "integrity": "sha512-tYkDkVVtYkSVhuQ4zBgfvciymHaeuel+zFKXShfDnFP5SyVEP7qo70Rf1jTOTCx3vGNAbnEi/xFkcfQVMIBWag==", + "dev": true, + "requires": { + "indent-string": "^5.0.0", + "strip-indent": "^4.0.0" + } + }, "require-from-string": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", @@ -3323,6 +3625,15 @@ "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", "dev": true }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + }, "run-parallel": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", @@ -3341,21 +3652,6 @@ "lru-cache": "^6.0.0" } }, - "shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dev": true, - "requires": { - "shebang-regex": "^3.0.0" - } - }, - "shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true - }, "signal-exit": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.0.1.tgz", @@ -3380,9 +3676,41 @@ } }, "source-map-js": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz", - "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "dev": true + }, + "spdx-correct": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", + "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", + "dev": true, + "requires": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-exceptions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", + "dev": true + }, + "spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "dev": true, + "requires": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-license-ids": { + "version": "3.0.13", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.13.tgz", + "integrity": "sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==", "dev": true }, "string-width": { @@ -3396,17 +3724,6 @@ "strip-ansi": "^6.0.1" } }, - "string-width-cjs": { - "version": "npm:string-width@4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - } - }, "strip-ansi": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", @@ -3416,111 +3733,103 @@ "ansi-regex": "^5.0.1" } }, - "strip-ansi-cjs": { - "version": "npm:strip-ansi@6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "strip-indent": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-4.0.0.tgz", + "integrity": "sha512-mnVSV2l+Zv6BLpSD/8V87CW/y9EmmbYzGCIavsnsI6/nwn26DwffM/yztm30Z/I2DY9wdS3vXVCMnHDgZaVNoA==", "dev": true, "requires": { - "ansi-regex": "^5.0.1" + "min-indent": "^1.0.1" } }, + "style-search": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/style-search/-/style-search-0.1.0.tgz", + "integrity": "sha1-eVjHk+R+MuB9K1yv5cC/jhLneQI=", + "dev": true + }, "stylelint": { - "version": "16.7.0", - "resolved": "https://registry.npmjs.org/stylelint/-/stylelint-16.7.0.tgz", - "integrity": "sha512-Q1ATiXlz+wYr37a7TGsfvqYn2nSR3T/isw3IWlZQzFzCNoACHuGBb6xBplZXz56/uDRJHIygxjh7jbV/8isewA==", + "version": "15.10.3", + "resolved": "https://registry.npmjs.org/stylelint/-/stylelint-15.10.3.tgz", + "integrity": "sha512-aBQMMxYvFzJJwkmg+BUUg3YfPyeuCuKo2f+LOw7yYbU8AZMblibwzp9OV4srHVeQldxvSFdz0/Xu8blq2AesiA==", "dev": true, "requires": { - "@csstools/css-parser-algorithms": "^2.7.1", - "@csstools/css-tokenizer": "^2.4.1", - "@csstools/media-query-list-parser": "^2.1.13", - "@csstools/selector-specificity": "^3.1.1", - "@dual-bundle/import-meta-resolve": "^4.1.0", + "@csstools/css-parser-algorithms": "^2.3.1", + "@csstools/css-tokenizer": "^2.2.0", + "@csstools/media-query-list-parser": "^2.1.4", + "@csstools/selector-specificity": "^3.0.0", "balanced-match": "^2.0.0", "colord": "^2.9.3", - "cosmiconfig": "^9.0.0", - "css-functions-list": "^3.2.2", + "cosmiconfig": "^8.2.0", + "css-functions-list": "^3.2.0", "css-tree": "^2.3.1", - "debug": "^4.3.5", - "fast-glob": "^3.3.2", + "debug": "^4.3.4", + "fast-glob": "^3.3.1", "fastest-levenshtein": "^1.0.16", - "file-entry-cache": "^9.0.0", + "file-entry-cache": "^6.0.1", "global-modules": "^2.0.0", "globby": "^11.1.0", "globjoin": "^0.1.4", "html-tags": "^3.3.1", - "ignore": "^5.3.1", + "ignore": "^5.2.4", + "import-lazy": "^4.0.0", "imurmurhash": "^0.1.4", "is-plain-object": "^5.0.0", - "known-css-properties": "^0.34.0", + "known-css-properties": "^0.28.0", "mathml-tag-names": "^2.1.3", - "meow": "^13.2.0", - "micromatch": "^4.0.7", + "meow": "^10.1.5", + "micromatch": "^4.0.5", "normalize-path": "^3.0.0", - "picocolors": "^1.0.1", - "postcss": "^8.4.39", + "picocolors": "^1.0.0", + "postcss": "^8.4.27", "postcss-resolve-nested-selector": "^0.1.1", - "postcss-safe-parser": "^7.0.0", - "postcss-selector-parser": "^6.1.0", + "postcss-safe-parser": "^6.0.0", + "postcss-selector-parser": "^6.0.13", "postcss-value-parser": "^4.2.0", "resolve-from": "^5.0.0", "string-width": "^4.2.3", - "strip-ansi": "^7.1.0", + "strip-ansi": "^6.0.1", + "style-search": "^0.1.0", "supports-hyperlinks": "^3.0.0", "svg-tags": "^1.0.0", - "table": "^6.8.2", + "table": "^6.8.1", "write-file-atomic": "^5.0.1" }, "dependencies": { - "ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", - "dev": true - }, "balanced-match": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-2.0.0.tgz", "integrity": "sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==", "dev": true - }, - "strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", - "dev": true, - "requires": { - "ansi-regex": "^6.0.1" - } } } }, "stylelint-config-recommended": { - "version": "14.0.1", - "resolved": "https://registry.npmjs.org/stylelint-config-recommended/-/stylelint-config-recommended-14.0.1.tgz", - "integrity": "sha512-bLvc1WOz/14aPImu/cufKAZYfXs/A/owZfSMZ4N+16WGXLoX5lOir53M6odBxvhgmgdxCVnNySJmZKx73T93cg==", + "version": "13.0.0", + "resolved": "https://registry.npmjs.org/stylelint-config-recommended/-/stylelint-config-recommended-13.0.0.tgz", + "integrity": "sha512-EH+yRj6h3GAe/fRiyaoO2F9l9Tgg50AOFhaszyfov9v6ayXJ1IkSHwTxd7lB48FmOeSGDPLjatjO11fJpmarkQ==", "dev": true, "requires": {} }, "stylelint-config-standard": { - "version": "36.0.1", - "resolved": "https://registry.npmjs.org/stylelint-config-standard/-/stylelint-config-standard-36.0.1.tgz", - "integrity": "sha512-8aX8mTzJ6cuO8mmD5yon61CWuIM4UD8Q5aBcWKGSf6kg+EC3uhB+iOywpTK4ca6ZL7B49en8yanOFtUW0qNzyw==", + "version": "34.0.0", + "resolved": "https://registry.npmjs.org/stylelint-config-standard/-/stylelint-config-standard-34.0.0.tgz", + "integrity": "sha512-u0VSZnVyW9VSryBG2LSO+OQTjN7zF9XJaAJRX/4EwkmU0R2jYwmBSN10acqZisDitS0CLiEiGjX7+Hrq8TAhfQ==", "dev": true, "requires": { - "stylelint-config-recommended": "^14.0.1" + "stylelint-config-recommended": "^13.0.0" } }, "stylelint-scss": { - "version": "6.4.1", - "resolved": "https://registry.npmjs.org/stylelint-scss/-/stylelint-scss-6.4.1.tgz", - "integrity": "sha512-+clI2bQC2FPOt06ZwUlXZZ95IO2C5bKTP0GLN1LNQPVvISfSNcgMKv/VTwym1mK9vnqhHbOk8lO4rj4nY7L9pw==", + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/stylelint-scss/-/stylelint-scss-5.2.1.tgz", + "integrity": "sha512-ZoTJUM85/qqpQHfEppjW/St//8s6p9Qsg8deWlYlr56F9iUgC9vXeIDQvH4odkRRJLTLFQzYMALSOFCQ3MDkgw==", "dev": true, "requires": { - "known-css-properties": "^0.34.0", + "known-css-properties": "^0.28.0", "postcss-media-query-parser": "^0.2.3", "postcss-resolve-nested-selector": "^0.1.1", - "postcss-selector-parser": "^6.1.0", + "postcss-selector-parser": "^6.0.13", "postcss-value-parser": "^4.2.0" } }, @@ -3550,9 +3859,9 @@ "dev": true }, "table": { - "version": "6.8.2", - "resolved": "https://registry.npmjs.org/table/-/table-6.8.2.tgz", - "integrity": "sha512-w2sfv80nrAh2VCbqR5AK27wswXhqcck2AhfnNW76beQXskGZ1V12GwS//yYVa3d3fcvAip2OUnbDAjW2k3v9fA==", + "version": "6.8.1", + "resolved": "https://registry.npmjs.org/table/-/table-6.8.1.tgz", + "integrity": "sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==", "dev": true, "requires": { "ajv": "^8.0.1", @@ -3571,6 +3880,18 @@ "is-number": "^7.0.0" } }, + "trim-newlines": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-4.1.1.tgz", + "integrity": "sha512-jRKj0n0jXWo6kh62nA5TEh3+4igKDXLvzBJcPpiizP7oOolUrYIxmVBG9TOtHYFHoddUk6YvAkGeGoSVTXfQXQ==", + "dev": true + }, + "type-fest": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz", + "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==", + "dev": true + }, "uri-js": { "version": "4.4.1", "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", @@ -3586,6 +3907,16 @@ "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", "dev": true }, + "validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "dev": true, + "requires": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, "which": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", @@ -3595,67 +3926,11 @@ "isexe": "^2.0.0" } }, - "wrap-ansi": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", - "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", - "dev": true, - "requires": { - "ansi-styles": "^6.1.0", - "string-width": "^5.0.1", - "strip-ansi": "^7.0.1" - }, - "dependencies": { - "ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", - "dev": true - }, - "ansi-styles": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", - "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", - "dev": true - }, - "emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "dev": true - }, - "string-width": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", - "dev": true, - "requires": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - } - }, - "strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", - "dev": true, - "requires": { - "ansi-regex": "^6.0.1" - } - } - } - }, - "wrap-ansi-cjs": { - "version": "npm:wrap-ansi@7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "dev": true, - "requires": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - } + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true }, "write-file-atomic": { "version": "5.0.1", @@ -3672,6 +3947,18 @@ "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true + }, + "yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "dev": true + }, + "yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true } } } diff --git a/package.json b/package.json index b7108cf9..16565e27 100644 --- a/package.json +++ b/package.json @@ -7,15 +7,15 @@ "doc": "docs" }, "devDependencies": { - "js-beautify": "^1.15.1", + "js-beautify": "^1.14.9", "node-html-markdown": "^1.3.0", - "node-html-parser": "^6.1.13", - "postcss-scss": "^4.0.9", - "prettier": "^3.3.3", - "stylelint": "^16.7.0", - "stylelint-config-recommended": "^14.0.1", - "stylelint-config-standard": "^36.0.1", - "stylelint-scss": "^6.4.1" + "node-html-parser": "^6.1.10", + "postcss-scss": "^4.0.8", + "prettier": "^3.0.3", + "stylelint": "^15.10.3", + "stylelint-config-recommended": "^13.0.0", + "stylelint-config-standard": "^34.0.0", + "stylelint-scss": "^5.2.1" }, "scripts": { "format": "stylelint --fix ./sass/*.scss && prettier --write *.md content/**/*.md && js-beautify -r templates/base.html", diff --git a/po/content.af.po b/po/content.af.po index b019c792..87f8dc91 100644 --- a/po/content.af.po +++ b/po/content.af.po @@ -4,7 +4,7 @@ # FIRST AUTHOR , YEAR. # msgid "" -msgstr "Project-Id-Version: Organic Maps Website 1.0\nPO-Revision-Date: 2024-04-02 19:54+0000\nLast-Translator: Weblate Translation Memory \nLanguage-Team: Afrikaans \nLanguage: af\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-Forms: nplurals=2; plural=n != 1;\nX-Generator: Weblate 5.5-dev\n" +msgstr "Project-Id-Version: Organic Maps Website 1.0\nPO-Revision-Date: 2023-06-29 06:11+0000\nLast-Translator: Gideon Wentink \nLanguage-Team: Afrikaans \nLanguage: af\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-Forms: nplurals=2; plural=n != 1;\nX-Generator: Weblate 4.18.1\n" #. type: Yaml Front Matter Hash Value: description #: content/_index.md @@ -26,364 +26,409 @@ msgstr "Organic Maps: Vanlyn voetslaan, fietsry, roetes en navigasie" #. type: Plain text #: content/_index.md -#, no-wrap -msgid "" -"**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, drivers and cyclists based on **[OpenStreetMap][openstreetmap]** data created by the community.\n" -"It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" +#, markdown-text, no-wrap +msgid "**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, and cyclists based on top of crowd-sourced **[OpenStreetMap][openstreetmap]** data. It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" msgstr "**Organic Maps** is ’n gratis Android & iOS vanlyn kaarttoep vir reisigers, toeristen, voetslaners en fietsers gebaseer op skareverkreë **[OpenStreetMap][openstreetmap]**-data. Dit is ’n privaatheidgefokusde, oopbron [vurk][fork] van die toep **Maps.me** (voorheen bekend as [**MapsWithMe**][mapswithme]), en word onderhou deur dieselfde mense wat **MapsWithMe** in 2011 geskep het.\n" #. type: Plain text #: content/_index.md -#, no-wrap -msgid "**Organic Maps** is one of the few applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card, and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" +#, markdown-text, no-wrap +msgid "**Organic Maps** is one of the only applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card (by the way, your operator constantly tracks you), and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" msgstr "**Organic Maps** is een van die min toeps deesdae wat 100% van die funksionaliteit het sonder ’n aktiewe internetverbinding. Installeer Organic Maps, laai kaarte af, gooi u SIM-kaart weg (trouens, u verskaffer spoor u altyd na), en gaan ’n week op pad sonder om u battery te moet laai en sonder dat daar een greep na die netwerk verstuur word.\n" -#. type: Plain text -#: content/_index.md -#, no-wrap -msgid "> In 2023, Organic Maps [got its first million](@/news/2023-12-23/281/index.md) users. [Help us](@/donate/index.md) to scale!\n" -msgstr "" - #. type: Title ### #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Download and install Organic Maps from [AppStore][appstore], [Google Play][googleplay], [FDroid][fdroid], [Huawei AppGallery][appgallery] {#install}" msgstr "Laai af en installeer Organic Maps in die [AppStore][appstore], [Google Play][googleplay], [FDroid][fdroid], [Huawei AppGallery][appgallery] {#install}" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ badges() }}" msgstr "{{ badges() }}" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ screenshot(src='/images/screenshots/hiking.jpg', alt='Hiking') }}" msgstr "{{ screenshot(src='/images/screenshots/hiking.jpg', alt='Voetslaan') }}" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ screenshot(src='/images/screenshots/prague.jpg', alt='Prague') }}" msgstr "{{ screenshot(src='/images/screenshots/prague.jpg', alt='Praag') }}" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ screenshot(src='/images/screenshots/search.jpg', alt='Offline Search') }}" msgstr "{{ screenshot(src='/images/screenshots/search.jpg', alt='Vanlyn Soek') }}" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ screenshot(src='/images/screenshots/dark.jpg', alt='Navigation in dark mode') }}" msgstr "{{ screenshot(src='/images/screenshots/dark.jpg', alt='Navigasie in donkermodus') }}" #. type: Title ## #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Features" msgstr "Funksies" #. type: Plain text #: content/_index.md +#, markdown-text msgid "Organic Maps is the ultimate companion app for travelers, tourists, hikers, and cyclists:" msgstr "Organic Maps is die topkameraadtoep vir reisigers, toeriste, voetslaners en fietsers:" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Detailed offline maps with places that don't exist on other maps, thanks to [OpenStreetMap][openstreetmap]" msgstr "Gedetailleerde vanlyn kaarte met plekke wat nie op ander kaarte bestaan nie, danksy [OpenStreetMap][openstreetmap]" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Cycling routes, hiking trails, and walking paths" msgstr "Fietsroetes, voetslaanroetes en -paaie" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Contour lines, elevation profiles, peaks, and slopes" msgstr "Kontoerlyne, hoogteprofiele, pieke en hellings" #. type: Bullet: '- ' #: content/_index.md -msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance and Android Auto" -msgstr "Roetebegeleiding vir voetslaan en fietsry en motornavigasie met stembegeleiding, Android Auto" +#, markdown-text +msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance" +msgstr "Roetebegeleiding vir voetslaan en fietsry en motornavigasie met stembegeleiding" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Fast offline search on the map" msgstr "Soek vinnig vanlyn op die kaart" #. type: Bullet: '- ' #: content/_index.md -msgid "Export/import bookmarks in KML/KMZ, import GPX" -msgstr "Stuur boekmerke uit en voer dit in in KML/KMZ-formate, voer GPX in" +#, markdown-text +msgid "Bookmarks and tracks in KML, KMZ, GPX formats" +msgstr "Stuur boekmerke uit en voer dit in in KML/KMZ-formate (GPX is [beplan][gpx_issue])" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Dark Mode to protect your eyes" msgstr "Donkermodus om u oë te beskerm" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Countries and regions don't take a lot of space" msgstr "Lande en streke neem nie baie spasie op nie" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Free and open-source" msgstr "Gratis en oopbron" #. type: Title ## #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Why Organic?" msgstr "Waarom ‘Organic’?" #. type: Plain text #: content/_index.md +#, markdown-text msgid "Organic Maps is pure and organic, made with love:" msgstr "Organic Maps is suiwer en organies, met liefde gemaak:" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Respects your privacy" msgstr "Eerbiedig u privaatheid" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Saves your battery" msgstr "Bespaar u battery" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No unexpected mobile data charges" msgstr "Geen onverwagte mobieledatarekeninge" #. type: Plain text #: content/_index.md +#, markdown-text msgid "Organic Maps app is free from trackers and other bad stuff:" msgstr "Organic Maps is vry van naspoorders en ander slegte dinge:" #. type: Bullet: '- ' #: content/_index.md content/donate/index.md +#, markdown-text msgid "No ads" msgstr "Geen advertensies" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No tracking" msgstr "Geen nasporing" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No data collection" msgstr "Geen dataversameling" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No phoning home" msgstr "Geen ‘huis toe bel’ nie" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No annoying registration" msgstr "Geen irriterende registrasie" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No mandatory tutorials" msgstr "Geen verpligte tutoriale" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No noisy email spam" msgstr "Geen opdringerige gemorspos" #. type: Bullet: '- ' #: content/_index.md content/donate/index.md +#, markdown-text msgid "No push notifications" msgstr "Geen stootkennisgewings" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No crapware" msgstr "Geen kafware" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "~~No pesticides~~ Purely organic!" msgstr "~~Geen insekdoders~~ Heeltemal organies!" #. type: Plain text #: content/_index.md +#, markdown-text msgid "The application is verified by [Exodus Privacy Project][exodus]:" msgstr "Die toepassing is geverifieer deur [Exodus Privacy Project][exodus]:" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ exodus_screenshot() }}" msgstr "{{ exodus_screenshot() }}" #. type: Plain text #: content/_index.md +#, markdown-text msgid "The iOS application is verified by [TrackerControl for iOS][trackercontrol]:" msgstr "Die iOS-toepassing is geverifieer deur [TrackerControl for iOS][trackercontrol]:" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ trackercontrol_screenshot() }}" msgstr "{{ trackercontrol_screenshot() }}" #. type: Plain text #: content/_index.md +#, markdown-text msgid "Organic Maps doesn't request excessive permissions to spy on you:" msgstr "Organic Maps vra nie om oordrewe magtigings om op u te spioeneer nie:" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ privacy_screenshots() }}" msgstr "{{ privacy_screenshots() }}" #. type: Plain text #: content/_index.md +#, markdown-text msgid "At Organic Maps, we believe that privacy is a fundamental human right:" msgstr "By Organic Maps glo ons dat privaatheid ’n fundamentele mensereg is:" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Organic Maps is an indie community-driven open-source project" msgstr "Organic Maps is ’n onafhanklike gemeenskapsgedrewe oopbronprojek" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "We protect your privacy from Big Tech's prying eyes" msgstr "Ons beskerm u privaatheid van tegnoreuse se nuuskierige oë" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Stay safe no matter wherever you are" msgstr "Bly veilig, waar u ook al is" #. type: Plain text #: content/_index.md content/privacy/index.md +#, markdown-text msgid "Reject surveillance - embrace your freedom." msgstr "Weier waarneming – omarm u vryheid." #. type: Plain text #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap msgid "**[Give Organic Maps a try!](#install)**\n" msgstr "**[Probeer Organic Maps gerus!](#install)**\n" #. type: Title ## #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Who is paying for the free app?" msgstr "Wie betaal vir die gratis toep?" #. type: Plain text #: content/_index.md +#, markdown-text msgid "The app is free for everyone. Please [donate](@/donate/index.md) to support us!" msgstr "Die toep is gratis vir almal. [Skenk](@/donate/index.nl.md) asseblief om ons te ondersteun!" #. type: Plain text #: content/_index.md +#, markdown-text msgid "To donate conveniently, click on your preferred payment method icon below:" msgstr "Om onmiddellik te skenk kan u op ’n voorkeurbetaalmetode hier onder klik:" #. type: Plain text #: content/_index.md content/donate/index.md +#, markdown-text msgid "{{ donate_buttons() }}" msgstr "{{ donate_buttons() }}" #. type: Title ### #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Our sponsors:" msgstr "Ons borge:" #. type: Plain text #: content/_index.md +#, markdown-text msgid "[Mythic Beasts](https://www.mythic-beasts.com/) ISP [provides us][mythic_beasts_donation] two virtual servers with 400 TB/month of free bandwidth to help our users with maps downloads and updates." msgstr "[Mythic Beasts](https://www.mythic-beasts.com/) ISP [voorsien ons][mythic_beasts_donation] van twee virtuele bedieners met 400 TB/maand aan gratis bandbreedte om ons gebruikers te help om kaarte af te laai en by te werk." #. type: Title ## #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Community" msgstr "Gemeenskap" #. type: Plain text #: content/_index.md +#, markdown-text msgid "Organic Maps is an [open-source software][github] licensed under the Apache License 2.0." msgstr "Organic Maps is [oopbronprogrammatuur][github], wat gelisenseer is onder die Apache Lisensie 2.0." #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Please join our beta program, suggest your features, and report bugs:" msgstr "Sluit asseblief aan by ons beta-program, stel funksies voor en rapporteer foute:" #. type: Bullet: ' * ' #: content/_index.md +#, markdown-text msgid "[iOS Beta (TestFlight)][testflight]" msgstr "[iOS Beta (TestFlight)][testflight]" #. type: Bullet: ' * ' #: content/_index.md +#, markdown-text msgid "[Android Beta (Firebase)][firebase]" msgstr "[Android Beta (Firebase)][firebase]" #. type: Bullet: ' * ' #: content/_index.md +#, markdown-text msgid "[Linux Desktop Beta (Flatpak)][flatpak]" msgstr "[Linux Desktop Beta (Flatpak)][flatpak]" #. type: Bullet: ' * ' #: content/_index.md +#, markdown-text msgid "[Linux Desktop Beta (packages)][repology]" msgstr "[Linux Desktop Beta (packages)][repology]" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Report bugs or issues to [the issue tracker][issues] or [email us][email]." msgstr "Rapporteer foute of probleme d.m.v. [die probleemspoorder][issues] of [stuur ’n e-pos][email]." #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "[Discuss][ideas] ideas or propose feature requests." msgstr "[Bespreek][ideas] ideë of stel funksieversoeke voor." #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Subscribe to our [Telegram Channel][telegram] or to the [matrix space][matrix] for updates." msgstr "Teken in op ons [Telegram-kanaal][telegram] of op die [matrix-ruimte][matrix] vir opdaterings." #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Join our [Telegram Group][telegram_chat] to discuss with other users." msgstr "Sluit aan by ons [Telegram-groep][telegram_chat] om met ander gebruikers te bespreek." #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Visit our [GitHub page][github]." msgstr "Besoek ons [GitHub-blad][github]." #. type: Bullet: '- ' #: content/_index.md -msgid "Follow our updates in [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." -msgstr "Volg ons opdaterings op [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Join (or create and let us know) local communities: [Hungarian translators Matrix room](https://matrix.to/#/#organicmapstranslate_hu:matrix.org)" -msgstr "" - -#. type: Link reference -#: content/_index.md -#, no-wrap -msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)" -msgstr "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)" +#, markdown-text +msgid "Follow our updates in [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." +msgstr "Volg ons opdaterings op [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." #. type: Plain text -#: content/_index.md content/donate/index.md content/support-us/index.md +#: content/_index.md +#, markdown-text, no-wrap +msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)\n" +msgstr "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)\n" + +#. type: Plain text +#: content/_index.md content/support-us/index.md +#, markdown-text msgid "{{ references() }}" msgstr "{{ references() }}" @@ -407,180 +452,204 @@ msgstr "Skenk om Organic Maps se ontwikkelinge te steun" #. type: Plain text #: content/donate/index.md -msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]** in **[EUR][stripe_eur], [USD][stripe_usd], [GBP][stripe_GBP], [CHF][stripe_chf], [UAH][stripe_uah], [PLN][stripe_pln]**:" +#, markdown-text +msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]**:" msgstr "Organic Maps is _gratis vir almal_ danksy u **[skenkings][stripe]**:" #. type: Bullet: '- ' #: content/donate/index.md +#, markdown-text msgid "No trackers" msgstr "Geen naspoorders" #. type: Bullet: '- ' #: content/donate/index.md +#, markdown-text msgid "No registration" msgstr "Geen registrasie" #. type: Bullet: '- ' #: content/donate/index.md +#, markdown-text msgid "Open source" msgstr "Oopbron" #. type: Plain text #: content/donate/index.md +#, markdown-text msgid "Click on your preferred payment method icon below:" msgstr "Klik op u voorkeurbetaalmetode-ikoon hier onder:" #. type: Title ## #: content/donate/index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Why donate to Organic Maps?" msgstr "Waarom skenk aan Organic Maps?" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "Our goal is to provide a privacy-focused, fast and easy-to-use alternative to Google Maps and Apple Maps." -msgstr "" +#, markdown-text +msgid "We rely on your donations to carry out our mission to keep Organic Maps open and free. And free from ads." +msgstr "Ons maak op u skenkings staat om ons missie te volbring om Organic Maps oop en gratis te hou. En vry van advertensies." #. type: Bullet: '2. ' #: content/donate/index.md -msgid "Improving public map data for the numerous websites, apps and platforms which use OpenStreetMap, and involving more people in contributing map info is our another goal." -msgstr "" +#, markdown-text +msgid "We are a few enthusiasts contributing in our free time, and spending our families' money on the project. We love what we do, and we love our users ❤️." +msgstr "Ons is ’n paar entoesiaste wat in ons vrye tyd ’n bydrae lewer, en ons gesinne se geld aan die projek bestee. Ons is lief vir wat ons doen, en ons is lief vir al ons gebruikers ❤️." #. type: Bullet: '3. ' #: content/donate/index.md -msgid "We rely on your donations to keep Organic Maps open and free for everyone. And free from ads." -msgstr "Ons maak op u skenkings staat om ons missie te volbring om Organic Maps oop en gratis te hou. En vry van advertensies." - -#. type: Bullet: '4. ' -#: content/donate/index.md -msgid "We love what we do, and we love our users ❤️." -msgstr "" +#, markdown-text +msgid "With your support, we want to become a better, privacy-focused version of Google Maps." +msgstr "Met u steun wil ons ’n beter, privaatheidgefokusde weergawe van Google Maps word." #. type: Title ## #: content/donate/index.md -#, no-wrap -msgid "Why a free project needs money?" -msgstr "" +#, markdown-text, no-wrap +msgid "What will the money be used for?" +msgstr "Waarvoor word die geld gebruik?" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "In 2023, Organic Maps got its first million users. Our servers provide free, fast and frequent map updates all over the world." -msgstr "" +#, markdown-text +msgid "We pay for fast servers, so anyone in the World can download free map data updates without delays. It's hundreds of terabytes monthly, and the amount is growing." +msgstr "Ons betaal vir vinnige bedieners, sodat elkeen in die wêreld sonder vertraging gratis kaartbywerkings kan aflaai. Dit is honderde teragrepe per maand, en die hoeveelheid neem toe." #. type: Bullet: '2. ' #: content/donate/index.md -msgid "User support, bugfixing and publishing quality app updates are at the top of our priorities. There are [~2000 bug reports and feature requests on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." -msgstr "Gebruikersondersteuning, foute herstel, en verbetering van die toepstabiliteit is ons hoofprioriteite. Daar is [2000+ probleme op GitHub][github issues], en die aantal neem daagliks toe. Die AppStore, Google Play, en ondersteuningse-posadresse word oorstroom met kommentaar en foute. Ons wil ’n produk van hoë kwaliteit lewer." +#, markdown-text +msgid "User support, bugfixing, and improving the stability of the app are at the top of our priorities. There are [1800+ issues on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." +msgstr "Gebruikersondersteuning, foute herstel, en verbetering van die toepstabiliteit is ons hoofprioriteite. Daar is [1800+ probleme op GitHub][github issues], en die aantal neem daagliks toe. Die AppStore, Google Play, en ondersteuningse-posadresse word oorstroom met kommentaar en foute. Ons wil ’n produk van hoë kwaliteit lewer." #. type: Bullet: '3. ' #: content/donate/index.md -msgid "With enough money, new features can be developed. To name a few:" +#, markdown-text +msgid "With enough money, new features can be developed faster, for example:" msgstr "Met genoeg geld kan nuwe funksies vinniger ontwikkel word, soos:" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Backup and sync bookmarks and tracks" -msgstr "" +#, markdown-text +msgid "Weekly and automated map data updates" +msgstr "Weeklikse en geoutomatiseerde kaartdatabywerkings" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "GPS track recorder with GPX export" +#, markdown-text +msgid "Bookmarks backup and sync" +msgstr "Boekmerkrugsteun en -sinchronisering" + +#. type: Bullet: ' - ' +#: content/donate/index.md +#, markdown-text +msgid "Android Auto" +msgstr "Android Auto" + +#. type: Bullet: ' - ' +#: content/donate/index.md +#, markdown-text +msgid "GPS track recorder with GPX support" msgstr "GPS-padopnemer met GPX ondersteuning" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Satellite imagery" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Public Transport" -msgstr "Openbare vervoer" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Traffic and accident reporting" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Photos and Reviews" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Map styles for different activities" +#, markdown-text +msgid "Better map styles for different activities" msgstr "Beter kaartenstyle vir verskillende aktiwiteite" #. type: Bullet: ' - ' #: content/donate/index.md +#, markdown-text msgid "Hill shading and 3D terrain" msgstr "Reliëfskaduwees en 3D-terreine" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "More advanced OpenStreetMap editor" +#, markdown-text +msgid "Improve the OpenStreetMap editor" msgstr "Verbetering van die OpenStreetMap-wysiger" #. type: Bullet: ' - ' #: content/donate/index.md +#, markdown-text msgid "Better offline address search, routing, and navigation" msgstr "Beter vanlyn adressoekfunksie, roetes, en navigasie" #. type: Bullet: ' - ' #: content/donate/index.md +#, markdown-text +msgid "Public Transport" +msgstr "Openbare vervoer" + +#. type: Bullet: ' - ' +#: content/donate/index.md +#, markdown-text msgid "… and [many other][github issues] features you want and love" msgstr "… en [vele ander][github issues] funksies wat u wil hê en waarvan u hou" #. type: Title ## #: content/donate/index.md -#, no-wrap +#, markdown-text, no-wrap msgid "How to donate?" msgstr "Hoe om te skenk?" #. type: Plain text #: content/donate/index.md -msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. One-time donations are appreciated too." +#, markdown-text +msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. But you can also donate one time." msgstr "Herhalende skenkings is die beste manier om ’n relatief stabiele inkomste vir die projek te verseker en motiveer ons vir langtermyn take en doele. Maar u kan ook eenmalig skenk." #. type: Title ### #: content/donate/index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Bank Transfer" msgstr "Bankoorplasing" #. type: Plain text #: content/donate/index.md +#, markdown-text msgid "{{ bank_transfer() }}" msgstr "{{ bank_transfer() }}" #. type: Title ### #: content/donate/index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Crypto" msgstr "Kripto" #. type: Plain text #: content/donate/index.md +#, markdown-text msgid "Please consider donating annually to reduce total fees." msgstr "Oorweeg dit asseblief om jaarliks te skenk om die totale koste te verminder." #. type: Plain text #: content/donate/index.md +#, markdown-text msgid "{{ crypto_table() }}" msgstr "{{ crypto_table() }}" #. type: Title ## #: content/donate/index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Can you help us in any other way?" msgstr "Kan u ons op ’n ander manier help?" #. type: Plain text #: content/donate/index.md +#, markdown-text msgid "Yes! There are many ways to support Organic Maps. Please see [Support Us](@/support-us/index.md) page for more details." msgstr "Ja! Daar is baie maniere om Organic Maps te ondersteun. Kyk asseblief by [Steun ons](@/support-us/index.nl.md) vir meer details." +#. type: Plain text +#: content/donate/index.md +#, markdown-text, no-wrap +msgid "" +"[stripe]: https://donate.organicmaps.app/ \"Donate via Stripe\"\n" +"[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" +msgstr "[stripe]: https://donate.organicmaps.app/ \"Skenk d.m.v. Stripe\"\n[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub-probleme\"\n" + #. type: Yaml Front Matter Hash Value: description #: content/news/_index.md #, no-wrap @@ -619,27 +688,31 @@ msgstr "Organic Maps: Privaatheidsbeleid" #. type: Plain text #: content/privacy/index.md +#, markdown-text msgid "Organic Maps respects your privacy and DOES NOT TRACK YOU." msgstr "Organic Maps eerbiedig u privaatheid en SPOOR U NIE NA NIE." #. type: Plain text #: content/privacy/index.md +#, markdown-text msgid "Unlike most other applications, there is no tracking, no ads, no spyware, no data and statistics collection in Organic Maps." msgstr "In teenstelling met ander toepassings is daar geen nasporing, geen advertensies, geen spioenware, geen data- en statistiekversameling in Organic Maps nie." #. type: Plain text #: content/privacy/index.md +#, markdown-text msgid "Stay away from Big Tech's prying eyes!" msgstr "Bly weg van tegnoreuse se priemende oë!" #. type: Plain text #: content/privacy/index.md content/terms/index.md +#, markdown-text msgid "If you have any questions or suggestions, please contact us at [legal@organicmaps.app](mailto:legal@organicmaps.app)." msgstr "Indien u vrae of opmerkings het, kontak ons asb. by [legal@organicmaps.app](mailto:legal@organicmaps.app)." #. type: Plain text #: content/privacy/index.md -#, no-wrap +#, markdown-text, no-wrap msgid "This policy is effective as of 2021-04-24.\n" msgstr "Hierdie beleid is geldig vanaf 2021-04-24.\n" @@ -663,76 +736,91 @@ msgstr "Ondersteun die ontwikkeling van Organic Maps" #. type: Plain text #: content/support-us/index.md +#, markdown-text msgid "Organic Maps is a free, open-source app. It is free from ads, it does not collect your personal information, and it is developed by a few enthusiasts with the help of the community." msgstr "Organic Maps is ’n gratis, oopbrontoep. Dit is vry van advertensies, dit versamel nie u persoonlike data nie, en word ontwikkel deur ’n paar entoesiaste met die hulp van die gemeenskap." #. type: Plain text #: content/support-us/index.md +#, markdown-text msgid "There are different ways to support the development:" msgstr "Daar is verskillende maniere om die ontwikkeling te ondersteun:" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "[Donate](@/donate/index.md)! Every dollar or euro counts and helps us to pay for servers and scale." msgstr "[Skenk](@/donate/index.nl.md)! Elke euro of dollar tel en help ons om bedieners te betaal en op te skaal." #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Report bugs and share ideas on our [GitHub][github] or via [email][email]." msgstr "Rapporteer foute en deel ideë op ons [GitHub][github] of d.m.v. [e-pos][email]." #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Help us to [fix bugs][contributing] and do code reviews if you are a developer. Every fixed small issue makes someone happier." msgstr "Help ons om [foute op te los][contributing] en hersien kode as u ’n ontwikkelaar is. Elke klein opgeloste fout maak iemand blyer." #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "[Translate][translations] missing strings in the app's interface." msgstr "[Vertaal][translations] ontbrekende stringe in die toep se koppelvlak." #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Translate [App Store][translations_appstore] and [Android][translations_googleplay] descriptions into your language." msgstr "Vertaal [App Store][translations_appstore] en [Android][translations_googleplay] beskrywings in u taal." #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "[Translate][translations_website] our web site into your language." msgstr "[Vertaal][translations_website] ons webwerf in u taal." #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Join the [OpenStreetMap][openstreetmap] community and contribute to the maps data." msgstr "Sluit aan by die [OpenStreetMap][openstreetmap]-gemeenskap en dra by tot die kaartdata." #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Fix red cities found by our [public transport validator][public_transport_validator], for subways and light rails to work in the app." msgstr "Herstel rooi stede wat deur ons [OV-kontroleerder][public_transport_validator] gevind is, sodat moltreine en sneltrems in die toep werk." #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Support other users on [GitHub][issues], [Telegram][telegram_chat], [Matrix][matrix], [Twitter][twitter], [Facebook][facebook], [Instagram][instagram]." msgstr "Ondersteun ander gebruikers op [GitHub][issues], [Telegram][telegram_chat], [Matrix][matrix], [Twitter][twitter], [Facebook][facebook], [Instagram][instagram]." #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Tell everyone about Organic Maps. A bigger community is a stronger community." msgstr "Vertel almal van Organic Maps. ’n Groter gemeenskap is ’n sterker gemeenskap." #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Rate us in [Google Play][googleplay_review], [Apple Store][appstore_review], [Huawei Appgallery][appgallery_review]." msgstr "Gradeer ons op [Google Play][googleplay_review], [Apple Store][appstore_review], [Huawei Appgallery][appgallery_review]." #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Any help is welcome!" msgstr "Enige hulp is welkom!" #. type: Plain text #: content/support-us/index.md +#, markdown-text msgid "Our small team is very grateful for your feedback and support. Organic Maps would not be possible without our users ❤️." msgstr "Ons klein span is baie dankbaar vir u terugvoer en ondersteuning. Organic Maps sou nie moontlik wees sonder ons gebruikers nie ❤️." @@ -756,61 +844,60 @@ msgstr "Organic Maps: voorwaardes" #. type: Plain text #: content/terms/index.md +#, markdown-text msgid "This app is licensed under the Apache License, Version 2.0 (the \"License\"); you may not use this application except in compliance with the License." msgstr "Hierdie toep is gelisensieer onder die Apache-lisensie, Weergawe 2.0 (die “lisensie”); u mag die toepassing slegs in ooreenstemming met die lisensie gebruik." #. type: Plain text #: content/terms/index.md +#, markdown-text msgid "You may obtain a copy of the License at [http://www.apache.org/licenses/LICENSE-2.0][license]" msgstr "U kan ’n kopie van die lisensie verkry by [http://www.apache.org/licenses/LICENSE-2.0][license]" #. type: Plain text #: content/terms/index.md +#, markdown-text msgid "Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License." msgstr "Tensy vereis deur toepaslike wet of onder skriftelike ooreenkoms, word die programmatuur onder die lisensie versprei op ’n “VOETSTOOTS”-BASIS, SONDER WAARBORGE OF VOORWAARDES VAN ENIGE AARD, hetsy uitdruklik of geïmpliseer. Sien die lisensie vir die spesifieke teks wat betref toestemmings en grense van die lisensie." #. type: Plain text #: content/terms/index.md +#, markdown-text msgid "Most libraries in the following directories on [GitHub][github] made by other people and organizations and licensed in different ways:" msgstr "Die meeste biblioteke in die volgende vouers op [GitHub][github] is gemaak deur ander mense en organisasies en op ander wyses gelisensieer:" #. type: Bullet: '- ' #: content/terms/index.md +#, markdown-text msgid "3party" msgstr "3departy" #. type: Bullet: '- ' #: content/terms/index.md +#, markdown-text msgid "tools" msgstr "nutsmiddels" #. type: Plain text #: content/terms/index.md +#, markdown-text msgid "Please refer to their LICENSE, COPYING or NOTICE files for terms of use." msgstr "Sien asseblief die LISENSIE-, KOPIËRING- of KENNISGEWINGLÊERS vir die gebruiksvoorwaardes." #. type: Plain text #: content/terms/index.md +#, markdown-text msgid "See also [data/copyright.html][copyright] file for a full list of copyright notices for Organic Maps application." msgstr "Sien ook die lêer [data/copyright.html][copyright] vir ’n volledige lys van kopieregkennisgewings vir die Organic Maps-toepassing." -#. type: Link reference +#. type: Plain text #: content/terms/index.md -#, no-wrap -msgid "[github]: https://github.com/organicmaps/organicmaps" -msgstr "" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[license]: http://www.apache.org/licenses/LICENSE-2.0" -msgstr "[license]: http://www.apache.org/licenses/LICENSE-2.0" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html" -msgstr "" +#, markdown-text, no-wrap +msgid "" +"[github]: https://github.com/organicmaps/organicmaps\n" +"[license]: http://www.apache.org/licenses/LICENSE-2.0\n" +"[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html\n" +msgstr "[github]: https://github.com/organicmaps/organicmaps\n[license]: http://www.apache.org/licenses/LICENSE-2.0\n[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html\n" #. type: Hash Value: address #: translations.yaml @@ -830,18 +917,6 @@ msgstr "Terug na nuus" msgid "Contact Us" msgstr "Kontak ons" -#. type: Hash Value: engines -#: translations.yaml -#, no-wrap -msgid "Supported TTS Engines" -msgstr "" - -#. type: Hash Value: faq-menu-title -#: translations.yaml -#, no-wrap -msgid "F.A.Q." -msgstr "" - #. type: Hash Value: install-appgallery #: translations.yaml #, no-wrap @@ -872,12 +947,6 @@ msgstr "Installeer Organic Maps vanaf Google Play" msgid "English" msgstr "Afrikaans" -#. type: Hash Value: language-word -#: translations.yaml -#, no-wrap -msgid "Language" -msgstr "Taal" - #. type: Hash Value: name #: translations.yaml #, no-wrap diff --git a/po/content.ar.po b/po/content.ar.po index 14c5b49a..f82bee7d 100644 --- a/po/content.ar.po +++ b/po/content.ar.po @@ -4,7 +4,16 @@ # FIRST AUTHOR , YEAR. # msgid "" -msgstr "Project-Id-Version: Organic Maps Website 1.0\nPO-Revision-Date: 2024-04-02 19:54+0000\nLast-Translator: Weblate Translation Memory \nLanguage-Team: Arabic \nLanguage: ar\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\nX-Generator: Weblate 5.5-dev\n" +msgstr "" +"Project-Id-Version: Organic Maps Website 1.0\n" +"Last-Translator: MOHAMED ALYAHRI \n" +"Language-Team: Arabic \n" +"Language: ar\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" +"X-Generator: Weblate 5.0.2\n" #. type: Yaml Front Matter Hash Value: description #: content/_index.md @@ -22,28 +31,20 @@ msgstr "الرئيسية" #: content/_index.md #, no-wrap msgid "Organic Maps: Offline Hike, Bike, Trails and Navigation" -msgstr "Organic Maps: تنزَّه وقد دراجتك وشُدَّ الرحال حيثما أردت بدون الإنترنت" +msgstr "Organic Maps: خرائط بدون إنترنت للتنزه، الدراجة، المسارات والتوجيه" #. type: Plain text #: content/_index.md #, no-wrap -msgid "" -"**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, drivers and cyclists based on **[OpenStreetMap][openstreetmap]** data created by the community.\n" -"It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" -msgstr "**Organic Maps** هو تطبيق أندرويد و آيفون مجاني ولا يحتاج الإتصال بالإنترنت لأجل المسافرين، السياح، السائقين، المتنزهين و راكبي الدراجات مبني على بيانات المصدر العام **[OpenStreetMap][openstreetmap]**. مهتم بخصوصية المستخدمين، مفتوح المصدر، متفرع من تطبيق **Maps.Me** (المعروف سابقا بـ [**MapsWithMe**][mapswithme])، يقوم بصيانته نفس الأشخاص الذين أسسو **MapsWithMe** سنة 2011.\n" +msgid "**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, and cyclists based on top of crowd-sourced **[OpenStreetMap][openstreetmap]** data. It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" +msgstr "**Organic Maps** هو تطبيق أندرويد و آيفون مجاني ولا يحتاج الإتصال بالإنترنت من أجل المسافرين،السياح ، المتنزهين والدراجين مبني على بيانات المصدر العام **[OpenStreetMap][openstreetmap]**. مهتم بخصوصية المستخدمين، مفتوح المصدر، متفرع من تطبيق **Maps.Me** (المعروف سابقا بـ [**MapsWithMe**][mapswithme])، يقوم بصيانته نفس الأشخاص الذين أسسو **MapsWithMe** سنة 2011.\n" #. type: Plain text #: content/_index.md #, no-wrap -msgid "**Organic Maps** is one of the few applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card, and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" +msgid "**Organic Maps** is one of the only applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card (by the way, your operator constantly tracks you), and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" msgstr "**Organic Maps** من التطبيقات القليلة في يومنا هذا التي توفر 100% من المزايا بدون اتصال مباشر بشبكة الإنترنت. ثبّت Organic Maps، نزل الخرائط، ارمي بطاقة الشبكة خاصتك (بالمناسبة، مزود الخدمة يتتبعك باستمرار)، واذهب في رحلة اسبوعية بشحن البطارية مرة واحدة ودون أي بايت مرسل من خلال الشبكة.\n" -#. type: Plain text -#: content/_index.md -#, no-wrap -msgid "> In 2023, Organic Maps [got its first million](@/news/2023-12-23/281/index.md) users. [Help us](@/donate/index.md) to scale!\n" -msgstr "" - #. type: Title ### #: content/_index.md #, no-wrap @@ -62,8 +63,9 @@ msgstr "{{ screenshot(src='/images/screenshots/hiking.jpg', alt='Hiking') }}" #. type: Plain text #: content/_index.md +#, fuzzy msgid "{{ screenshot(src='/images/screenshots/prague.jpg', alt='Prague') }}" -msgstr "{{ لقطة شاشة(src='/images/screenshots/hiking.jpg', alt='محبي المشي لمسافات طويلة') }}" +msgstr "{{ screenshot(src='/images/screenshots/prague.jpg', alt='Prague') }}" #. type: Plain text #: content/_index.md @@ -84,7 +86,7 @@ msgstr "المميزات" #. type: Plain text #: content/_index.md msgid "Organic Maps is the ultimate companion app for travelers, tourists, hikers, and cyclists:" -msgstr "تطبيق Organic Maps هو الرفيق الأفضل للمسافرين، السياح، المتنزهين و راكبي الدراجات:" +msgstr "تطبيق Organic Maps هو الرفيق الأفضل للمسافرين،السياح، المتنزهين و راكبي الدراجات:" #. type: Bullet: '- ' #: content/_index.md @@ -103,8 +105,8 @@ msgstr "الخطوط الكنتورية، المرتفعات، القمم وال #. type: Bullet: '- ' #: content/_index.md -msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance and Android Auto" -msgstr "المشي خطوة بخطوة وركوب الدراجة وقيادة السيارة مع التوجيه الصوتي وAndroid Auto" +msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance" +msgstr "المشي خطوة بخطوة، ركوب الدراجة، قيادة السيارة بالتوجيه الصوتي" #. type: Bullet: '- ' #: content/_index.md @@ -113,8 +115,8 @@ msgstr "بحث سريع في الخريطة بدون الحاجة لإنترنت #. type: Bullet: '- ' #: content/_index.md -msgid "Export/import bookmarks in KML/KMZ, import GPX" -msgstr "الإشارات المرجعية والمسارات بتنسيقات KML، KMZ، GPX" +msgid "Bookmarks and tracks in KML, KMZ, GPX formats" +msgstr "تصدير المراجع المحفوضة واستيرادها، بصيغ KML/KMZ (GPX [مخطط له][gpx_issue])" #. type: Bullet: '- ' #: content/_index.md @@ -250,7 +252,7 @@ msgstr "في Organic Maps نعتقد أن الخصوصية هي حق أساسي #. type: Bullet: '- ' #: content/_index.md msgid "Organic Maps is an indie community-driven open-source project" -msgstr "Organic Maps هو مشروع مفتوح المصدر مُدار من طرف مُجتمع مستقل" +msgstr "Organic Maps هو مشروع مفتوح المصدر يحركه المجتمع المستقل" #. type: Bullet: '- ' #: content/_index.md @@ -287,7 +289,7 @@ msgstr "التطبيق مجاني للجميع. من فضلك [تبرع](@/donat #. type: Plain text #: content/_index.md msgid "To donate conveniently, click on your preferred payment method icon below:" -msgstr "للتبرع بسهولة، انقر على أيقونة طريقة الدفع المفضلة لديك أدناه:" +msgstr "" #. type: Plain text #: content/_index.md content/donate/index.md @@ -368,22 +370,19 @@ msgstr "زُر [صفحة Github][github]." #. type: Bullet: '- ' #: content/_index.md -msgid "Follow our updates in [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." -msgstr "تابع تحديثاتنا في [ماستودون ][mastodon]، [فيسبوك][facebook]، [تويتر][twitter]، [Instagram][instagram]، [Reddit][reddit]، [FOSStodon][fosstodon]، [LinkedIn][LinkedIn]." - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Join (or create and let us know) local communities: [Hungarian translators Matrix room](https://matrix.to/#/#organicmapstranslate_hu:matrix.org)" -msgstr "" - -#. type: Link reference -#: content/_index.md -#, no-wrap -msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)" -msgstr "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)" +#, fuzzy +#| msgid "Follow our updates in [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit]." +msgid "Follow our updates in [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." +msgstr "تابع تحديثاتنا في [ماستودون ][mastodon]، [فيسبوك][facebook]، [تويتر][twitter]، [Instagram][instagram]، [Reddit][reddit]." #. type: Plain text -#: content/_index.md content/donate/index.md content/support-us/index.md +#: content/_index.md +#, no-wrap +msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)\n" +msgstr "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)\n" + +#. type: Plain text +#: content/_index.md content/support-us/index.md msgid "{{ references() }}" msgstr "{{ references() }}" @@ -407,7 +406,7 @@ msgstr "تبرع لدعم تطوير Organic Maps" #. type: Plain text #: content/donate/index.md -msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]** in **[EUR][stripe_eur], [USD][stripe_usd], [GBP][stripe_GBP], [CHF][stripe_chf], [UAH][stripe_uah], [PLN][stripe_pln]**:" +msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]**:" msgstr "هو _مجاني للجميع_ بفضل **[تبرعاتك][stripe]**:" #. type: Bullet: '- ' @@ -428,7 +427,7 @@ msgstr "مفتوح المصدر" #. type: Plain text #: content/donate/index.md msgid "Click on your preferred payment method icon below:" -msgstr "انقر على أيقونة طريقة الدفع المفضلة أدناه:" +msgstr "" #. type: Title ## #: content/donate/index.md @@ -438,78 +437,63 @@ msgstr "لماذا التبرع لOrganic Maps؟" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "Our goal is to provide a privacy-focused, fast and easy-to-use alternative to Google Maps and Apple Maps." -msgstr "" +msgid "We rely on your donations to carry out our mission to keep Organic Maps open and free. And free from ads." +msgstr "نحن نعتمد على تبرعاتك لتنفيذ مهمتنا لبقاء Organic Maps مفتوحًا ومجانيًا. وخالي من الإعلانات." #. type: Bullet: '2. ' #: content/donate/index.md -msgid "Improving public map data for the numerous websites, apps and platforms which use OpenStreetMap, and involving more people in contributing map info is our another goal." -msgstr "" +msgid "We are a few enthusiasts contributing in our free time, and spending our families' money on the project. We love what we do, and we love our users ❤️." +msgstr "نحن عدد قليل من المتحمسين نساهم في وقت فراغنا وننفق أموال عائلاتنا على المشروع. نحن نحب ما نفعله، ونحب مستخدمينا ❤️." #. type: Bullet: '3. ' #: content/donate/index.md -msgid "We rely on your donations to keep Organic Maps open and free for everyone. And free from ads." -msgstr "نحن نعتمد على تبرعاتك لتنفيذ مهمتنا لبقاء Organic Maps مفتوحًا ومجانيًا. وخالي من الإعلانات." - -#. type: Bullet: '4. ' -#: content/donate/index.md -msgid "We love what we do, and we love our users ❤️." -msgstr "" +msgid "With your support, we want to become a better, privacy-focused version of Google Maps." +msgstr "بدعمك، نريد أن نصبح إصدارًا أفضل يركز على الخصوصية من خرائط Google." #. type: Title ## #: content/donate/index.md #, no-wrap -msgid "Why a free project needs money?" -msgstr "" +msgid "What will the money be used for?" +msgstr "ماذا سيستخدم المال؟" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "In 2023, Organic Maps got its first million users. Our servers provide free, fast and frequent map updates all over the world." -msgstr "" +msgid "We pay for fast servers, so anyone in the World can download free map data updates without delays. It's hundreds of terabytes monthly, and the amount is growing." +msgstr "نحن ندفع مقابل الخوادم السريعة، حتى يتمكن أي شخص في العالم من تنزيل تحديثات بيانات الخريطة المجانية دون تأخير. إنها مئات التيرابايت شهريًا، والمبلغ آخذ في الازدياد." #. type: Bullet: '2. ' #: content/donate/index.md -msgid "User support, bugfixing and publishing quality app updates are at the top of our priorities. There are [~2000 bug reports and feature requests on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." -msgstr "يأتي دعم المستخدم، والتثبيت، وتحسين استقرار التطبيق على رأس أولوياتنا. هناك [1200 + مشكلة على GitHub][github issues]، وهذا الرقم يتزايد كل يوم. تمتلئ AppStore و Google Play ورسائل البريد الإلكتروني الداعمة بالتعليقات والأخطاء. نريد تقديم منتج عالي الجودة." +msgid "User support, bugfixing, and improving the stability of the app are at the top of our priorities. There are [1800+ issues on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." +msgstr "يأتي دعم المستخدم، والتثبيت، وتحسين استقرار التطبيق على رأس أولوياتنا. هناك [1800 + مشكلة على GitHub][github issues]، وهذا الرقم يتزايد كل يوم. تمتلئ AppStore و Google Play ورسائل البريد الإلكتروني الداعمة بالتعليقات والأخطاء. نريد تقديم منتج عالي الجودة." #. type: Bullet: '3. ' #: content/donate/index.md -msgid "With enough money, new features can be developed. To name a few:" +msgid "With enough money, new features can be developed faster, for example:" msgstr "مع ما يكفي من المال، يمكن تطوير ميزات جديدة بشكل أسرع، على سبيل المثال:" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Backup and sync bookmarks and tracks" -msgstr "" +msgid "Weekly and automated map data updates" +msgstr "تحديثات بيانات الخرائط الأسبوعية والآلية" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "GPS track recorder with GPX export" +msgid "Bookmarks backup and sync" +msgstr "نسخ احتياطي من العلامات المرجعية ومزامنتها" + +#. type: Bullet: ' - ' +#: content/donate/index.md +msgid "Android Auto" +msgstr "أندرويد أوتو" + +#. type: Bullet: ' - ' +#: content/donate/index.md +msgid "GPS track recorder with GPX support" msgstr "مسجل مسار GPX مع دعم GPX" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Satellite imagery" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Public Transport" -msgstr "Public Transport" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Traffic and accident reporting" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Photos and Reviews" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Map styles for different activities" +msgid "Better map styles for different activities" msgstr "أنماط خريطة أفضل للأنشطة المختلفة" #. type: Bullet: ' - ' @@ -519,7 +503,7 @@ msgstr "تظليل التلال والتضاريس ثلاثية الأبعاد" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "More advanced OpenStreetMap editor" +msgid "Improve the OpenStreetMap editor" msgstr "تحسين محرر OpenStreetMap" #. type: Bullet: ' - ' @@ -527,6 +511,11 @@ msgstr "تحسين محرر OpenStreetMap" msgid "Better offline address search, routing, and navigation" msgstr "بحث أفضل عن العنوان غير المتصل بالإنترنت والتوجيه والتنقل" +#. type: Bullet: ' - ' +#: content/donate/index.md +msgid "Public Transport" +msgstr "Public Transport" + #. type: Bullet: ' - ' #: content/donate/index.md msgid "… and [many other][github issues] features you want and love" @@ -540,7 +529,7 @@ msgstr "كيف تتبرع؟" #. type: Plain text #: content/donate/index.md -msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. One-time donations are appreciated too." +msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. But you can also donate one time." msgstr "التبرعات المتكررة هي أفضل طريقة لضمان دخل مستقر نسبيًا للمشروع وتحفيزنا على المهام والأهداف طويلة الأجل. لكن يمكنك أيضًا التبرع مرة واحدة." #. type: Title ### @@ -581,6 +570,16 @@ msgstr "هل يمكنك مساعدتنا بأي طريقة أخرى؟" msgid "Yes! There are many ways to support Organic Maps. Please see [Support Us](@/support-us/index.md) page for more details." msgstr "نعم! هناك العديد من الطرق لدعم Organic Maps. يرجى الاطلاع على صفحة [دعمنا](@/support-us/index.md) لمزيد من التفاصيل." +#. type: Plain text +#: content/donate/index.md +#, no-wrap +msgid "" +"[stripe]: https://donate.organicmaps.app/ \"Donate via Stripe\"\n" +"[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" +msgstr "" +"[stripe]: https://donate.organicmaps.app/ \"تبرع عبر Stripe\"\n" +"[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub مشاكل\"\n" + #. type: Yaml Front Matter Hash Value: description #: content/news/_index.md #, no-wrap @@ -794,23 +793,17 @@ msgstr "يرجى الرجوع إلى ملفات الترخيص أو النسخ msgid "See also [data/copyright.html][copyright] file for a full list of copyright notices for Organic Maps application." msgstr "راجع أيضًا ملف [data / copyright.html][copyright] للحصول على قائمة كاملة بإشعارات حقوق النشر الخاصة بتطبيق Organic Maps." -#. type: Link reference +#. type: Plain text #: content/terms/index.md #, no-wrap -msgid "[github]: https://github.com/organicmaps/organicmaps" -msgstr "" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[license]: http://www.apache.org/licenses/LICENSE-2.0" -msgstr "[license]: http://www.apache.org/licenses/LICENSE-2.0" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html" +msgid "" +"[github]: https://github.com/organicmaps/organicmaps\n" +"[license]: http://www.apache.org/licenses/LICENSE-2.0\n" +"[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html\n" msgstr "" +"[github]: https://github.com/organicmaps/organicmaps\n" +"[الترخيص]: http://www.apache.org/licenses/LICENSE-2.0\n" +"[حقوق النشر]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html\n" #. type: Hash Value: address #: translations.yaml @@ -830,18 +823,6 @@ msgstr "العودة إلى الأخبار" msgid "Contact Us" msgstr "اتصل بنا" -#. type: Hash Value: engines -#: translations.yaml -#, no-wrap -msgid "Supported TTS Engines" -msgstr "" - -#. type: Hash Value: faq-menu-title -#: translations.yaml -#, no-wrap -msgid "F.A.Q." -msgstr "" - #. type: Hash Value: install-appgallery #: translations.yaml #, no-wrap @@ -872,12 +853,6 @@ msgstr "تثبيت Organic Maps من سوق Google Play" msgid "English" msgstr "العربية" -#. type: Hash Value: language-word -#: translations.yaml -#, no-wrap -msgid "Language" -msgstr "اللغة" - #. type: Hash Value: name #: translations.yaml #, no-wrap @@ -889,45 +864,3 @@ msgstr "الاسم" #, no-wrap msgid "Token" msgstr "رمز" - -#~ msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]**:" -#~ msgstr "هو _مجاني للجميع_ بفضل **[تبرعاتك][stripe]**:" - -#~ msgid "We are a few enthusiasts contributing in our free time, and spending our families' money on the project. We love what we do, and we love our users ❤️." -#~ msgstr "نحن عدد قليل من المتحمسين نساهم في وقت فراغنا وننفق أموال عائلاتنا على المشروع. نحن نحب ما نفعله، ونحب مستخدمينا ❤️." - -#~ msgid "With your support, we want to become a better, privacy-focused version of Google Maps." -#~ msgstr "بدعمك، نريد أن نصبح إصدارًا أفضل يركز على الخصوصية من خرائط Google." - -#, no-wrap -#~ msgid "What will the money be used for?" -#~ msgstr "ماذا سيستخدم المال؟" - -#~ msgid "We pay for fast servers, so anyone in the World can download free map data updates without delays. It's hundreds of terabytes monthly, and the amount is growing." -#~ msgstr "نحن ندفع مقابل الخوادم السريعة، حتى يتمكن أي شخص في العالم من تنزيل تحديثات بيانات الخريطة المجانية دون تأخير. إنها مئات التيرابايت شهريًا، والمبلغ آخذ في الازدياد." - -#~ msgid "User support, bugfixing, and improving the stability of the app are at the top of our priorities. There are [1800+ issues on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." -#~ msgstr "يأتي دعم المستخدم، والتثبيت، وتحسين استقرار التطبيق على رأس أولوياتنا. هناك [1800 + مشكلة على GitHub][github issues]، وهذا الرقم يتزايد كل يوم. تمتلئ AppStore و Google Play ورسائل البريد الإلكتروني الداعمة بالتعليقات والأخطاء. نريد تقديم منتج عالي الجودة." - -#~ msgid "Weekly and automated map data updates" -#~ msgstr "تحديثات بيانات الخرائط الأسبوعية والآلية" - -#~ msgid "Bookmarks backup and sync" -#~ msgstr "نسخ احتياطي من العلامات المرجعية ومزامنتها" - -#~ msgid "Android Auto" -#~ msgstr "أندرويد أوتو" - -#, no-wrap -#~ msgid "" -#~ "[stripe]: https://donate.organicmaps.app/ \"Donate via Stripe\"\n" -#~ "[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" -#~ msgstr "" -#~ "[stripe]: https://donate.organicmaps.app/ \"تبرع عبر Stripe\"\n" -#~ "[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub مشاكل\"\n" - -#~ msgid "To donate immediately, click a preferred payment method icon below:" -#~ msgstr "للتبرع فورًا، انقر فوق أيقونة طريقة الدفع المفضلة أدناه:" - -#~ msgid "Click a preferred payment method icon below:" -#~ msgstr "انقر على أيقونة طريقة الدفع المفضلة أدناه:" diff --git a/po/content.be.po b/po/content.be.po deleted file mode 100644 index 9303e546..00000000 --- a/po/content.be.po +++ /dev/null @@ -1,890 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Organic Maps -# This file is distributed under the same license as the Organic Maps Website package. -# FIRST AUTHOR , YEAR. -# -msgid "" -msgstr "Project-Id-Version: Organic Maps Website 1.0\nPO-Revision-Date: 2024-04-02 19:54+0000\nLast-Translator: Weblate Translation Memory \nLanguage-Team: Belarusian \nLanguage: be\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-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);\nX-Generator: Weblate 5.5-dev\n" - -#. type: Yaml Front Matter Hash Value: description -#: content/_index.md -#, no-wrap -msgid "Fast detailed offline maps for travelers, tourists, drivers, hikers and cyclists created by MapsWithMe (Maps.Me) app founders." -msgstr "Хуткія, падрабязныя афлайн мапы для падарожнікаў, турыстаў, кіроўцаў і веласіпедыстаў, створаныя заснавальнікамі праграмы MapsWithMe (пазней перайменаванай у Maps.Me)." - -#. type: Yaml Front Matter Hash Value: extra menu_title -#: content/_index.md -#, no-wrap -msgid "Home" -msgstr "На галоўную" - -#. type: Yaml Front Matter Hash Value: title -#: content/_index.md -#, no-wrap -msgid "Organic Maps: Offline Hike, Bike, Trails and Navigation" -msgstr "Organic Maps: афлайн мапы" - -#. type: Plain text -#: content/_index.md -msgid "" -"**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, drivers and cyclists based on **[OpenStreetMap][openstreetmap]** data created by the community.\n" -"It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" -msgstr "**Organic Maps** - гэта бясплатныя афлайн мапы для падарожнікаў, турыстаў і веласіпедыстаў, заснаваныя на дадзеных **[OpenStreetMap][openstreetmap]**. Гэта дадатак для iOS і Android з адкрытым зыходным кодам, [форк][fork] прыкладання **Maps.Me** (раней вядомага як [**MapsWithMe**][mapswithme], які падтрымліваецца стваральнікамі **MapsWithMe**.\n" - -#. type: Plain text -#: content/_index.md -#, no-wrap -msgid "**Organic Maps** is one of the few applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card, and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" -msgstr "" - -#. type: Plain text -#: content/_index.md -#, no-wrap -msgid "> In 2023, Organic Maps [got its first million](@/news/2023-12-23/281/index.md) users. [Help us](@/donate/index.md) to scale!\n" -msgstr "" - -#. type: Title ### -#: content/_index.md -#, no-wrap -msgid "Download and install Organic Maps from [AppStore][appstore], [Google Play][googleplay], [FDroid][fdroid], [Huawei AppGallery][appgallery] {#install}" -msgstr "Спампуйце і ўсталюйце Organic Maps з [AppStore][appstore], [Google Play][googleplay], [FDroid][fdroid], [Huawei AppGallery][appgallery] {#install}" - -#. type: Plain text -#: content/_index.md -msgid "{{ badges() }}" -msgstr "{{ badges() }}" - -#. type: Plain text -#: content/_index.md -msgid "{{ screenshot(src='/images/screenshots/hiking.jpg', alt='Hiking') }}" -msgstr "{{ screenshot(src='/images/screenshots/hiking.jpg', alt='Пешы паход') }}" - -#. type: Plain text -#: content/_index.md -msgid "{{ screenshot(src='/images/screenshots/prague.jpg', alt='Prague') }}" -msgstr "{{ screenshot(src='/images/screenshots/prague.jpg', alt='Прага') }}" - -#. type: Plain text -#: content/_index.md -msgid "{{ screenshot(src='/images/screenshots/search.jpg', alt='Offline Search') }}" -msgstr "{{ screenshot(src='/images/screenshots/search.jpg', alt='Афлайн пошук') }}" - -#. type: Plain text -#: content/_index.md -msgid "{{ screenshot(src='/images/screenshots/dark.jpg', alt='Navigation in dark mode') }}" -msgstr "{{ screenshot(src='/images/screenshots/dark.jpg', alt='Навігацыя ў начным рэжыме') }}" - -#. type: Title ## -#: content/_index.md -#, no-wrap -msgid "Features" -msgstr "Магчымасці" - -#. type: Plain text -#: content/_index.md -msgid "Organic Maps is the ultimate companion app for travelers, tourists, hikers, and cyclists:" -msgstr "" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Detailed offline maps with places that don't exist on other maps, thanks to [OpenStreetMap][openstreetmap]" -msgstr "Дэталёвыя афлайн карты з месцамі, якія не існуюць на іншых картах, дзякуючы [OpenStreetMap][openstreetmap]" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Cycling routes, hiking trails, and walking paths" -msgstr "Веласіпедныя маршруты, турыстычныя сцежкі і пешаходныя дарожкі" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Contour lines, elevation profiles, peaks, and slopes" -msgstr "Контурныя лініі, профілі вышыні, пікі і схілы" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance and Android Auto" -msgstr "Аўта-, вела- і пешы навігатар з галасавым суправаджэннем, i Android Auto" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Fast offline search on the map" -msgstr "Хуткі афлайн пошук на карце" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Export/import bookmarks in KML/KMZ, import GPX" -msgstr "" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Dark Mode to protect your eyes" -msgstr "Цёмны рэжым для аховы вашых вачэй" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Countries and regions don't take a lot of space" -msgstr "Краіны і рэгіёны не займаюць шмат месца" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Free and open-source" -msgstr "Бясплатны і з адкрытым зыходным кодам" - -#. type: Title ## -#: content/_index.md -#, no-wrap -msgid "Why Organic?" -msgstr "Чаму Organic?" - -#. type: Plain text -#: content/_index.md -msgid "Organic Maps is pure and organic, made with love:" -msgstr "Organic Maps - гэта чыстая і арганічная праграма, зробленая з любоўю:" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Respects your privacy" -msgstr "Паважае вашу канфідэнцыяльнасць" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Saves your battery" -msgstr "Эканоміць зарад вашага акумулятара" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "No unexpected mobile data charges" -msgstr "Ніякіх нечаканых аплат за мабільную перадачу даных" - -#. type: Plain text -#: content/_index.md -msgid "Organic Maps app is free from trackers and other bad stuff:" -msgstr "Праграма Organic Maps не змяшчае трэкераў і іншых шкодных рэчаў:" - -#. type: Bullet: '- ' -#: content/_index.md content/donate/index.md -msgid "No ads" -msgstr "Без рэкламы" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "No tracking" -msgstr "" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "No data collection" -msgstr "Без збору даных" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "No phoning home" -msgstr "Не злівае інфармацыю на бок" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "No annoying registration" -msgstr "Без раздражняльнай рэгістрацыі" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "No mandatory tutorials" -msgstr "Без абавязковага інструктажу" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "No noisy email spam" -msgstr "Без спаму на электроную пошту" - -#. type: Bullet: '- ' -#: content/_index.md content/donate/index.md -msgid "No push notifications" -msgstr "Без push-апавяшчэнняў" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "No crapware" -msgstr "Без смецця" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "~~No pesticides~~ Purely organic!" -msgstr "" - -#. type: Plain text -#: content/_index.md -msgid "The application is verified by [Exodus Privacy Project][exodus]:" -msgstr "" - -#. type: Plain text -#: content/_index.md -msgid "{{ exodus_screenshot() }}" -msgstr "" - -#. type: Plain text -#: content/_index.md -msgid "The iOS application is verified by [TrackerControl for iOS][trackercontrol]:" -msgstr "" - -#. type: Plain text -#: content/_index.md -msgid "{{ trackercontrol_screenshot() }}" -msgstr "" - -#. type: Plain text -#: content/_index.md -msgid "Organic Maps doesn't request excessive permissions to spy on you:" -msgstr "" - -#. type: Plain text -#: content/_index.md -msgid "{{ privacy_screenshots() }}" -msgstr "" - -#. type: Plain text -#: content/_index.md -msgid "At Organic Maps, we believe that privacy is a fundamental human right:" -msgstr "" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Organic Maps is an indie community-driven open-source project" -msgstr "" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "We protect your privacy from Big Tech's prying eyes" -msgstr "" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Stay safe no matter wherever you are" -msgstr "" - -#. type: Plain text -#: content/_index.md content/privacy/index.md -msgid "Reject surveillance - embrace your freedom." -msgstr "" - -#. type: Plain text -#: content/_index.md -#, no-wrap -msgid "**[Give Organic Maps a try!](#install)**\n" -msgstr "" - -#. type: Title ## -#: content/_index.md -#, no-wrap -msgid "Who is paying for the free app?" -msgstr "" - -#. type: Plain text -#: content/_index.md -msgid "The app is free for everyone. Please [donate](@/donate/index.md) to support us!" -msgstr "" - -#. type: Plain text -#: content/_index.md -msgid "To donate conveniently, click on your preferred payment method icon below:" -msgstr "" - -#. type: Plain text -#: content/_index.md content/donate/index.md -msgid "{{ donate_buttons() }}" -msgstr "" - -#. type: Title ### -#: content/_index.md -#, no-wrap -msgid "Our sponsors:" -msgstr "Нашы спонсары" - -#. type: Plain text -#: content/_index.md -msgid "[Mythic Beasts](https://www.mythic-beasts.com/) ISP [provides us][mythic_beasts_donation] two virtual servers with 400 TB/month of free bandwidth to help our users with maps downloads and updates." -msgstr "" - -#. type: Title ## -#: content/_index.md -#, no-wrap -msgid "Community" -msgstr "Супольнасць" - -#. type: Plain text -#: content/_index.md -msgid "Organic Maps is an [open-source software][github] licensed under the Apache License 2.0." -msgstr "" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Please join our beta program, suggest your features, and report bugs:" -msgstr "" - -#. type: Bullet: ' * ' -#: content/_index.md -msgid "[iOS Beta (TestFlight)][testflight]" -msgstr "" - -#. type: Bullet: ' * ' -#: content/_index.md -msgid "[Android Beta (Firebase)][firebase]" -msgstr "" - -#. type: Bullet: ' * ' -#: content/_index.md -msgid "[Linux Desktop Beta (Flatpak)][flatpak]" -msgstr "" - -#. type: Bullet: ' * ' -#: content/_index.md -msgid "[Linux Desktop Beta (packages)][repology]" -msgstr "" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Report bugs or issues to [the issue tracker][issues] or [email us][email]." -msgstr "" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "[Discuss][ideas] ideas or propose feature requests." -msgstr "" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Subscribe to our [Telegram Channel][telegram] or to the [matrix space][matrix] for updates." -msgstr "" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Join our [Telegram Group][telegram_chat] to discuss with other users." -msgstr "" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Visit our [GitHub page][github]." -msgstr "" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Follow our updates in [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." -msgstr "" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Join (or create and let us know) local communities: [Hungarian translators Matrix room](https://matrix.to/#/#organicmapstranslate_hu:matrix.org)" -msgstr "" - -#. type: Link reference -#: content/_index.md -#, no-wrap -msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)" -msgstr "" - -#. type: Plain text -#: content/_index.md content/donate/index.md content/support-us/index.md -msgid "{{ references() }}" -msgstr "" - -#. type: Yaml Front Matter Hash Value: description -#: content/donate/index.md -#, no-wrap -msgid "Your money pays for all project-related expenses and motivates us to improve Organic Maps." -msgstr "" - -#. type: Yaml Front Matter Hash Value: extra menu_title -#: content/donate/index.md -#, no-wrap -msgid "Donate" -msgstr "Ахвяраваць" - -#. type: Yaml Front Matter Hash Value: title -#: content/donate/index.md -#, no-wrap -msgid "Donate to support the development of Organic Maps" -msgstr "" - -#. type: Plain text -#: content/donate/index.md -msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]** in **[EUR][stripe_eur], [USD][stripe_usd], [GBP][stripe_GBP], [CHF][stripe_chf], [UAH][stripe_uah], [PLN][stripe_pln]**:" -msgstr "" - -#. type: Bullet: '- ' -#: content/donate/index.md -msgid "No trackers" -msgstr "" - -#. type: Bullet: '- ' -#: content/donate/index.md -msgid "No registration" -msgstr "" - -#. type: Bullet: '- ' -#: content/donate/index.md -msgid "Open source" -msgstr "адкрыты код" - -#. type: Plain text -#: content/donate/index.md -msgid "Click on your preferred payment method icon below:" -msgstr "" - -#. type: Title ## -#: content/donate/index.md -#, no-wrap -msgid "Why donate to Organic Maps?" -msgstr "" - -#. type: Bullet: '1. ' -#: content/donate/index.md -msgid "Our goal is to provide a privacy-focused, fast and easy-to-use alternative to Google Maps and Apple Maps." -msgstr "" - -#. type: Bullet: '2. ' -#: content/donate/index.md -msgid "Improving public map data for the numerous websites, apps and platforms which use OpenStreetMap, and involving more people in contributing map info is our another goal." -msgstr "" - -#. type: Bullet: '3. ' -#: content/donate/index.md -msgid "We rely on your donations to keep Organic Maps open and free for everyone. And free from ads." -msgstr "" - -#. type: Bullet: '4. ' -#: content/donate/index.md -msgid "We love what we do, and we love our users ❤️." -msgstr "" - -#. type: Title ## -#: content/donate/index.md -#, no-wrap -msgid "Why a free project needs money?" -msgstr "" - -#. type: Bullet: '1. ' -#: content/donate/index.md -msgid "In 2023, Organic Maps got its first million users. Our servers provide free, fast and frequent map updates all over the world." -msgstr "" - -#. type: Bullet: '2. ' -#: content/donate/index.md -msgid "User support, bugfixing and publishing quality app updates are at the top of our priorities. There are [~2000 bug reports and feature requests on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." -msgstr "" - -#. type: Bullet: '3. ' -#: content/donate/index.md -msgid "With enough money, new features can be developed. To name a few:" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Backup and sync bookmarks and tracks" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "GPS track recorder with GPX export" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Satellite imagery" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Public Transport" -msgstr "Public Transport" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Traffic and accident reporting" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Photos and Reviews" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Map styles for different activities" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Hill shading and 3D terrain" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "More advanced OpenStreetMap editor" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Better offline address search, routing, and navigation" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "… and [many other][github issues] features you want and love" -msgstr "" - -#. type: Title ## -#: content/donate/index.md -#, no-wrap -msgid "How to donate?" -msgstr "" - -#. type: Plain text -#: content/donate/index.md -msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. One-time donations are appreciated too." -msgstr "" - -#. type: Title ### -#: content/donate/index.md -#, no-wrap -msgid "Bank Transfer" -msgstr "Банкаўскі перавод" - -#. type: Plain text -#: content/donate/index.md -msgid "{{ bank_transfer() }}" -msgstr "" - -#. type: Title ### -#: content/donate/index.md -#, no-wrap -msgid "Crypto" -msgstr "Крыптавалюта" - -#. type: Plain text -#: content/donate/index.md -msgid "Please consider donating annually to reduce total fees." -msgstr "" - -#. type: Plain text -#: content/donate/index.md -msgid "{{ crypto_table() }}" -msgstr "" - -#. type: Title ## -#: content/donate/index.md -#, no-wrap -msgid "Can you help us in any other way?" -msgstr "" - -#. type: Plain text -#: content/donate/index.md -msgid "Yes! There are many ways to support Organic Maps. Please see [Support Us](@/support-us/index.md) page for more details." -msgstr "" - -#. type: Yaml Front Matter Hash Value: description -#: content/news/_index.md -#, no-wrap -msgid "Stay in touch with the latest Organic Maps releases, news and updates from our team" -msgstr "" - -#. type: Yaml Front Matter Hash Value: extra menu_title -#: content/news/_index.md -#, no-wrap -msgid "News" -msgstr "Навіны" - -#. type: Yaml Front Matter Hash Value: title -#: content/news/_index.md -#, no-wrap -msgid "Organic Maps: Latest news and updates from our team" -msgstr "" - -#. type: Yaml Front Matter Hash Value: description -#: content/privacy/index.md -#, no-wrap -msgid "No tracking, no ads, no data collection, no statistics collection, no spyware" -msgstr "" - -#. type: Yaml Front Matter Hash Value: extra menu_title -#: content/privacy/index.md -#, no-wrap -msgid "Privacy" -msgstr "Прыватнасць" - -#. type: Yaml Front Matter Hash Value: title -#: content/privacy/index.md -#, no-wrap -msgid "Organic Maps: Privacy Policy" -msgstr "" - -#. type: Plain text -#: content/privacy/index.md -msgid "Organic Maps respects your privacy and DOES NOT TRACK YOU." -msgstr "" - -#. type: Plain text -#: content/privacy/index.md -msgid "Unlike most other applications, there is no tracking, no ads, no spyware, no data and statistics collection in Organic Maps." -msgstr "" - -#. type: Plain text -#: content/privacy/index.md -msgid "Stay away from Big Tech's prying eyes!" -msgstr "" - -#. type: Plain text -#: content/privacy/index.md content/terms/index.md -msgid "If you have any questions or suggestions, please contact us at [legal@organicmaps.app](mailto:legal@organicmaps.app)." -msgstr "" - -#. type: Plain text -#: content/privacy/index.md -#, no-wrap -msgid "This policy is effective as of 2021-04-24.\n" -msgstr "" - -#. type: Yaml Front Matter Hash Value: description -#: content/support-us/index.md -#, no-wrap -msgid "Different ways to support the development of our free application" -msgstr "" - -#. type: Yaml Front Matter Hash Value: extra menu_title -#: content/support-us/index.md -#, no-wrap -msgid "Support Us" -msgstr "" - -#. type: Yaml Front Matter Hash Value: title -#: content/support-us/index.md -#, no-wrap -msgid "Support the development of Organic Maps" -msgstr "" - -#. type: Plain text -#: content/support-us/index.md -msgid "Organic Maps is a free, open-source app. It is free from ads, it does not collect your personal information, and it is developed by a few enthusiasts with the help of the community." -msgstr "" - -#. type: Plain text -#: content/support-us/index.md -msgid "There are different ways to support the development:" -msgstr "" - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "[Donate](@/donate/index.md)! Every dollar or euro counts and helps us to pay for servers and scale." -msgstr "" - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "Report bugs and share ideas on our [GitHub][github] or via [email][email]." -msgstr "" - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "Help us to [fix bugs][contributing] and do code reviews if you are a developer. Every fixed small issue makes someone happier." -msgstr "" - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "[Translate][translations] missing strings in the app's interface." -msgstr "" - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "Translate [App Store][translations_appstore] and [Android][translations_googleplay] descriptions into your language." -msgstr "" - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "[Translate][translations_website] our web site into your language." -msgstr "" - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "Join the [OpenStreetMap][openstreetmap] community and contribute to the maps data." -msgstr "" - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "Fix red cities found by our [public transport validator][public_transport_validator], for subways and light rails to work in the app." -msgstr "" - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "Support other users on [GitHub][issues], [Telegram][telegram_chat], [Matrix][matrix], [Twitter][twitter], [Facebook][facebook], [Instagram][instagram]." -msgstr "" - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "Tell everyone about Organic Maps. A bigger community is a stronger community." -msgstr "" - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "Rate us in [Google Play][googleplay_review], [Apple Store][appstore_review], [Huawei Appgallery][appgallery_review]." -msgstr "" - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "Any help is welcome!" -msgstr "" - -#. type: Plain text -#: content/support-us/index.md -msgid "Our small team is very grateful for your feedback and support. Organic Maps would not be possible without our users ❤️." -msgstr "" - -#. type: Yaml Front Matter Hash Value: description -#: content/terms/index.md -#, no-wrap -msgid "Terms of use for Organic Maps application" -msgstr "" - -#. type: Yaml Front Matter Hash Value: extra menu_title -#: content/terms/index.md -#, no-wrap -msgid "Terms" -msgstr "Умовы" - -#. type: Yaml Front Matter Hash Value: title -#: content/terms/index.md -#, no-wrap -msgid "Organic Maps: terms" -msgstr "" - -#. type: Plain text -#: content/terms/index.md -msgid "This app is licensed under the Apache License, Version 2.0 (the \"License\"); you may not use this application except in compliance with the License." -msgstr "" - -#. type: Plain text -#: content/terms/index.md -msgid "You may obtain a copy of the License at [http://www.apache.org/licenses/LICENSE-2.0][license]" -msgstr "" - -#. type: Plain text -#: content/terms/index.md -msgid "Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License." -msgstr "" - -#. type: Plain text -#: content/terms/index.md -msgid "Most libraries in the following directories on [GitHub][github] made by other people and organizations and licensed in different ways:" -msgstr "" - -#. type: Bullet: '- ' -#: content/terms/index.md -msgid "3party" -msgstr "" - -#. type: Bullet: '- ' -#: content/terms/index.md -msgid "tools" -msgstr "Інструменты" - -#. type: Plain text -#: content/terms/index.md -msgid "Please refer to their LICENSE, COPYING or NOTICE files for terms of use." -msgstr "" - -#. type: Plain text -#: content/terms/index.md -msgid "See also [data/copyright.html][copyright] file for a full list of copyright notices for Organic Maps application." -msgstr "" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[github]: https://github.com/organicmaps/organicmaps" -msgstr "" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[license]: http://www.apache.org/licenses/LICENSE-2.0" -msgstr "" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html" -msgstr "" - -#. type: Hash Value: address -#: translations.yaml -#, no-wrap -msgid "Address" -msgstr "Адрас" - -#. type: Hash Value: back -#: translations.yaml -#, no-wrap -msgid "Back to News" -msgstr "" - -#. type: Hash Value: contact -#: translations.yaml -#, no-wrap -msgid "Contact Us" -msgstr "Звязацца з намі" - -#. type: Hash Value: engines -#: translations.yaml -#, no-wrap -msgid "Supported TTS Engines" -msgstr "" - -#. type: Hash Value: faq-menu-title -#: translations.yaml -#, no-wrap -msgid "F.A.Q." -msgstr "" - -#. type: Hash Value: install-appgallery -#: translations.yaml -#, no-wrap -msgid "Install Organic Maps from Huawei AppGallery" -msgstr "" - -#. type: Hash Value: install-appstore -#: translations.yaml -#, no-wrap -msgid "Install Organic Maps from the AppStore" -msgstr "" - -#. type: Hash Value: install-fdroid -#: translations.yaml -#, no-wrap -msgid "Install Organic Maps from F-Droid" -msgstr "" - -#. type: Hash Value: install-googleplay -#: translations.yaml -#, no-wrap -msgid "Install Organic Maps from Google Play" -msgstr "" - -#. type: Hash Value: language -#: translations.yaml -#, no-wrap -msgid "English" -msgstr "Беларуская" - -#. type: Hash Value: language-word -#: translations.yaml -#, no-wrap -msgid "Language" -msgstr "Мова" - -#. type: Hash Value: name -#: translations.yaml -#, no-wrap -msgid "Name" -msgstr "Назва" - -#. type: Hash Value: token -#: translations.yaml -#, no-wrap -msgid "Token" -msgstr "токен" diff --git a/po/content.bn.po b/po/content.bn.po index 5ce10749..db3e58cb 100644 --- a/po/content.bn.po +++ b/po/content.bn.po @@ -4,7 +4,7 @@ # FIRST AUTHOR , YEAR. # msgid "" -msgstr "Project-Id-Version: Organic Maps Website 1.0\nPO-Revision-Date: 2024-04-02 19:54+0000\nLast-Translator: Weblate Translation Memory \nLanguage-Team: Bengali \nLanguage: bn\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-Forms: nplurals=2; plural=n > 1;\nX-Generator: Weblate 5.5-dev\n" +msgstr "Project-Id-Version: Organic Maps Website 1.0\nPO-Revision-Date: 2023-08-02 12:05+0000\nLast-Translator: Kom nake \nLanguage-Team: Bengali \nLanguage: bn\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-Forms: nplurals=2; plural=n > 1;\nX-Generator: Weblate 5.0-dev\n" #. type: Yaml Front Matter Hash Value: description #: content/_index.md @@ -27,21 +27,13 @@ msgstr "অরগানিক ম্যাপ অফলাইন হাইক, #. type: Plain text #: content/_index.md #, no-wrap -msgid "" -"**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, drivers and cyclists based on **[OpenStreetMap][openstreetmap]** data created by the community.\n" -"It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" +msgid "**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, and cyclists based on top of crowd-sourced **[OpenStreetMap][openstreetmap]** data. It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" msgstr "" #. type: Plain text #: content/_index.md #, no-wrap -msgid "**Organic Maps** is one of the few applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card, and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" -msgstr "" - -#. type: Plain text -#: content/_index.md -#, no-wrap -msgid "> In 2023, Organic Maps [got its first million](@/news/2023-12-23/281/index.md) users. [Help us](@/donate/index.md) to scale!\n" +msgid "**Organic Maps** is one of the only applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card (by the way, your operator constantly tracks you), and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" msgstr "" #. type: Title ### @@ -103,7 +95,7 @@ msgstr "" #. type: Bullet: '- ' #: content/_index.md -msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance and Android Auto" +msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance" msgstr "" #. type: Bullet: '- ' @@ -113,7 +105,7 @@ msgstr "" #. type: Bullet: '- ' #: content/_index.md -msgid "Export/import bookmarks in KML/KMZ, import GPX" +msgid "Bookmarks and tracks in KML, KMZ, GPX formats" msgstr "" #. type: Bullet: '- ' @@ -219,16 +211,19 @@ msgstr "" #. type: Plain text #: content/_index.md +#, fuzzy msgid "{{ exodus_screenshot() }}" msgstr "{{ exodus_screenshot() }}" #. type: Plain text #: content/_index.md +#, markdown-text msgid "The iOS application is verified by [TrackerControl for iOS][trackercontrol]:" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ trackercontrol_screenshot() }}" msgstr "" @@ -368,21 +363,17 @@ msgstr "" #. type: Bullet: '- ' #: content/_index.md -msgid "Follow our updates in [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." +msgid "Follow our updates in [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." msgstr "" -#. type: Bullet: '- ' -#: content/_index.md -msgid "Join (or create and let us know) local communities: [Hungarian translators Matrix room](https://matrix.to/#/#organicmapstranslate_hu:matrix.org)" -msgstr "" - -#. type: Link reference -#: content/_index.md -msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)" -msgstr "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)" - #. type: Plain text -#: content/_index.md content/donate/index.md content/support-us/index.md +#: content/_index.md +#, no-wrap +msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)\n" +msgstr "[ফর্ক]: https://en.wikipedia.org/wiki/Fork_(software_development)\n" + +#. type: Plain text +#: content/_index.md content/support-us/index.md msgid "{{ references() }}" msgstr "" @@ -406,7 +397,7 @@ msgstr "" #. type: Plain text #: content/donate/index.md -msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]** in **[EUR][stripe_eur], [USD][stripe_usd], [GBP][stripe_GBP], [CHF][stripe_chf], [UAH][stripe_uah], [PLN][stripe_pln]**:" +msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]**:" msgstr "" #. type: Bullet: '- ' @@ -437,78 +428,63 @@ msgstr "" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "Our goal is to provide a privacy-focused, fast and easy-to-use alternative to Google Maps and Apple Maps." +msgid "We rely on your donations to carry out our mission to keep Organic Maps open and free. And free from ads." msgstr "" #. type: Bullet: '2. ' #: content/donate/index.md -msgid "Improving public map data for the numerous websites, apps and platforms which use OpenStreetMap, and involving more people in contributing map info is our another goal." +msgid "We are a few enthusiasts contributing in our free time, and spending our families' money on the project. We love what we do, and we love our users ❤️." msgstr "" #. type: Bullet: '3. ' #: content/donate/index.md -msgid "We rely on your donations to keep Organic Maps open and free for everyone. And free from ads." -msgstr "" - -#. type: Bullet: '4. ' -#: content/donate/index.md -msgid "We love what we do, and we love our users ❤️." +msgid "With your support, we want to become a better, privacy-focused version of Google Maps." msgstr "" #. type: Title ## #: content/donate/index.md #, no-wrap -msgid "Why a free project needs money?" +msgid "What will the money be used for?" msgstr "" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "In 2023, Organic Maps got its first million users. Our servers provide free, fast and frequent map updates all over the world." +msgid "We pay for fast servers, so anyone in the World can download free map data updates without delays. It's hundreds of terabytes monthly, and the amount is growing." msgstr "" #. type: Bullet: '2. ' #: content/donate/index.md -msgid "User support, bugfixing and publishing quality app updates are at the top of our priorities. There are [~2000 bug reports and feature requests on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." +msgid "User support, bugfixing, and improving the stability of the app are at the top of our priorities. There are [1800+ issues on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." msgstr "" #. type: Bullet: '3. ' #: content/donate/index.md -msgid "With enough money, new features can be developed. To name a few:" +msgid "With enough money, new features can be developed faster, for example:" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Backup and sync bookmarks and tracks" +msgid "Weekly and automated map data updates" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "GPS track recorder with GPX export" +msgid "Bookmarks backup and sync" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Satellite imagery" +msgid "Android Auto" +msgstr "অ্যান্ড্রয়েড অটো" + +#. type: Bullet: ' - ' +#: content/donate/index.md +msgid "GPS track recorder with GPX support" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Public Transport" -msgstr "গণপরিবহন" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Traffic and accident reporting" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Photos and Reviews" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Map styles for different activities" +msgid "Better map styles for different activities" msgstr "" #. type: Bullet: ' - ' @@ -518,7 +494,7 @@ msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "More advanced OpenStreetMap editor" +msgid "Improve the OpenStreetMap editor" msgstr "" #. type: Bullet: ' - ' @@ -526,6 +502,11 @@ msgstr "" msgid "Better offline address search, routing, and navigation" msgstr "" +#. type: Bullet: ' - ' +#: content/donate/index.md +msgid "Public Transport" +msgstr "গণপরিবহন" + #. type: Bullet: ' - ' #: content/donate/index.md msgid "… and [many other][github issues] features you want and love" @@ -539,7 +520,7 @@ msgstr "কিভাবে অনুদান দিব?" #. type: Plain text #: content/donate/index.md -msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. One-time donations are appreciated too." +msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. But you can also donate one time." msgstr "" #. type: Title ### @@ -580,6 +561,14 @@ msgstr "" msgid "Yes! There are many ways to support Organic Maps. Please see [Support Us](@/support-us/index.md) page for more details." msgstr "" +#. type: Plain text +#: content/donate/index.md +#, no-wrap +msgid "" +"[stripe]: https://donate.organicmaps.app/ \"Donate via Stripe\"\n" +"[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" +msgstr "" + #. type: Yaml Front Matter Hash Value: description #: content/news/_index.md #, no-wrap @@ -793,22 +782,13 @@ msgstr "" msgid "See also [data/copyright.html][copyright] file for a full list of copyright notices for Organic Maps application." msgstr "" -#. type: Link reference +#. type: Plain text #: content/terms/index.md #, no-wrap -msgid "[github]: https://github.com/organicmaps/organicmaps" -msgstr "" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[license]: http://www.apache.org/licenses/LICENSE-2.0" -msgstr "" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html" +msgid "" +"[github]: https://github.com/organicmaps/organicmaps\n" +"[license]: http://www.apache.org/licenses/LICENSE-2.0\n" +"[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html\n" msgstr "" #. type: Hash Value: address @@ -829,18 +809,6 @@ msgstr "আবারো খবরে আসি" msgid "Contact Us" msgstr "যোগাযোগ করো" -#. type: Hash Value: engines -#: translations.yaml -#, no-wrap -msgid "Supported TTS Engines" -msgstr "" - -#. type: Hash Value: faq-menu-title -#: translations.yaml -#, no-wrap -msgid "F.A.Q." -msgstr "" - #. type: Hash Value: install-appgallery #: translations.yaml #, no-wrap @@ -869,13 +837,7 @@ msgstr "" #: translations.yaml #, no-wrap msgid "English" -msgstr "বাংলা" - -#. type: Hash Value: language-word -#: translations.yaml -#, no-wrap -msgid "Language" -msgstr "Language" +msgstr "ইংরেজি" #. type: Hash Value: name #: translations.yaml @@ -888,6 +850,3 @@ msgstr "নাম" #, no-wrap msgid "Token" msgstr "টোকেন" - -#~ msgid "Android Auto" -#~ msgstr "অ্যান্ড্রয়েড অটো" diff --git a/po/content.ca.po b/po/content.ca.po index d2f85b87..9420e97d 100644 --- a/po/content.ca.po +++ b/po/content.ca.po @@ -4,7 +4,7 @@ # FIRST AUTHOR , YEAR. # msgid "" -msgstr "Project-Id-Version: Organic Maps Website 1.0\nPO-Revision-Date: 2024-04-02 22:07+0000\nLast-Translator: Adolfo Jayme Barrientos \nLanguage-Team: Catalan \nLanguage: ca\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-Forms: nplurals=2; plural=n != 1;\nX-Generator: Weblate 5.5-dev\n" +msgstr "Project-Id-Version: Organic Maps Website 1.0\nPO-Revision-Date: 2023-09-11 23:57+0000\nLast-Translator: Anonymous \nLanguage-Team: Catalan \nLanguage: ca\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-Forms: nplurals=2; plural=n != 1;\nX-Generator: Weblate 5.0.1-dev\n" #. type: Yaml Front Matter Hash Value: description #: content/_index.md @@ -27,23 +27,15 @@ msgstr "Organic Maps: passejos, bici, rutes i GPS sense connexió" #. type: Plain text #: content/_index.md #, no-wrap -msgid "" -"**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, drivers and cyclists based on **[OpenStreetMap][openstreetmap]** data created by the community.\n" -"It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" +msgid "**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, and cyclists based on top of crowd-sourced **[OpenStreetMap][openstreetmap]** data. It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" msgstr "L’**Organic Maps** és una aplicació gratuïta de mapes sense connexió per a l’Android i l’iOS per a viatgers, turistes, excursionistes i ciclistes, basada en dades d’origen col·lectiu de l’**[OpenStreetMap][openstreetmap]**. És una [bifurcació][fork] centrada en la privadesa del **Maps.me** (anteriorment conegut com a [**MapsWithMe**][mapswithme]), mantinguda per les mateixes persones que van crear el **MapsWithMe** el 2011.\n" #. type: Plain text #: content/_index.md #, no-wrap -msgid "**Organic Maps** is one of the few applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card, and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" +msgid "**Organic Maps** is one of the only applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card (by the way, your operator constantly tracks you), and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" msgstr "L’**Organic Maps** és una de les poques aplicacions actuals que admet fer servir totes les seves funcions sense una connexió a Internet activa. Instal·leu l’Organic Maps, baixeu mapes, llenceu la vostra targeta SIM (per cert, el vostre operador us rastreja constantment) i feu un viatge setmanal amb una sola càrrega de bateria sense que cap byte s’enviï a la xarxa.\n" -#. type: Plain text -#: content/_index.md -#, no-wrap -msgid "> In 2023, Organic Maps [got its first million](@/news/2023-12-23/281/index.md) users. [Help us](@/donate/index.md) to scale!\n" -msgstr "" - #. type: Title ### #: content/_index.md #, no-wrap @@ -73,7 +65,7 @@ msgstr "{{ screenshot(src='/images/screenshots/search.jpg', alt='Cerca fora de l #. type: Plain text #: content/_index.md msgid "{{ screenshot(src='/images/screenshots/dark.jpg', alt='Navigation in dark mode') }}" -msgstr "{{ screenshot(src='/images/screenshots/dark.jpg', alt='Navegació en mode fosc') }}" +msgstr "{{ screenshot(src='/images/screenshots/dark.jpg', alt='Navegació en el mode fosc') }}" #. type: Title ## #: content/_index.md @@ -89,7 +81,7 @@ msgstr "L’Organic Maps és l’aplicació definitiva per a viatgers, turistes, #. type: Bullet: '- ' #: content/_index.md msgid "Detailed offline maps with places that don't exist on other maps, thanks to [OpenStreetMap][openstreetmap]" -msgstr "Mapes detallats fora de línia amb llocs que no existeixen en altres mapes, gràcies a l'[OpenStreetMap][openstreetmap]" +msgstr "Mapes detallats fora de línia amb llocs que no existeixen en altres mapes, gràcies a [OpenStreetMap][openstreetmap]" #. type: Bullet: '- ' #: content/_index.md @@ -103,8 +95,8 @@ msgstr "Línies de contorn, perfils d'elevació, pics i pendents" #. type: Bullet: '- ' #: content/_index.md -msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance and Android Auto" -msgstr "Navegació pas a pas a peu, amb bicicleta i amb cotxe amb guia de veu, Android Auto" +msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance" +msgstr "Navegació pas a pas a peu, amb bicicleta i amb cotxe amb guia de veu" #. type: Bullet: '- ' #: content/_index.md @@ -113,8 +105,8 @@ msgstr "Cerques ràpides al mapa, sense connexió" #. type: Bullet: '- ' #: content/_index.md -msgid "Export/import bookmarks in KML/KMZ, import GPX" -msgstr "Marcadors i rutes en format KML, KMZ i GPX" +msgid "Bookmarks and tracks in KML, KMZ, GPX formats" +msgstr "Els marcadors s'exporten i importen en els formats KML/KMZ (GPX està [planificat][gpx_issue])" #. type: Bullet: '- ' #: content/_index.md @@ -195,7 +187,7 @@ msgstr "No hi ha tutorials obligatoris" #. type: Bullet: '- ' #: content/_index.md msgid "No noisy email spam" -msgstr "No us enviem correu brossa per correu electrònic" +msgstr "Sense spam per correu electrònic" #. type: Bullet: '- ' #: content/_index.md content/donate/index.md @@ -224,18 +216,20 @@ msgstr "{{ exodus_screenshot() }}" #. type: Plain text #: content/_index.md +#, markdown-text msgid "The iOS application is verified by [TrackerControl for iOS][trackercontrol]:" msgstr "L'aplicació iOS està verificada per[ TrackerControl per a iOS][trackercontrol]:" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ trackercontrol_screenshot() }}" msgstr "{{ trackercontrol_screenshot() }}" #. type: Plain text #: content/_index.md msgid "Organic Maps doesn't request excessive permissions to spy on you:" -msgstr "L'Organic Maps no us espia ni demana permisos excessius:" +msgstr "Organic Maps no demana permisos excessius per a espiar-li:" #. type: Plain text #: content/_index.md @@ -245,7 +239,7 @@ msgstr "{{ privacy_screenshots() }}" #. type: Plain text #: content/_index.md msgid "At Organic Maps, we believe that privacy is a fundamental human right:" -msgstr "En Organic Maps, creiem que la privadesa és un dret humà fonamental:" +msgstr "En Organic Maps, creiem que la privacitat és un dret humà fonamental:" #. type: Bullet: '- ' #: content/_index.md @@ -255,23 +249,23 @@ msgstr "Organic Maps és un projecte independent, comunitari i obert" #. type: Bullet: '- ' #: content/_index.md msgid "We protect your privacy from Big Tech's prying eyes" -msgstr "Protegim la vostra privadesa de la mirada espia de les grans tecnològiques" +msgstr "Protegim la seva privacitat dels ulls espies de les grans tecnològiques" #. type: Bullet: '- ' #: content/_index.md msgid "Stay safe no matter wherever you are" -msgstr "Utilització segura sense importar on sou" +msgstr "Mantingui's fora de perill sense importar on estigui" #. type: Plain text #: content/_index.md content/privacy/index.md msgid "Reject surveillance - embrace your freedom." -msgstr "Rebutgeu la vigilància. Assumiu la vostra llibertat." +msgstr "Rebutgi la vigilància. Assumeixi la seva llibertat." #. type: Plain text #: content/_index.md #, no-wrap msgid "**[Give Organic Maps a try!](#install)**\n" -msgstr "**[Proveu l'Organic Maps!](#install)**\n" +msgstr "**[¡Provi Organic Maps!](#install)**\n" #. type: Title ## #: content/_index.md @@ -282,7 +276,7 @@ msgstr "Qui paga per l'aplicació gratuïta?" #. type: Plain text #: content/_index.md msgid "The app is free for everyone. Please [donate](@/donate/index.md) to support us!" -msgstr "L'aplicació és gratuïta per a tothom. Si us plau, [doneu](@/donate/index.ca.md) per a ajudar-nos!" +msgstr "L'aplicació és gratuïta per a tothom. Si us plau [donar](@/donate/index.ca.md) per a donar-nos suport!" #. type: Plain text #: content/_index.md @@ -298,7 +292,7 @@ msgstr "{{ donate_buttons() }}" #: content/_index.md #, no-wrap msgid "Our sponsors:" -msgstr "Els nostres socis:" +msgstr "Els nostres patrocinadors" #. type: Plain text #: content/_index.md @@ -314,22 +308,22 @@ msgstr "Comunitat" #. type: Plain text #: content/_index.md msgid "Organic Maps is an [open-source software][github] licensed under the Apache License 2.0." -msgstr "Organic Maps és un [programa lliure][github] disponible en virtut de la Llicència Apache 2.0." +msgstr "Organic Maps és un [programa lliure][github] disponible en virtut de la Llicència Apatxe 2.0." #. type: Bullet: '- ' #: content/_index.md msgid "Please join our beta program, suggest your features, and report bugs:" -msgstr "Uniu-vos al nostre programa beta i suggeriu funcionalitats o informeu d'errors:" +msgstr "Uneix-te al nostre programa beta per a suggerir funcionalitats i informar d'errors:" #. type: Bullet: ' * ' #: content/_index.md msgid "[iOS Beta (TestFlight)][testflight]" -msgstr "[Beta d'iOS (TestFlight)][testflight]" +msgstr "[Beta de iOS (TestFlight)][testflight]" #. type: Bullet: ' * ' #: content/_index.md msgid "[Android Beta (Firebase)][firebase]" -msgstr "[Beta d'Android (Firebase)][firebase]" +msgstr "[Beta de Android (Firebase)][firebase]" #. type: Bullet: ' * ' #: content/_index.md @@ -339,51 +333,46 @@ msgstr "[Beta de PC Linux (Flatpak)][flatpak]" #. type: Bullet: ' * ' #: content/_index.md msgid "[Linux Desktop Beta (packages)][repology]" -msgstr "[Beta de PC Linux (paquets)][repology]" +msgstr "[Beta de PC Linux (paquetes)][repology]" #. type: Bullet: '- ' #: content/_index.md msgid "Report bugs or issues to [the issue tracker][issues] or [email us][email]." -msgstr "Informeu d'errors o problemes mitjançant el [rastrejador d'errors][issues] o [enviant-nos un correu electrònic][email]." +msgstr "Informi d'errors o problemes en el [rastrejador d'errors][issues] o [enviant-nos un correu electrònic][email]." #. type: Bullet: '- ' #: content/_index.md msgid "[Discuss][ideas] ideas or propose feature requests." -msgstr "[Debateu][ideas] idees o proposeu característiques." +msgstr "[Debati][ideas] idees o proposa sol·licituds de funcions." #. type: Bullet: '- ' #: content/_index.md msgid "Subscribe to our [Telegram Channel][telegram] or to the [matrix space][matrix] for updates." -msgstr "Uniu-vos al nostre [canal del Telegram][telegram] o al [Matrix][matrix] per a estar al dia." +msgstr "Subscriu-te al nostre [canal de Telegram][telegram] o al [espai matriu][matrix] per a estar al dia." #. type: Bullet: '- ' #: content/_index.md msgid "Join our [Telegram Group][telegram_chat] to discuss with other users." -msgstr "Uniu-vos al nostre [grup del Telegram][telegram_chat] i converseu amb altres usuaris." +msgstr "Uneix-te al nostre [grup de Telegram][telegram_chat] per a parlar amb altres usuaris." #. type: Bullet: '- ' #: content/_index.md msgid "Visit our [GitHub page][github]." -msgstr "Visiteu el nostre [GitHub][github]." +msgstr "Visiteu la nostra [pàgina al GitHub][github]." #. type: Bullet: '- ' #: content/_index.md -msgid "Follow our updates in [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." -msgstr "Seguiu les nostres novetats al [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit] i [LinkedIn][LinkedIn]." - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Join (or create and let us know) local communities: [Hungarian translators Matrix room](https://matrix.to/#/#organicmapstranslate_hu:matrix.org)" -msgstr "" - -#. type: Link reference -#: content/_index.md -#, no-wrap -msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)" -msgstr "[fork]: https://ca.wikipedia.org/wiki/Fork" +msgid "Follow our updates in [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." +msgstr "Segueix les nostres novetats en [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit] i [LinkedIn][LinkedIn]." #. type: Plain text -#: content/_index.md content/donate/index.md content/support-us/index.md +#: content/_index.md +#, no-wrap +msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)\n" +msgstr "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)\n" + +#. type: Plain text +#: content/_index.md content/support-us/index.md msgid "{{ references() }}" msgstr "{{ references() }}" @@ -397,18 +386,18 @@ msgstr "Els vostres diners paguen totes les despeses relacionades amb el project #: content/donate/index.md #, no-wrap msgid "Donate" -msgstr "Feu una donació" +msgstr "Fes una donació" #. type: Yaml Front Matter Hash Value: title #: content/donate/index.md #, no-wrap msgid "Donate to support the development of Organic Maps" -msgstr "Doneu per a ajudar al desenvolupament de l'Organic Maps" +msgstr "Donar per a fer costat al desenvolupament d'Organic Maps" #. type: Plain text #: content/donate/index.md -msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]** in **[EUR][stripe_eur], [USD][stripe_usd], [GBP][stripe_GBP], [CHF][stripe_chf], [UAH][stripe_uah], [PLN][stripe_pln]**:" -msgstr "L'Organic Maps és _gratis per a tothom_ gràcies a les seves **[donacions][stripe]**:" +msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]**:" +msgstr "Organic Maps és _gratis per a tothom_ gràcies a les seves **[donacions][stripe]**:" #. type: Bullet: '- ' #: content/donate/index.md @@ -438,78 +427,63 @@ msgstr "Per què fer donatius a l’Organic Maps?" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "Our goal is to provide a privacy-focused, fast and easy-to-use alternative to Google Maps and Apple Maps." -msgstr "" +msgid "We rely on your donations to carry out our mission to keep Organic Maps open and free. And free from ads." +msgstr "Depenem dels seus donatius per a seguir amb la nostra missió de mantenir Organic Maps oberta i gratuïta. I lliure d'anuncis." #. type: Bullet: '2. ' #: content/donate/index.md -msgid "Improving public map data for the numerous websites, apps and platforms which use OpenStreetMap, and involving more people in contributing map info is our another goal." -msgstr "" +msgid "We are a few enthusiasts contributing in our free time, and spending our families' money on the project. We love what we do, and we love our users ❤️." +msgstr "Som un grup d'entusiastes contribuint en el nostre temps lliure, i gastant els diners de les nostres famílies en el projecte. Ens encanta el que fem, i estimem als nostres usuaris ❤️." #. type: Bullet: '3. ' #: content/donate/index.md -msgid "We rely on your donations to keep Organic Maps open and free for everyone. And free from ads." -msgstr "Depenem dels vostres donatius per a continuar amb la nostra missió de mantenir l'Organic Maps obert i gratuït. I lliure d'anuncis." - -#. type: Bullet: '4. ' -#: content/donate/index.md -msgid "We love what we do, and we love our users ❤️." -msgstr "" +msgid "With your support, we want to become a better, privacy-focused version of Google Maps." +msgstr "Amb el seu suport, volem convertir-nos en una millor versió de Google Maps, centrada en la privacitat." #. type: Title ## #: content/donate/index.md #, no-wrap -msgid "Why a free project needs money?" -msgstr "Per què un projecte gratuït necessita diners?" +msgid "What will the money be used for?" +msgstr "Per a què es faran servir els diners?" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "In 2023, Organic Maps got its first million users. Our servers provide free, fast and frequent map updates all over the world." -msgstr "" +msgid "We pay for fast servers, so anyone in the World can download free map data updates without delays. It's hundreds of terabytes monthly, and the amount is growing." +msgstr "Paguem per servidors ràpids, per la qual cosa qualsevol en el món pot descarregar actualitzacions de les característiques dels mapes ràpid i sense esperes. Són centenars de terabytes al mes, i la quantitat està creixent." #. type: Bullet: '2. ' #: content/donate/index.md -msgid "User support, bugfixing and publishing quality app updates are at the top of our priorities. There are [~2000 bug reports and feature requests on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." -msgstr "L'assistència als usuaris, correcció d'errors i millora d'estabilitat de l'aplicació són les nostres prioritats principals. Hi ha més de [2000 informes al GitHub][github issues] i, aquest número creix cada dia. L'AppStore, el PlayStore i els correus d'atenció estan inundats amb comentaris i informes. Volem lliurar un producte de qualitat." +msgid "User support, bugfixing, and improving the stability of the app are at the top of our priorities. There are [1800+ issues on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." +msgstr "L'assistència als usuaris, l'arranjament d'errors i la millora de l'estabilitat de l'aplicació són les nostres principals prioritats. Hi ha més de [1800 informes en GitHub][github issues], i aquest número creix cada dia. AppStore, Google Play i els correus d'atenció estan inundats amb comentaris i informes. Volem lliurar un producte de qualitat." #. type: Bullet: '3. ' #: content/donate/index.md -msgid "With enough money, new features can be developed. To name a few:" -msgstr "Amb suficients diners, poden desenvolupar-se més ràpidament prestacions noves, com ara:" +msgid "With enough money, new features can be developed faster, for example:" +msgstr "Amb suficients diners, poden desenvolupar-se més ràpidament prestacions noves, per exemple:" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Backup and sync bookmarks and tracks" -msgstr "" +msgid "Weekly and automated map data updates" +msgstr "Actualitzacions setmanals i automatitzades dels mapes" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "GPS track recorder with GPX export" +msgid "Bookmarks backup and sync" +msgstr "Còpia de seguretat i sincronització dels llocs d’interès" + +#. type: Bullet: ' - ' +#: content/donate/index.md +msgid "Android Auto" +msgstr "Android Auto" + +#. type: Bullet: ' - ' +#: content/donate/index.md +msgid "GPS track recorder with GPX support" msgstr "Gravadora GPS amb compatibilitat per a GPX" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Satellite imagery" -msgstr "Imatges satel·litals" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Public Transport" -msgstr "Transport públic" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Traffic and accident reporting" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Photos and Reviews" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Map styles for different activities" +msgid "Better map styles for different activities" msgstr "Millors estils cartogràfics per a diferents activitats" #. type: Bullet: ' - ' @@ -519,18 +493,23 @@ msgstr "Ombreig de pujols i terreny 3D" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "More advanced OpenStreetMap editor" +msgid "Improve the OpenStreetMap editor" msgstr "Millorar l'editor de OpenStreetMap" #. type: Bullet: ' - ' #: content/donate/index.md msgid "Better offline address search, routing, and navigation" -msgstr "Millor cerca de direccions sense connexió, encaminament i navegació" +msgstr "Millor cerca de direccions sense connexió, enrutament i navegació" + +#. type: Bullet: ' - ' +#: content/donate/index.md +msgid "Public Transport" +msgstr "Transport públic" #. type: Bullet: ' - ' #: content/donate/index.md msgid "… and [many other][github issues] features you want and love" -msgstr "... i [moltes altres][github issues] funcionalitats que vulgueu" +msgstr "... i [moltes altres][github issues] funcionalitats que desitja" #. type: Title ## #: content/donate/index.md @@ -540,7 +519,7 @@ msgstr "Com donar?" #. type: Plain text #: content/donate/index.md -msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. One-time donations are appreciated too." +msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. But you can also donate one time." msgstr "Les donacions recurrents són la millor manera d'assegurar un ingrés periòdic per al projecte i ens motiva per a tasques i objectius a llarg termini. Però també pots fer donació una vegada." #. type: Title ### @@ -563,7 +542,7 @@ msgstr "Criptomonedes" #. type: Plain text #: content/donate/index.md msgid "Please consider donating annually to reduce total fees." -msgstr "Si us plau, considereu fer donacions anuals per a reduir les quotes totals." +msgstr "Si us plau, considera fer donacions anuals per a reduir les quotes totals." #. type: Plain text #: content/donate/index.md @@ -574,18 +553,28 @@ msgstr "{{ crypto_table() }}" #: content/donate/index.md #, no-wrap msgid "Can you help us in any other way?" -msgstr "Voleu ajudar-nos de cap altra forma?" +msgstr "Pots ajudar-nos d'alguna altra forma?" #. type: Plain text #: content/donate/index.md msgid "Yes! There are many ways to support Organic Maps. Please see [Support Us](@/support-us/index.md) page for more details." -msgstr "Perfecte! Hi ha diverses maneres d'ajudar a l'Organic Maps. Consulteu la pàgina [Suport](@/support-us/index.ca.md) per a més informació." +msgstr "Sí! Hi ha diverses maneres de fer costat a Organic Maps. Consulta la pàgina [Dona'ns suport](@/support-us/index.ca.md) per a més detalls." + +#. type: Plain text +#: content/donate/index.md +#, no-wrap +msgid "" +"[stripe]: https://donate.organicmaps.app/ \"Donate via Stripe\"\n" +"[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" +msgstr "" +"[stripe]: https://donate.organicmaps.app/ \"Donar via Stripe\"\n" +"[github issues]: https://github.com/organicmaps/organicmaps/issues \"Informes en GitHub\"\n" #. type: Yaml Front Matter Hash Value: description #: content/news/_index.md #, no-wrap msgid "Stay in touch with the latest Organic Maps releases, news and updates from our team" -msgstr "Seguiu les novetats de l'Organic Maps, notícies i actualitzacions del nostre equip" +msgstr "Segueix les últimes novetats de Organic Maps, notícies i actualitzacions del nostre equip." #. type: Yaml Front Matter Hash Value: extra menu_title #: content/news/_index.md @@ -609,33 +598,33 @@ msgstr "Sense rastrejament, anuncis, recopilació de dades i estadístiques o pr #: content/privacy/index.md #, no-wrap msgid "Privacy" -msgstr "Privadesa" +msgstr "Privacitat" #. type: Yaml Front Matter Hash Value: title #: content/privacy/index.md #, no-wrap msgid "Organic Maps: Privacy Policy" -msgstr "Organic Maps: Política de Privadesa" +msgstr "Organic Maps: Política de Privacitat" #. type: Plain text #: content/privacy/index.md msgid "Organic Maps respects your privacy and DOES NOT TRACK YOU." -msgstr "Organic Maps respecta la vostra privadesa i NO US RASTREJA." +msgstr "Organic Maps respecta la vostra privacitat i NO US RASTREJA." #. type: Plain text #: content/privacy/index.md msgid "Unlike most other applications, there is no tracking, no ads, no spyware, no data and statistics collection in Organic Maps." -msgstr "A diferència d'altres aplicacions, a l'Organic Maps no hi ha rastrejadors, anuncis o programes espia, ni recol·lecció de dades o estadístiques." +msgstr "A diferència d'altres aplicacions, no hi ha rastrejadors, ni anuncis, ni programes espia, ni recol·lecció de dades i estadístiques en Organic Maps." #. type: Plain text #: content/privacy/index.md msgid "Stay away from Big Tech's prying eyes!" -msgstr "Allunyeu-vos de les mirades indiscretes de les grans tecnològiques!" +msgstr "Allunya't de les mirades indiscretes de les grans tecnològiques !" #. type: Plain text #: content/privacy/index.md content/terms/index.md msgid "If you have any questions or suggestions, please contact us at [legal@organicmaps.app](mailto:legal@organicmaps.app)." -msgstr "Si teniu cap dubte o suggeriment, contacteu (en anglès) amb nosaltres a [legal@organicmaps.app](mailto:legal@organicmaps.app)." +msgstr "Si tens preguntes o suggeriments, posa't en contacte amb nosaltres en [legal@organicmaps.app](mailto:legal@organicmaps.app)." #. type: Plain text #: content/privacy/index.md @@ -653,78 +642,78 @@ msgstr "Diferents maneres de donar suport al desenvolupament de la nostra aplica #: content/support-us/index.md #, no-wrap msgid "Support Us" -msgstr "Doneu suport" +msgstr "Dona'ns suport" #. type: Yaml Front Matter Hash Value: title #: content/support-us/index.md #, no-wrap msgid "Support the development of Organic Maps" -msgstr "Doneu suport al desenvolupament de l'Organic Maps" +msgstr "Dona suport al desenvolupament de Organic Maps" #. type: Plain text #: content/support-us/index.md msgid "Organic Maps is a free, open-source app. It is free from ads, it does not collect your personal information, and it is developed by a few enthusiasts with the help of the community." -msgstr "L'Organic Maps és una aplicació oberta i gratuïta, lliure d'anuncis que no recopila cap dada personal i és desenvolupada per uns quants entusiastes amb l'ajuda de la comunitat." +msgstr "Organic Maps és una aplicació oberta i gratis. Està lliure d'anuncis, no recull la seva informació personal i està desenvolupada per uns pocs entusiastes amb l'ajuda de la comunitat." #. type: Plain text #: content/support-us/index.md msgid "There are different ways to support the development:" -msgstr "Hi ha diferents formes d'ajudar al desenvolupament:" +msgstr "Hi ha diferents maneres de fer costat al desenvolupament:" #. type: Bullet: '- ' #: content/support-us/index.md msgid "[Donate](@/donate/index.md)! Every dollar or euro counts and helps us to pay for servers and scale." -msgstr "[Doneu](@/donate/index.ca.md)! Qualsevol quantitat compta i ens ajuda a pagar els servidors i ampliar serveis." +msgstr "[Donar](@/donate/index.ca.md)! Cada dòlar o euro compta i ens ajuda a pagar els servidors i ampliar l'escala." #. type: Bullet: '- ' #: content/support-us/index.md msgid "Report bugs and share ideas on our [GitHub][github] or via [email][email]." -msgstr "Informeu d'errors i compartiu idees al nostre [GitHub][github] o mitjançant el [correu-e][email]." +msgstr "Informa d'errors i comparteix idees en el nostre [GitHub][github] o a través de [email][email]." #. type: Bullet: '- ' #: content/support-us/index.md msgid "Help us to [fix bugs][contributing] and do code reviews if you are a developer. Every fixed small issue makes someone happier." -msgstr "Ajudeu-nos a [corregir errors][contributing] i fer revisions de codi si en sabeu programar. Cada petit problema solucionat farà més feliç a alguna persona." +msgstr "Ajuda'ns a [corregir errores][contributing] i fer revisions de codi si ets desenvolupadorx. Cada petit problema solucionat fa més feliç a algú." #. type: Bullet: '- ' #: content/support-us/index.md msgid "[Translate][translations] missing strings in the app's interface." -msgstr "[Traduïu][translations] i milloreu les cadenes de la interfície de l'aplicació." +msgstr "[Tradueixi][translations] cadenes que falten en la interfície de l'aplicació." #. type: Bullet: '- ' #: content/support-us/index.md msgid "Translate [App Store][translations_appstore] and [Android][translations_googleplay] descriptions into your language." -msgstr "Traduïu les descripcions de l'[AppStore][translations_appstore] i l'[Android][translations_googleplay] a la vostra llengua." +msgstr "Tradueix les descripcions de [App Store][translations_appstore] i [Android][translations_googleplay] al teu idioma." #. type: Bullet: '- ' #: content/support-us/index.md msgid "[Translate][translations_website] our web site into your language." -msgstr "[Traduïu][translations_website] el web a la vostra llengua." +msgstr "[Traduir][translations_website] el nostre lloc web al teu idioma." #. type: Bullet: '- ' #: content/support-us/index.md msgid "Join the [OpenStreetMap][openstreetmap] community and contribute to the maps data." -msgstr "Uniu-vos a la comunitat de l'[OpenStreetMap][openstreetmap] i contribuïu amb dades dels mapes." +msgstr "Uneix-te a la comunitat [OpenStreetMap][openstreetmap] i contribueix a les dades dels mapes." #. type: Bullet: '- ' #: content/support-us/index.md msgid "Fix red cities found by our [public transport validator][public_transport_validator], for subways and light rails to work in the app." -msgstr "Corregiu les ciutats marcades en vermell que ha trobat el nostre [validador de transport públic][public_transport_validator], perquè el metro i tramvies funcionin a l'aplicació." +msgstr "Corregeix les ciutats vermelles trobades pel nostre [validador de transport públic][public_transport_validator], perquè el metre i tramvies funcionin en l'aplicació." #. type: Bullet: '- ' #: content/support-us/index.md msgid "Support other users on [GitHub][issues], [Telegram][telegram_chat], [Matrix][matrix], [Twitter][twitter], [Facebook][facebook], [Instagram][instagram]." -msgstr "Doneu un cop de mà a altres usuaris al [GitHub][issues], [Telegram][telegram_chat], [Matrix][matrix], [Twitter][twitter], [Facebook][facebook], i [Instagram][instagram]." +msgstr "Dona suport a altres usuaris en [GitHub][issues], [Telegram][telegram_chat], [Matrix][matrix], [Twitter][twitter], [Facebook][facebook], [Instagram][instagram]." #. type: Bullet: '- ' #: content/support-us/index.md msgid "Tell everyone about Organic Maps. A bigger community is a stronger community." -msgstr "Difoneu l'Organic Maps. Una comunitat més gran és una comunitat més forta." +msgstr "Comenta-li a tothom sobre Organic Maps. Una comunitat més gran és una comunitat més forta." #. type: Bullet: '- ' #: content/support-us/index.md msgid "Rate us in [Google Play][googleplay_review], [Apple Store][appstore_review], [Huawei Appgallery][appgallery_review]." -msgstr "Puntueu-nos al [Google Play][googleplay_review], l'[AppStore][appstore_review], [Huawei Appgallery][appgallery_review]." +msgstr "Valora'ns en [Google Play][googleplay_review], [Apple Store][appstore_review], [Huawei Appgallery][appgallery_review]." #. type: Bullet: '- ' #: content/support-us/index.md @@ -734,7 +723,7 @@ msgstr "Tota ajuda és benvinguda!" #. type: Plain text #: content/support-us/index.md msgid "Our small team is very grateful for your feedback and support. Organic Maps would not be possible without our users ❤️." -msgstr "El nostre petit equip estarà molt agraït pels vostres comentaris i suport. L'Organic Maps no seria possible sense els seus usuaris ❤️." +msgstr "El nostre petit equip està molt agraït pels teus comentaris i suport. Organic Maps no seria possible sense els nostres usuaris ❤️." #. type: Yaml Front Matter Hash Value: description #: content/terms/index.md @@ -757,60 +746,54 @@ msgstr "Organic Maps: condicions" #. type: Plain text #: content/terms/index.md msgid "This app is licensed under the Apache License, Version 2.0 (the \"License\"); you may not use this application except in compliance with the License." -msgstr "Aquesta aplicació sota la Llicència Apache, Versió 2.0 (la «Llicència»); només podreu fer servir aquesta aplicació si compliu amb la Llicència." +msgstr "Aquesta aplicació està llicenciada sota la Llicència Apatxe, Versió 2.0 (la \"Llicència\"); només podràs fer servir aquesta aplicació si compleixes amb la Llicència." #. type: Plain text #: content/terms/index.md msgid "You may obtain a copy of the License at [http://www.apache.org/licenses/LICENSE-2.0][license]" -msgstr "Podeu obtenir una còpia de la Llicència a: [http://www.apache.org/licenses/license-2.0][license]" +msgstr "Pots obtenir una còpia de la Llicència en [http://www.apache.org/licenses/license-2.0][license]" #. type: Plain text #: content/terms/index.md msgid "Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License." -msgstr "Tret que ho exigeixi la legislació aplicable o s'acordi per escrit, el programari distribuït sota la Llicència es distribueix «TAL QUAL», SENSE GARANTIES NI CONDICIONS DE CAP MENA; siguin expresses o implícites. Consulteu la Llicència per a conèixer el llenguatge específic que regeix els permisos i limitacions sota la Llicència." +msgstr "Tret que ho exigeixi la legislació aplicable o s'acordi per escrit, el programari distribuït sota la Llicència es distribueix \"TAL QUAL\", SENSE GARANTIES NI CONDICIONS DE CAP MENA, ja siguin expresses o implícites. Consulti la Llicència per a conèixer el llenguatge específic que regeix els permisos i limitacions sota la Llicència." #. type: Plain text #: content/terms/index.md msgid "Most libraries in the following directories on [GitHub][github] made by other people and organizations and licensed in different ways:" -msgstr "La majoria de les biblioteques dels següents directoris al [GitHub][github] són creades per altres organitzacions o persones i llicenciades de diferents formes:" +msgstr "La majoria de les biblioteques dels següents directoris en [GitHub][github] són creades per altres persones i organitzacions i llicenciades de diferents maneres:" #. type: Bullet: '- ' #: content/terms/index.md msgid "3party" -msgstr "Terceres parts" +msgstr "3party" #. type: Bullet: '- ' #: content/terms/index.md msgid "tools" -msgstr "eines" +msgstr "tools" #. type: Plain text #: content/terms/index.md msgid "Please refer to their LICENSE, COPYING or NOTICE files for terms of use." -msgstr "Consulteu les seves LLICÈNCIES, CÒPIES o AVISOS per a conèixer les condicions d'ús." +msgstr "Consulti les seves LLICÈNCIES, CÒPIES o AVISOS per a conèixer les condicions d'ús." #. type: Plain text #: content/terms/index.md msgid "See also [data/copyright.html][copyright] file for a full list of copyright notices for Organic Maps application." -msgstr "Consulteu també el fitxer [data/copyright.html][copyright] per a una llista completa d’avisos de drets d’autor per a l’aplicació Organic Maps." +msgstr "Consulta també el fitxer [data/copyright.html][copyright] per a una llista completa d’avisos de drets d’autor per a l’aplicació Organic Maps." -#. type: Link reference +#. type: Plain text #: content/terms/index.md #, no-wrap -msgid "[github]: https://github.com/organicmaps/organicmaps" -msgstr "" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[license]: http://www.apache.org/licenses/LICENSE-2.0" -msgstr "[license]: http://www.apache.org/licenses/LICENSE-2.0" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html" +msgid "" +"[github]: https://github.com/organicmaps/organicmaps\n" +"[license]: http://www.apache.org/licenses/LICENSE-2.0\n" +"[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html\n" msgstr "" +"[github]: https://github.com/organicmaps/organicmaps\n" +"[license]: http://www.apache.org/licenses/LICENSE-2.0\n" +"[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html\n" #. type: Hash Value: address #: translations.yaml @@ -828,43 +811,31 @@ msgstr "Torna a Notícies" #: translations.yaml #, no-wrap msgid "Contact Us" -msgstr "Contacteu amb nosaltres" - -#. type: Hash Value: engines -#: translations.yaml -#, no-wrap -msgid "Supported TTS Engines" -msgstr "Motors TTS admesos" - -#. type: Hash Value: faq-menu-title -#: translations.yaml -#, no-wrap -msgid "F.A.Q." -msgstr "Preguntes freqüents" +msgstr "Contacta'ns" #. type: Hash Value: install-appgallery #: translations.yaml #, no-wrap msgid "Install Organic Maps from Huawei AppGallery" -msgstr "Instal·leu l’Organic Maps des de l’AppGallery de Huawei" +msgstr "Instal·la l’Organic Maps des de l’AppGallery de Huawei" #. type: Hash Value: install-appstore #: translations.yaml #, no-wrap msgid "Install Organic Maps from the AppStore" -msgstr "Instal·leu l’Organic Maps des de l’AppStore" +msgstr "Instal·la l’Organic Maps des de l’AppStore" #. type: Hash Value: install-fdroid #: translations.yaml #, no-wrap msgid "Install Organic Maps from F-Droid" -msgstr "Instal·leu l’Organic Maps des del F-Droid" +msgstr "Instal·la l’Organic Maps des del F-Droid" #. type: Hash Value: install-googleplay #: translations.yaml #, no-wrap msgid "Install Organic Maps from Google Play" -msgstr "Instal·leu l’Organic Maps des del Google Play" +msgstr "Instal·la l’Organic Maps des del Google Play" #. type: Hash Value: language #: translations.yaml @@ -872,12 +843,6 @@ msgstr "Instal·leu l’Organic Maps des del Google Play" msgid "English" msgstr "Català" -#. type: Hash Value: language-word -#: translations.yaml -#, no-wrap -msgid "Language" -msgstr "Llengua" - #. type: Hash Value: name #: translations.yaml #, no-wrap @@ -890,52 +855,6 @@ msgstr "Nom" msgid "Token" msgstr "Testimoni" -#, no-wrap -#~ msgid "**Organic Maps** is one of the only applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card (by the way, your operator constantly tracks you), and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" -#~ msgstr "L’**Organic Maps** és una de les poques aplicacions actuals que admet fer servir totes les seves funcions sense una connexió a Internet activa. Instal·leu l’Organic Maps, baixeu mapes, llenceu la vostra targeta SIM (per cert, el vostre operador us rastreja constantment) i feu un viatge setmanal amb una sola càrrega de bateria sense que cap byte s’enviï a la xarxa.\n" - -#~ msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]**:" -#~ msgstr "L'Organic Maps és _gratis per a tothom_ gràcies a les seves **[donacions][stripe]**:" - -#~ msgid "We are a few enthusiasts contributing in our free time, and spending our families' money on the project. We love what we do, and we love our users ❤️." -#~ msgstr "Som un grup d'entusiastes contribuint en el nostre temps lliure, i gastant els diners de les nostres famílies en el projecte. Ens encanta el que fem, i estimem als nostres usuaris ❤️." - -#~ msgid "With your support, we want to become a better, privacy-focused version of Google Maps." -#~ msgstr "Amb el vostre suport, volem convertir-nos en una millor versió de Google Maps, centrada en la privadesa." - -#, no-wrap -#~ msgid "What will the money be used for?" -#~ msgstr "Per a què es faran servir els diners?" - -#~ msgid "We pay for fast servers, so anyone in the World can download free map data updates without delays. It's hundreds of terabytes monthly, and the amount is growing." -#~ msgstr "Paguem per servidors ràpids, perquè qualsevol persona pugui accedir a les actualitzacions de característiques dels mapes de forma ràpida i sense esperes. Són centenars de terabytes al mes, i la quantitat està creixent." - -#~ msgid "User support, bugfixing, and improving the stability of the app are at the top of our priorities. There are [1800+ issues on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." -#~ msgstr "L'assistència als usuaris, l'arranjament d'errors i la millora de l'estabilitat de l'aplicació són les nostres principals prioritats. Hi ha més de [1800 informes en GitHub][github issues], i aquest número creix cada dia. AppStore, Google Play i els correus d'atenció estan inundats amb comentaris i informes. Volem lliurar un producte de qualitat." - -#~ msgid "Weekly and automated map data updates" -#~ msgstr "Actualitzacions setmanals i automatitzades dels mapes" - -#~ msgid "Bookmarks backup and sync" -#~ msgstr "Còpia de seguretat i sincronització dels llocs d’interès" - -#~ msgid "Android Auto" -#~ msgstr "Android Auto" - -#, no-wrap -#~ msgid "" -#~ "[stripe]: https://donate.organicmaps.app/ \"Donate via Stripe\"\n" -#~ "[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" -#~ msgstr "" -#~ "[stripe]: https://donate.organicmaps.app/ «Donació amb Stripe»\n" -#~ "[github issues]: https://github.com/organicmaps/organicmaps/issues «Informes al GitHub»\n" - -#~ msgid "To donate immediately, click a preferred payment method icon below:" -#~ msgstr "Per a fer un donatiu immediatament, feu clic a la icona del mètode de pagament preferit:" - -#~ msgid "Click a preferred payment method icon below:" -#~ msgstr "Feu clic a la icona de pagament preferit:" - #, no-wrap #~ msgid "There are different ways to donate:" #~ msgstr "Hi ha diferents maneres de donar:" diff --git a/po/content.cs.po b/po/content.cs.po index adbece21..8a02308f 100644 --- a/po/content.cs.po +++ b/po/content.cs.po @@ -4,7 +4,7 @@ # FIRST AUTHOR , YEAR. # msgid "" -msgstr "Project-Id-Version: Organic Maps Website 1.0\nPO-Revision-Date: 2024-04-02 19:54+0000\nLast-Translator: Weblate Translation Memory \nLanguage-Team: Czech \nLanguage: cs\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-Forms: nplurals=3; plural=((n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2);\nX-Generator: Weblate 5.5-dev\n" +msgstr "Project-Id-Version: Organic Maps Website 1.0\nPO-Revision-Date: 2023-09-12 20:16+0000\nLast-Translator: Fjuro \nLanguage-Team: Czech \nLanguage: cs\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\nX-Generator: Weblate 5.0.1-dev\n" #. type: Yaml Front Matter Hash Value: description #: content/_index.md @@ -27,28 +27,20 @@ msgstr "Organic Maps: Offline pěší turistika, cykloturistika, stezky a naviga #. type: Plain text #: content/_index.md #, no-wrap -msgid "" -"**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, drivers and cyclists based on **[OpenStreetMap][openstreetmap]** data created by the community.\n" -"It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" -msgstr "**Organic Maps** je bezplatná offline mapová aplikace pro systémy Android a iOS pro cestovatele, turisty, výletníky a cyklisty založená na datech **[OpenStreetMap][openstreetmap]**.\nJedná se o open-source [odnož][fork] aplikace **Maps.me** (dříve známé jako [**MapsWithMe**][mapswithme]) zaměřenou na ochranu soukromí, kterou spravují stejní lidé, kteří **MapsWithMe** v roce 2011 vytvořili.\n" +msgid "**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, and cyclists based on top of crowd-sourced **[OpenStreetMap][openstreetmap]** data. It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" +msgstr "**Organic Maps** je bezplatná offline mapová aplikace pro Android a iOS pro cestovatele, turisty, výletníky a cyklisty založená na datech **[OpenStreetMap][openstreetmap]**. Jedná se o open-source [odnož][fork] zaměřenou na ochranu soukromí aplikace **Maps.me** (dříve známé jako [**MapsWithMe**][mapswithme]), kterou spravují stejní lidé, kteří v roce 2011 vytvořili **MapsWithMe**.\n" #. type: Plain text #: content/_index.md #, no-wrap -msgid "**Organic Maps** is one of the few applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card, and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" +msgid "**Organic Maps** is one of the only applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card (by the way, your operator constantly tracks you), and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" msgstr "**Organic Maps** je jednou z mála aplikací, která v dnešní době podporuje 100 % funkcí bez aktivního připojení k internetu. Nainstalujte si Organic Maps, stáhněte si mapy, zahoďte SIM kartu (mimochodem, váš operátor vás neustále sleduje) a vyrazte na týdenní výlet na jedno nabití baterie bez jakéhokoli bajtu odeslaného do sítě.\n" -#. type: Plain text -#: content/_index.md -#, no-wrap -msgid "> In 2023, Organic Maps [got its first million](@/news/2023-12-23/281/index.md) users. [Help us](@/donate/index.md) to scale!\n" -msgstr "> V roce 2023 získaly Organic Maps [první milion](@/news/2023-12-23/281/index.md) uživatelů. [Pomozte nám](@/donate/index.md) dále růst!\n" - #. type: Title ### #: content/_index.md #, no-wrap msgid "Download and install Organic Maps from [AppStore][appstore], [Google Play][googleplay], [FDroid][fdroid], [Huawei AppGallery][appgallery] {#install}" -msgstr "Stáhněte a nainstalujte si Organic Maps z obchodů [App Store][appstore], [Google Play][googleplay], [F-Droid][fdroid], [Huawei AppGallery][appgallery] {#install}" +msgstr "Stáhněte si a nainstalujte Organic Maps z [AppStore][appstore], [Google Play][googleplay], [FDroid][fdroid], [Huawei AppGallery][appgallery] {#install}" #. type: Plain text #: content/_index.md @@ -103,8 +95,8 @@ msgstr "Vrstevnice, výškové profily, vrcholy a svahy" #. type: Bullet: '- ' #: content/_index.md -msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance and Android Auto" -msgstr "Pěší, cyklistická a automobilová navigace krok za krokem s hlasovými pokyny, Android Auto" +msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance" +msgstr "Pěší, cyklistická a automobilová navigace krok za krokem s hlasovými pokyny" #. type: Bullet: '- ' #: content/_index.md @@ -113,8 +105,8 @@ msgstr "Rychlé offline vyhledávání na mapě" #. type: Bullet: '- ' #: content/_index.md -msgid "Export/import bookmarks in KML/KMZ, import GPX" -msgstr "Export a import záložek ve formátech KML/KMZ, import GPX" +msgid "Bookmarks and tracks in KML, KMZ, GPX formats" +msgstr "Export a import záložek ve formátech KML/KMZ (GPX je [plánováno][gpx_issue])" #. type: Bullet: '- ' #: content/_index.md @@ -200,7 +192,7 @@ msgstr "Žádný hlučný e-mailový spam" #. type: Bullet: '- ' #: content/_index.md content/donate/index.md msgid "No push notifications" -msgstr "Žádná vyskakovací oznámení" +msgstr "Žádná oznámení push" #. type: Bullet: '- ' #: content/_index.md @@ -224,11 +216,13 @@ msgstr "{{ exodus_screenshot() }}" #. type: Plain text #: content/_index.md +#, markdown-text msgid "The iOS application is verified by [TrackerControl for iOS][trackercontrol]:" msgstr "Aplikace pro iOS je ověřena pomocí [TrackerControl for iOS][trackercontrol]:" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ trackercontrol_screenshot() }}" msgstr "{{ trackercontrol_screenshot() }}" @@ -368,22 +362,17 @@ msgstr "Navštivte náš [GitHub][github]." #. type: Bullet: '- ' #: content/_index.md -msgid "Follow our updates in [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." -msgstr "Sledujte naše aktualizace na [FOSStodon][fosstodon], [Mastodonu][mastodon], [Facebooku][facebook], [Twitteru][twitter], [Instagramu][instagram], [Redditu][reddit], [LinkedIn][LinkedIn]." - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Join (or create and let us know) local communities: [Hungarian translators Matrix room](https://matrix.to/#/#organicmapstranslate_hu:matrix.org)" -msgstr "Připojte se (nebo vytvořte vlastní a dejte nám vědět) k lokálním komunitám: [místnost Matrix maďarských překladatelů](https://matrix.to/#/#organicmapstranslate_hu:matrix.org)" - -#. type: Link reference -#: content/_index.md -#, no-wrap -msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)" -msgstr "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)" +msgid "Follow our updates in [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." +msgstr "Sledujte naše aktualizace na [Mastodonu][mastodon], [Facebooku][facebook], [Twitteru][twitter], [Instagramu][instagram], [Redditu][reddit], [LinkedIn][LinkedIn]." #. type: Plain text -#: content/_index.md content/donate/index.md content/support-us/index.md +#: content/_index.md +#, no-wrap +msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)\n" +msgstr "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)\n" + +#. type: Plain text +#: content/_index.md content/support-us/index.md msgid "{{ references() }}" msgstr "{{ references() }}" @@ -407,7 +396,7 @@ msgstr "Přispějte na podporu vývoje Organic Maps" #. type: Plain text #: content/donate/index.md -msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]** in **[EUR][stripe_eur], [USD][stripe_usd], [GBP][stripe_GBP], [CHF][stripe_chf], [UAH][stripe_uah], [PLN][stripe_pln]**:" +msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]**:" msgstr "Aplikace Organic Maps je pro všechny _zdarma_ díky vašim **[darům][stripe]**:" #. type: Bullet: '- ' @@ -438,78 +427,63 @@ msgstr "Proč darovat Organic Maps?" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "Our goal is to provide a privacy-focused, fast and easy-to-use alternative to Google Maps and Apple Maps." -msgstr "Naším cílem je poskytovat rychlou alternativu k Mapám Google a Apple Maps, která se jednoduše používá a bere ohled na vaše soukromí." +msgid "We rely on your donations to carry out our mission to keep Organic Maps open and free. And free from ads." +msgstr "Při plnění našeho poslání udržovat Organic Maps otevřené a svobodné spoléháme na vaše dary. A bez reklam." #. type: Bullet: '2. ' #: content/donate/index.md -msgid "Improving public map data for the numerous websites, apps and platforms which use OpenStreetMap, and involving more people in contributing map info is our another goal." -msgstr "Naším druhým cílem je vylepšování mapových dat pro velké množství webů, aplikací a platform, které používají službu OpenStreetMap, a zapojit více lidí do přispívání informací do map." +msgid "We are a few enthusiasts contributing in our free time, and spending our families' money on the project. We love what we do, and we love our users ❤️." +msgstr "Jsme několik nadšenců, kteří na projekt přispívají ve svém volném čase a utrácejí peníze svých rodin. Milujeme to, co děláme, a milujeme naše uživatele ❤️." #. type: Bullet: '3. ' #: content/donate/index.md -msgid "We rely on your donations to keep Organic Maps open and free for everyone. And free from ads." -msgstr "Při plnění našeho poslání udržovat Organic Maps otevřené a svobodné spoléháme na vaše dary. A bez reklam." - -#. type: Bullet: '4. ' -#: content/donate/index.md -msgid "We love what we do, and we love our users ❤️." -msgstr "Máme rádi to, co děláme, a máme rádi naše uživatele ❤️." +msgid "With your support, we want to become a better, privacy-focused version of Google Maps." +msgstr "S vaší podporou se chceme stát lepší verzí Google Maps zaměřenou na ochranu soukromí." #. type: Title ## #: content/donate/index.md #, no-wrap -msgid "Why a free project needs money?" -msgstr "Proč potřebuje bezplatný projekt peníze?" +msgid "What will the money be used for?" +msgstr "Na co budou peníze použity?" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "In 2023, Organic Maps got its first million users. Our servers provide free, fast and frequent map updates all over the world." -msgstr "V roce 2023 získaly Organic Maps první milion uživatelů. Naše servery poskytují bezplatné, rychlé a časté aktualizace map po celém světě." +msgid "We pay for fast servers, so anyone in the World can download free map data updates without delays. It's hundreds of terabytes monthly, and the amount is growing." +msgstr "Platíme za rychlé servery, takže kdokoli na světě může stahovat bezplatné aktualizace mapových dat bez zpoždění. Jsou to stovky terabajtů měsíčně a jejich množství stále roste." #. type: Bullet: '2. ' #: content/donate/index.md -msgid "User support, bugfixing and publishing quality app updates are at the top of our priorities. There are [~2000 bug reports and feature requests on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." -msgstr "Podpora uživatelů, oprava chyb a zlepšování stability aplikace jsou našimi hlavními prioritami. Na GitHubu je [2000+ issues] [github issues] a toto číslo každým dnem roste. AppStore, Google Play a e-maily podpory jsou zaplaveny komentáři a chybami. Chceme dodávat vysoce kvalitní produkt." +msgid "User support, bugfixing, and improving the stability of the app are at the top of our priorities. There are [1800+ issues on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." +msgstr "Podpora uživatelů, oprava chyb a zlepšování stability aplikace jsou našimi hlavními prioritami. Na GitHubu je [1800+ issues] [github issues] a toto číslo každým dnem roste. AppStore, Google Play a e-maily podpory jsou zaplaveny komentáři a chybami. Chceme dodávat vysoce kvalitní produkt." #. type: Bullet: '3. ' #: content/donate/index.md -msgid "With enough money, new features can be developed. To name a few:" +msgid "With enough money, new features can be developed faster, for example:" msgstr "S dostatkem peněz lze například rychleji vyvíjet nové funkce:" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Backup and sync bookmarks and tracks" -msgstr "Zálohování a synchronizace záložek a tras" +msgid "Weekly and automated map data updates" +msgstr "Týdenní a automatické aktualizace mapových dat" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "GPS track recorder with GPX export" +msgid "Bookmarks backup and sync" +msgstr "Zálohování a synchronizace záložek" + +#. type: Bullet: ' - ' +#: content/donate/index.md +msgid "Android Auto" +msgstr "Android Auto" + +#. type: Bullet: ' - ' +#: content/donate/index.md +msgid "GPS track recorder with GPX support" msgstr "Záznamník stop GPS s podporou GPX" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Satellite imagery" -msgstr "Satelitní mapy" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Public Transport" -msgstr "Veřejná doprava" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Traffic and accident reporting" -msgstr "Hlášení o dopravě a nehodách" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Photos and Reviews" -msgstr "Fotky a recenze" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Map styles for different activities" +msgid "Better map styles for different activities" msgstr "Lepší styly map pro různé činnosti" #. type: Bullet: ' - ' @@ -519,7 +493,7 @@ msgstr "Stínování kopců a 3D terén" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "More advanced OpenStreetMap editor" +msgid "Improve the OpenStreetMap editor" msgstr "Vylepšení editoru OpenStreetMap" #. type: Bullet: ' - ' @@ -527,6 +501,11 @@ msgstr "Vylepšení editoru OpenStreetMap" msgid "Better offline address search, routing, and navigation" msgstr "Lepší offline vyhledávání adres, směrování a navigace" +#. type: Bullet: ' - ' +#: content/donate/index.md +msgid "Public Transport" +msgstr "Veřejná doprava" + #. type: Bullet: ' - ' #: content/donate/index.md msgid "… and [many other][github issues] features you want and love" @@ -540,7 +519,7 @@ msgstr "Jak darovat?" #. type: Plain text #: content/donate/index.md -msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. One-time donations are appreciated too." +msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. But you can also donate one time." msgstr "Opakované dary jsou nejlepším způsobem, jak zajistit relativně stabilní příjem projektu a motivovat nás k dlouhodobým úkolům a cílům. Můžete však přispět i jednorázově." #. type: Title ### @@ -581,6 +560,16 @@ msgstr "Můžete nám pomoci i jinak?" msgid "Yes! There are many ways to support Organic Maps. Please see [Support Us](@/support-us/index.md) page for more details." msgstr "Ano! Existuje mnoho způsobů, jak podpořit Organic Maps. Více informací naleznete na stránce [Podpořte nás](@/support-us/index.cs.md)." +#. type: Plain text +#: content/donate/index.md +#, no-wrap +msgid "" +"[stripe]: https://donate.organicmaps.app/ \"Donate via Stripe\"\n" +"[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" +msgstr "" +"[stripe]: https://donate.organicmaps.app/ \"Dar přes Stripe\"\n" +"[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" + #. type: Yaml Front Matter Hash Value: description #: content/news/_index.md #, no-wrap @@ -794,23 +783,17 @@ msgstr "Podmínky použití naleznete v jejich souborech LICENCE, KOPÍROVÁNÍ msgid "See also [data/copyright.html][copyright] file for a full list of copyright notices for Organic Maps application." msgstr "Úplný seznam upozornění na autorská práva pro aplikaci Organic Maps najdete také v souboru [data/copyright.html][copyright]." -#. type: Link reference +#. type: Plain text #: content/terms/index.md #, no-wrap -msgid "[github]: https://github.com/organicmaps/organicmaps" -msgstr "[github]: https://github.com/organicmaps/organicmaps" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[license]: http://www.apache.org/licenses/LICENSE-2.0" -msgstr "[license]: http://www.apache.org/licenses/LICENSE-2.0" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html" -msgstr "[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html" +msgid "" +"[github]: https://github.com/organicmaps/organicmaps\n" +"[license]: http://www.apache.org/licenses/LICENSE-2.0\n" +"[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html\n" +msgstr "" +"[github]: https://github.com/organicmaps/organicmaps\n" +"[license]: http://www.apache.org/licenses/LICENSE-2.0\n" +"[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html\n" #. type: Hash Value: address #: translations.yaml @@ -830,18 +813,6 @@ msgstr "Zpět na novinky" msgid "Contact Us" msgstr "Kontaktujte nás" -#. type: Hash Value: engines -#: translations.yaml -#, no-wrap -msgid "Supported TTS Engines" -msgstr "Podporované služby TTS" - -#. type: Hash Value: faq-menu-title -#: translations.yaml -#, no-wrap -msgid "F.A.Q." -msgstr "Často kladené dotazy" - #. type: Hash Value: install-appgallery #: translations.yaml #, no-wrap @@ -872,12 +843,6 @@ msgstr "Instalace Organic Maps z Google Play" msgid "English" msgstr "Čeština" -#. type: Hash Value: language-word -#: translations.yaml -#, no-wrap -msgid "Language" -msgstr "Jazyk" - #. type: Hash Value: name #: translations.yaml #, no-wrap @@ -890,39 +855,6 @@ msgstr "Název" msgid "Token" msgstr "Token" -#~ msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]**:" -#~ msgstr "Aplikace Organic Maps je pro všechny _zdarma_ díky vašim **[darům][stripe]**:" - -#~ msgid "We are a few enthusiasts contributing in our free time, and spending our families' money on the project. We love what we do, and we love our users ❤️." -#~ msgstr "Jsme několik nadšenců, kteří na projekt přispívají ve svém volném čase a utrácejí peníze svých rodin. Milujeme to, co děláme, a milujeme naše uživatele ❤️." - -#~ msgid "With your support, we want to become a better, privacy-focused version of Google Maps." -#~ msgstr "S vaší podporou se chceme stát lepší verzí Google Maps zaměřenou na ochranu soukromí." - -#, no-wrap -#~ msgid "What will the money be used for?" -#~ msgstr "Na co budou peníze použity?" - -#~ msgid "We pay for fast servers, so anyone in the World can download free map data updates without delays. It's hundreds of terabytes monthly, and the amount is growing." -#~ msgstr "Platíme za rychlé servery, takže kdokoli na světě může stahovat bezplatné aktualizace mapových dat bez zpoždění. Jsou to stovky terabajtů měsíčně a jejich množství stále roste." - -#~ msgid "Weekly and automated map data updates" -#~ msgstr "Týdenní a automatické aktualizace mapových dat" - -#~ msgid "Bookmarks backup and sync" -#~ msgstr "Zálohování a synchronizace záložek" - -#~ msgid "Android Auto" -#~ msgstr "Android Auto" - -#, no-wrap -#~ msgid "" -#~ "[stripe]: https://donate.organicmaps.app/ \"Donate via Stripe\"\n" -#~ "[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" -#~ msgstr "" -#~ "[stripe]: https://donate.organicmaps.app/ \"Dar přes Stripe\"\n" -#~ "[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" - #, no-wrap #~ msgid "There are different ways to donate:" #~ msgstr "Darovat můžete různými způsoby:" diff --git a/po/content.cy.po b/po/content.cy.po deleted file mode 100644 index 1367942b..00000000 --- a/po/content.cy.po +++ /dev/null @@ -1,924 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Organic Maps -# This file is distributed under the same license as the Organic Maps Website package. -# FIRST AUTHOR , YEAR. -# -msgid "" -msgstr "Project-Id-Version: Organic Maps Website 1.0\nPO-Revision-Date: 2024-04-02 19:54+0000\nLast-Translator: Weblate Translation Memory \nLanguage-Team: Welsh \nLanguage: cy\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-Forms: nplurals=6; plural=(n==0) ? 0 : (n==1) ? 1 : (n==2) ? 2 : (n==3) ? 3 :(n==6) ? 4 : 5;\nX-Generator: Weblate 5.5-dev\n" - -#. type: Yaml Front Matter Hash Value: description -#: content/_index.md -#, no-wrap -msgid "Fast detailed offline maps for travelers, tourists, drivers, hikers and cyclists created by MapsWithMe (Maps.Me) app founders." -msgstr "Mapiau manwl cyflym all-lein ar gyfer teithwyr, twristiaid, gyrwyr, heicwyr a seiclwyr wedi'i chreu gan sylfaenwyr MapsWithMe (Maps.Me)." - -#. type: Yaml Front Matter Hash Value: extra menu_title -#: content/_index.md -#, no-wrap -msgid "Home" -msgstr "Hafan" - -#. type: Yaml Front Matter Hash Value: title -#: content/_index.md -#, no-wrap -msgid "Organic Maps: Offline Hike, Bike, Trails and Navigation" -msgstr "Organic Maps: Crwydro, Seiclo, Llwybrau a Hwylio All-lein" - -#. type: Plain text -#: content/_index.md -#, no-wrap -msgid "" -"**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, drivers and cyclists based on **[OpenStreetMap][openstreetmap]** data created by the community.\n" -"It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" -msgstr "Mae **Organic Maps** yn ap am ddim ar gyfer Android ac iOS gyda mapiau all-lein ar gyfer teithwyr, twristiaid, heicwyr a seiclwyr ar sail data cyfraniad torfol **[OpenStreetMap][openstreetmap]**. Mae'n [fforc][fork] cod agored a phreifat o'r ap **Maps.me** ([**MapsWithMe**][mapswithme] cyn hynny), a chynhelir gan yr union bobl sydd wedi creu **MapsWithMe** yn 2011.\n" - -#. type: Plain text -#: content/_index.md -#, no-wrap -msgid "**Organic Maps** is one of the few applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card, and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" -msgstr "**Organic Maps** yw un o'r unig apiau y dyddiau hyn sy'n cefnogi 100% o nodweddion heb angen cysylltiad rhyngrwyd. Gosodwch Organic Maps, lawrlwythwch mapiau, a chael gwared ar eich cerdyn SIM (gyda llaw, mae eich gweithredwr yn eich tracio chi'n gyson), a chewch mynd ar drip am yr wythnos heb angen gwefru eich ffôn, a heb ddanfon beit i'r rhwydwaith.\n" - -#. type: Plain text -#: content/_index.md -#, no-wrap -msgid "> In 2023, Organic Maps [got its first million](@/news/2023-12-23/281/index.md) users. [Help us](@/donate/index.md) to scale!\n" -msgstr "" - -#. type: Title ### -#: content/_index.md -#, no-wrap -msgid "Download and install Organic Maps from [AppStore][appstore], [Google Play][googleplay], [FDroid][fdroid], [Huawei AppGallery][appgallery] {#install}" -msgstr "Lawrlwytho a gosod Organic Maps o [AppStore][appstore], [Google Play][googleplay], [FDroid][fdroid], [Huawei AppGallery][appgallery] {#install}" - -#. type: Plain text -#: content/_index.md -msgid "{{ badges() }}" -msgstr "{{ badges() }}" - -#. type: Plain text -#: content/_index.md -msgid "{{ screenshot(src='/images/screenshots/hiking.jpg', alt='Hiking') }}" -msgstr "{{ screenshot(src='/images/screenshots/hiking.jpg', alt='Heicio') }}" - -#. type: Plain text -#: content/_index.md -msgid "{{ screenshot(src='/images/screenshots/prague.jpg', alt='Prague') }}" -msgstr "{{ screenshot(src='/images/screenshots/prague.jpg', alt='Prague') }}" - -#. type: Plain text -#: content/_index.md -msgid "{{ screenshot(src='/images/screenshots/search.jpg', alt='Offline Search') }}" -msgstr "{{ screenshot(src='/images/screenshots/search.jpg', alt='Chwilio All-lein') }}" - -#. type: Plain text -#: content/_index.md -msgid "{{ screenshot(src='/images/screenshots/dark.jpg', alt='Navigation in dark mode') }}" -msgstr "{{ screenshot(src='/images/screenshots/dark.jpg', alt='Llywio gyda thema lliw tywyll') }}" - -#. type: Title ## -#: content/_index.md -#, no-wrap -msgid "Features" -msgstr "Nodweddion" - -#. type: Plain text -#: content/_index.md -msgid "Organic Maps is the ultimate companion app for travelers, tourists, hikers, and cyclists:" -msgstr "Organic Maps yw'r ap gorau ar gyfer teithwyr, twristiaid, heicwyr a seiclwyr:" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Detailed offline maps with places that don't exist on other maps, thanks to [OpenStreetMap][openstreetmap]" -msgstr "Mapiau manwl all-lein gyda lleoliadau sydd ddim yn bodoli ar fapiau eraill, diolch i [OpenStreetMap][openstreetmap]" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Cycling routes, hiking trails, and walking paths" -msgstr "Llwybrau seiclo, heicio, a cherdded" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Contour lines, elevation profiles, peaks, and slopes" -msgstr "Cyfuchlinau, proffeiliau dyrchafiad, brigau, a llethrau" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance and Android Auto" -msgstr "Cyfeiriadau troell-wrth-droell ar gyfer llywio wrth gerdded, seiclo, a gyrru gydag arweiniad llais ac Android Auto" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Fast offline search on the map" -msgstr "Chwilio all-lein cyflym ar y map" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Export/import bookmarks in KML/KMZ, import GPX" -msgstr "Llyfrnodau ac olion yn fformatiau KML, KMZ, a GPX" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Dark Mode to protect your eyes" -msgstr "Thema lliw tywyll i amddiffyn eich llygaid" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Countries and regions don't take a lot of space" -msgstr "Gwledydd ac ardaloedd sydd ddim yn defnyddio llawer o gof" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Free and open-source" -msgstr "Ffynhonnell agored ac am ddim" - -#. type: Title ## -#: content/_index.md -#, no-wrap -msgid "Why Organic?" -msgstr "Pam Organic?" - -#. type: Plain text -#: content/_index.md -msgid "Organic Maps is pure and organic, made with love:" -msgstr "Mae Organic Maps yn bur ac yn organig, ac wedi'i greu â chariad:" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Respects your privacy" -msgstr "Yn parchu eich preifatrwydd" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Saves your battery" -msgstr "Yn arbed eich batri" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "No unexpected mobile data charges" -msgstr "Dim taliadau data annisgwyl" - -#. type: Plain text -#: content/_index.md -msgid "Organic Maps app is free from trackers and other bad stuff:" -msgstr "Does dim tracwyr na phethau drwg arall yn yr ap Organic Maps:" - -#. type: Bullet: '- ' -#: content/_index.md content/donate/index.md -msgid "No ads" -msgstr "Dim hysbysebion" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "No tracking" -msgstr "Dim tracio" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "No data collection" -msgstr "Dim casgliad data" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "No phoning home" -msgstr "Dim galw adref" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "No annoying registration" -msgstr "Dim angen cofrestru" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "No mandatory tutorials" -msgstr "Dim tiwtorial gorfodol" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "No noisy email spam" -msgstr "Dim sbam e-bost swnllyd" - -#. type: Bullet: '- ' -#: content/_index.md content/donate/index.md -msgid "No push notifications" -msgstr "Dim hysbysiadau push" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "No crapware" -msgstr "Dim 'crapware'" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "~~No pesticides~~ Purely organic!" -msgstr "~~Dim plaladdwyr ~~ Yn hollol organig!" - -#. type: Plain text -#: content/_index.md -msgid "The application is verified by [Exodus Privacy Project][exodus]:" -msgstr "Mae'r ap wedi cael ei wirio gan [Exodus Privacy Project][exodus]:" - -#. type: Plain text -#: content/_index.md -msgid "{{ exodus_screenshot() }}" -msgstr "{{ exodus_screenshot() }}" - -#. type: Plain text -#: content/_index.md -msgid "The iOS application is verified by [TrackerControl for iOS][trackercontrol]:" -msgstr "Mae'r ap iOS wedi cael ei wirio gan [TrackerControl for iOS][trackercontrol]:" - -#. type: Plain text -#: content/_index.md -msgid "{{ trackercontrol_screenshot() }}" -msgstr "{{ trackercontrol_screenshot() }}" - -#. type: Plain text -#: content/_index.md -msgid "Organic Maps doesn't request excessive permissions to spy on you:" -msgstr "Dydy Organic Maps ddim yn gofyn am ormod o ganiatadau i ysbïo arnoch chi:" - -#. type: Plain text -#: content/_index.md -msgid "{{ privacy_screenshots() }}" -msgstr "{{ privacy_screenshots() }}" - -#. type: Plain text -#: content/_index.md -msgid "At Organic Maps, we believe that privacy is a fundamental human right:" -msgstr "At Organic Maps, credwn fod preifatrwydd yn hawl dynol sylfaenol:" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Organic Maps is an indie community-driven open-source project" -msgstr "Mae Organic Maps yn brosiect ffynhonnell agored annibynnol sydd wedi'i yrru gan y gymuned" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "We protect your privacy from Big Tech's prying eyes" -msgstr "Rydym yn amddiffyn eich preifatrwydd o lygaid cwmnïoedd technoleg fawr" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Stay safe no matter wherever you are" -msgstr "Arhoswch yn ddiogel ble bynnag yr ydych" - -#. type: Plain text -#: content/_index.md content/privacy/index.md -msgid "Reject surveillance - embrace your freedom." -msgstr "Gwrthodwch wyliadwriaeth - mwynhewch eich rhyddid." - -#. type: Plain text -#: content/_index.md -#, no-wrap -msgid "**[Give Organic Maps a try!](#install)**\n" -msgstr "**[Triwch Organic Maps!](#install)**\n" - -#. type: Title ## -#: content/_index.md -#, no-wrap -msgid "Who is paying for the free app?" -msgstr "Pwy sy'n talu am yr ap am ddim?" - -#. type: Plain text -#: content/_index.md -msgid "The app is free for everyone. Please [donate](@/donate/index.md) to support us!" -msgstr "Mae'r ap am ddim i bawb. Os gwelwch yn dda, [cyfrannwch yn ariannol](@/donate/index.md) i'n cynorthwyo!" - -#. type: Plain text -#: content/_index.md -msgid "To donate conveniently, click on your preferred payment method icon below:" -msgstr "I'n cynorthwyo'n ariannol yn gyfleus, cliciwch ar eicon eich hoff ffordd o dalu isod:" - -#. type: Plain text -#: content/_index.md content/donate/index.md -msgid "{{ donate_buttons() }}" -msgstr "{{ donate_buttons() }}" - -#. type: Title ### -#: content/_index.md -#, no-wrap -msgid "Our sponsors:" -msgstr "Ein noddwyr:" - -#. type: Plain text -#: content/_index.md -msgid "[Mythic Beasts](https://www.mythic-beasts.com/) ISP [provides us][mythic_beasts_donation] two virtual servers with 400 TB/month of free bandwidth to help our users with maps downloads and updates." -msgstr "Mae ISP [Mythic Beasts](https://www.mythic-beasts.com/) [yn darparu][mythic_beasts_donation] dau weinydd rhithiol i ni gyda 400 TB/mis o led band i helpu ein defnyddwyr gyda lawr lwytho a diweddaru mapiau." - -#. type: Title ## -#: content/_index.md -#, no-wrap -msgid "Community" -msgstr "Cymuned" - -#. type: Plain text -#: content/_index.md -msgid "Organic Maps is an [open-source software][github] licensed under the Apache License 2.0." -msgstr "Mae Organic Maps yn [feddalwedd ffynhonnell agored][github] sydd wedi'i thrwyddedu o dan y drwydded Apache License 2.0." - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Please join our beta program, suggest your features, and report bugs:" -msgstr "Os gwelwch yn dda, ymunwch â'n system profi beta, awgrymwch eich syniadau, ac adroddwch broblemau:" - -#. type: Bullet: ' * ' -#: content/_index.md -msgid "[iOS Beta (TestFlight)][testflight]" -msgstr "[iOS Beta (TestFlight)][testflight]" - -#. type: Bullet: ' * ' -#: content/_index.md -msgid "[Android Beta (Firebase)][firebase]" -msgstr "[Android Beta (Firebase)][firebase]" - -#. type: Bullet: ' * ' -#: content/_index.md -msgid "[Linux Desktop Beta (Flatpak)][flatpak]" -msgstr "[Bwrdd Gwaith Linux Beta (Flatpak)][flatpak]" - -#. type: Bullet: ' * ' -#: content/_index.md -msgid "[Linux Desktop Beta (packages)][repology]" -msgstr "[Bwrdd Gwaith Linux Beta (packages)][repology]" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Report bugs or issues to [the issue tracker][issues] or [email us][email]." -msgstr "Adroddwch broblemau i'r [olrhain problemau][issues] neu [anfonwch e-bost aton ni][email]." - -#. type: Bullet: '- ' -#: content/_index.md -msgid "[Discuss][ideas] ideas or propose feature requests." -msgstr "[Trafodwch][ideas] syniadau neu gofynnwch am nodweddion newydd." - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Subscribe to our [Telegram Channel][telegram] or to the [matrix space][matrix] for updates." -msgstr "Tanysgrifiwch i'n [sianel Telegram][telegram] neu i'r [gofod matrix][matrix] ar gyfer newyddion." - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Join our [Telegram Group][telegram_chat] to discuss with other users." -msgstr "Ymunwch â'n [grŵp Telegram][telegram_chat] i drafod gyda defnyddwyr arall." - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Visit our [GitHub page][github]." -msgstr "Ymweld â'n [tudalen GitHub][github]." - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Follow our updates in [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." -msgstr "Dilynwch ein newyddion ar [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Join (or create and let us know) local communities: [Hungarian translators Matrix room](https://matrix.to/#/#organicmapstranslate_hu:matrix.org)" -msgstr "" - -#. type: Link reference -#: content/_index.md -#, no-wrap -msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)" -msgstr "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)" - -#. type: Plain text -#: content/_index.md content/donate/index.md content/support-us/index.md -msgid "{{ references() }}" -msgstr "{{ references() }}" - -#. type: Yaml Front Matter Hash Value: description -#: content/donate/index.md -#, no-wrap -msgid "Your money pays for all project-related expenses and motivates us to improve Organic Maps." -msgstr "Mae eich arian yn talu am yr holl daliadau sy'n ymwneud â'r prosiect ac yn ein cymell i wella Organic Maps." - -#. type: Yaml Front Matter Hash Value: extra menu_title -#: content/donate/index.md -#, no-wrap -msgid "Donate" -msgstr "Cyfrannu" - -#. type: Yaml Front Matter Hash Value: title -#: content/donate/index.md -#, no-wrap -msgid "Donate to support the development of Organic Maps" -msgstr "Cyfrannwch i gynorthwyo’r datblygiad o Organic Maps" - -#. type: Plain text -#: content/donate/index.md -msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]** in **[EUR][stripe_eur], [USD][stripe_usd], [GBP][stripe_GBP], [CHF][stripe_chf], [UAH][stripe_uah], [PLN][stripe_pln]**:" -msgstr "Mae'r ap Organic Maps _am ddim i bawb_ diolch i'ch **[cyfraniadau][stripe]**:" - -#. type: Bullet: '- ' -#: content/donate/index.md -msgid "No trackers" -msgstr "Dim tracwyr" - -#. type: Bullet: '- ' -#: content/donate/index.md -msgid "No registration" -msgstr "Dim cofrestru" - -#. type: Bullet: '- ' -#: content/donate/index.md -msgid "Open source" -msgstr "Cod agored" - -#. type: Plain text -#: content/donate/index.md -msgid "Click on your preferred payment method icon below:" -msgstr "Cliciwch ar eicon eich hoff ffordd o dalu isod:" - -#. type: Title ## -#: content/donate/index.md -#, no-wrap -msgid "Why donate to Organic Maps?" -msgstr "Pam rhoi arian i Organic Maps?" - -#. type: Bullet: '1. ' -#: content/donate/index.md -msgid "Our goal is to provide a privacy-focused, fast and easy-to-use alternative to Google Maps and Apple Maps." -msgstr "" - -#. type: Bullet: '2. ' -#: content/donate/index.md -msgid "Improving public map data for the numerous websites, apps and platforms which use OpenStreetMap, and involving more people in contributing map info is our another goal." -msgstr "" - -#. type: Bullet: '3. ' -#: content/donate/index.md -msgid "We rely on your donations to keep Organic Maps open and free for everyone. And free from ads." -msgstr "Rydyn ni'n dibynnu ar eich cyfraniadau i weithredu ein nod o gadw Organic Maps yn agored ac am ddim. A heb hysbysebion." - -#. type: Bullet: '4. ' -#: content/donate/index.md -msgid "We love what we do, and we love our users ❤️." -msgstr "" - -#. type: Title ## -#: content/donate/index.md -#, no-wrap -msgid "Why a free project needs money?" -msgstr "" - -#. type: Bullet: '1. ' -#: content/donate/index.md -msgid "In 2023, Organic Maps got its first million users. Our servers provide free, fast and frequent map updates all over the world." -msgstr "" - -#. type: Bullet: '2. ' -#: content/donate/index.md -msgid "User support, bugfixing and publishing quality app updates are at the top of our priorities. There are [~2000 bug reports and feature requests on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." -msgstr "Ein blaenoriaethau mwyaf yw cefnogaeth defnyddwyr, trwsio problemau, a gwella cadernid yr ap. Mae yna dros [2000 o broblemau ar GitHub][github issues], ac mae'r rhif hwn yn tyfu pob dydd. Mae AppStore, Google Play, a'r e-bost cefnogaeth yn gorlifo â negeseuon a gwynion o broblemau. Rydyn ni eisiau cyflwyno cynnyrch ansawdd uchel." - -#. type: Bullet: '3. ' -#: content/donate/index.md -msgid "With enough money, new features can be developed. To name a few:" -msgstr "Gyda digon o arian, fe all nodweddion newydd gael eu datblygu'n gyflymach, er enghraifft:" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Backup and sync bookmarks and tracks" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "GPS track recorder with GPX export" -msgstr "Recordiwr olrhain GPS sy'n gweithio gyda GPX" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Satellite imagery" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Public Transport" -msgstr "Trafnidiaeth Gyhoeddus" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Traffic and accident reporting" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Photos and Reviews" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Map styles for different activities" -msgstr "Arddulliau map gwell ar gyfer gweithgareddau gwahanol" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Hill shading and 3D terrain" -msgstr "Graddliwio llethrau a thir 3D" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "More advanced OpenStreetMap editor" -msgstr "Gwella'r golygydd OpenStreetMap" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Better offline address search, routing, and navigation" -msgstr "Chwilio cyfeiriadau, llwybro, a llywio all-lein gwell" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "… and [many other][github issues] features you want and love" -msgstr "… a [nifer o nodweddion][github issues] arall rydych chi eisiau ac yn caru" - -#. type: Title ## -#: content/donate/index.md -#, no-wrap -msgid "How to donate?" -msgstr "Sut i gyfrannu?" - -#. type: Plain text -#: content/donate/index.md -msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. One-time donations are appreciated too." -msgstr "Cyfraniadau ailadroddus yw'r ffordd orau o sicrhau mewnlif eithaf sefydlog o arian ar gyfer y prosiect ac i'n cymell ar gyfer tasgau a nodau hirdymor. Ond fe allech chi gyfrannu unwaith hefyd." - -#. type: Title ### -#: content/donate/index.md -#, no-wrap -msgid "Bank Transfer" -msgstr "Trosglwyddiad Banc" - -#. type: Plain text -#: content/donate/index.md -msgid "{{ bank_transfer() }}" -msgstr "{{ bank_transfer() }}" - -#. type: Title ### -#: content/donate/index.md -#, no-wrap -msgid "Crypto" -msgstr "Crypto" - -#. type: Plain text -#: content/donate/index.md -msgid "Please consider donating annually to reduce total fees." -msgstr "Ystyriwch gyfrannu'n flynyddol i leihau cyfanswm ffioedd." - -#. type: Plain text -#: content/donate/index.md -msgid "{{ crypto_table() }}" -msgstr "{{ crypto_table() }}" - -#. type: Title ## -#: content/donate/index.md -#, no-wrap -msgid "Can you help us in any other way?" -msgstr "Allwch chi ein helpu mewn unrhyw ffordd arall?" - -#. type: Plain text -#: content/donate/index.md -msgid "Yes! There are many ways to support Organic Maps. Please see [Support Us](@/support-us/index.md) page for more details." -msgstr "Ie! Mae yna nifer o ddulliau o gynorthwyo Organic Maps. Os gwelwch yn dda, gwelwch y dudalen [Cefnogi Ni](@/support-us/index.md) am fwy o fanylion." - -#. type: Yaml Front Matter Hash Value: description -#: content/news/_index.md -#, no-wrap -msgid "Stay in touch with the latest Organic Maps releases, news and updates from our team" -msgstr "Arhoswch mewn cysylltiad gyda chyhoeddiadau o fersiynau newydd o Organic Maps a newyddion o'n tîm" - -#. type: Yaml Front Matter Hash Value: extra menu_title -#: content/news/_index.md -#, no-wrap -msgid "News" -msgstr "Newyddion" - -#. type: Yaml Front Matter Hash Value: title -#: content/news/_index.md -#, no-wrap -msgid "Organic Maps: Latest news and updates from our team" -msgstr "Organic Maps: Y newyddion a chyhoeddiadau diweddaf o'n tîm" - -#. type: Yaml Front Matter Hash Value: description -#: content/privacy/index.md -#, no-wrap -msgid "No tracking, no ads, no data collection, no statistics collection, no spyware" -msgstr "Dim tracio, dim hysbysebion, dim casgliad data, dim casgliad ystadegau, dim ysbiwedd" - -#. type: Yaml Front Matter Hash Value: extra menu_title -#: content/privacy/index.md -#, no-wrap -msgid "Privacy" -msgstr "Preifatrwydd" - -#. type: Yaml Front Matter Hash Value: title -#: content/privacy/index.md -#, no-wrap -msgid "Organic Maps: Privacy Policy" -msgstr "Organic Maps: Polisi Preifatrwydd" - -#. type: Plain text -#: content/privacy/index.md -msgid "Organic Maps respects your privacy and DOES NOT TRACK YOU." -msgstr "Mae Organic Maps yn parchu eich preifatrwydd ac NID YW'N EICH TRACIO." - -#. type: Plain text -#: content/privacy/index.md -msgid "Unlike most other applications, there is no tracking, no ads, no spyware, no data and statistics collection in Organic Maps." -msgstr "Yn wahanol i'r rhan fwyaf o apiau arall, does yna ddim tracio, dim hysbysebion, dim ysbiwedd, a dim casgliad data na chasgliad ystadegau yn Organic Maps." - -#. type: Plain text -#: content/privacy/index.md -msgid "Stay away from Big Tech's prying eyes!" -msgstr "Arhoswch i ffwrdd o lygaid cwmnïau technoleg fawr!" - -#. type: Plain text -#: content/privacy/index.md content/terms/index.md -msgid "If you have any questions or suggestions, please contact us at [legal@organicmaps.app](mailto:legal@organicmaps.app)." -msgstr "Os oes gennych chi unrhyw gwestiynau neu awgrymiadau, cysylltwch â ni at [legal@organicmaps.app](mailto:legal@organicmaps.app)." - -#. type: Plain text -#: content/privacy/index.md -#, no-wrap -msgid "This policy is effective as of 2021-04-24.\n" -msgstr "Mae'r polisi yma'n gweithredu ers 2021-04-24.\n" - -#. type: Yaml Front Matter Hash Value: description -#: content/support-us/index.md -#, no-wrap -msgid "Different ways to support the development of our free application" -msgstr "Ffyrdd gwahanol o gynorthwyo’r datblygiad o'n hap am ddim" - -#. type: Yaml Front Matter Hash Value: extra menu_title -#: content/support-us/index.md -#, no-wrap -msgid "Support Us" -msgstr "Cefnogi Ni" - -#. type: Yaml Front Matter Hash Value: title -#: content/support-us/index.md -#, no-wrap -msgid "Support the development of Organic Maps" -msgstr "Cefnogwch ddatblygiad Organic Maps" - -#. type: Plain text -#: content/support-us/index.md -msgid "Organic Maps is a free, open-source app. It is free from ads, it does not collect your personal information, and it is developed by a few enthusiasts with the help of the community." -msgstr "Mae Organic Maps yn ap ffynhonnell agored am ddim. Does dim hysbysebion, nid yw'n casglu eich gwybodaeth bersonol, ac mae'n cael ei datblygu gan ychydig o bobl frwdfrydig gyda chefnogaeth y gymuned." - -#. type: Plain text -#: content/support-us/index.md -msgid "There are different ways to support the development:" -msgstr "Mae yna nifer o ffyrdd gwahanol o gefnogi'r datblygiad:" - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "[Donate](@/donate/index.md)! Every dollar or euro counts and helps us to pay for servers and scale." -msgstr "[Cyfrannwch](@/donate/index.md)! Mae pob doler neu ewro yn cyfri ac yn ein helpu i dalu am weinyddion a graddio." - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "Report bugs and share ideas on our [GitHub][github] or via [email][email]." -msgstr "Adroddwch broblemau a rhannwch syniadau ar ein [GitHub][github] neu trwy [e-bost][email]." - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "Help us to [fix bugs][contributing] and do code reviews if you are a developer. Every fixed small issue makes someone happier." -msgstr "Helpwch ni i [drwsio problemau][contributing] a gwnewch adolygiadau cod os ydych chi'n ddatblygwr. Mae pob problem fach sy'n cael ei drwsio yn gwneud i rywun yn fwy hapus." - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "[Translate][translations] missing strings in the app's interface." -msgstr "[Cyfieithwch][translations] linynnau sydd ar goll yn rhyngwyneb yr ap." - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "Translate [App Store][translations_appstore] and [Android][translations_googleplay] descriptions into your language." -msgstr "Cyfieithwch ddisgrifiadau'r ap ar [App Store][translations_appstore] ac [Android][translations_googleplay] i'ch iaith chi." - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "[Translate][translations_website] our web site into your language." -msgstr "[Cyfieithwch][translations_website] ein gwefan i'ch iaith chi." - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "Join the [OpenStreetMap][openstreetmap] community and contribute to the maps data." -msgstr "Ymunwch â'r gymuned [OpenStreetMap][openstreetmap] a chyfrannwch at ddata'r map." - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "Fix red cities found by our [public transport validator][public_transport_validator], for subways and light rails to work in the app." -msgstr "Trwsiwch ddinasoedd coch sydd wedi'i ffeindio gan ein [dilyswr trafnidiaeth gyhoeddus][public_transport_validator], er mwyn i drenau tanddaearol a rheilffyrdd ysgafn weithio yn yr ap." - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "Support other users on [GitHub][issues], [Telegram][telegram_chat], [Matrix][matrix], [Twitter][twitter], [Facebook][facebook], [Instagram][instagram]." -msgstr "Cynorthwywch ddefnyddwyr arall ar [GitHub][issues], [Telegram][telegram_chat], [Matrix][matrix], [Twitter][twitter], [Facebook][facebook], [Instagram][instagram]." - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "Tell everyone about Organic Maps. A bigger community is a stronger community." -msgstr "Dywedwch wrth bawb am Organic Maps. Mae cymuned ehangach yn gymuned gryfach." - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "Rate us in [Google Play][googleplay_review], [Apple Store][appstore_review], [Huawei Appgallery][appgallery_review]." -msgstr "Sgoriwch ni ar [Google Play][googleplay_review], [Apple Store][appstore_review], [Huawei Appgallery][appgallery_review]." - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "Any help is welcome!" -msgstr "Rydyn ni'n croesawi unrhyw help!" - -#. type: Plain text -#: content/support-us/index.md -msgid "Our small team is very grateful for your feedback and support. Organic Maps would not be possible without our users ❤️." -msgstr "Mae ein tîm bach yn werthfawr iawn o'ch adborth a'ch cefnogaeth. Ni fydd Organic Maps yn bosib heb ein defnyddwyr ❤️." - -#. type: Yaml Front Matter Hash Value: description -#: content/terms/index.md -#, no-wrap -msgid "Terms of use for Organic Maps application" -msgstr "Telerau Defnyddio ap Organic Maps" - -#. type: Yaml Front Matter Hash Value: extra menu_title -#: content/terms/index.md -#, no-wrap -msgid "Terms" -msgstr "Telerau" - -#. type: Yaml Front Matter Hash Value: title -#: content/terms/index.md -#, no-wrap -msgid "Organic Maps: terms" -msgstr "Organic Maps: telerau" - -#. type: Plain text -#: content/terms/index.md -msgid "This app is licensed under the Apache License, Version 2.0 (the \"License\"); you may not use this application except in compliance with the License." -msgstr "Mae'r ap yma wedi'i thrwyddedu o dan y drwydded Apache License, fersiwn 2.0 (y \"Trwydded\"); ni chewch ddefnyddio'r ap yma heblaw am mewn cydymffurfiad â'r Drwydded." - -#. type: Plain text -#: content/terms/index.md -msgid "You may obtain a copy of the License at [http://www.apache.org/licenses/LICENSE-2.0][license]" -msgstr "Fe allech gael copi o'r drwydded at [http://www.apache.org/licenses/LICENSE-2.0][license]" - -#. type: Plain text -#: content/terms/index.md -msgid "Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License." -msgstr "Heblaw ei bod yn ofynnol gan gyfraith gymwys neu wedi'i chytuno'n ysgrifenedig, mae meddalwedd sy'n cael ei ddosbarthu o dan y Drwydded yn cael ei ddosbarthu ar SAIL \"FEL Y MAE\", HEB WARANTAU NEU AMODAU O UNRHYW FATH, naill ai wedi'i ddatgan neu'n ymhlyg. Gwelwch y Drwydded ar gyfer yr iaith benodol sy'n llywodraethu'r caniatadau ac unrhyw gyfyngiadau o dan y Drwydded." - -#. type: Plain text -#: content/terms/index.md -msgid "Most libraries in the following directories on [GitHub][github] made by other people and organizations and licensed in different ways:" -msgstr "Mae'r rhan fwyaf o lyfrgelloedd yn y cyfeiriaduron canlynol ar [GitHub][github] wedi'u creu gan bobl a sefydliadau gwahanol ac wedi'u drwyddedu yn ffyrdd gwahanol:" - -#. type: Bullet: '- ' -#: content/terms/index.md -msgid "3party" -msgstr "3party" - -#. type: Bullet: '- ' -#: content/terms/index.md -msgid "tools" -msgstr "Offer" - -#. type: Plain text -#: content/terms/index.md -msgid "Please refer to their LICENSE, COPYING or NOTICE files for terms of use." -msgstr "Os gwelwch yn dda, cyfeiriwch at eu ffeiliau TRWYDDED, COPÏO neu SYLWADAU ar gyfer y telerau o ddefnydd." - -#. type: Plain text -#: content/terms/index.md -msgid "See also [data/copyright.html][copyright] file for a full list of copyright notices for Organic Maps application." -msgstr "Gwelwch hefyd y ffeil [data/copyright.html][copyright] ar gyfer rhestr lawn o hysbysiadau hawlfraint am yr ap Organic Maps." - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[github]: https://github.com/organicmaps/organicmaps" -msgstr "" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[license]: http://www.apache.org/licenses/LICENSE-2.0" -msgstr "[license]: http://www.apache.org/licenses/LICENSE-2." - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html" -msgstr "" - -#. type: Hash Value: address -#: translations.yaml -#, no-wrap -msgid "Address" -msgstr "Cyfeiriad" - -#. type: Hash Value: back -#: translations.yaml -#, no-wrap -msgid "Back to News" -msgstr "Yn ôl i Newyddion" - -#. type: Hash Value: contact -#: translations.yaml -#, no-wrap -msgid "Contact Us" -msgstr "Cysylltwch â ni" - -#. type: Hash Value: engines -#: translations.yaml -#, no-wrap -msgid "Supported TTS Engines" -msgstr "" - -#. type: Hash Value: faq-menu-title -#: translations.yaml -#, no-wrap -msgid "F.A.Q." -msgstr "" - -#. type: Hash Value: install-appgallery -#: translations.yaml -#, no-wrap -msgid "Install Organic Maps from Huawei AppGallery" -msgstr "Lawr lwythwch Organic Maps o Huawei AppGallery" - -#. type: Hash Value: install-appstore -#: translations.yaml -#, no-wrap -msgid "Install Organic Maps from the AppStore" -msgstr "Lawr lwythwch Organic Maps o AppStore" - -#. type: Hash Value: install-fdroid -#: translations.yaml -#, no-wrap -msgid "Install Organic Maps from F-Droid" -msgstr "Lawr lwythwch Organic Maps o F-Droid" - -#. type: Hash Value: install-googleplay -#: translations.yaml -#, no-wrap -msgid "Install Organic Maps from Google Play" -msgstr "Lawr lwythwch Organic Maps o Google Play" - -#. type: Hash Value: language -#: translations.yaml -#, no-wrap -msgid "English" -msgstr "Cymraeg" - -#. type: Hash Value: language-word -#: translations.yaml -#, no-wrap -msgid "Language" -msgstr "Iaith" - -#. type: Hash Value: name -#: translations.yaml -#, no-wrap -msgid "Name" -msgstr "Enw" - -#. type: Hash Value: token -#: translations.yaml -#, no-wrap -msgid "Token" -msgstr "Tocyn" - -#~ msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]**:" -#~ msgstr "Mae'r ap Organic Maps _am ddim i bawb_ diolch i'ch **[cyfraniadau][stripe]**:" - -#~ msgid "We are a few enthusiasts contributing in our free time, and spending our families' money on the project. We love what we do, and we love our users ❤️." -#~ msgstr "Ychydig o bobl frwdfrydig ydyn ni sy'n cyfrannu at y prosiect yn ein hamser rhydd, ac yn defnyddio arian ein teuluoedd i dalu am y prosiect. Rydyn ni'n caru'r hyn rydyn ni'n ei wneud, ac rydyn ni'n caru ein defnyddwyr ❤️." - -#~ msgid "With your support, we want to become a better, privacy-focused version of Google Maps." -#~ msgstr "Gydag eich cefnogaeth, rydyn ni'n bwriadu bod yn fersiwn well o Google Maps sy'n parchu eich preifatrwydd." - -#, no-wrap -#~ msgid "What will the money be used for?" -#~ msgstr "Ar gyfer beth fydd yr arian yn cael ei defnyddio?" - -#~ msgid "We pay for fast servers, so anyone in the World can download free map data updates without delays. It's hundreds of terabytes monthly, and the amount is growing." -#~ msgstr "Rydym yn talu am weinyddion cyflym, fel bod pawb yn y byd yn gallu lawr lwytho data mapiau agored heb oediad. Mae'r gweinyddion yn prosesu cannoedd o derabeitiau pob mis, ac mae'r maint yn tyfu." - -#~ msgid "Weekly and automated map data updates" -#~ msgstr "Diweddariadau mapiau wythnosol ac awtomatig" - -#~ msgid "Bookmarks backup and sync" -#~ msgstr "Cydweddu a chadw llyfrnodau wrth gefn" - -#~ msgid "Android Auto" -#~ msgstr "Android Auto" - -#, no-wrap -#~ msgid "" -#~ "[stripe]: https://donate.organicmaps.app/ \"Donate via Stripe\"\n" -#~ "[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" -#~ msgstr "" -#~ "[stripe]: https://donate.organicmaps.app/ \"Cyfrannwch gyda Stripe\"\n" -#~ "[github issues]: https://github.com/organicmaps/organicmaps/issues \"Problemau GitHub\"\n" diff --git a/po/content.de.po b/po/content.de.po index 1d591af3..71f51f70 100644 --- a/po/content.de.po +++ b/po/content.de.po @@ -4,7 +4,7 @@ # FIRST AUTHOR , YEAR. # msgid "" -msgstr "Project-Id-Version: Organic Maps Website 1.0\nPO-Revision-Date: 2024-04-02 19:54+0000\nLast-Translator: Weblate Translation Memory \nLanguage-Team: German \nLanguage: de\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-Forms: nplurals=2; plural=n != 1;\nX-Generator: Weblate 5.5-dev\n" +msgstr "Project-Id-Version: Organic Maps Website 1.0\nPO-Revision-Date: 2023-06-20 09:51+0000\nLast-Translator: nautilusx \nLanguage-Team: German \nLanguage: de\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-Forms: nplurals=2; plural=n != 1;\nX-Generator: Weblate 4.18.1\n" #. type: Yaml Front Matter Hash Value: description #: content/_index.md @@ -27,23 +27,15 @@ msgstr "Organic Maps: Offline Wandern, Radfahren, Wanderwege und Navigation" #. type: Plain text #: content/_index.md #, no-wrap -msgid "" -"**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, drivers and cyclists based on **[OpenStreetMap][openstreetmap]** data created by the community.\n" -"It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" +msgid "**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, and cyclists based on top of crowd-sourced **[OpenStreetMap][openstreetmap]** data. It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" msgstr "**Organic Maps** ist eine freie und kostenlose Offline-Karten-App für Android und iOS für Reisende, Touristen, Wanderer und Radfahrer, die auf den Daten von **[OpenStreetMap][openstreetmap]** basiert. Es handelt sich um eine datenschutzfreundliche, quelloffene [Abspaltung][fork] der **Maps.me**-App (früher bekannt als [**MapsWithMe**][mapswithme]), die von denselben Leuten gepflegt wird, die **MapsWithMe** im Jahr 2011 erstellt haben.\n" #. type: Plain text #: content/_index.md #, no-wrap -msgid "**Organic Maps** is one of the few applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card, and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" +msgid "**Organic Maps** is one of the only applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card (by the way, your operator constantly tracks you), and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" msgstr "**Organic Maps** ist heutzutage eine der wenigen Apps, die 100% ihrer Funktionen ohne aktive Internetverbindung unterstützt. Installiere Organic Maps, lade Karten herunter, wirf deine SIM-Karte weg (dein Betreiber verfolgt dich übrigens ständig) und mache einen Wochenausflug mit einer einzigen Akkuladung, ohne dass ein Byte an das Netz gesendet wird.\n" -#. type: Plain text -#: content/_index.md -#, no-wrap -msgid "> In 2023, Organic Maps [got its first million](@/news/2023-12-23/281/index.md) users. [Help us](@/donate/index.md) to scale!\n" -msgstr "> Im Jahr 2023 erreichte Organic Maps [seine ersten Million](@/news/2023-12-23/281/index.md) Nutzer. [Hilf uns](@/donate/index.md), zu skalieren!\n" - #. type: Title ### #: content/_index.md #, no-wrap @@ -103,8 +95,8 @@ msgstr "Höhenlinien, Höhenprofile, Bergspitzen und Steigungen" #. type: Bullet: '- ' #: content/_index.md -msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance and Android Auto" -msgstr "Schritt-für-Schritt-Navigation für Fußgänger, Radfahrer und Autofahrer mit Sprachführung, Android Auto" +msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance" +msgstr "Schritt-für-Schritt-Navigation für Fußgänger, Radfahrer und Autofahrer mit Sprachführung" #. type: Bullet: '- ' #: content/_index.md @@ -113,8 +105,8 @@ msgstr "Schnelle Offline-Suche von Orten auf der Karte" #. type: Bullet: '- ' #: content/_index.md -msgid "Export/import bookmarks in KML/KMZ, import GPX" -msgstr "Export und Import von Lesezeichen im KML/KMZ-Format, Import GPX" +msgid "Bookmarks and tracks in KML, KMZ, GPX formats" +msgstr "Export und Import von Lesezeichen im KML/KMZ-Format (GPX ist [geplant][gpx_issue])" #. type: Bullet: '- ' #: content/_index.md @@ -224,11 +216,13 @@ msgstr "{{ exodus_screenshot() }}" #. type: Plain text #: content/_index.md +#, markdown-text msgid "The iOS application is verified by [TrackerControl for iOS][trackercontrol]:" msgstr "Die iOS-App wurde von [TrackerControl für iOS][trackercontrol] geprüft:" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ trackercontrol_screenshot() }}" msgstr "{{ trackercontrol_screenshot() }}" @@ -368,22 +362,17 @@ msgstr "Besuche unsere [GitHub-Seite][github]." #. type: Bullet: '- ' #: content/_index.md -msgid "Follow our updates in [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." -msgstr "Verfolge unsere Neuigkeiten auf [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Join (or create and let us know) local communities: [Hungarian translators Matrix room](https://matrix.to/#/#organicmapstranslate_hu:matrix.org)" -msgstr "Trete lokalen Gemeinschaften bei (oder erstelle eine und informiere uns): [Ungarische Übersetzer Matrix-Raum](https://matrix.to/#/#organicmapstranslate_hu:matrix.org)" - -#. type: Link reference -#: content/_index.md -#, no-wrap -msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)" -msgstr "[fork]: https://de.wikipedia.org/wiki/Abspaltung_(Softwareentwicklung)" +msgid "Follow our updates in [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." +msgstr "Verfolge unsere Neuigkeiten auf [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." #. type: Plain text -#: content/_index.md content/donate/index.md content/support-us/index.md +#: content/_index.md +#, no-wrap +msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)\n" +msgstr "[fork]: https://de.wikipedia.org/wiki/Abspaltung_(Softwareentwicklung)\n" + +#. type: Plain text +#: content/_index.md content/support-us/index.md msgid "{{ references() }}" msgstr "{{ references() }}" @@ -407,8 +396,8 @@ msgstr "Spende, um die Entwicklung von Organic Maps zu unterstützen" #. type: Plain text #: content/donate/index.md -msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]** in **[EUR][stripe_eur], [USD][stripe_usd], [GBP][stripe_GBP], [CHF][stripe_chf], [UAH][stripe_uah], [PLN][stripe_pln]**:" -msgstr "Organic Maps ist _kostenlos für alle_ dank deiner **[donations][stripe]**:" +msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]**:" +msgstr "Organic Maps ist _kostenlos für alle_ dank deiner **[Spende][stripe]**:" #. type: Bullet: '- ' #: content/donate/index.md @@ -438,78 +427,63 @@ msgstr "Warum für Organic Maps spenden?" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "Our goal is to provide a privacy-focused, fast and easy-to-use alternative to Google Maps and Apple Maps." -msgstr "Unser Ziel ist es, eine datenschutzorientierte, schnelle und benutzerfreundliche Alternative zu Google Maps und Apple Maps zu bieten." +msgid "We rely on your donations to carry out our mission to keep Organic Maps open and free. And free from ads." +msgstr "Wir sind auf deine Spenden angewiesen, damit wir Organic Maps offen und kostenlos halten können. Und frei von Werbung." #. type: Bullet: '2. ' #: content/donate/index.md -msgid "Improving public map data for the numerous websites, apps and platforms which use OpenStreetMap, and involving more people in contributing map info is our another goal." -msgstr "Die Verbesserung öffentlicher Kartendaten für die zahlreichen Websites, Apps und Plattformen, die OpenStreetMap nutzen, und die Einbeziehung weiterer Personen in die Bereitstellung von Karteninformationen ist ein weiteres unserer Ziele." +msgid "We are a few enthusiasts contributing in our free time, and spending our families' money on the project. We love what we do, and we love our users ❤️." +msgstr "Wir sind ein paar Enthusiasten, die in ihrer Freizeit einen Beitrag leisten und das Geld unserer Familien für das Projekt ausgeben. Wir lieben, was wir tun, und wir lieben unsere Nutzer ❤️." #. type: Bullet: '3. ' #: content/donate/index.md -msgid "We rely on your donations to keep Organic Maps open and free for everyone. And free from ads." -msgstr "Wir sind auf deine Spenden angewiesen, damit wir Organic Maps offen und kostenlos halten können. Und frei von Werbung." - -#. type: Bullet: '4. ' -#: content/donate/index.md -msgid "We love what we do, and we love our users ❤️." -msgstr "Wir lieben was wir tun, und wir lieben unsere Nutzer ❤️." +msgid "With your support, we want to become a better, privacy-focused version of Google Maps." +msgstr "Mit deiner Unterstützung wollen wir eine bessere, datenschutzfreundlichere Version von Google Maps werden." #. type: Title ## #: content/donate/index.md #, no-wrap -msgid "Why a free project needs money?" -msgstr "Warum ein kostenloses Projekt Geld braucht?" +msgid "What will the money be used for?" +msgstr "Wofür wird das Geld verwendet?" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "In 2023, Organic Maps got its first million users. Our servers provide free, fast and frequent map updates all over the world." -msgstr "Im Jahr 2023 hat Organic Maps seine ersten Millionen Nutzer. Unsere Server bieten kostenlose, schnelle und häufige Kartenaktualisierungen auf der ganzen Welt." +msgid "We pay for fast servers, so anyone in the World can download free map data updates without delays. It's hundreds of terabytes monthly, and the amount is growing." +msgstr "Wir zahlen für schnelle Server, damit jeder in der Welt kostenlos und ohne Verzögerung aktuelle Kartendaten herunterladen kann. Es handelt sich um Hunderte von Terabytes monatlich, und die Menge wächst." #. type: Bullet: '2. ' #: content/donate/index.md -msgid "User support, bugfixing and publishing quality app updates are at the top of our priorities. There are [~2000 bug reports and feature requests on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." -msgstr "Benutzerunterstützung, Bugfixing und die Verbesserung der Stabilität der App stehen ganz oben auf unserer Prioritätenliste. Es gibt mehr als 2000 Probleme auf GitHub, und diese Zahl wächst täglich. AppStore, Google Play und Support-E-Mails werden mit Kommentaren und Fehlern überflutet. Wir wollen ein hochwertiges Produkt liefern." +msgid "User support, bugfixing, and improving the stability of the app are at the top of our priorities. There are [1800+ issues on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." +msgstr "Benutzerunterstützung, Bugfixing und die Verbesserung der Stabilität der App stehen ganz oben auf unserer Prioritätenliste. Es gibt mehr als 1800 Probleme auf GitHub, und diese Zahl wächst täglich. AppStore, Google Play und Support-E-Mails werden mit Kommentaren und Fehlern überflutet. Wir wollen ein hochwertiges Produkt liefern." #. type: Bullet: '3. ' #: content/donate/index.md -msgid "With enough money, new features can be developed. To name a few:" +msgid "With enough money, new features can be developed faster, for example:" msgstr "Mit genügend Geld können neue Funktionen schneller entwickelt werden, zum Beispiel:" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Backup and sync bookmarks and tracks" -msgstr "Sichere und synchronisiere Lesezeichen und Strecken" +msgid "Weekly and automated map data updates" +msgstr "Wöchentliche und automatische Aktualisierung der Kartendaten" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "GPS track recorder with GPX export" +msgid "Bookmarks backup and sync" +msgstr "Sicherung und Synchronisierung von Lesezeichen" + +#. type: Bullet: ' - ' +#: content/donate/index.md +msgid "Android Auto" +msgstr "Android Auto" + +#. type: Bullet: ' - ' +#: content/donate/index.md +msgid "GPS track recorder with GPX support" msgstr "GPS-Kursaufzeichnung mit GPX-Unterstützung" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Satellite imagery" -msgstr "Satellitenbilder" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Public Transport" -msgstr "Öffentlicher Verkehr" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Traffic and accident reporting" -msgstr "Verkehrs- und Unfallmeldung" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Photos and Reviews" -msgstr "Fotos und Bewertungen" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Map styles for different activities" +msgid "Better map styles for different activities" msgstr "Bessere Kartenstile für verschiedene Aktivitäten" #. type: Bullet: ' - ' @@ -519,7 +493,7 @@ msgstr "Hügelschattierung und 3D-Gelände" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "More advanced OpenStreetMap editor" +msgid "Improve the OpenStreetMap editor" msgstr "Verbesserung des OpenStreetMap-Editors" #. type: Bullet: ' - ' @@ -527,6 +501,11 @@ msgstr "Verbesserung des OpenStreetMap-Editors" msgid "Better offline address search, routing, and navigation" msgstr "Bessere Offline-Adressensuche, Routing und Navigation" +#. type: Bullet: ' - ' +#: content/donate/index.md +msgid "Public Transport" +msgstr "Öffentlicher Verkehr" + #. type: Bullet: ' - ' #: content/donate/index.md msgid "… and [many other][github issues] features you want and love" @@ -540,7 +519,7 @@ msgstr "Wie kann man spenden?" #. type: Plain text #: content/donate/index.md -msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. One-time donations are appreciated too." +msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. But you can also donate one time." msgstr "Wiederkehrende Spenden sind der beste Weg, um ein relativ stabiles Einkommen für das Projekt zu sichern und uns für langfristige Aufgaben und Ziele zu motivieren. Du kannst aber auch gern einmalig spenden." #. type: Title ### @@ -581,6 +560,16 @@ msgstr "Kannst du uns auf andere Weise helfen?" msgid "Yes! There are many ways to support Organic Maps. Please see [Support Us](@/support-us/index.md) page for more details." msgstr "Ja! Es gibt viele Möglichkeiten, Organic Maps zu unterstützen. Weitere Details findest du auf der [Beitragen](@/support-us/index.de.md) Seite." +#. type: Plain text +#: content/donate/index.md +#, no-wrap +msgid "" +"[stripe]: https://donate.organicmaps.app/ \"Donate via Stripe\"\n" +"[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" +msgstr "" +"[stripe]: https://donate.organicmaps.app/ \"Über Stripe spenden\"\n" +"[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" + #. type: Yaml Front Matter Hash Value: description #: content/news/_index.md #, no-wrap @@ -794,23 +783,17 @@ msgstr "Die Nutzungsbedingungen entnimmst du bitte den LICENSE, COPYING oder NOT msgid "See also [data/copyright.html][copyright] file for a full list of copyright notices for Organic Maps application." msgstr "In der Datei [data/copyright.html][copyright] findest du die vollständige Liste der Copyright-Hinweise für die Organic Maps App." -#. type: Link reference +#. type: Plain text #: content/terms/index.md #, no-wrap -msgid "[github]: https://github.com/organicmaps/organicmaps" -msgstr "[github]: https://github.com/organicmaps/organicmaps" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[license]: http://www.apache.org/licenses/LICENSE-2.0" -msgstr "[license]: http://www.apache.org/licenses/LICENSE-2.0" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html" -msgstr "[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html" +msgid "" +"[github]: https://github.com/organicmaps/organicmaps\n" +"[license]: http://www.apache.org/licenses/LICENSE-2.0\n" +"[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html\n" +msgstr "" +"[github]: https://github.com/organicmaps/organicmaps\n" +"[license]: http://www.apache.org/licenses/LICENSE-2.0\n" +"[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html\n" #. type: Hash Value: address #: translations.yaml @@ -830,18 +813,6 @@ msgstr "Zurück zu den Neuigkeiten" msgid "Contact Us" msgstr "Kontakt" -#. type: Hash Value: engines -#: translations.yaml -#, no-wrap -msgid "Supported TTS Engines" -msgstr "Unterstützte TTS-Modelle" - -#. type: Hash Value: faq-menu-title -#: translations.yaml -#, no-wrap -msgid "F.A.Q." -msgstr "FAQ" - #. type: Hash Value: install-appgallery #: translations.yaml #, no-wrap @@ -872,12 +843,6 @@ msgstr "Installiere Organic Maps von Google Play" msgid "English" msgstr "Deutsch" -#. type: Hash Value: language-word -#: translations.yaml -#, no-wrap -msgid "Language" -msgstr "Sprache" - #. type: Hash Value: name #: translations.yaml #, no-wrap @@ -890,39 +855,6 @@ msgstr "Name" msgid "Token" msgstr "Token" -#~ msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]**:" -#~ msgstr "Organic Maps ist _kostenlos für alle_ dank deiner **[Spende][stripe]**:" - -#~ msgid "We are a few enthusiasts contributing in our free time, and spending our families' money on the project. We love what we do, and we love our users ❤️." -#~ msgstr "Wir sind ein paar Enthusiasten, die in ihrer Freizeit einen Beitrag leisten und das Geld unserer Familien für das Projekt ausgeben. Wir lieben, was wir tun, und wir lieben unsere Nutzer ❤️." - -#~ msgid "With your support, we want to become a better, privacy-focused version of Google Maps." -#~ msgstr "Mit deiner Unterstützung wollen wir eine bessere, datenschutzfreundlichere Version von Google Maps werden." - -#, no-wrap -#~ msgid "What will the money be used for?" -#~ msgstr "Wofür wird das Geld verwendet?" - -#~ msgid "We pay for fast servers, so anyone in the World can download free map data updates without delays. It's hundreds of terabytes monthly, and the amount is growing." -#~ msgstr "Wir zahlen für schnelle Server, damit jeder in der Welt kostenlos und ohne Verzögerung aktuelle Kartendaten herunterladen kann. Es handelt sich um Hunderte von Terabytes monatlich, und die Menge wächst." - -#~ msgid "Weekly and automated map data updates" -#~ msgstr "Wöchentliche und automatische Aktualisierung der Kartendaten" - -#~ msgid "Bookmarks backup and sync" -#~ msgstr "Sicherung und Synchronisierung von Lesezeichen" - -#~ msgid "Android Auto" -#~ msgstr "Android Auto" - -#, no-wrap -#~ msgid "" -#~ "[stripe]: https://donate.organicmaps.app/ \"Donate via Stripe\"\n" -#~ "[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" -#~ msgstr "" -#~ "[stripe]: https://donate.organicmaps.app/ \"Über Stripe spenden\"\n" -#~ "[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" - #, no-wrap #~ msgid "There are different ways to donate:" #~ msgstr "Es gibt verschiedene Möglichkeiten zu spenden:" diff --git a/po/content.el.po b/po/content.el.po index bdf9fedb..b4d034ed 100644 --- a/po/content.el.po +++ b/po/content.el.po @@ -4,13 +4,13 @@ # FIRST AUTHOR , YEAR. # msgid "" -msgstr "Project-Id-Version: Organic Maps Website 1.0\nPO-Revision-Date: 2024-04-02 19:54+0000\nLast-Translator: Weblate Translation Memory \nLanguage-Team: Greek \nLanguage: el\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-Forms: nplurals=2; plural=n != 1;\nX-Generator: Weblate 5.5-dev\n" +msgstr "Project-Id-Version: Organic Maps Website 1.0\nPO-Revision-Date: 2023-05-30 14:51+0000\nLast-Translator: Dimitris Vagiakakos \nLanguage-Team: Greek \nLanguage: el\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-Forms: nplurals=2; plural=n != 1;\nX-Generator: Weblate 4.18-dev\n" #. type: Yaml Front Matter Hash Value: description #: content/_index.md #, no-wrap msgid "Fast detailed offline maps for travelers, tourists, drivers, hikers and cyclists created by MapsWithMe (Maps.Me) app founders." -msgstr "Γρήγοροι και αναλυτικοί χάρτες χωρίς την ανάγκη σύνδεσης στο διαδίκτυο για ταξιδιώτες, τουρίστες, οδηγούς, πεζοπόρους και ποδηλάτες, από τους δημιουργούς του MapsWithMe (Maps.Me)." +msgstr "Γρήγοροι και αναλυτικοί χάρτες χωρίς την ανάγκη σύνδεσης στο διαδίκτυο για ταξιδιώτες, τουρίστες, οδηγούς, πεζοπόρους και ποδηλάτες, από τους δημιουργούς του Maps.Me." #. type: Yaml Front Matter Hash Value: extra menu_title #: content/_index.md @@ -27,21 +27,13 @@ msgstr "Organic Maps Offline Hike, Bike, GPS Navigation" #. type: Plain text #: content/_index.md #, no-wrap -msgid "" -"**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, drivers and cyclists based on **[OpenStreetMap][openstreetmap]** data created by the community.\n" -"It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" +msgid "**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, and cyclists based on top of crowd-sourced **[OpenStreetMap][openstreetmap]** data. It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" msgstr "" #. type: Plain text #: content/_index.md #, no-wrap -msgid "**Organic Maps** is one of the few applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card, and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" -msgstr "" - -#. type: Plain text -#: content/_index.md -#, no-wrap -msgid "> In 2023, Organic Maps [got its first million](@/news/2023-12-23/281/index.md) users. [Help us](@/donate/index.md) to scale!\n" +msgid "**Organic Maps** is one of the only applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card (by the way, your operator constantly tracks you), and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" msgstr "" #. type: Title ### @@ -53,27 +45,30 @@ msgstr "" #. type: Plain text #: content/_index.md msgid "{{ badges() }}" -msgstr "{{ badges() }}" +msgstr "" #. type: Plain text #: content/_index.md msgid "{{ screenshot(src='/images/screenshots/hiking.jpg', alt='Hiking') }}" -msgstr "{{ screenshot(src='/images/screenshots/hiking.jpg', alt='Πεζοπορία') }}" +msgstr "" #. type: Plain text #: content/_index.md msgid "{{ screenshot(src='/images/screenshots/prague.jpg', alt='Prague') }}" -msgstr "{{ screenshot(src='/images/screenshots/prague.jpg', alt='Πράγα') }}" +msgstr "" #. type: Plain text #: content/_index.md -msgid "{{ screenshot(src='/images/screenshots/search.jpg', alt='Offline Search') }}" -msgstr "{{ screenshot(src='/images/screenshots/search.jpg', alt='Αναζήτηση Εκτός Σύνδεσης') }}" +msgid "" +"{{ screenshot(src='/images/screenshots/search.jpg', alt='Offline Search') }}" +msgstr "" #. type: Plain text #: content/_index.md -msgid "{{ screenshot(src='/images/screenshots/dark.jpg', alt='Navigation in dark mode') }}" -msgstr "{{ screenshot(src='/images/screenshots/dark.jpg', alt='Πλοήγηση σε σκοτεινή λειτουργία') }}" +msgid "" +"{{ screenshot(src='/images/screenshots/dark.jpg', alt='Navigation in dark " +"mode') }}" +msgstr "" #. type: Title ## #: content/_index.md @@ -83,12 +78,16 @@ msgstr "Χαρακτηριστικά" #. type: Plain text #: content/_index.md -msgid "Organic Maps is the ultimate companion app for travelers, tourists, hikers, and cyclists:" +msgid "" +"Organic Maps is the ultimate companion app for travelers, tourists, hikers, " +"and cyclists:" msgstr "Το Οrganic Maps είναι ο πληρής πλοηγός για ταξιδιώτες, τουρίστες, οδηγούς, πεζοπόρους και ποδηλάτες:" #. type: Bullet: '- ' #: content/_index.md -msgid "Detailed offline maps with places that don't exist on other maps, thanks to [OpenStreetMap][openstreetmap]" +msgid "" +"Detailed offline maps with places that don't exist on other maps, thanks to " +"[OpenStreetMap][openstreetmap]" msgstr "" #. type: Bullet: '- ' @@ -103,23 +102,24 @@ msgstr "" #. type: Bullet: '- ' #: content/_index.md -msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance and Android Auto" +msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance" msgstr "" #. type: Bullet: '- ' #: content/_index.md msgid "Fast offline search on the map" -msgstr "Γρήγορη αναζήτηση εκτός σύνδεσης στον χάρτη" +msgstr "" #. type: Bullet: '- ' #: content/_index.md -msgid "Export/import bookmarks in KML/KMZ, import GPX" -msgstr "Σελιδοδείκτες και ίχνη σε μορφές KML, KMZ και GPX" +msgid "" +"Bookmarks and tracks in KML, KMZ, GPX formats" +msgstr "" #. type: Bullet: '- ' #: content/_index.md msgid "Dark Mode to protect your eyes" -msgstr "Σκοτεινή λειτουργία για να προστατέψετε τα μάτια σας" +msgstr "" #. type: Bullet: '- ' #: content/_index.md @@ -135,7 +135,7 @@ msgstr "Ελεύθερο και ανοιχτό λογισμικό" #: content/_index.md #, no-wrap msgid "Why Organic?" -msgstr "Γιατί Organic;" +msgstr "" #. type: Plain text #: content/_index.md @@ -170,67 +170,69 @@ msgstr "Χωρίς διαφημίσεις" #. type: Bullet: '- ' #: content/_index.md msgid "No tracking" -msgstr "Χωρίς παρακολούθηση" +msgstr "" #. type: Bullet: '- ' #: content/_index.md msgid "No data collection" -msgstr "Χωρίς συλλογή δεδομένων" +msgstr "" #. type: Bullet: '- ' #: content/_index.md msgid "No phoning home" -msgstr "Χωρίς τηλεφωνήματα στο σπίτι" +msgstr "" #. type: Bullet: '- ' #: content/_index.md msgid "No annoying registration" -msgstr "Χωρίς ενοχλητική εγγραφή" +msgstr "" #. type: Bullet: '- ' #: content/_index.md msgid "No mandatory tutorials" -msgstr "Χωρίς υποχρεωτικά tutorials" +msgstr "" #. type: Bullet: '- ' #: content/_index.md msgid "No noisy email spam" -msgstr "Χωρίς θορυβώδη email spam" +msgstr "" #. type: Bullet: '- ' #: content/_index.md content/donate/index.md msgid "No push notifications" -msgstr "Χωρίς ειδοποιήσεις push" +msgstr "Ειδοποιήσεις προωθήσεων" #. type: Bullet: '- ' #: content/_index.md msgid "No crapware" -msgstr "Χωρίς crapware" +msgstr "" #. type: Bullet: '- ' #: content/_index.md msgid "~~No pesticides~~ Purely organic!" -msgstr "~~Χωρίς φυτοφάρμακα~~ Καθαρά βιολογικό!" +msgstr "" #. type: Plain text #: content/_index.md msgid "The application is verified by [Exodus Privacy Project][exodus]:" -msgstr "Αυτή η εφαρμογή έχει επαληθευτεί από το [Έργο Απορρήτου Exodus ][exodus]:" +msgstr "" #. type: Plain text #: content/_index.md msgid "{{ exodus_screenshot() }}" -msgstr "{{ exodus_screenshot() }}" +msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "The iOS application is verified by [TrackerControl for iOS][trackercontrol]:" -msgstr "Η iOS εφαρμογή έχει επαληθευτεί από το [TrackerControl για iOS][trackercontrol]:" +msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ trackercontrol_screenshot() }}" -msgstr "{{ trackercontrol_screenshot() }}" +msgstr "" #. type: Plain text #: content/_index.md @@ -240,7 +242,7 @@ msgstr "" #. type: Plain text #: content/_index.md msgid "{{ privacy_screenshots() }}" -msgstr "{{ privacy_screenshots() }}" +msgstr "" #. type: Plain text #: content/_index.md @@ -281,28 +283,34 @@ msgstr "" #. type: Plain text #: content/_index.md -msgid "The app is free for everyone. Please [donate](@/donate/index.md) to support us!" +msgid "" +"The app is free for everyone. Please [donate](@/donate/index.md) to support " +"us!" msgstr "" -#. type: Plain text +#. type: Title ### #: content/_index.md -msgid "To donate conveniently, click on your preferred payment method icon below:" +#, no-wrap +msgid "There are different ways to donate:" msgstr "" #. type: Plain text #: content/_index.md content/donate/index.md msgid "{{ donate_buttons() }}" -msgstr "{{ donate_buttons() }}" +msgstr "" #. type: Title ### #: content/_index.md #, no-wrap msgid "Our sponsors:" -msgstr "Οι χορηγοί μας:" +msgstr "Our sponsors" #. type: Plain text #: content/_index.md -msgid "[Mythic Beasts](https://www.mythic-beasts.com/) ISP [provides us][mythic_beasts_donation] two virtual servers with 400 TB/month of free bandwidth to help our users with maps downloads and updates." +msgid "" +"[Mythic Beasts](https://www.mythic-beasts.com/) ISP [provides us]" +"[mythic_beasts_donation] two virtual servers with 400 TB/month of free " +"bandwidth to help our users with maps downloads and updates." msgstr "" #. type: Title ## @@ -313,7 +321,9 @@ msgstr "Κοινότητα" #. type: Plain text #: content/_index.md -msgid "Organic Maps is an [open-source software][github] licensed under the Apache License 2.0." +msgid "" +"Organic Maps is an [open-source software][github] licensed under the Apache " +"License 2.0." msgstr "" #. type: Bullet: '- ' @@ -324,26 +334,27 @@ msgstr "" #. type: Bullet: ' * ' #: content/_index.md msgid "[iOS Beta (TestFlight)][testflight]" -msgstr "[iOS Beta (TestFlight)][testflight]" +msgstr "" #. type: Bullet: ' * ' #: content/_index.md msgid "[Android Beta (Firebase)][firebase]" -msgstr "[Android Beta (Firebase)][firebase]" +msgstr "" #. type: Bullet: ' * ' #: content/_index.md msgid "[Linux Desktop Beta (Flatpak)][flatpak]" -msgstr "[Linux Desktop Beta (Flatpak)][flatpak]" +msgstr "" #. type: Bullet: ' * ' #: content/_index.md msgid "[Linux Desktop Beta (packages)][repology]" -msgstr "[Linux Desktop Beta (πακέτα)][repology]" +msgstr "" #. type: Bullet: '- ' #: content/_index.md -msgid "Report bugs or issues to [the issue tracker][issues] or [email us][email]." +msgid "" +"Report bugs or issues to [the issue tracker][issues] or [email us][email]." msgstr "" #. type: Bullet: '- ' @@ -353,7 +364,9 @@ msgstr "" #. type: Bullet: '- ' #: content/_index.md -msgid "Subscribe to our [Telegram Channel][telegram] or to the [matrix space][matrix] for updates." +msgid "" +"Subscribe to our [Telegram Channel][telegram] or to the [matrix space]" +"[matrix] for updates." msgstr "" #. type: Bullet: '- ' @@ -364,27 +377,25 @@ msgstr "" #. type: Bullet: '- ' #: content/_index.md msgid "Visit our [GitHub page][github]." -msgstr "Επισκεφθείτε την [GitHub σελίδα][github] μας." - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Follow our updates in [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." -msgstr "Ακολουθήστε τις ενημερώσεις μας σε [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Join (or create and let us know) local communities: [Hungarian translators Matrix room](https://matrix.to/#/#organicmapstranslate_hu:matrix.org)" msgstr "" -#. type: Link reference +#. type: Bullet: '- ' #: content/_index.md -msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)" -msgstr "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)" +msgid "" +"Follow our updates in [Mastodon][mastodon], [Facebook][facebook], [Twitter]" +"[twitter], [Instagram][instagram], [Reddit][reddit]." +msgstr "" #. type: Plain text -#: content/_index.md content/donate/index.md content/support-us/index.md +#: content/_index.md +#, no-wrap +msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)\n" +msgstr "" + +#. type: Plain text +#: content/_index.md content/support-us/index.md msgid "{{ references() }}" -msgstr "{{ references() }}" +msgstr "" #. type: Yaml Front Matter Hash Value: description #: content/donate/index.md @@ -406,29 +417,26 @@ msgstr "" #. type: Plain text #: content/donate/index.md -msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]** in **[EUR][stripe_eur], [USD][stripe_usd], [GBP][stripe_GBP], [CHF][stripe_chf], [UAH][stripe_uah], [PLN][stripe_pln]**:" +msgid "" +"Organic Maps app is _free for everyone_ thanks to your **[donations]" +"[stripe]**:" msgstr "" #. type: Bullet: '- ' #: content/donate/index.md msgid "No trackers" -msgstr "Χωρίς ιχνηλάτες" +msgstr "" #. type: Bullet: '- ' #: content/donate/index.md msgid "No registration" -msgstr "Χωρίς εγγραφή" +msgstr "" #. type: Bullet: '- ' #: content/donate/index.md msgid "Open source" msgstr "Ανοικτού Κώδικα" -#. type: Plain text -#: content/donate/index.md -msgid "Click on your preferred payment method icon below:" -msgstr "" - #. type: Title ## #: content/donate/index.md #, no-wrap @@ -437,78 +445,77 @@ msgstr "" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "Our goal is to provide a privacy-focused, fast and easy-to-use alternative to Google Maps and Apple Maps." +msgid "" +"We rely on your donations to carry out our mission to keep Organic Maps open " +"and free. And free from ads." msgstr "" #. type: Bullet: '2. ' #: content/donate/index.md -msgid "Improving public map data for the numerous websites, apps and platforms which use OpenStreetMap, and involving more people in contributing map info is our another goal." +msgid "" +"We are a few enthusiasts contributing in our free time, and spending our " +"families' money on the project. We love what we do, and we love our users ❤️." msgstr "" #. type: Bullet: '3. ' #: content/donate/index.md -msgid "We rely on your donations to keep Organic Maps open and free for everyone. And free from ads." -msgstr "" - -#. type: Bullet: '4. ' -#: content/donate/index.md -msgid "We love what we do, and we love our users ❤️." +msgid "" +"With your support, we want to become a better, privacy-focused version of " +"Google Maps." msgstr "" #. type: Title ## #: content/donate/index.md #, no-wrap -msgid "Why a free project needs money?" +msgid "What will the money be used for?" msgstr "" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "In 2023, Organic Maps got its first million users. Our servers provide free, fast and frequent map updates all over the world." +msgid "" +"We pay for fast servers, so anyone in the World can download free map data " +"updates without delays. It's hundreds of terabytes monthly, and the amount " +"is growing." msgstr "" #. type: Bullet: '2. ' #: content/donate/index.md -msgid "User support, bugfixing and publishing quality app updates are at the top of our priorities. There are [~2000 bug reports and feature requests on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." +msgid "" +"User support, bugfixing, and improving the stability of the app are at the " +"top of our priorities. There are [1800+ issues on GitHub][github issues], " +"and this number is growing every day. AppStore, Google Play, and support " +"emails are overflooded with comments and bugs. We want to deliver a high-" +"quality product." msgstr "" #. type: Bullet: '3. ' #: content/donate/index.md -msgid "With enough money, new features can be developed. To name a few:" +msgid "With enough money, new features can be developed faster, for example:" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Backup and sync bookmarks and tracks" +msgid "Weekly and automated map data updates" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "GPS track recorder with GPX export" +msgid "Bookmarks backup and sync" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Satellite imagery" +msgid "Android Auto" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Public Transport" -msgstr "Δημόσια Συγκοινωνία" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Traffic and accident reporting" +msgid "GPS track recorder with GPX support" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Photos and Reviews" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Map styles for different activities" +msgid "Better map styles for different activities" msgstr "" #. type: Bullet: ' - ' @@ -518,14 +525,19 @@ msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "More advanced OpenStreetMap editor" -msgstr "Βελτιώστε τον επεξεργαστή του OpenStreetMap" +msgid "Improve the OpenStreetMap editor" +msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md msgid "Better offline address search, routing, and navigation" msgstr "" +#. type: Bullet: ' - ' +#: content/donate/index.md +msgid "Public Transport" +msgstr "Public Transport" + #. type: Bullet: ' - ' #: content/donate/index.md msgid "… and [many other][github issues] features you want and love" @@ -539,7 +551,10 @@ msgstr "" #. type: Plain text #: content/donate/index.md -msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. One-time donations are appreciated too." +msgid "" +"Recurring donations are the best way to ensure a relatively stable income " +"for the project and motivate us for long-term tasks and goals. But you can " +"also donate one time." msgstr "" #. type: Title ### @@ -557,7 +572,7 @@ msgstr "{{ bank_transfer() }}" #: content/donate/index.md #, no-wrap msgid "Crypto" -msgstr "Κρυπτονόμισμα" +msgstr "Κρύπτο" #. type: Plain text #: content/donate/index.md @@ -567,17 +582,27 @@ msgstr "" #. type: Plain text #: content/donate/index.md msgid "{{ crypto_table() }}" -msgstr "{{ crypto_table() }}" +msgstr "" #. type: Title ## #: content/donate/index.md #, no-wrap msgid "Can you help us in any other way?" -msgstr "Μπορείτε να μας βοηθήσετε με άλλον τρόπο;" +msgstr "" #. type: Plain text #: content/donate/index.md -msgid "Yes! There are many ways to support Organic Maps. Please see [Support Us](@/support-us/index.md) page for more details." +msgid "" +"Yes! There are many ways to support Organic Maps. Please see [Support Us](@/" +"support-us/index.md) page for more details." +msgstr "" + +#. type: Plain text +#: content/donate/index.md +#, no-wrap +msgid "" +"[stripe]: https://donate.organicmaps.app/ \"Donate via Stripe\"\n" +"[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" msgstr "" #. type: Yaml Front Matter Hash Value: description @@ -590,7 +615,7 @@ msgstr "" #: content/news/_index.md #, no-wrap msgid "News" -msgstr "Νέα" +msgstr "Ειδήσεις" #. type: Yaml Front Matter Hash Value: title #: content/news/_index.md @@ -614,7 +639,7 @@ msgstr "Απόρρητο" #: content/privacy/index.md #, no-wrap msgid "Organic Maps: Privacy Policy" -msgstr "Organic Maps: Πολιτική Απορρήτου" +msgstr "" #. type: Plain text #: content/privacy/index.md @@ -623,7 +648,9 @@ msgstr "" #. type: Plain text #: content/privacy/index.md -msgid "Unlike most other applications, there is no tracking, no ads, no spyware, no data and statistics collection in Organic Maps." +msgid "" +"Unlike most other applications, there is no tracking, no ads, no spyware, no " +"data and statistics collection in Organic Maps." msgstr "" #. type: Plain text @@ -633,7 +660,9 @@ msgstr "" #. type: Plain text #: content/privacy/index.md content/terms/index.md -msgid "If you have any questions or suggestions, please contact us at [legal@organicmaps.app](mailto:legal@organicmaps.app)." +msgid "" +"If you have any questions or suggestions, please contact us at " +"[legal@organicmaps.app](mailto:legal@organicmaps.app)." msgstr "" #. type: Plain text @@ -652,37 +681,45 @@ msgstr "" #: content/support-us/index.md #, no-wrap msgid "Support Us" -msgstr "Υποστήριξε μας" +msgstr "Βοηθήστε την ανάπτυξη της εφαρμογής" #. type: Yaml Front Matter Hash Value: title #: content/support-us/index.md #, no-wrap msgid "Support the development of Organic Maps" -msgstr "Υποστηρίξτε την ανάπτυξη του Organic Maps" +msgstr "" #. type: Plain text #: content/support-us/index.md -msgid "Organic Maps is a free, open-source app. It is free from ads, it does not collect your personal information, and it is developed by a few enthusiasts with the help of the community." +msgid "" +"Organic Maps is a free, open-source app. It is free from ads, it does not " +"collect your personal information, and it is developed by a few enthusiasts " +"with the help of the community." msgstr "" #. type: Plain text #: content/support-us/index.md msgid "There are different ways to support the development:" -msgstr "Υπάρχουν διαφορετικοί τρόποι για να υποστηρίξετε την ανάπτυξη της εφαρμογής:" - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "[Donate](@/donate/index.md)! Every dollar or euro counts and helps us to pay for servers and scale." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md -msgid "Report bugs and share ideas on our [GitHub][github] or via [email][email]." +msgid "" +"[Donate](@/donate/index.md)! Every dollar or euro counts and helps us to pay " +"for servers and scale." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md -msgid "Help us to [fix bugs][contributing] and do code reviews if you are a developer. Every fixed small issue makes someone happier." +msgid "" +"Report bugs and share ideas on our [GitHub][github] or via [email][email]." +msgstr "" + +#. type: Bullet: '- ' +#: content/support-us/index.md +msgid "" +"Help us to [fix bugs][contributing] and do code reviews if you are a " +"developer. Every fixed small issue makes someone happier." msgstr "" #. type: Bullet: '- ' @@ -692,54 +729,67 @@ msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md -msgid "Translate [App Store][translations_appstore] and [Android][translations_googleplay] descriptions into your language." +msgid "" +"Translate [App Store][translations_appstore] and [Android]" +"[translations_googleplay] descriptions into your language." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md msgid "[Translate][translations_website] our web site into your language." -msgstr "[Μεταφράστε][translations_website] τον ιστότοπο μας στη δική σας γλώσσα." - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "Join the [OpenStreetMap][openstreetmap] community and contribute to the maps data." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md -msgid "Fix red cities found by our [public transport validator][public_transport_validator], for subways and light rails to work in the app." +msgid "" +"Join the [OpenStreetMap][openstreetmap] community and contribute to the maps " +"data." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md -msgid "Support other users on [GitHub][issues], [Telegram][telegram_chat], [Matrix][matrix], [Twitter][twitter], [Facebook][facebook], [Instagram][instagram]." +msgid "" +"Fix red cities found by our [public transport validator]" +"[public_transport_validator], for subways and light rails to work in the app." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md -msgid "Tell everyone about Organic Maps. A bigger community is a stronger community." +msgid "" +"Support other users on [GitHub][issues], [Telegram][telegram_chat], [matrix]" +"[matrix], [Twitter][twitter], [Facebook][facebook], [Instagram][instagram]." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md -msgid "Rate us in [Google Play][googleplay_review], [Apple Store][appstore_review], [Huawei Appgallery][appgallery_review]." +msgid "" +"Tell everyone about Organic Maps. A bigger community is a stronger community." +msgstr "" + +#. type: Bullet: '- ' +#: content/support-us/index.md +msgid "" +"Rate us in [Google Play][googleplay], [Apple Store][appstore], [Huawei " +"Appgallery][appgallery]." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md msgid "Any help is welcome!" -msgstr "Οποιαδήποτε βοήθεια είναι ευπρόσδεκτη!" +msgstr "" #. type: Plain text #: content/support-us/index.md -msgid "Our small team is very grateful for your feedback and support. Organic Maps would not be possible without our users ❤️." +msgid "" +"Our small team is very grateful for your feedback and support. Organic Maps " +"would not be possible without our users ❤️." msgstr "" #. type: Yaml Front Matter Hash Value: description #: content/terms/index.md #, no-wrap msgid "Terms of use for Organic Maps application" -msgstr "Όροι χρήσης της εφαρμογής Organic Maps" +msgstr "" #. type: Yaml Front Matter Hash Value: extra menu_title #: content/terms/index.md @@ -751,26 +801,37 @@ msgstr "Όροι" #: content/terms/index.md #, no-wrap msgid "Organic Maps: terms" -msgstr "Organic Maps: όροι" - -#. type: Plain text -#: content/terms/index.md -msgid "This app is licensed under the Apache License, Version 2.0 (the \"License\"); you may not use this application except in compliance with the License." msgstr "" #. type: Plain text #: content/terms/index.md -msgid "You may obtain a copy of the License at [http://www.apache.org/licenses/LICENSE-2.0][license]" +msgid "" +"This app is licensed under the Apache License, Version 2.0 (the \"License" +"\"); you may not use this application except in compliance with the License." msgstr "" #. type: Plain text #: content/terms/index.md -msgid "Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License." +msgid "" +"You may obtain a copy of the License at [http://www.apache.org/licenses/" +"LICENSE-2.0][license]" msgstr "" #. type: Plain text #: content/terms/index.md -msgid "Most libraries in the following directories on [GitHub][github] made by other people and organizations and licensed in different ways:" +msgid "" +"Unless required by applicable law or agreed to in writing, software " +"distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT " +"WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the " +"License for the specific language governing permissions and limitations " +"under the License." +msgstr "" + +#. type: Plain text +#: content/terms/index.md +msgid "" +"Most libraries in the following directories on [GitHub][github] made by " +"other people and organizations and licensed in different ways:" msgstr "" #. type: Bullet: '- ' @@ -781,47 +842,41 @@ msgstr "3party" #. type: Bullet: '- ' #: content/terms/index.md msgid "tools" -msgstr "εργαλεία" +msgstr "tools" #. type: Plain text #: content/terms/index.md -msgid "Please refer to their LICENSE, COPYING or NOTICE files for terms of use." +msgid "" +"Please refer to their LICENSE, COPYING or NOTICE files for terms of use." msgstr "" #. type: Plain text #: content/terms/index.md -msgid "See also [data/copyright.html][copyright] file for a full list of copyright notices for Organic Maps application." +msgid "" +"See also [data/copyright.html][copyright] file for a full list of copyright " +"notices for Organic Maps application." msgstr "" -#. type: Link reference +#. type: Plain text #: content/terms/index.md #, no-wrap -msgid "[github]: https://github.com/organicmaps/organicmaps" -msgstr "" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[license]: http://www.apache.org/licenses/LICENSE-2.0" -msgstr "" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html" +msgid "" +"[github]: https://github.com/organicmaps/organicmaps\n" +"[license]: http://www.apache.org/licenses/LICENSE-2.0\n" +"[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html\n" msgstr "" #. type: Hash Value: address #: translations.yaml #, no-wrap msgid "Address" -msgstr "Διεύθυνση" +msgstr "Address" #. type: Hash Value: back #: translations.yaml #, no-wrap msgid "Back to News" -msgstr "Πίσω στα Νέα" +msgstr "" #. type: Hash Value: contact #: translations.yaml @@ -829,53 +884,35 @@ msgstr "Πίσω στα Νέα" msgid "Contact Us" msgstr "Επικοινωνήστε Μαζί Μας" -#. type: Hash Value: engines -#: translations.yaml -#, no-wrap -msgid "Supported TTS Engines" -msgstr "" - -#. type: Hash Value: faq-menu-title -#: translations.yaml -#, no-wrap -msgid "F.A.Q." -msgstr "" - #. type: Hash Value: install-appgallery #: translations.yaml #, no-wrap msgid "Install Organic Maps from Huawei AppGallery" -msgstr "Εγκαταστήστε το Organic Maps από το Huawei AppGallery" +msgstr "" #. type: Hash Value: install-appstore #: translations.yaml #, no-wrap msgid "Install Organic Maps from the AppStore" -msgstr "Εγκαταστήστε το Organic Maps από το AppStore" +msgstr "" #. type: Hash Value: install-fdroid #: translations.yaml #, no-wrap msgid "Install Organic Maps from F-Droid" -msgstr "Εγκαταστήστε το Organic Maps από το F-Droid" +msgstr "" #. type: Hash Value: install-googleplay #: translations.yaml #, no-wrap msgid "Install Organic Maps from Google Play" -msgstr "Εγκαταστήστε το Organic Maps από το Google Play" +msgstr "" #. type: Hash Value: language #: translations.yaml #, no-wrap msgid "English" -msgstr "Ελληνικά" - -#. type: Hash Value: language-word -#: translations.yaml -#, no-wrap -msgid "Language" -msgstr "Γλώσσα" +msgstr "Αγγλικά" #. type: Hash Value: name #: translations.yaml @@ -889,8 +926,8 @@ msgstr "Όνομα" msgid "Token" msgstr "Token" -#~ msgid "Android Auto" -#~ msgstr "Android Auto" - -#~ msgid "Follow our updates in [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit]." -#~ msgstr "Ακολουθήστε τις ενημερώσεις μας σε [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit]." +#. type: Plain text +#: content/_index.md +#, no-wrap +msgid "**Organic Maps** is one of the only applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card (by the way, your operator constantly tracks you), and go for a weekly trip on a single battery charge without any byte sent to the network.\n" +msgstr "" diff --git a/po/content.es.po b/po/content.es.po index 5fc18501..0aad9397 100644 --- a/po/content.es.po +++ b/po/content.es.po @@ -4,7 +4,7 @@ # FIRST AUTHOR , YEAR. # msgid "" -msgstr "Project-Id-Version: Organic Maps Website 1.0\nPO-Revision-Date: 2024-04-02 22:07+0000\nLast-Translator: gallegonovato \nLanguage-Team: Spanish \nLanguage: es\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-Forms: nplurals=2; plural=n != 1;\nX-Generator: Weblate 5.5-dev\n" +msgstr "Project-Id-Version: Organic Maps Website 1.0\nPO-Revision-Date: 2023-07-01 10:25+0000\nLast-Translator: muralito \nLanguage-Team: Spanish \nLanguage: es\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-Forms: nplurals=2; plural=n != 1;\nX-Generator: Weblate 5.0-dev\n" #. type: Yaml Front Matter Hash Value: description #: content/_index.md @@ -27,23 +27,15 @@ msgstr "Organic Maps: senderismo, ciclismo y GPS sin conexión" #. type: Plain text #: content/_index.md #, no-wrap -msgid "" -"**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, drivers and cyclists based on **[OpenStreetMap][openstreetmap]** data created by the community.\n" -"It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" +msgid "**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, and cyclists based on top of crowd-sourced **[OpenStreetMap][openstreetmap]** data. It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" msgstr "**Organic Maps** es una aplicación libre para Android y iOS de mapas sin conexión para viajantes, turistas, senderistas y ciclistas basados en los datos cartográficos abiertos de **[OpenStreetMap][openstreetmap]**. Es una [bifurcación][fork] libre y centrada en la privacidad de la aplicación **Maps.me** (anteriormente conocida como [**MapsWithMe**][mapswithme]), mantenida por la misma gente que creó **MapsWithMe** en 2011.\n" #. type: Plain text #: content/_index.md #, no-wrap -msgid "**Organic Maps** is one of the few applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card, and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" +msgid "**Organic Maps** is one of the only applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card (by the way, your operator constantly tracks you), and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" msgstr "**Organic Maps** es una de las pocas aplicaciones que hoy en día permiten usar todas las funcionalidades sin una conexión a Internet activa. Instale Organic Maps, descargue mapas, deseche su tarjeta SIM (por cierto, su operadora le rastrea constantemente) y emprenda un viaje semanal con una única carga sin ningún byte enviado a la red.\n" -#. type: Plain text -#: content/_index.md -#, no-wrap -msgid "> In 2023, Organic Maps [got its first million](@/news/2023-12-23/281/index.md) users. [Help us](@/donate/index.md) to scale!\n" -msgstr "> En 2023 Organic Maps [alcanzó su primer millón de usuarios](@/news/2023-12-23/281/index.md). ¡[Ayúdenos](@/donate/index.md) a crecer!\n" - #. type: Title ### #: content/_index.md #, no-wrap @@ -103,8 +95,8 @@ msgstr "Líneas de contorno, perfiles de elevación, picos y pendientes" #. type: Bullet: '- ' #: content/_index.md -msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance and Android Auto" -msgstr "Navegación paso a paso con guía por voz a pie, en bici y en coche, Android Auto" +msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance" +msgstr "Navegación paso a paso con guía por voz a pie, en bici y en coche" #. type: Bullet: '- ' #: content/_index.md @@ -113,8 +105,8 @@ msgstr "Búsqueda rápida en el mapa y sin conexión" #. type: Bullet: '- ' #: content/_index.md -msgid "Export/import bookmarks in KML/KMZ, import GPX" -msgstr "Los marcadores se exportan e importan en los formatos KML/KMZ, importan GPX" +msgid "Bookmarks and tracks in KML, KMZ, GPX formats" +msgstr "Los marcadores se exportan e importan en los formatos KML/KMZ (está [planificado][gpx_issue] GPX)" #. type: Bullet: '- ' #: content/_index.md @@ -224,11 +216,13 @@ msgstr "{{ exodus_screenshot() }}" #. type: Plain text #: content/_index.md +#, markdown-text msgid "The iOS application is verified by [TrackerControl for iOS][trackercontrol]:" msgstr "La aplicación iOS es verificada por [TrackerControl para iOS][trackercontrol]:" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ trackercontrol_screenshot() }}" msgstr "{{ trackercontrol_screenshot() }}" @@ -368,22 +362,17 @@ msgstr "Visite nuestra [página de GitHub][github]." #. type: Bullet: '- ' #: content/_index.md -msgid "Follow our updates in [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." -msgstr "Siga nuestras novedades en [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit] y [LinkedIn][LinkedIn]." - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Join (or create and let us know) local communities: [Hungarian translators Matrix room](https://matrix.to/#/#organicmapstranslate_hu:matrix.org)" -msgstr "Únase (o cree y háganoslo saber) a las comunidades locales: [Sala Matrix de traductores de húngaro](https://matrix.to/#/#organicmapstranslate_hu:matrix.org)" - -#. type: Link reference -#: content/_index.md -#, no-wrap -msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)" -msgstr "[fork]: https://es.wikipedia.org/wiki/Bifurcaci%C3%B3n_(desarrollo_de_software)" +msgid "Follow our updates in [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." +msgstr "Siga nuestras novedades en [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit] y [LinkedIn][LinkedIn]." #. type: Plain text -#: content/_index.md content/donate/index.md content/support-us/index.md +#: content/_index.md +#, no-wrap +msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)\n" +msgstr "[fork]: https://es.wikipedia.org/wiki/Bifurcaci%C3%B3n_(desarrollo_de_software)\n" + +#. type: Plain text +#: content/_index.md content/support-us/index.md msgid "{{ references() }}" msgstr "{{ references() }}" @@ -407,8 +396,8 @@ msgstr "Done para apoyar al desarrollo de Organic Maps" #. type: Plain text #: content/donate/index.md -msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]** in **[EUR][stripe_eur], [USD][stripe_usd], [GBP][stripe_GBP], [CHF][stripe_chf], [UAH][stripe_uah], [PLN][stripe_pln]**:" -msgstr "La aplicación Organic Maps es _gratuita para todos_ gracias a tus **[donaciones][stripe]** en **[EUR][stripe_eur], [USD][stripe_usd], [GBP][stripe_GBP], [CHF][stripe_chf], [UAH][stripe_uah], [PLN][stripe_pln]**:" +msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]**:" +msgstr "Organic Maps es _gratis para todo el mundo_ gracias a sus **[donaciones][stripe]**:" #. type: Bullet: '- ' #: content/donate/index.md @@ -438,78 +427,63 @@ msgstr "¿Por qué donar a Organic Maps?" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "Our goal is to provide a privacy-focused, fast and easy-to-use alternative to Google Maps and Apple Maps." -msgstr "Nuestro objetivo es ofrecer una alternativa a Google Maps y Apple Maps centrada en la privacidad, rápida y fácil de usar." +msgid "We rely on your donations to carry out our mission to keep Organic Maps open and free. And free from ads." +msgstr "Dependemos de sus donativos para seguir con nuestra misión de mantener Organic Maps abierta y gratis. Y libre de anuncios." #. type: Bullet: '2. ' #: content/donate/index.md -msgid "Improving public map data for the numerous websites, apps and platforms which use OpenStreetMap, and involving more people in contributing map info is our another goal." -msgstr "Otro de nuestros objetivos es mejorar los datos de los mapas públicos para las numerosas páginas web, aplicaciones y plataformas que utilizan OpenStreetMap, e implicar a más personas en la aportación de información para los mapas." +msgid "We are a few enthusiasts contributing in our free time, and spending our families' money on the project. We love what we do, and we love our users ❤️." +msgstr "Somos un grupo de entusiastas contribuyendo en nuestro tiempo libre, y gastando el dinero de nuestras familias en el proyecto. Nos encanta lo que hacemos, y amamos a nuestros usuarios ❤️." #. type: Bullet: '3. ' #: content/donate/index.md -msgid "We rely on your donations to keep Organic Maps open and free for everyone. And free from ads." -msgstr "Dependemos de sus donativos para seguir con nuestra misión de mantener Organic Maps abierta y gratis. Y libre de anuncios." - -#. type: Bullet: '4. ' -#: content/donate/index.md -msgid "We love what we do, and we love our users ❤️." -msgstr "Nos encanta lo que hacemos y queremos a nuestros usuarios ❤️." +msgid "With your support, we want to become a better, privacy-focused version of Google Maps." +msgstr "Con su apoyo, queremos convertirnos en una mejor versión de Google Maps, una centrada en la privacidad." #. type: Title ## #: content/donate/index.md #, no-wrap -msgid "Why a free project needs money?" -msgstr "¿Por qué un proyecto gratuito necesita dinero?" +msgid "What will the money be used for?" +msgstr "¿Para qué se utilizará el dinero?" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "In 2023, Organic Maps got its first million users. Our servers provide free, fast and frequent map updates all over the world." -msgstr "En 2023, Organic Maps consiguió su primer millón de usuarios. Nuestros servidores proporcionan actualizaciones de mapas gratuitas, rápidas y frecuentes en todo el mundo." +msgid "We pay for fast servers, so anyone in the World can download free map data updates without delays. It's hundreds of terabytes monthly, and the amount is growing." +msgstr "Pagamos por servidores rápidos, por lo que cualquier en el mundo puede descargar actualizaciones de las características de los mapas rápido y sin esperas. Son cientos de terabytes al mes, y la cantidad está creciendo." #. type: Bullet: '2. ' #: content/donate/index.md -msgid "User support, bugfixing and publishing quality app updates are at the top of our priorities. There are [~2000 bug reports and feature requests on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." -msgstr "La asistencia a los usuarios, el arreglo de errores y la mejora de la estabilidad de la aplicación son nuestras principales prioridades. Hay más de [2000 informes en GitHub][github issues], y este número crece cada día. AppStore, Google Play y los correos de atención están inundados con comentarios e informes. Queremos entregar un producto de calidad." +msgid "User support, bugfixing, and improving the stability of the app are at the top of our priorities. There are [1800+ issues on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." +msgstr "La asistencia a los usuarios, el arreglo de errores y la mejora de la estabilidad de la aplicación son nuestras principales prioridades. Hay más de [1800 informes en GitHub][github issues], y este número crece cada día. AppStore, Google Play y los correos de atención están inundados con comentarios e informes. Queremos entregar un producto de calidad." #. type: Bullet: '3. ' #: content/donate/index.md -msgid "With enough money, new features can be developed. To name a few:" +msgid "With enough money, new features can be developed faster, for example:" msgstr "Con suficiente dinero, pueden desarrollarse prestaciones nuevas más rápidamente, por ejemplo:" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Backup and sync bookmarks and tracks" -msgstr "Copia de seguridad y sincronización de favoritos y pistas" +msgid "Weekly and automated map data updates" +msgstr "Actualizaciones semanales y automatizadas de los mapas" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "GPS track recorder with GPX export" +msgid "Bookmarks backup and sync" +msgstr "Copia y sincronización de marcadores" + +#. type: Bullet: ' - ' +#: content/donate/index.md +msgid "Android Auto" +msgstr "Android Auto" + +#. type: Bullet: ' - ' +#: content/donate/index.md +msgid "GPS track recorder with GPX support" msgstr "Grabadora GPS con compatibilidad para GPX" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Satellite imagery" -msgstr "Imágenes por satélite" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Public Transport" -msgstr "Transporte público" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Traffic and accident reporting" -msgstr "Información sobre tráfico y accidentes" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Photos and Reviews" -msgstr "Fotos y reseñas" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Map styles for different activities" +msgid "Better map styles for different activities" msgstr "Mejores estilos cartográficos para diferentes actividades" #. type: Bullet: ' - ' @@ -519,14 +493,19 @@ msgstr "Sombreado de colinas y terreno 3D" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "More advanced OpenStreetMap editor" -msgstr "Editor OpenStreetMap más avanzado" +msgid "Improve the OpenStreetMap editor" +msgstr "Mejoras al editor de OpenStreetMap" #. type: Bullet: ' - ' #: content/donate/index.md msgid "Better offline address search, routing, and navigation" msgstr "Mejor búsqueda de direcciones sin conexión, enrutamiento y navegación" +#. type: Bullet: ' - ' +#: content/donate/index.md +msgid "Public Transport" +msgstr "Transporte público" + #. type: Bullet: ' - ' #: content/donate/index.md msgid "… and [many other][github issues] features you want and love" @@ -540,7 +519,7 @@ msgstr "¿Cómo donar?" #. type: Plain text #: content/donate/index.md -msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. One-time donations are appreciated too." +msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. But you can also donate one time." msgstr "Las donaciones recurrentes son la mejor manera de asegurar un ingreso periódico para el proyecto y nos motiva para tareas y objetivos a largo plazo. Pero también puede donar una vez." #. type: Title ### @@ -581,6 +560,16 @@ msgstr "¿Puede ayudarnos de alguna otra manera?" msgid "Yes! There are many ways to support Organic Maps. Please see [Support Us](@/support-us/index.md) page for more details." msgstr "¡Sí! Hay varias maneras de apoyar a Organic Maps. Consulte la página [Apóyenos](@/support-us/index.es.md) para más detalles." +#. type: Plain text +#: content/donate/index.md +#, no-wrap +msgid "" +"[stripe]: https://donate.organicmaps.app/ \"Donate via Stripe\"\n" +"[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" +msgstr "" +"[stripe]: https://donate.organicmaps.app/ \"Donar vía Stripe\"\n" +"[github issues]: https://github.com/organicmaps/organicmaps/issues \"Informes en GitHub\"\n" + #. type: Yaml Front Matter Hash Value: description #: content/news/_index.md #, no-wrap @@ -794,23 +783,17 @@ msgstr "Refiérase a su LICENSE, COPYING o NOTICE para los términos de uso." msgid "See also [data/copyright.html][copyright] file for a full list of copyright notices for Organic Maps application." msgstr "Vea también el archivo [data/copyright.html][copyright] para una lista completa de los avisos de derechos de copia para la aplicación Organic Maps." -#. type: Link reference +#. type: Plain text #: content/terms/index.md #, no-wrap -msgid "[github]: https://github.com/organicmaps/organicmaps" -msgstr "[github]: https://github.com/organicmaps/organicmaps" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[license]: http://www.apache.org/licenses/LICENSE-2.0" -msgstr "[license]: http://www.apache.org/licenses/LICENSE-2.0" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html" -msgstr "[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html" +msgid "" +"[github]: https://github.com/organicmaps/organicmaps\n" +"[license]: http://www.apache.org/licenses/LICENSE-2.0\n" +"[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html\n" +msgstr "" +"[github]: https://github.com/organicmaps/organicmaps\n" +"[license]: http://www.apache.org/licenses/LICENSE-2.0\n" +"[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html\n" #. type: Hash Value: address #: translations.yaml @@ -830,18 +813,6 @@ msgstr "Volver a Noticias" msgid "Contact Us" msgstr "Contacte con nosotros" -#. type: Hash Value: engines -#: translations.yaml -#, no-wrap -msgid "Supported TTS Engines" -msgstr "Compatibilidad con motores TTS" - -#. type: Hash Value: faq-menu-title -#: translations.yaml -#, no-wrap -msgid "F.A.Q." -msgstr "Preguntas frecuentes" - #. type: Hash Value: install-appgallery #: translations.yaml #, no-wrap @@ -872,12 +843,6 @@ msgstr "Instalar Organic Maps desde Google Play" msgid "English" msgstr "Español" -#. type: Hash Value: language-word -#: translations.yaml -#, no-wrap -msgid "Language" -msgstr "Idioma" - #. type: Hash Value: name #: translations.yaml #, no-wrap @@ -890,39 +855,6 @@ msgstr "Nombre" msgid "Token" msgstr "Ficha" -#~ msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]**:" -#~ msgstr "Organic Maps es _gratis para todo el mundo_ gracias a sus **[donaciones][stripe]**:" - -#~ msgid "We are a few enthusiasts contributing in our free time, and spending our families' money on the project. We love what we do, and we love our users ❤️." -#~ msgstr "Somos un grupo de entusiastas contribuyendo en nuestro tiempo libre, y gastando el dinero de nuestras familias en el proyecto. Nos encanta lo que hacemos, y amamos a nuestros usuarios ❤️." - -#~ msgid "With your support, we want to become a better, privacy-focused version of Google Maps." -#~ msgstr "Con su apoyo, queremos convertirnos en una mejor versión de Google Maps, una centrada en la privacidad." - -#, no-wrap -#~ msgid "What will the money be used for?" -#~ msgstr "¿Para qué se utilizará el dinero?" - -#~ msgid "We pay for fast servers, so anyone in the World can download free map data updates without delays. It's hundreds of terabytes monthly, and the amount is growing." -#~ msgstr "Pagamos por servidores rápidos, por lo que cualquier en el mundo puede descargar actualizaciones de las características de los mapas rápido y sin esperas. Son cientos de terabytes al mes, y la cantidad está creciendo." - -#~ msgid "Weekly and automated map data updates" -#~ msgstr "Actualizaciones semanales y automatizadas de los mapas" - -#~ msgid "Bookmarks backup and sync" -#~ msgstr "Copia y sincronización de marcadores" - -#~ msgid "Android Auto" -#~ msgstr "Android Auto" - -#, no-wrap -#~ msgid "" -#~ "[stripe]: https://donate.organicmaps.app/ \"Donate via Stripe\"\n" -#~ "[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" -#~ msgstr "" -#~ "[stripe]: https://donate.organicmaps.app/ \"Donar vía Stripe\"\n" -#~ "[github issues]: https://github.com/organicmaps/organicmaps/issues \"Informes en GitHub\"\n" - #, no-wrap #~ msgid "There are different ways to donate:" #~ msgstr "Hay diferentes maneras de donar:" diff --git a/po/content.et.po b/po/content.et.po index 8b834a49..20567a6b 100644 --- a/po/content.et.po +++ b/po/content.et.po @@ -4,7 +4,16 @@ # FIRST AUTHOR , YEAR. # msgid "" -msgstr "Project-Id-Version: Organic Maps Website 1.0\nPO-Revision-Date: 2024-04-02 19:54+0000\nLast-Translator: Weblate Translation Memory \nLanguage-Team: Estonian \nLanguage: et\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-Forms: nplurals=2; plural=n != 1;\nX-Generator: Weblate 5.5-dev\n" +msgstr "" +"Project-Id-Version: Organic Maps Website 1.0\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.0-dev\n" #. type: Yaml Front Matter Hash Value: description #: content/_index.md @@ -27,21 +36,13 @@ msgstr "Organic Maps Offline Hike, Bike, GPS Navigation" #. type: Plain text #: content/_index.md #, no-wrap -msgid "" -"**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, drivers and cyclists based on **[OpenStreetMap][openstreetmap]** data created by the community.\n" -"It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" +msgid "**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, and cyclists based on top of crowd-sourced **[OpenStreetMap][openstreetmap]** data. It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" msgstr "" #. type: Plain text #: content/_index.md #, no-wrap -msgid "**Organic Maps** is one of the few applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card, and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" -msgstr "" - -#. type: Plain text -#: content/_index.md -#, no-wrap -msgid "> In 2023, Organic Maps [got its first million](@/news/2023-12-23/281/index.md) users. [Help us](@/donate/index.md) to scale!\n" +msgid "**Organic Maps** is one of the only applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card (by the way, your operator constantly tracks you), and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" msgstr "" #. type: Title ### @@ -103,8 +104,8 @@ msgstr "Kontuurjooned, kõrgusprofiilid, tipud ja nõlvad" #. type: Bullet: '- ' #: content/_index.md -msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance and Android Auto" -msgstr "Täpne teekonna juhatamine koos hääljuhistega jalutamisel, rattasõidul ning autoga liikumisel ning Android Auto" +msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance" +msgstr "Täpne teekonna juhatamine koos hääljuhistega jalutamisel, rattasõidul ning autoga liikumisel" #. type: Bullet: '- ' #: content/_index.md @@ -113,8 +114,8 @@ msgstr "Kiire kaardiotsing võrguühendust kasutamata" #. type: Bullet: '- ' #: content/_index.md -msgid "Export/import bookmarks in KML/KMZ, import GPX" -msgstr "Järjehoidjad ja rajad KML-, KMZ-, GPX-vormingus" +msgid "Bookmarks and tracks in KML, KMZ, GPX formats" +msgstr "Järjehoidjate import ning eksport KML/KMZ vormingutes (GPX on ka [plaanis][gpx_issue])" #. type: Bullet: '- ' #: content/_index.md @@ -368,22 +369,17 @@ msgstr "Vaata meie [arenduskeskkonda GitHub'is][github]." #. type: Bullet: '- ' #: content/_index.md -msgid "Follow our updates in [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." -msgstr "Jälgi meid sotsiaalmeedias: [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." +msgid "Follow our updates in [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." +msgstr "Jälgi meid sotsiaalmeedias: [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." -#. type: Bullet: '- ' -#: content/_index.md -msgid "Join (or create and let us know) local communities: [Hungarian translators Matrix room](https://matrix.to/#/#organicmapstranslate_hu:matrix.org)" -msgstr "" - -#. type: Link reference +#. type: Plain text #: content/_index.md #, no-wrap -msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)" +msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)\n" msgstr "" #. type: Plain text -#: content/_index.md content/donate/index.md content/support-us/index.md +#: content/_index.md content/support-us/index.md msgid "{{ references() }}" msgstr "" @@ -407,7 +403,7 @@ msgstr "" #. type: Plain text #: content/donate/index.md -msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]** in **[EUR][stripe_eur], [USD][stripe_usd], [GBP][stripe_GBP], [CHF][stripe_chf], [UAH][stripe_uah], [PLN][stripe_pln]**:" +msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]**:" msgstr "" #. type: Bullet: '- ' @@ -418,7 +414,7 @@ msgstr "" #. type: Bullet: '- ' #: content/donate/index.md msgid "No registration" -msgstr "Käibemaksukohuslasena registreerimine" +msgstr "" #. type: Bullet: '- ' #: content/donate/index.md @@ -438,78 +434,63 @@ msgstr "" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "Our goal is to provide a privacy-focused, fast and easy-to-use alternative to Google Maps and Apple Maps." +msgid "We rely on your donations to carry out our mission to keep Organic Maps open and free. And free from ads." msgstr "" #. type: Bullet: '2. ' #: content/donate/index.md -msgid "Improving public map data for the numerous websites, apps and platforms which use OpenStreetMap, and involving more people in contributing map info is our another goal." +msgid "We are a few enthusiasts contributing in our free time, and spending our families' money on the project. We love what we do, and we love our users ❤️." msgstr "" #. type: Bullet: '3. ' #: content/donate/index.md -msgid "We rely on your donations to keep Organic Maps open and free for everyone. And free from ads." -msgstr "" - -#. type: Bullet: '4. ' -#: content/donate/index.md -msgid "We love what we do, and we love our users ❤️." +msgid "With your support, we want to become a better, privacy-focused version of Google Maps." msgstr "" #. type: Title ## #: content/donate/index.md #, no-wrap -msgid "Why a free project needs money?" +msgid "What will the money be used for?" msgstr "" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "In 2023, Organic Maps got its first million users. Our servers provide free, fast and frequent map updates all over the world." +msgid "We pay for fast servers, so anyone in the World can download free map data updates without delays. It's hundreds of terabytes monthly, and the amount is growing." msgstr "" #. type: Bullet: '2. ' #: content/donate/index.md -msgid "User support, bugfixing and publishing quality app updates are at the top of our priorities. There are [~2000 bug reports and feature requests on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." +msgid "User support, bugfixing, and improving the stability of the app are at the top of our priorities. There are [1800+ issues on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." msgstr "" #. type: Bullet: '3. ' #: content/donate/index.md -msgid "With enough money, new features can be developed. To name a few:" +msgid "With enough money, new features can be developed faster, for example:" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Backup and sync bookmarks and tracks" +msgid "Weekly and automated map data updates" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "GPS track recorder with GPX export" +msgid "Bookmarks backup and sync" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Satellite imagery" +msgid "Android Auto" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Public Transport" -msgstr "Ühistransport" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Traffic and accident reporting" +msgid "GPS track recorder with GPX support" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Photos and Reviews" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Map styles for different activities" +msgid "Better map styles for different activities" msgstr "" #. type: Bullet: ' - ' @@ -519,7 +500,7 @@ msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "More advanced OpenStreetMap editor" +msgid "Improve the OpenStreetMap editor" msgstr "" #. type: Bullet: ' - ' @@ -527,6 +508,11 @@ msgstr "" msgid "Better offline address search, routing, and navigation" msgstr "" +#. type: Bullet: ' - ' +#: content/donate/index.md +msgid "Public Transport" +msgstr "Ühistransport" + #. type: Bullet: ' - ' #: content/donate/index.md msgid "… and [many other][github issues] features you want and love" @@ -540,7 +526,7 @@ msgstr "" #. type: Plain text #: content/donate/index.md -msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. One-time donations are appreciated too." +msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. But you can also donate one time." msgstr "" #. type: Title ### @@ -581,6 +567,14 @@ msgstr "" msgid "Yes! There are many ways to support Organic Maps. Please see [Support Us](@/support-us/index.md) page for more details." msgstr "" +#. type: Plain text +#: content/donate/index.md +#, no-wrap +msgid "" +"[stripe]: https://donate.organicmaps.app/ \"Donate via Stripe\"\n" +"[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" +msgstr "" + #. type: Yaml Front Matter Hash Value: description #: content/news/_index.md #, no-wrap @@ -794,22 +788,13 @@ msgstr "" msgid "See also [data/copyright.html][copyright] file for a full list of copyright notices for Organic Maps application." msgstr "" -#. type: Link reference +#. type: Plain text #: content/terms/index.md #, no-wrap -msgid "[github]: https://github.com/organicmaps/organicmaps" -msgstr "" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[license]: http://www.apache.org/licenses/LICENSE-2.0" -msgstr "" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html" +msgid "" +"[github]: https://github.com/organicmaps/organicmaps\n" +"[license]: http://www.apache.org/licenses/LICENSE-2.0\n" +"[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html\n" msgstr "" #. type: Hash Value: address @@ -830,18 +815,6 @@ msgstr "Tagasi uudiste loendisse" msgid "Contact Us" msgstr "Võta meiega ühendust" -#. type: Hash Value: engines -#: translations.yaml -#, no-wrap -msgid "Supported TTS Engines" -msgstr "" - -#. type: Hash Value: faq-menu-title -#: translations.yaml -#, no-wrap -msgid "F.A.Q." -msgstr "" - #. type: Hash Value: install-appgallery #: translations.yaml #, no-wrap @@ -872,12 +845,6 @@ msgstr "Paigalda Organic Maps Google Play'st" msgid "English" msgstr "Eesti" -#. type: Hash Value: language-word -#: translations.yaml -#, no-wrap -msgid "Language" -msgstr "Keel" - #. type: Hash Value: name #: translations.yaml #, no-wrap diff --git a/po/content.eu.po b/po/content.eu.po index 1649b055..1bdb452a 100644 --- a/po/content.eu.po +++ b/po/content.eu.po @@ -4,7 +4,16 @@ # FIRST AUTHOR , YEAR. # msgid "" -msgstr "Project-Id-Version: Organic Maps Website 1.0\nPO-Revision-Date: 2024-04-02 19:54+0000\nLast-Translator: Weblate Translation Memory \nLanguage-Team: Basque \nLanguage: eu\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-Forms: nplurals=2; plural=n != 1;\nX-Generator: Weblate 5.5-dev\n" +msgstr "" +"Project-Id-Version: Organic Maps Website 1.0\n" +"Last-Translator: Anonymous \n" +"Language-Team: Basque \n" +"Language: eu\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 4.16.2-dev\n" #. type: Yaml Front Matter Hash Value: description #: content/_index.md @@ -27,23 +36,15 @@ msgstr "Organic Maps: Offline mapak mendizale, txirrindulari, ibiltari eta nabig #. type: Plain text #: content/_index.md #, no-wrap -msgid "" -"**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, drivers and cyclists based on **[OpenStreetMap][openstreetmap]** data created by the community.\n" -"It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" +msgid "**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, and cyclists based on top of crowd-sourced **[OpenStreetMap][openstreetmap]** data. It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" msgstr "**Organic Maps** Android & iOS-erako offline-mapen app bat da, bidaiari, turista, mendizale eta txirrindularientzat, auzolanean sortutako **[OpenStreetMap][openstreetmap]** datuetan oinarrituta. Aurrez ezaguna zen **Maps.me** app-aren kode-irekiko eta pribazitate helburu duen [fork][fork] bat da (lehenago [**MapsWithMe**][mapswithme] izenarekin ezaguna), 2011an **MapsWithMe** app-a sortu zuten pertsona berdinek mantenduta.\n" #. type: Plain text #: content/_index.md #, no-wrap -msgid "**Organic Maps** is one of the few applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card, and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" +msgid "**Organic Maps** is one of the only applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card (by the way, your operator constantly tracks you), and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" msgstr "**Organic Maps** da konexiorik gabe %100-ean funtzionatzen duen aplikazio gutxietako bat. Instalatu Organic Maps, deskargatu mapak eta bota zaborretara zure SIM txartela (bide batez, zure telefono konpainiak uneoro jarraipena egiten dizu), eta joan asteroko ibilaldira bateria karga batekin eta sarera byte bakarra ere bidali gabe.\n" -#. type: Plain text -#: content/_index.md -#, no-wrap -msgid "> In 2023, Organic Maps [got its first million](@/news/2023-12-23/281/index.md) users. [Help us](@/donate/index.md) to scale!\n" -msgstr "" - #. type: Title ### #: content/_index.md #, no-wrap @@ -103,8 +104,8 @@ msgstr "Profil lerroak, sestra kurbak, gailur eta aldapak" #. type: Bullet: '- ' #: content/_index.md -msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance and Android Auto" -msgstr "Pausoz-pausoko nabigazioa oinez, bizikletan edo autoz ibiltzeko, ahotsaren aukerarekin, Android Auto" +msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance" +msgstr "Pausoz-pausoko nabigazioa oinez, bizikletan edo autoz ibiltzeko, ahotsaren aukerarekin" #. type: Bullet: '- ' #: content/_index.md @@ -113,8 +114,8 @@ msgstr "Mapan offline bilaketa azkarra" #. type: Bullet: '- ' #: content/_index.md -msgid "Export/import bookmarks in KML/KMZ, import GPX" -msgstr "Tokien laster-markak esportatu eta inportatzeko aukera KML/KMZ formatuetan, inportatzeko GPX" +msgid "Bookmarks and tracks in KML, KMZ, GPX formats" +msgstr "Tokien laster-markak esportatu eta inportatzeko aukera KML/KMZ formatuetan (GPX [planned][gpx_issue])" #. type: Bullet: '- ' #: content/_index.md @@ -224,13 +225,15 @@ msgstr "{{ exodus_screenshot() }}" #. type: Plain text #: content/_index.md +#, markdown-text msgid "The iOS application is verified by [TrackerControl for iOS][trackercontrol]:" -msgstr "iOS aplikazioa [TrackerControl iOS-erako][trackercontrol]-ek egiaztatzen du:" +msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ trackercontrol_screenshot() }}" -msgstr "{{ trackercontrol_screenshot() }}" +msgstr "" #. type: Plain text #: content/_index.md @@ -287,7 +290,7 @@ msgstr "App-a denontzat doakoa da. Mesedez [donate](@/donate/index.eu.md) guri l #. type: Plain text #: content/_index.md msgid "To donate conveniently, click on your preferred payment method icon below:" -msgstr "Dohaintza egokia emateko, egin klik behean nahi duzun ordainketa-metodoaren ikonoan:" +msgstr "" #. type: Plain text #: content/_index.md content/donate/index.md @@ -368,22 +371,17 @@ msgstr "Bisitatu gure [GitHub orria][github]." #. type: Bullet: '- ' #: content/_index.md -msgid "Follow our updates in [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." -msgstr "Jarrai itzazu gure eguneraketak [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit]-en eta [LinkedIn][LinkedIn]." - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Join (or create and let us know) local communities: [Hungarian translators Matrix room](https://matrix.to/#/#organicmapstranslate_hu:matrix.org)" -msgstr "" - -#. type: Link reference -#: content/_index.md -#, no-wrap -msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)" -msgstr "[fork]: https://eu.wikipedia.org/wiki/Fork" +msgid "Follow our updates in [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." +msgstr "Jarrai itzazu gure eguneraketak [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit]-en eta [LinkedIn][LinkedIn]." #. type: Plain text -#: content/_index.md content/donate/index.md content/support-us/index.md +#: content/_index.md +#, no-wrap +msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)\n" +msgstr "[fork]: https://eu.wikipedia.org/wiki/Fork\n" + +#. type: Plain text +#: content/_index.md content/support-us/index.md msgid "{{ references() }}" msgstr "{{ references() }}" @@ -407,7 +405,7 @@ msgstr "Dohaintza egin Organic Maps-en garapenari eusteko" #. type: Plain text #: content/donate/index.md -msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]** in **[EUR][stripe_eur], [USD][stripe_usd], [GBP][stripe_GBP], [CHF][stripe_chf], [UAH][stripe_uah], [PLN][stripe_pln]**:" +msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]**:" msgstr "Organic Maps app-a _denontzat doakoa_ da, zure **[dohaintzari][stripe]** esker:" #. type: Bullet: '- ' @@ -428,7 +426,7 @@ msgstr "Kode irekikoa" #. type: Plain text #: content/donate/index.md msgid "Click on your preferred payment method icon below:" -msgstr "Egin klik behean nahi duzun ordainketa-metodoaren ikonoan:" +msgstr "" #. type: Title ## #: content/donate/index.md @@ -438,78 +436,63 @@ msgstr "Zergatik eman dirua Organic Maps-i?" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "Our goal is to provide a privacy-focused, fast and easy-to-use alternative to Google Maps and Apple Maps." -msgstr "" +msgid "We rely on your donations to carry out our mission to keep Organic Maps open and free. And free from ads." +msgstr "Zuen dohaintzak behar ditugu Organic Maps-ek irekia eta librea izaten jarrai dezan. Eta publizitatetik libre." #. type: Bullet: '2. ' #: content/donate/index.md -msgid "Improving public map data for the numerous websites, apps and platforms which use OpenStreetMap, and involving more people in contributing map info is our another goal." -msgstr "" +msgid "We are a few enthusiasts contributing in our free time, and spending our families' money on the project. We love what we do, and we love our users ❤️." +msgstr "Zaletu batzuk gara gure aisian garatzen, eta gure familien dirua proiektuan xahutzen. Egiten duguna maite dugu eta gure erabiltzaileak maite ditugu ❤️." #. type: Bullet: '3. ' #: content/donate/index.md -msgid "We rely on your donations to keep Organic Maps open and free for everyone. And free from ads." -msgstr "Zuen dohaintzak behar ditugu Organic Maps-ek irekia eta librea izaten jarrai dezan. Eta publizitatetik libre." - -#. type: Bullet: '4. ' -#: content/donate/index.md -msgid "We love what we do, and we love our users ❤️." -msgstr "" +msgid "With your support, we want to become a better, privacy-focused version of Google Maps." +msgstr "Zure laguntzarekin, Google Maps-en bertsio hobe eta pribatutasunean zentratutakoa egin nahi dugu." #. type: Title ## #: content/donate/index.md #, no-wrap -msgid "Why a free project needs money?" -msgstr "" +msgid "What will the money be used for?" +msgstr "Zertarako erabiliko da dirua?" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "In 2023, Organic Maps got its first million users. Our servers provide free, fast and frequent map updates all over the world." -msgstr "" +msgid "We pay for fast servers, so anyone in the World can download free map data updates without delays. It's hundreds of terabytes monthly, and the amount is growing." +msgstr "Zerbitzari azkarrak ordaintzen ditugu, horrela munduan dagoen edonork deskargatu ahal izango ditu mapa eguneraketak atzerapenik gabe. Hilero ehunka Terabyte dira hauek, eta tamaina handitzen doa." #. type: Bullet: '2. ' #: content/donate/index.md -msgid "User support, bugfixing and publishing quality app updates are at the top of our priorities. There are [~2000 bug reports and feature requests on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." +msgid "User support, bugfixing, and improving the stability of the app are at the top of our priorities. There are [1800+ issues on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." msgstr "Erabiltzaileei laguntza, akats-konponketa eta app-aren egonkortasuna hobetzea dira gure lehentasunak. [1800 eskaera baino gehiago daude GitHub-en][github issues] eta zenbaki hau egunero handitzen da. AppStore, Google Play eta arretako eposta helbideak iradokizun eta akatsekin beteta daude. Kalitate handiko produktu bat eman nahi dugu." #. type: Bullet: '3. ' #: content/donate/index.md -msgid "With enough money, new features can be developed. To name a few:" +msgid "With enough money, new features can be developed faster, for example:" msgstr "Nahikoa diru bagenu, garapen berriak azkarrago egingo genituzke, adibidez:" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Backup and sync bookmarks and tracks" -msgstr "" +msgid "Weekly and automated map data updates" +msgstr "Mapa datu eguneraketa automatikoak astero" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "GPS track recorder with GPX export" +msgid "Bookmarks backup and sync" +msgstr "Gogoko puntuen segurtasun kopia eta sinkronizazioa" + +#. type: Bullet: ' - ' +#: content/donate/index.md +msgid "Android Auto" +msgstr "Android Auto" + +#. type: Bullet: ' - ' +#: content/donate/index.md +msgid "GPS track recorder with GPX support" msgstr "GPS ibilbide grabatzailea GPX formatuarekin" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Satellite imagery" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Public Transport" -msgstr "Garraio publikoa" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Traffic and accident reporting" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Photos and Reviews" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Map styles for different activities" +msgid "Better map styles for different activities" msgstr "Aktibitate mota bakoitzerako mapa estilo hobeak" #. type: Bullet: ' - ' @@ -519,7 +502,7 @@ msgstr "Mendi magalen itzalak eta 3D-ko lurra" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "More advanced OpenStreetMap editor" +msgid "Improve the OpenStreetMap editor" msgstr "OpenStreetMap editorea hobetzea" #. type: Bullet: ' - ' @@ -527,6 +510,11 @@ msgstr "OpenStreetMap editorea hobetzea" msgid "Better offline address search, routing, and navigation" msgstr "Offline helbide bilaketa, bide-bilaketak eta nabigazio hobeak" +#. type: Bullet: ' - ' +#: content/donate/index.md +msgid "Public Transport" +msgstr "Garraio publikoa" + #. type: Bullet: ' - ' #: content/donate/index.md msgid "… and [many other][github issues] features you want and love" @@ -540,7 +528,7 @@ msgstr "Nola egin dohaintza?" #. type: Plain text #: content/donate/index.md -msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. One-time donations are appreciated too." +msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. But you can also donate one time." msgstr "Aldizkako dohaintzak dira proiektuarentzat sarrera jarri batzuk ziurtatzeko modu onena eta epe luzerako ekintza eta helburuetarako motibatuko gaituzte. Baina behingoagatik ere eman dezakezu." #. type: Title ### @@ -581,6 +569,16 @@ msgstr "Beste moduren batean lagun gaitzakezu?" msgid "Yes! There are many ways to support Organic Maps. Please see [Support Us](@/support-us/index.md) page for more details." msgstr "Bai! Organic Map-i laguntzeko modu asko daude. Mesedez begiratu [Lagun gaitzazu](@/support-us/index.eu.md) orria detaile gehiagorako." +#. type: Plain text +#: content/donate/index.md +#, no-wrap +msgid "" +"[stripe]: https://donate.organicmaps.app/ \"Donate via Stripe\"\n" +"[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" +msgstr "" +"[stripe]: https://donate.organicmaps.app/ \"Stripe bidezko dohaintzak\"\n" +"[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub-eko arazoak\"\n" + #. type: Yaml Front Matter Hash Value: description #: content/news/_index.md #, no-wrap @@ -591,7 +589,7 @@ msgstr "Mantendu informatuta gure taldearen azken bertsio-publikazio, albiste et #: content/news/_index.md #, no-wrap msgid "News" -msgstr "Albisteak" +msgstr "Berriak" #. type: Yaml Front Matter Hash Value: title #: content/news/_index.md @@ -653,7 +651,7 @@ msgstr "Gure doako aplikazioaren garapenean laguntzeko hainbat modu daude" #: content/support-us/index.md #, no-wrap msgid "Support Us" -msgstr "Lagundu garapenean" +msgstr "Lagundu garapena" #. type: Yaml Front Matter Hash Value: title #: content/support-us/index.md @@ -746,7 +744,7 @@ msgstr "Organic Maps aplikazioaren erabilera baldintzak" #: content/terms/index.md #, no-wrap msgid "Terms" -msgstr "Erabilera baldintzak" +msgstr "Baldintzak" #. type: Yaml Front Matter Hash Value: title #: content/terms/index.md @@ -794,23 +792,17 @@ msgstr "Mesedez, irakurri beraien LICENSE, COPYING edo NOTICE fitxategiak erabil msgid "See also [data/copyright.html][copyright] file for a full list of copyright notices for Organic Maps application." msgstr "Irakurri baita ere [data/copyright.html][copyright] fitxategia, Organic Maps app-aren copyright zerrenda oso bat lortzeko." -#. type: Link reference +#. type: Plain text #: content/terms/index.md #, no-wrap -msgid "[github]: https://github.com/organicmaps/organicmaps" -msgstr "[github]: https://github.com/organicmaps/organicmaps" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[license]: http://www.apache.org/licenses/LICENSE-2.0" -msgstr "[license]: http://www.apache.org/licenses/LICENSE-2.0" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html" +msgid "" +"[github]: https://github.com/organicmaps/organicmaps\n" +"[license]: http://www.apache.org/licenses/LICENSE-2.0\n" +"[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html\n" msgstr "" +"[github]: https://github.com/organicmaps/organicmaps\n" +"[license]: http://www.apache.org/licenses/LICENSE-2.0\n" +"[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html\n" #. type: Hash Value: address #: translations.yaml @@ -822,49 +814,37 @@ msgstr "Helbidea" #: translations.yaml #, no-wrap msgid "Back to News" -msgstr "Itzuli Berriak-era" +msgstr "" #. type: Hash Value: contact #: translations.yaml #, no-wrap msgid "Contact Us" -msgstr "Gurekin harremanetan jarri" - -#. type: Hash Value: engines -#: translations.yaml -#, no-wrap -msgid "Supported TTS Engines" -msgstr "" - -#. type: Hash Value: faq-menu-title -#: translations.yaml -#, no-wrap -msgid "F.A.Q." -msgstr "" +msgstr "Harremanetan jarri" #. type: Hash Value: install-appgallery #: translations.yaml #, no-wrap msgid "Install Organic Maps from Huawei AppGallery" -msgstr "Instalatu Organic Maps Huawei AppGallery-tik" +msgstr "" #. type: Hash Value: install-appstore #: translations.yaml #, no-wrap msgid "Install Organic Maps from the AppStore" -msgstr "Instalatu Organic Maps AppStoretik" +msgstr "" #. type: Hash Value: install-fdroid #: translations.yaml #, no-wrap msgid "Install Organic Maps from F-Droid" -msgstr "Instalatu Organic Maps F-Droid-etik" +msgstr "" #. type: Hash Value: install-googleplay #: translations.yaml #, no-wrap msgid "Install Organic Maps from Google Play" -msgstr "Instalatu Organic Maps Google Play-tik" +msgstr "" #. type: Hash Value: language #: translations.yaml @@ -872,12 +852,6 @@ msgstr "Instalatu Organic Maps Google Play-tik" msgid "English" msgstr "Euskara" -#. type: Hash Value: language-word -#: translations.yaml -#, no-wrap -msgid "Language" -msgstr "Hizkuntza" - #. type: Hash Value: name #: translations.yaml #, no-wrap @@ -890,39 +864,6 @@ msgstr "Izena" msgid "Token" msgstr "token" -#~ msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]**:" -#~ msgstr "Organic Maps app-a _denontzat doakoa_ da, zure **[dohaintzari][stripe]** esker:" - -#~ msgid "We are a few enthusiasts contributing in our free time, and spending our families' money on the project. We love what we do, and we love our users ❤️." -#~ msgstr "Zaletu batzuk gara gure aisian garatzen, eta gure familien dirua proiektuan xahutzen. Egiten duguna maite dugu eta gure erabiltzaileak maite ditugu ❤️." - -#~ msgid "With your support, we want to become a better, privacy-focused version of Google Maps." -#~ msgstr "Zure laguntzarekin, Google Maps-en bertsio hobe eta pribatutasunean zentratutakoa egin nahi dugu." - -#, no-wrap -#~ msgid "What will the money be used for?" -#~ msgstr "Zertarako erabiliko da dirua?" - -#~ msgid "We pay for fast servers, so anyone in the World can download free map data updates without delays. It's hundreds of terabytes monthly, and the amount is growing." -#~ msgstr "Zerbitzari azkarrak ordaintzen ditugu, horrela munduan dagoen edonork deskargatu ahal izango ditu mapa eguneraketak atzerapenik gabe. Hilero ehunka Terabyte dira hauek, eta tamaina handitzen doa." - -#~ msgid "Weekly and automated map data updates" -#~ msgstr "Mapa datu eguneraketa automatikoak astero" - -#~ msgid "Bookmarks backup and sync" -#~ msgstr "Gogoko puntuen segurtasun kopia eta sinkronizazioa" - -#~ msgid "Android Auto" -#~ msgstr "Android Auto" - -#, no-wrap -#~ msgid "" -#~ "[stripe]: https://donate.organicmaps.app/ \"Donate via Stripe\"\n" -#~ "[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" -#~ msgstr "" -#~ "[stripe]: https://donate.organicmaps.app/ \"Stripe bidezko dohaintzak\"\n" -#~ "[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub-eko arazoak\"\n" - #, no-wrap #~ msgid "There are different ways to donate:" #~ msgstr "Dirua emateko hainbat modu daude:" diff --git a/po/content.fr.po b/po/content.fr.po index ff5b3b79..2b14c7e6 100644 --- a/po/content.fr.po +++ b/po/content.fr.po @@ -4,7 +4,7 @@ # FIRST AUTHOR , YEAR. # msgid "" -msgstr "Project-Id-Version: Organic Maps Website 1.0\nPO-Revision-Date: 2024-04-02 19:54+0000\nLast-Translator: Weblate Translation Memory \nLanguage-Team: French \nLanguage: fr\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-Forms: nplurals=2; plural=n > 1;\nX-Generator: Weblate 5.5-dev\n" +msgstr "Project-Id-Version: Organic Maps Website 1.0\nPO-Revision-Date: 2023-07-23 18:31+0000\nLast-Translator: Ophiushi <41908476+ishi-sama@users.noreply.github.com>\nLanguage-Team: French \nLanguage: fr\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-Forms: nplurals=2; plural=n > 1;\nX-Generator: Weblate 5.0-dev\n" #. type: Yaml Front Matter Hash Value: description #: content/_index.md @@ -27,22 +27,14 @@ msgstr "Organic Maps, cartes hors ligne et navigation GPS" #. type: Plain text #: content/_index.md #, no-wrap -msgid "" -"**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, drivers and cyclists based on **[OpenStreetMap][openstreetmap]** data created by the community.\n" -"It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" -msgstr "**Organic Maps** est une app gratuite de cartes hors-ligne sur Android & iOS pour les voyageurs, touristes, randonneurs, conducteurs et cyclistes basée sur les données **[OpenStreetMap][openstreetmap]** créées par la communauté.\nIl s'agit d'un [fork][fork] open-source de l'application **Maps.me** (anciennement connue sous le nom de [**MapsWithMe**][mapswithme]) concentré sur le respect de la vie privée, maintenu par les mêmes personnes qui ont créé**MapsWithMe** en 2011.\n" +msgid "**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, and cyclists based on top of crowd-sourced **[OpenStreetMap][openstreetmap]** data. It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" +msgstr "**Organic Maps** est une application de cartes hors-ligne sur Android & IOS pour les voyageurs, les touristes, les randonneurs et les cyclistes basée sur les données crowdsourcées d'**[OpenStreetMap][openstreetmap]**. Il s'agit d'un [fork][fork] open-source de l'application **Maps.me** (anciennement connue sous le nom de [**MapsWithMe**][mapswithme]) concentré sur le respect de la vie privée, maintenu par les mêmes personnes qui ont créé**MapsWithMe** en 2011.\n" #. type: Plain text #: content/_index.md #, no-wrap -msgid "**Organic Maps** is one of the few applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card, and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" -msgstr "**Organic Maps** est l'une des rares applications de nos jours à prendre en charge 100% des fonctionnalités sans connection Internet active. Installez Organic Maps, téléchargez des cartes, jetez votre carte SIM et partez pour un voyage d'une semaine avec une seule charge de batterie sans aucun octet envoyé au réseau.\n" - -#. type: Plain text -#: content/_index.md -#, no-wrap -msgid "> In 2023, Organic Maps [got its first million](@/news/2023-12-23/281/index.md) users. [Help us](@/donate/index.md) to scale!\n" -msgstr "> En 2023, Organic Maps [a obtenu son premier million](@/news/2023-12-23/281/index.md) d'utilisateurs. [Aidez-nous](@/donate/index.md) à nous développer !\n" +msgid "**Organic Maps** is one of the only applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card (by the way, your operator constantly tracks you), and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" +msgstr "**Organic Maps** est l'une des rares applications de nos jours à prendre en charge 100% des fonctionnalités sans connection Internet active. Installez Organic Maps, téléchargez des cartes, jetez votre carte SIM (au fait, votre opérateur vous traque en permanence) et partez pour un voyage d'une semaine avec une seule charge de batterie sans aucun octet envoyé au réseau.\n" #. type: Title ### #: content/_index.md @@ -58,7 +50,8 @@ msgstr "{{ badges() }}" #. type: Plain text #: content/_index.md msgid "{{ screenshot(src='/images/screenshots/hiking.jpg', alt='Hiking') }}" -msgstr "{{ screenshot(src='/images/screenshots/hiking.jpg', alt='Randonnée') }}" +msgstr "" +"{{ screenshot(src='/images/screenshots/hiking.jpg', alt='Randonnée') }}" #. type: Plain text #: content/_index.md @@ -67,13 +60,20 @@ msgstr "{{ screenshot(src='/images/screenshots/prague.jpg', alt='Prague') }}" #. type: Plain text #: content/_index.md -msgid "{{ screenshot(src='/images/screenshots/search.jpg', alt='Offline Search') }}" -msgstr "{{ screenshot(src='/images/screenshots/search.jpg', alt='Recherche Hors-ligne') }}" +msgid "" +"{{ screenshot(src='/images/screenshots/search.jpg', alt='Offline Search') }}" +msgstr "" +"{{ screenshot(src='/images/screenshots/search.jpg', alt='Recherche Hors-" +"ligne') }}" #. type: Plain text #: content/_index.md -msgid "{{ screenshot(src='/images/screenshots/dark.jpg', alt='Navigation in dark mode') }}" -msgstr "{{ screenshot(src='/images/screenshots/dark.jpg', alt='Navigation en mode sombre') }}" +msgid "" +"{{ screenshot(src='/images/screenshots/dark.jpg', alt='Navigation in dark " +"mode') }}" +msgstr "" +"{{ screenshot(src='/images/screenshots/dark.jpg', alt='Navigation en mode " +"sombre') }}" #. type: Title ## #: content/_index.md @@ -83,13 +83,21 @@ msgstr "Fonctionnalités" #. type: Plain text #: content/_index.md -msgid "Organic Maps is the ultimate companion app for travelers, tourists, hikers, and cyclists:" -msgstr "Organic Maps est le compagnon ultime pour les voyageurs, les touristes, les randonneurs et les cyclistes :" +msgid "" +"Organic Maps is the ultimate companion app for travelers, tourists, hikers, " +"and cyclists:" +msgstr "" +"Organic Maps est le compagnon ultime pour les voyageurs, les touristes, les " +"randonneurs et les cyclistes :" #. type: Bullet: '- ' #: content/_index.md -msgid "Detailed offline maps with places that don't exist on other maps, thanks to [OpenStreetMap][openstreetmap]" -msgstr "Cartes hors-connexion détaillées avec des endroits qui n'existent pas sur d'autres cartes, grâce à [OpenStreetMap][openstreetmap]" +msgid "" +"Detailed offline maps with places that don't exist on other maps, thanks to " +"[OpenStreetMap][openstreetmap]" +msgstr "" +"Cartes hors-connexion détaillées avec des endroits qui n'existent pas sur " +"d'autres cartes, grâce à [OpenStreetMap][openstreetmap]" #. type: Bullet: '- ' #: content/_index.md @@ -103,8 +111,8 @@ msgstr "Courbes de niveau, profils d'élevation, pics et pentes" #. type: Bullet: '- ' #: content/_index.md -msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance and Android Auto" -msgstr "Navigation à pied, à vélo et en voiture avec guidage vocal et Android Auto" +msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance" +msgstr "Navigation à pied, à vélo et en voiture grâce au guidage vocal" #. type: Bullet: '- ' #: content/_index.md @@ -113,8 +121,11 @@ msgstr "Recherche hos-connexion rapide sur la carte" #. type: Bullet: '- ' #: content/_index.md -msgid "Export/import bookmarks in KML/KMZ, import GPX" -msgstr "Export et import des marque-pages au format KML/KMZ et GPX" +msgid "" +"Bookmarks and tracks in KML, KMZ, GPX formats" +msgstr "" +"Export et import des marque-pages au format KML/KMZ (GPX est [planifié]" +"[gpx_issue])" #. type: Bullet: '- ' #: content/_index.md @@ -135,12 +146,12 @@ msgstr "Libre et open-source" #: content/_index.md #, no-wrap msgid "Why Organic?" -msgstr "Pourquoi Organic ?" +msgstr "Pourquoi Organic ?" #. type: Plain text #: content/_index.md msgid "Organic Maps is pure and organic, made with love:" -msgstr "Organic Maps est pur et organique, fait avec amour :" +msgstr "Organic Maps est pur et organique, fait avec amour :" #. type: Bullet: '- ' #: content/_index.md @@ -160,7 +171,9 @@ msgstr "Pas de frais de données mobiles inattendus" #. type: Plain text #: content/_index.md msgid "Organic Maps app is free from trackers and other bad stuff:" -msgstr "L'application Organic Maps est exempte de traqueurs et d'autres éléments nuisibles :" +msgstr "" +"L'application Organic Maps est exempte de traqueurs et d'autres éléments " +"nuisibles :" #. type: Bullet: '- ' #: content/_index.md content/donate/index.md @@ -180,7 +193,7 @@ msgstr "Pas de collecte de données" #. type: Bullet: '- ' #: content/_index.md msgid "No phoning home" -msgstr "Pas de téléphone fixe" +msgstr "Pas de transfert de données" #. type: Bullet: '- ' #: content/_index.md @@ -195,27 +208,27 @@ msgstr "Pas de tutoriels obligatoires" #. type: Bullet: '- ' #: content/_index.md msgid "No noisy email spam" -msgstr "Pas de spams à répétition" +msgstr "Pas de pourriel à répétition" #. type: Bullet: '- ' #: content/_index.md content/donate/index.md msgid "No push notifications" -msgstr "Pas de notifications" +msgstr "Notifications poussées" #. type: Bullet: '- ' #: content/_index.md msgid "No crapware" -msgstr "Pas d'applications préinstallées" +msgstr "Pas de crapware" #. type: Bullet: '- ' #: content/_index.md msgid "~~No pesticides~~ Purely organic!" -msgstr "~~Sans pesticides~~ Purement organique !" +msgstr "~~Sans pesticides~~ Purement organique !" #. type: Plain text #: content/_index.md msgid "The application is verified by [Exodus Privacy Project][exodus]:" -msgstr "L'application est vérifiée par [Exodus Privacy Project][exodus] :" +msgstr "L'application est vérifiée par [Exodus Privacy Project][exodus] :" #. type: Plain text #: content/_index.md @@ -224,8 +237,9 @@ msgstr "{{ exodus_screenshot() }}" #. type: Plain text #: content/_index.md -msgid "The iOS application is verified by [TrackerControl for iOS][trackercontrol]:" -msgstr "L'application iOS est vérifiée par [TrackerControl for iOS][trackercontrol] :" +msgid "" +"The iOS application is verified by [TrackerControl for iOS][trackercontrol]:" +msgstr "L'application iOS est vérifiée par [TrackerControl for iOS][trackercontrol] :" #. type: Plain text #: content/_index.md @@ -235,7 +249,7 @@ msgstr "{{ trackercontrol_screenshot() }}" #. type: Plain text #: content/_index.md msgid "Organic Maps doesn't request excessive permissions to spy on you:" -msgstr "Organic Maps ne demande pas de permissions excessives afin de vous espionner :" +msgstr "Organic Maps ne demande pas de permissions excessives afin de vous espionner :" #. type: Plain text #: content/_index.md @@ -245,7 +259,7 @@ msgstr "{{ privacy_screenshots() }}" #. type: Plain text #: content/_index.md msgid "At Organic Maps, we believe that privacy is a fundamental human right:" -msgstr "Chez Organic Maps, nous croyons que la protection de la vie privée est un droit humain fondamental :" +msgstr "Chez Organic Maps, nous croyons que la protection de la vie privée est un droit humain fondamental :" #. type: Bullet: '- ' #: content/_index.md @@ -265,29 +279,32 @@ msgstr "Restez en sécurité où que vous soyez" #. type: Plain text #: content/_index.md content/privacy/index.md msgid "Reject surveillance - embrace your freedom." -msgstr "Refusez la surveillance - adoptez votre liberté." +msgstr "Refusez la surveillance - adoptez la liberté." #. type: Plain text #: content/_index.md #, no-wrap msgid "**[Give Organic Maps a try!](#install)**\n" -msgstr "**[Essayez Organic Maps !](#install)**\n" +msgstr "**[Essayez Organic Maps !](#install)**\n" #. type: Title ## #: content/_index.md #, no-wrap msgid "Who is paying for the free app?" -msgstr "Qui paye pour que l'application soit gratuite ?" +msgstr "Qui paye pour que l'application soit gratuite ?" #. type: Plain text #: content/_index.md -msgid "The app is free for everyone. Please [donate](@/donate/index.md) to support us!" -msgstr "L'application est gratuite pour tous. Veuillez [faire un don](@/donate/index.md) pour nous soutenir !" +msgid "" +"The app is free for everyone. Please [donate](@/donate/index.md) to support " +"us!" +msgstr "L'application est gratuite pour tous. Veuillez [faire un don](@/donate/index.md) pour nous soutenir !" -#. type: Plain text +#. type: Title ### #: content/_index.md -msgid "To donate conveniently, click on your preferred payment method icon below:" -msgstr "Pour faire un don en toute simplicité, cliquez sur l'icône de la méthode de paiement de votre choix ci-dessous :" +#, no-wrap +msgid "There are different ways to donate:" +msgstr "Il y a différentes façons de faire un don :" #. type: Plain text #: content/_index.md content/donate/index.md @@ -298,11 +315,14 @@ msgstr "{{ donate_buttons() }}" #: content/_index.md #, no-wrap msgid "Our sponsors:" -msgstr "Nos sponsors :" +msgstr "Nos sponsors :" #. type: Plain text #: content/_index.md -msgid "[Mythic Beasts](https://www.mythic-beasts.com/) ISP [provides us][mythic_beasts_donation] two virtual servers with 400 TB/month of free bandwidth to help our users with maps downloads and updates." +msgid "" +"[Mythic Beasts](https://www.mythic-beasts.com/) ISP [provides us]" +"[mythic_beasts_donation] two virtual servers with 400 TB/month of free " +"bandwidth to help our users with maps downloads and updates." msgstr "Le FAI [Mythic Beasts](https://www.mythic-beasts.com/) [nous fournit][mythic_beasts_donation] deux serveurs virtuels avec 400To/mois de bande passante gratuite pour aider nos utilisateurs à télécharger les cartes et leurs mises à jour." #. type: Title ## @@ -313,13 +333,15 @@ msgstr "Communauté" #. type: Plain text #: content/_index.md -msgid "Organic Maps is an [open-source software][github] licensed under the Apache License 2.0." +msgid "" +"Organic Maps is an [open-source software][github] licensed under the Apache " +"License 2.0." msgstr "Organic Maps est un [logiciel open-source][github] sous licence Apache 2.0." #. type: Bullet: '- ' #: content/_index.md msgid "Please join our beta program, suggest your features, and report bugs:" -msgstr "Rejoignez notre programme bêta, proposez vos fonctionnalités et signalez les bugs :" +msgstr "Rejoignez notre programme bêta, proposez vos fonctionnalités et signalez les bogues :" #. type: Bullet: ' * ' #: content/_index.md @@ -343,8 +365,9 @@ msgstr "[Bêta Linux Desktop (paquets)][repology]" #. type: Bullet: '- ' #: content/_index.md -msgid "Report bugs or issues to [the issue tracker][issues] or [email us][email]." -msgstr "Signalez des bugs ou des problèmes dans [l'issue tracker][issues] ou bien [par courriel][email]." +msgid "" +"Report bugs or issues to [the issue tracker][issues] or [email us][email]." +msgstr "Signalez des bogues ou des problèmes dans [l'issue tracker][issues] ou bien [par courrier électronique][email]." #. type: Bullet: '- ' #: content/_index.md @@ -353,8 +376,10 @@ msgstr "[Discutez][ideas] des idées ou proposez de nouvelles fonctionnalités." #. type: Bullet: '- ' #: content/_index.md -msgid "Subscribe to our [Telegram Channel][telegram] or to the [matrix space][matrix] for updates." -msgstr "Abonnez-vous à notre [Canal Telegram][telegram] ou bien à [l'espace matrix][matrix] pour être tenu au courant des mises à jour." +msgid "" +"Subscribe to our [Telegram Channel][telegram] or to the [matrix space]" +"[matrix] for updates." +msgstr "Abonnez-vous à notre [Chaîne Telegram][telegram] ou bien à [l'espace matrix][matrix] pour des mises à jour sur le projet." #. type: Bullet: '- ' #: content/_index.md @@ -368,22 +393,19 @@ msgstr "Visitez notre [page Github][github]." #. type: Bullet: '- ' #: content/_index.md -msgid "Follow our updates in [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." -msgstr "Suivez nos dernières nouvelles sur [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Join (or create and let us know) local communities: [Hungarian translators Matrix room](https://matrix.to/#/#organicmapstranslate_hu:matrix.org)" -msgstr "Rejoignez (ou créez et faites-nous connaître) des communautés locales : [Salle Matrix des traducteurs hongrois](https://matrix.to/#/#organicmapstranslate_hu:matrix.org)" - -#. type: Link reference -#: content/_index.md -#, no-wrap -msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)" -msgstr "[fork] : https://fr.wikipedia.org/wiki/Fork_(d%C3%A9veloppement_logiciel)" +msgid "" +"Follow our updates in [Mastodon][mastodon], [Facebook][facebook], [Twitter]" +"[twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." +msgstr "Suivez nos dernières nouvelles sur [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." #. type: Plain text -#: content/_index.md content/donate/index.md content/support-us/index.md +#: content/_index.md +#, no-wrap +msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)\n" +msgstr "[fork] : https://fr.wikipedia.org/wiki/Fork_(d%C3%A9veloppement_logiciel)\n" + +#. type: Plain text +#: content/_index.md content/support-us/index.md msgid "{{ references() }}" msgstr "{{ references() }}" @@ -403,11 +425,13 @@ msgstr "Faire un don" #: content/donate/index.md #, no-wrap msgid "Donate to support the development of Organic Maps" -msgstr "Faites un don pour soutenir le développement d'Organic Maps" +msgstr "Faire un don pour soutenir le développement d'Organic Maps" #. type: Plain text #: content/donate/index.md -msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]** in **[EUR][stripe_eur], [USD][stripe_usd], [GBP][stripe_GBP], [CHF][stripe_chf], [UAH][stripe_uah], [PLN][stripe_pln]**:" +msgid "" +"Organic Maps app is _free for everyone_ thanks to your **[donations]" +"[stripe]**:" msgstr "L'application Organic Maps est _gratuite pour tous_ grâce à vos **[dons][stripe]** :" #. type: Bullet: '- ' @@ -418,99 +442,98 @@ msgstr "Pas de traqueurs" #. type: Bullet: '- ' #: content/donate/index.md msgid "No registration" -msgstr "Pas d'inscription" +msgstr "inscription" #. type: Bullet: '- ' #: content/donate/index.md msgid "Open source" msgstr "Open source" -#. type: Plain text -#: content/donate/index.md -msgid "Click on your preferred payment method icon below:" -msgstr "Cliquez sur l'icône du mode de paiement de votre choix ci-dessous :" - #. type: Title ## #: content/donate/index.md #, no-wrap msgid "Why donate to Organic Maps?" -msgstr "Pourquoi faire un don à Organic Maps ?" +msgstr "Pourquoi faire un don à Organic Maps ?" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "Our goal is to provide a privacy-focused, fast and easy-to-use alternative to Google Maps and Apple Maps." -msgstr "Notre objectif est de proposer une alternative à Google Maps et Apple Maps qui soit rapide, facile à utiliser et respectueuse de la vie privée." +msgid "" +"We rely on your donations to carry out our mission to keep Organic Maps open " +"and free. And free from ads." +msgstr "Nous comptons sur vos dons pour mener à bien notre mission qui est de faire en sorte que Organic Maps reste ouverte et libre. Et sans publicité." #. type: Bullet: '2. ' #: content/donate/index.md -msgid "Improving public map data for the numerous websites, apps and platforms which use OpenStreetMap, and involving more people in contributing map info is our another goal." -msgstr "Notre autre objectif est d'améliorer les données cartographiques publiques pour les nombreux sites web, applications et plateformes qui utilisent OpenStreetMap, et d'impliquer davantage de personnes dans l'apport d'informations cartographiques." +msgid "" +"We are a few enthusiasts contributing in our free time, and spending our " +"families' money on the project. We love what we do, and we love our users ❤️." +msgstr "Nous sommes quelques passionnés qui contribuent au projet sur notre temps libre et qui y consacrons l'argent de nos familles. Nous aimons ce que nous faisons, et nous aimons nos utilisateurs ❤️." #. type: Bullet: '3. ' #: content/donate/index.md -msgid "We rely on your donations to keep Organic Maps open and free for everyone. And free from ads." -msgstr "Nous comptons sur vos dons pour faire en sorte que Organic Maps reste ouvert et libre pour tous. Et sans publicité." - -#. type: Bullet: '4. ' -#: content/donate/index.md -msgid "We love what we do, and we love our users ❤️." -msgstr "Nous aimons ce que nous faisons et nous aimons nos utilisateurs ❤️." +msgid "" +"With your support, we want to become a better, privacy-focused version of " +"Google Maps." +msgstr "Grâce à votre soutien, nous souhaitons devenir une version améliorée de Google Maps, plus respectueuse de la vie privée." #. type: Title ## #: content/donate/index.md #, no-wrap -msgid "Why a free project needs money?" -msgstr "Pourquoi un projet gratuit a-t-il besoin d'argent ?" +msgid "What will the money be used for?" +msgstr "À quoi servira l'argent ?" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "In 2023, Organic Maps got its first million users. Our servers provide free, fast and frequent map updates all over the world." -msgstr "En 2023, Organic Maps a reçu son premier million d'utilisateurs. Nos serveurs fournissent des mises à jour gratuites, rapides et fréquentes des cartes dans le monde entier." +msgid "" +"We pay for fast servers, so anyone in the World can download free map data " +"updates without delays. It's hundreds of terabytes monthly, and the amount " +"is growing." +msgstr "Nous payons pour des serveurs rapides, afin que n'importe qui dans le Monde puisse télécharger des mises à jour de cartes gratuites sans délais. Ce sont des téraoctets mensuellement et la quantité continue d'augmenter." #. type: Bullet: '2. ' #: content/donate/index.md -msgid "User support, bugfixing and publishing quality app updates are at the top of our priorities. There are [~2000 bug reports and feature requests on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." -msgstr "L'assistance aux utilisateurs, la résolution des bugs et la publication de mises à jour de qualité sont en tête de nos priorités. Il y a [~2000 issues sur GitHub][github issues], et ce nombre augmente chaque jour. L'AppStore, Google Play et les emails d'assistance sont inondés de commentaires et de bugs. Nous voulons livrer un produit de haute qualité." +msgid "" +"User support, bugfixing, and improving the stability of the app are at the " +"top of our priorities. There are [1800+ issues on GitHub][github issues], " +"and this number is growing every day. AppStore, Google Play, and support " +"emails are overflooded with comments and bugs. We want to deliver a high-" +"quality product." +msgstr "" +"L'assistance aux utilisateurs, la correction des bogues et l'amélioration de " +"la stabilité de l'application sont en tête de nos priorités. Il y a [1800+ " +"problèmes sur GitHub] [github issues], et ce nombre augmente chaque jour. " +"L'AppStore, Google Play et les courriels d'assistance sont inondés de " +"commentaires et de bogues. Nous voulons livrer un produit de haute qualité." #. type: Bullet: '3. ' #: content/donate/index.md -msgid "With enough money, new features can be developed. To name a few:" -msgstr "Avec assez d'argent, de nouvelles fonctionnalités peuvent être développées. Pour n'en citer que quelques-unes :" +msgid "With enough money, new features can be developed faster, for example:" +msgstr "Avec assez d'argent, de nouvelles fonctionnalités peuvent être développées plus rapidement, par exemple :" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Backup and sync bookmarks and tracks" -msgstr "Sauvegarde et synchronisation des favoris et des pistes" +msgid "Weekly and automated map data updates" +msgstr "Mises à jour des données cartographiques hebdomadaires et automatisées" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "GPS track recorder with GPX export" -msgstr "Enregistreur de trace GPS avec export GPX" +msgid "Bookmarks backup and sync" +msgstr "Sauvegarde et synchronisation des marque-pages" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Satellite imagery" -msgstr "Imagerie satellite" +msgid "Android Auto" +msgstr "Android Auto" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Public Transport" -msgstr "Transport public" +msgid "GPS track recorder with GPX support" +msgstr "Enregistreur de trace GPS avec support GPX" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Traffic and accident reporting" -msgstr "Rapports sur le trafic et les accidents" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Photos and Reviews" -msgstr "Photos et commentaires" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Map styles for different activities" -msgstr "Styles de cartes pour différentes activités" +msgid "Better map styles for different activities" +msgstr "De meilleurs styles de cartes pour différentes activités" #. type: Bullet: ' - ' #: content/donate/index.md @@ -519,13 +542,18 @@ msgstr "Ombrage des collines et terrain en 3D" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "More advanced OpenStreetMap editor" -msgstr "Editeur OpenStreetMap plus avancé" +msgid "Improve the OpenStreetMap editor" +msgstr "Améliorer l'éditeur OpenStreetMap" #. type: Bullet: ' - ' #: content/donate/index.md msgid "Better offline address search, routing, and navigation" -msgstr "Meilleure recherche d'adresse hors ligne, du routage et de la navigation" +msgstr "Amélioration de la recherche d'adresse hors ligne, du routage et de la navigation" + +#. type: Bullet: ' - ' +#: content/donate/index.md +msgid "Public Transport" +msgstr "Public Transport" #. type: Bullet: ' - ' #: content/donate/index.md @@ -536,12 +564,15 @@ msgstr "… et [beaucoup d'autres][github issues] fonctionnalités que vous voul #: content/donate/index.md #, no-wrap msgid "How to donate?" -msgstr "Comment faire un don ?" +msgstr "Comment faire un don ?" #. type: Plain text #: content/donate/index.md -msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. One-time donations are appreciated too." -msgstr "Les dons récurrents sont le meilleur moyen d'assurer un revenu relativement stable au projet et de nous motiver pour des tâches et des objectifs à long terme. Les dons uniques sont aussi appréciés." +msgid "" +"Recurring donations are the best way to ensure a relatively stable income " +"for the project and motivate us for long-term tasks and goals. But you can " +"also donate one time." +msgstr "Les dons récurrents sont le meilleur moyen d'assurer un revenu relativement stable au projet et de nous motiver pour des tâches et des objectifs à long terme. Mais vous pouvez aussi faire un don unique." #. type: Title ### #: content/donate/index.md @@ -558,7 +589,7 @@ msgstr "{{ bank_transfer() }}" #: content/donate/index.md #, no-wrap msgid "Crypto" -msgstr "Crypto" +msgstr "cryptographique" #. type: Plain text #: content/donate/index.md @@ -574,18 +605,28 @@ msgstr "{{ crypto_table() }}" #: content/donate/index.md #, no-wrap msgid "Can you help us in any other way?" -msgstr "Pouvez-vous nous aider d'une autre manière ?" +msgstr "Pouvez-vous nous aider d'une autre manière ?" #. type: Plain text #: content/donate/index.md -msgid "Yes! There are many ways to support Organic Maps. Please see [Support Us](@/support-us/index.md) page for more details." -msgstr "Oui ! Il existe de nombreuses façons de soutenir Organic Maps. Veuillez consulter la page [Nous soutenir](@/support-us/index.md) pour plus de détails." +msgid "" +"Yes! There are many ways to support Organic Maps. Please see [Support Us](@/" +"support-us/index.md) page for more details." +msgstr "Oui ! Il existe de nombreuses façons de soutenir Organic Maps. Veuillez consulter la page [Nous soutenir](@/support-us/index.md) pour plus de détails." + +#. type: Plain text +#: content/donate/index.md +#, no-wrap +msgid "" +"[stripe]: https://donate.organicmaps.app/ \"Donate via Stripe\"\n" +"[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" +msgstr "[stripe]: https://donate.organicmaps.app/ \"Faire un don via Stripe\"\n[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" #. type: Yaml Front Matter Hash Value: description #: content/news/_index.md #, no-wrap msgid "Stay in touch with the latest Organic Maps releases, news and updates from our team" -msgstr "Soyez au courant des dernières versions d'Organic Maps, des nouvelles et des mises à jour de notre équipe" +msgstr "Soyez au courant des dernières nouveautés d'Organic Maps, des nouvelles et des mises à jour de notre équipe" #. type: Yaml Front Matter Hash Value: extra menu_title #: content/news/_index.md @@ -597,7 +638,7 @@ msgstr "Actualités" #: content/news/_index.md #, no-wrap msgid "Organic Maps: Latest news and updates from our team" -msgstr "Organic Maps : Dernières nouvelles et mises à jour de notre équipe" +msgstr "Organic Maps : Dernières nouvelles et mises à jour de notre équipe" #. type: Yaml Front Matter Hash Value: description #: content/privacy/index.md @@ -615,7 +656,7 @@ msgstr "Confidentialité" #: content/privacy/index.md #, no-wrap msgid "Organic Maps: Privacy Policy" -msgstr "Organic Maps : Politique de confidentialité" +msgstr "Organic Maps : Politique de confidentialité" #. type: Plain text #: content/privacy/index.md @@ -624,17 +665,21 @@ msgstr "Organic Maps respecte votre vie privée et NE VOUS ESPIONNE PAS." #. type: Plain text #: content/privacy/index.md -msgid "Unlike most other applications, there is no tracking, no ads, no spyware, no data and statistics collection in Organic Maps." +msgid "" +"Unlike most other applications, there is no tracking, no ads, no spyware, no " +"data and statistics collection in Organic Maps." msgstr "Contrairement à la plupart des autres applications, il n'y a pas de suivi, pas de publicité, pas de logiciel espion, pas de collecte de données et de statistiques dans Organic Maps." #. type: Plain text #: content/privacy/index.md msgid "Stay away from Big Tech's prying eyes!" -msgstr "Restez à l'abri des regards indiscrets des GAFAM !" +msgstr "Restez à l'abri des regards indiscrets des GAFAM !" #. type: Plain text #: content/privacy/index.md content/terms/index.md -msgid "If you have any questions or suggestions, please contact us at [legal@organicmaps.app](mailto:legal@organicmaps.app)." +msgid "" +"If you have any questions or suggestions, please contact us at " +"[legal@organicmaps.app](mailto:legal@organicmaps.app)." msgstr "Si vous avez des questions ou des suggestions, veuillez nous contacter à [legal@organicmaps.app](mailto:legal@organicmaps.app)." #. type: Plain text @@ -653,7 +698,7 @@ msgstr "Différentes façons de supporter le développement de notre application #: content/support-us/index.md #, no-wrap msgid "Support Us" -msgstr "Soutenez-nous" +msgstr "Contribuer au développement" #. type: Yaml Front Matter Hash Value: title #: content/support-us/index.md @@ -663,37 +708,47 @@ msgstr "Soutenir le développement d'Organic Maps" #. type: Plain text #: content/support-us/index.md -msgid "Organic Maps is a free, open-source app. It is free from ads, it does not collect your personal information, and it is developed by a few enthusiasts with the help of the community." +msgid "" +"Organic Maps is a free, open-source app. It is free from ads, it does not " +"collect your personal information, and it is developed by a few enthusiasts " +"with the help of the community." msgstr "Organic Maps est une application gratuite et open-source. Elle ne contient pas de publicités, ne collecte pas vos informations personnelles et est développée par quelques passionnés avec l'aide de la communauté." #. type: Plain text #: content/support-us/index.md msgid "There are different ways to support the development:" -msgstr "Il y a plusieurs moyens de soutenir le développement :" +msgstr "Il y a plusieurs moyens de soutenir le développement :" #. type: Bullet: '- ' #: content/support-us/index.md -msgid "[Donate](@/donate/index.md)! Every dollar or euro counts and helps us to pay for servers and scale." -msgstr "[Faire un don](@/donate/index.md) ! Chaque dollar ou euro compte et nous aide à payer nos serveurs et à nous agrandir." +msgid "" +"[Donate](@/donate/index.md)! Every dollar or euro counts and helps us to pay " +"for servers and scale." +msgstr "[Faire un don](@/donate/index.md) ! Chaque dollar ou euro compte et nous aide à payer nos serveurs et à nous agrandir." #. type: Bullet: '- ' #: content/support-us/index.md -msgid "Report bugs and share ideas on our [GitHub][github] or via [email][email]." -msgstr "Signalez des bugs et partagez vos idées sur notre [GitHub][github] ou par [email][email]." +msgid "" +"Report bugs and share ideas on our [GitHub][github] or via [email][email]." +msgstr "Signalez des bogues et partagez vos idées sur notre [GitHub][github] ou par [courrier électronique][email]." #. type: Bullet: '- ' #: content/support-us/index.md -msgid "Help us to [fix bugs][contributing] and do code reviews if you are a developer. Every fixed small issue makes someone happier." -msgstr "Aidez-nous à [corriger des bugs][contributing] et faire des revues de code si vous êtes un développeur. Chaque petit problème corrigé rend quelqu'un plus heureux." +msgid "" +"Help us to [fix bugs][contributing] and do code reviews if you are a " +"developer. Every fixed small issue makes someone happier." +msgstr "Aidez-nous à [corriger des bogues][contributing] et faire des revues de code si vous êtes un développeur. Chaque petit problème corrigé rend quelqu'un plus heureux." #. type: Bullet: '- ' #: content/support-us/index.md msgid "[Translate][translations] missing strings in the app's interface." -msgstr "[Traduisez][translations] les phrases manquantes dans l'interface de l'application." +msgstr "[Traduisez][translations] les chaînes de caractère manquantes dans l'interface de l'application." #. type: Bullet: '- ' #: content/support-us/index.md -msgid "Translate [App Store][translations_appstore] and [Android][translations_googleplay] descriptions into your language." +msgid "" +"Translate [App Store][translations_appstore] and [Android]" +"[translations_googleplay] descriptions into your language." msgstr "Traduisez les descriptions de l'[App Store][translations_appstore] et du [Play Store][translations_googleplay] dans votre langue." #. type: Bullet: '- ' @@ -703,38 +758,49 @@ msgstr "[Traduisez][translate_website] notre site web dans votre langue." #. type: Bullet: '- ' #: content/support-us/index.md -msgid "Join the [OpenStreetMap][openstreetmap] community and contribute to the maps data." +msgid "" +"Join the [OpenStreetMap][openstreetmap] community and contribute to the maps " +"data." msgstr "Rejoignez la communauté [OpenStreetMap][openstreetmap] et contribuez aux données cartographiques." #. type: Bullet: '- ' #: content/support-us/index.md -msgid "Fix red cities found by our [public transport validator][public_transport_validator], for subways and light rails to work in the app." -msgstr "Corrigez les villes rouges trouvées par notre [validateur de transports en commun][public_transport_validator], pour que les métros et les trams fonctionnent dans l'application." +msgid "" +"Fix red cities found by our [public transport validator]" +"[public_transport_validator], for subways and light rails to work in the app." +msgstr "Corriger les villes rouges trouvées par notre [validateur de transports en commun][public_transport_validator], pour que les métros et les trams fonctionnent dans l'application." #. type: Bullet: '- ' #: content/support-us/index.md -msgid "Support other users on [GitHub][issues], [Telegram][telegram_chat], [Matrix][matrix], [Twitter][twitter], [Facebook][facebook], [Instagram][instagram]." +msgid "" +"Support other users on [GitHub][issues], [Telegram][telegram_chat], [Matrix]" +"[matrix], [Twitter][twitter], [Facebook][facebook], [Instagram][instagram]." msgstr "Supportez d'autres utilisateurs dans [GitHub][issues], [Telegram][telegram_chat], [Matrix][matrix], [Twitter][twitter], [Facebook][facebook], [Instagram][instagram]." #. type: Bullet: '- ' #: content/support-us/index.md -msgid "Tell everyone about Organic Maps. A bigger community is a stronger community." +msgid "" +"Tell everyone about Organic Maps. A bigger community is a stronger community." msgstr "Parlez à tout le monde d'Organic Maps. Une communauté plus grande est une communauté plus forte." #. type: Bullet: '- ' #: content/support-us/index.md -msgid "Rate us in [Google Play][googleplay_review], [Apple Store][appstore_review], [Huawei Appgallery][appgallery_review]." +msgid "" +"Rate us in [Google Play][googleplay_review], [Apple Store][appstore_review], " +"[Huawei Appgallery][appgallery_review]." msgstr "Donnez-nous votre avis sur [Google Play][googleplay_review], l'[Apple Store][appstore_review], [Huawei Appgallery][appgallery_review]." #. type: Bullet: '- ' #: content/support-us/index.md msgid "Any help is welcome!" -msgstr "Toute forme d'aide est la bienvenue !" +msgstr "Toute forme d'aide est la bienvenue !" #. type: Plain text #: content/support-us/index.md -msgid "Our small team is very grateful for your feedback and support. Organic Maps would not be possible without our users ❤️." -msgstr "Notre petite équipe est très reconnaissante pour vos retours et votre soutien. Organic Maps n'existerait pas sans nos utilisateurs ❤️." +msgid "" +"Our small team is very grateful for your feedback and support. Organic Maps " +"would not be possible without our users ❤️." +msgstr "Notre petite équipe est très reconnaissante pour vos retours et votre soutien. Organic Maps ne serait pas possible sans nos utilisateurs ❤️." #. type: Yaml Front Matter Hash Value: description #: content/terms/index.md @@ -752,27 +818,38 @@ msgstr "Conditions" #: content/terms/index.md #, no-wrap msgid "Organic Maps: terms" -msgstr "Organic Maps : conditions" +msgstr "Organic Maps : conditions" #. type: Plain text #: content/terms/index.md -msgid "This app is licensed under the Apache License, Version 2.0 (the \"License\"); you may not use this application except in compliance with the License." -msgstr "Cette application est sous licence Apache, Version 2.0 (la \"Licence\") ; vous ne pouvez pas utiliser cette application sauf en conformité avec la License." +msgid "" +"This app is licensed under the Apache License, Version 2.0 (the \"License" +"\"); you may not use this application except in compliance with the License." +msgstr "Cette application est sous licence Apache, Version 2.0 (la \"License\") ; vous ne pouvez pas utiliser cette application sauf en conformité avec la License." #. type: Plain text #: content/terms/index.md -msgid "You may obtain a copy of the License at [http://www.apache.org/licenses/LICENSE-2.0][license]" +msgid "" +"You may obtain a copy of the License at [http://www.apache.org/licenses/" +"LICENSE-2.0][license]" msgstr "Vous pouvez obtenir une copie de la License à [http://www.apache.org/licenses/LICENSE-2.0][license]" #. type: Plain text #: content/terms/index.md -msgid "Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License." -msgstr "Sauf si la loi applicable l'exige ou si accepté par accord écrit, les logiciels distribués sous la Licence sont distribués \"TELS QUELS\", SANS GARANTIE OU CONDITIONS D'AUCUNE SORTE, qu'elles soient exprimées ou impliquées. Lisez la Licence pour le langage spécifique gouvernant les permissions et les limitations sous la Licence." +msgid "" +"Unless required by applicable law or agreed to in writing, software " +"distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT " +"WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the " +"License for the specific language governing permissions and limitations " +"under the License." +msgstr "Sauf si la loi applicable l'exige ou si accepté par accord écrit, les logiciels distribués sous la Licence sont distribués \"TELS QUELS\", SANS GARANTIE OU CONDITIONS D'AUCUNE SORTE, qu'elles soient exprimées ou impliquées. Voyez la Licence pour le langage spécifique gouvernant les permissions et les limitations sous la Licence." #. type: Plain text #: content/terms/index.md -msgid "Most libraries in the following directories on [GitHub][github] made by other people and organizations and licensed in different ways:" -msgstr "La plupart des bibliothèques dans les répertoires suivants sur [GitHub][github] ont été créées par d'autres personnes et organisations et sont sous différentes licences :" +msgid "" +"Most libraries in the following directories on [GitHub][github] made by " +"other people and organizations and licensed in different ways:" +msgstr "La plupart des bibliothèques dans les répertoires suivants sur [GitHub][github] ont été créées par d'autres personnes et organisations et sont sous différentes licences :" #. type: Bullet: '- ' #: content/terms/index.md @@ -786,37 +863,31 @@ msgstr "outils" #. type: Plain text #: content/terms/index.md -msgid "Please refer to their LICENSE, COPYING or NOTICE files for terms of use." -msgstr "Veuillez vous référer à leurs documents LICENSE, COPYING ou NOTICE pour connaître les conditions d'utilisation." +msgid "" +"Please refer to their LICENSE, COPYING or NOTICE files for terms of use." +msgstr "Veuillez vous référer à leurs documents LICENCE, COPYING ou NOTICE pour connaître les conditions d'utilisation." #. type: Plain text #: content/terms/index.md -msgid "See also [data/copyright.html][copyright] file for a full list of copyright notices for Organic Maps application." +msgid "" +"See also [data/copyright.html][copyright] file for a full list of copyright " +"notices for Organic Maps application." msgstr "Voir aussi le fichier [data/copyright.html][copyright] pour une liste complète des avis de copyright pour l'application Organic Maps." -#. type: Link reference +#. type: Plain text #: content/terms/index.md #, no-wrap -msgid "[github]: https://github.com/organicmaps/organicmaps" -msgstr "[github]: https://github.com/organicmaps/organicmaps" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[license]: http://www.apache.org/licenses/LICENSE-2.0" -msgstr "[license]: http://www.apache.org/licenses/LICENSE-2.0" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html" -msgstr "[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html" +msgid "" +"[github]: https://github.com/organicmaps/organicmaps\n" +"[license]: http://www.apache.org/licenses/LICENSE-2.0\n" +"[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html\n" +msgstr "[github] : https://github.com/organicmaps/organicmaps\n[licence] : http://www.apache.org/licenses/LICENSE-2.0\n[copyright] : https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html\n" #. type: Hash Value: address #: translations.yaml #, no-wrap msgid "Address" -msgstr "Adresse" +msgstr "Addresse" #. type: Hash Value: back #: translations.yaml @@ -830,18 +901,6 @@ msgstr "Retour aux actualités" msgid "Contact Us" msgstr "Nous contacter" -#. type: Hash Value: engines -#: translations.yaml -#, no-wrap -msgid "Supported TTS Engines" -msgstr "Moteurs TTS pris en charge" - -#. type: Hash Value: faq-menu-title -#: translations.yaml -#, no-wrap -msgid "F.A.Q." -msgstr "F.A.Q." - #. type: Hash Value: install-appgallery #: translations.yaml #, no-wrap @@ -872,12 +931,6 @@ msgstr "Installer Organic Maps depuis Google Play" msgid "English" msgstr "Français" -#. type: Hash Value: language-word -#: translations.yaml -#, no-wrap -msgid "Language" -msgstr "Langue" - #. type: Hash Value: name #: translations.yaml #, no-wrap @@ -889,40 +942,3 @@ msgstr "Nom" #, no-wrap msgid "Token" msgstr "Jeton" - -#, no-wrap -#~ msgid "There are different ways to donate:" -#~ msgstr "Il y a plusieurs façons de faire un don :" - -#~ msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]**:" -#~ msgstr "L'application Organic Maps est _gratuite pour tous_ grâce à vos **[dons][stripe]** :" - -#~ msgid "We are a few enthusiasts contributing in our free time, and spending our families' money on the project. We love what we do, and we love our users ❤️." -#~ msgstr "Nous sommes quelques passionnés qui contribuent au projet sur notre temps libre et nous y consacrons l'argent de nos familles. Nous aimons ce que nous faisons, et nous aimons nos utilisateurs ❤️." - -#~ msgid "With your support, we want to become a better, privacy-focused version of Google Maps." -#~ msgstr "Avec votre soutien, nous souhaitons devenir une version améliorée de Google Maps, axée sur la confidentialité." - -#, no-wrap -#~ msgid "What will the money be used for?" -#~ msgstr "À quoi servira l'argent ?" - -#~ msgid "We pay for fast servers, so anyone in the World can download free map data updates without delays. It's hundreds of terabytes monthly, and the amount is growing." -#~ msgstr "Nous payons pour des serveurs rapides, afin que n'importe qui dans le Monde puisse télécharger des mises à jour de cartes gratuites sans délais. Ce sont des centaines de téraoctets téléchargés mensuellement et ce chiffre ne cesse de croître." - -#~ msgid "Weekly and automated map data updates" -#~ msgstr "Mises à jour des données cartographiques hebdomadaires et automatisées" - -#~ msgid "Bookmarks backup and sync" -#~ msgstr "Sauvegarde et synchronisation des favoris" - -#~ msgid "Android Auto" -#~ msgstr "Android Auto" - -#, no-wrap -#~ msgid "" -#~ "[stripe]: https://donate.organicmaps.app/ \"Donate via Stripe\"\n" -#~ "[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" -#~ msgstr "" -#~ "[stripe]: https://donate.organicmaps.app/ \"Faire un don via Stripe\"\n" -#~ "[github issues]: https://github.com/organicmaps/organicmaps/issues \"Issues GitHub\"\n" diff --git a/po/content.gl.po b/po/content.gl.po index 3f22b836..3b4f5693 100644 --- a/po/content.gl.po +++ b/po/content.gl.po @@ -4,7 +4,7 @@ # FIRST AUTHOR , YEAR. # msgid "" -msgstr "Project-Id-Version: Organic Maps Website 1.0\nPO-Revision-Date: 2024-04-02 19:54+0000\nLast-Translator: Weblate Translation Memory \nLanguage-Team: Galician \nLanguage: gl\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-Forms: nplurals=2; plural=n != 1;\nX-Generator: Weblate 5.5-dev\n" +msgstr "Project-Id-Version: Organic Maps Website 1.0\nPO-Revision-Date: 2023-09-05 10:57+0000\nLast-Translator: Angela Bennett \nLanguage-Team: Galician \nLanguage: gl\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-Forms: nplurals=2; plural=n != 1;\nX-Generator: Weblate 5.0.1-dev\n" #. type: Yaml Front Matter Hash Value: description #: content/_index.md @@ -26,367 +26,409 @@ msgstr "Organic Maps: camiñadas sen conexión, bicicletas, rutas e navegación" #. type: Plain text #: content/_index.md -#, fuzzy, no-wrap -#| msgid "**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, and cyclists based on top of crowd-sourced **[OpenStreetMap][openstreetmap]** data. It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" -msgid "" -"**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, drivers and cyclists based on **[OpenStreetMap][openstreetmap]** data created by the community.\n" -"It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" +#, markdown-text, no-wrap +msgid "**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, and cyclists based on top of crowd-sourced **[OpenStreetMap][openstreetmap]** data. It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" msgstr "**Organic Maps** é unha aplicación gratuíta de mapas sen conexión para Android e iOS para viaxeiros, turistas, sendeiristas e ciclistas baseada nos datos **[OpenStreetMap][openstreetmap]** de fontes abertas. É unha aplicación de código aberto e centrada na privacidade [fork][fork] da aplicación **Maps.me** (anteriormente coñecida como [**MapsWithMe**][mapswithme]), mantida polas mesmas persoas que crearon ** MapsWithMe** en 2011.\n" #. type: Plain text #: content/_index.md -#, fuzzy, no-wrap -#| msgid "**Organic Maps** is one of the only applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card (by the way, your operator constantly tracks you), and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" -msgid "**Organic Maps** is one of the few applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card, and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" +#, markdown-text, no-wrap +msgid "**Organic Maps** is one of the only applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card (by the way, your operator constantly tracks you), and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" msgstr "@**Organic Maps** é unha das poucas aplicacións de hoxe en día que admite o 100 % das funcións sen unha conexión activa a Internet. Instala Organic Maps, descarga mapas, tira a tarxeta SIM (por certo, o teu operador rastrexache constantemente) e fai unha viaxe dunha semana cunha soa carga de batería sen que se envíe ningún byte á rede.\n" -#. type: Plain text -#: content/_index.md -#, no-wrap -msgid "> In 2023, Organic Maps [got its first million](@/news/2023-12-23/281/index.md) users. [Help us](@/donate/index.md) to scale!\n" -msgstr "" - #. type: Title ### #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Download and install Organic Maps from [AppStore][appstore], [Google Play][googleplay], [FDroid][fdroid], [Huawei AppGallery][appgallery] {#install}" msgstr "Descarga e instala Organic Maps desde [AppStore][appstore], [Google Play][googleplay], [FDroid][fdroid], [Huawei AppGallery][appgallery] {#install}" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ badges() }}" msgstr "@{{ badges() }}" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ screenshot(src='/images/screenshots/hiking.jpg', alt='Hiking') }}" msgstr "@{{ screenshot(src='/images/screenshots/hiking.jpg', alt='Hiking') }}" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ screenshot(src='/images/screenshots/prague.jpg', alt='Prague') }}" msgstr "@{{ screenshot(src='/images/screenshots/prague.jpg', alt='Prague') }}" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ screenshot(src='/images/screenshots/search.jpg', alt='Offline Search') }}" msgstr "@{{ screenshot(src='/images/screenshots/search.jpg', alt='Búsqueda sen conexión') }}" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ screenshot(src='/images/screenshots/dark.jpg', alt='Navigation in dark mode') }}" msgstr "@{{ screenshot(src='/images/screenshots/dark.jpg', alt='Navegación en modo escuro') }}" #. type: Title ## #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Features" msgstr "Características" #. type: Plain text #: content/_index.md +#, markdown-text msgid "Organic Maps is the ultimate companion app for travelers, tourists, hikers, and cyclists:" msgstr "Organic Maps é a aplicación complementaria definitiva para viaxeiros, turistas, sendeiristas e ciclistas:" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Detailed offline maps with places that don't exist on other maps, thanks to [OpenStreetMap][openstreetmap]" msgstr "Mapas detallados sen conexión con lugares que non existen noutros mapas, grazas a [OpenStreetMap][openstreetmap]" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Cycling routes, hiking trails, and walking paths" msgstr "Rutas ciclistas, rutas de sendeirismo e camiños a pé" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Contour lines, elevation profiles, peaks, and slopes" msgstr "Curvas de nivel, perfís de elevación, cumes e pendentes" #. type: Bullet: '- ' #: content/_index.md -#, fuzzy -#| msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance" -msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance and Android Auto" +#, markdown-text +msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance" msgstr "Navegación paso a paso, andando en bicicleta e en coche con guía de voz" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Fast offline search on the map" msgstr "Busca rápida sen conexión no mapa" #. type: Bullet: '- ' #: content/_index.md -msgid "Export/import bookmarks in KML/KMZ, import GPX" +#, markdown-text +msgid "Bookmarks and tracks in KML, KMZ, GPX formats" msgstr "Marcadores e pistas en formatos KML, KMZ e GPX" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Dark Mode to protect your eyes" msgstr "Modo escuro para protexer os ollos" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Countries and regions don't take a lot of space" msgstr "Os países e as rexións non ocupan moito espazo" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Free and open-source" msgstr "Libre e de código aberto" #. type: Title ## #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Why Organic?" msgstr "¿Por qué Organic?" #. type: Plain text #: content/_index.md +#, markdown-text msgid "Organic Maps is pure and organic, made with love:" msgstr "Organic Maps e puro e orgánico, e feito con amor:" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Respects your privacy" msgstr "Respetamos a túa privacidade" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Saves your battery" msgstr "Aforramos batería" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No unexpected mobile data charges" msgstr "Non hai cargos inesperados de datos móbiles" #. type: Plain text #: content/_index.md +#, markdown-text msgid "Organic Maps app is free from trackers and other bad stuff:" msgstr "Organic Maps está libre de rastreadores e outras cousas malas:" #. type: Bullet: '- ' #: content/_index.md content/donate/index.md +#, markdown-text msgid "No ads" msgstr "Sen publicidade" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No tracking" msgstr "Sen seguimento" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No data collection" msgstr "Sen recollida de datos" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No phoning home" msgstr "Sen conexións externas" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No annoying registration" msgstr "Sen rexistro molesto" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No mandatory tutorials" msgstr "Non hai tutoriales obrigatorios" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No noisy email spam" msgstr "Sen correos basura" #. type: Bullet: '- ' #: content/_index.md content/donate/index.md +#, markdown-text msgid "No push notifications" msgstr "Sen notificacións" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No crapware" msgstr "Sen programas basura" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "~~No pesticides~~ Purely organic!" msgstr "~~Sen pesticidas~~ ¡Puramente orgánico!" #. type: Plain text #: content/_index.md +#, markdown-text msgid "The application is verified by [Exodus Privacy Project][exodus]:" msgstr "Esta aplicación foi verificada por [Exodus Privacy Project][exodus]:" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ exodus_screenshot() }}" msgstr "@{{ exodus_screenshot() }}" #. type: Plain text #: content/_index.md +#, markdown-text msgid "The iOS application is verified by [TrackerControl for iOS][trackercontrol]:" msgstr "A aplicación de iOS foi verificada por [TrackerControl for iOS][trackercontrol]:" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ trackercontrol_screenshot() }}" msgstr "@{{ trackercontrol_screenshot() }}" #. type: Plain text #: content/_index.md +#, markdown-text msgid "Organic Maps doesn't request excessive permissions to spy on you:" msgstr "Organic Maps non solicita permisos excesivos para espiarche:" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ privacy_screenshots() }}" msgstr "@{{ privacy_screenshots() }}" #. type: Plain text #: content/_index.md +#, markdown-text msgid "At Organic Maps, we believe that privacy is a fundamental human right:" msgstr "En Organic Maps, cremos que a privacidade é un dereito humano fundamental:" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Organic Maps is an indie community-driven open-source project" msgstr "Organic Maps é un proxecto indie de código aberto impulsado pola comunidade" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "We protect your privacy from Big Tech's prying eyes" msgstr "Protexemos a túa privacidade das miradas indiscretas das grandes tecnolóxicas" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Stay safe no matter wherever you are" msgstr "Mantéñase seguro sen importar onde esteas" #. type: Plain text #: content/_index.md content/privacy/index.md +#, markdown-text msgid "Reject surveillance - embrace your freedom." msgstr "Rexeita a vixilancia - abraza a túa liberdade." #. type: Plain text #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap msgid "**[Give Organic Maps a try!](#install)**\n" msgstr "**[Proba Organic Maps!](#install)**\n" #. type: Title ## #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Who is paying for the free app?" msgstr "¿Quén paga a aplicación gratuíta?" #. type: Plain text #: content/_index.md +#, markdown-text msgid "The app is free for everyone. Please [donate](@/donate/index.md) to support us!" msgstr "A aplicación é gratuíta para todos. Por favor, [donate](@/donate/index.md) para apoiarnos!" #. type: Plain text #: content/_index.md +#, markdown-text msgid "To donate conveniently, click on your preferred payment method icon below:" msgstr "Para doar inmediatamente, fai clic na icona do método de pago preferido a continuación:" #. type: Plain text #: content/_index.md content/donate/index.md +#, markdown-text msgid "{{ donate_buttons() }}" msgstr "@{{ donate_buttons() }}" #. type: Title ### #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Our sponsors:" msgstr "Os nosos patrocinadores:" #. type: Plain text #: content/_index.md +#, markdown-text msgid "[Mythic Beasts](https://www.mythic-beasts.com/) ISP [provides us][mythic_beasts_donation] two virtual servers with 400 TB/month of free bandwidth to help our users with maps downloads and updates." msgstr "[Mythic Beasts](https://www.mythic-beasts.com/) ISP [proporcionanos][mythic_beasts_donation] dous servidores virtuais con 400 TB/mes de ancho de banda gratuíto para axudar aos nosos usuarios coas descargas e actualizacións de mapas." #. type: Title ## #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Community" msgstr "Comunidade" #. type: Plain text #: content/_index.md +#, markdown-text msgid "Organic Maps is an [open-source software][github] licensed under the Apache License 2.0." msgstr "Organic Maps é un [open-source software][github] licenciado baixo a licenza Apache 2.0." #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Please join our beta program, suggest your features, and report bugs:" msgstr "Únete ao noso programa beta, suxire as túas funcións e informa de erros:" #. type: Bullet: ' * ' #: content/_index.md +#, markdown-text msgid "[iOS Beta (TestFlight)][testflight]" -msgstr "[iOS Beta (TestFlight)][testflight]" +msgstr "@[iOS Beta (TestFlight)][testflight]" #. type: Bullet: ' * ' #: content/_index.md +#, markdown-text msgid "[Android Beta (Firebase)][firebase]" -msgstr "[Android Beta (Firebase)][firebase]" +msgstr "@[Android Beta (Firebase)][firebase]" #. type: Bullet: ' * ' #: content/_index.md +#, markdown-text msgid "[Linux Desktop Beta (Flatpak)][flatpak]" -msgstr "[Linux Desktop Beta (Flatpak)][flatpak]" +msgstr "@[Linux Desktop Beta (Flatpak)][flatpak]" #. type: Bullet: ' * ' #: content/_index.md +#, markdown-text msgid "[Linux Desktop Beta (packages)][repology]" msgstr "[Linux Desktop Beta (paquetería)][repology]" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Report bugs or issues to [the issue tracker][issues] or [email us][email]." msgstr "Informa de erros ou problemas no [the issue tracker][issues] or [email us][email]." #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "[Discuss][ideas] ideas or propose feature requests." msgstr "[Discuss][ideas] ideas ou propoña solicitudes de funcións." #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Subscribe to our [Telegram Channel][telegram] or to the [matrix space][matrix] for updates." msgstr "Subscríbete á nosa [Telegram Channel][telegram] ou ao [matrix space][matrix] para obter actualizacións." #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Join our [Telegram Group][telegram_chat] to discuss with other users." msgstr "Únete ao noso [Telegram Group][telegram_chat] para falar con outros usuarios." #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Visit our [GitHub page][github]." msgstr "Visita a nosa [páxina GitHub][github]." #. type: Bullet: '- ' #: content/_index.md -msgid "Follow our updates in [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." -msgstr "Siga as nosas actualizacións en [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Join (or create and let us know) local communities: [Hungarian translators Matrix room](https://matrix.to/#/#organicmapstranslate_hu:matrix.org)" -msgstr "" - -#. type: Link reference -#: content/_index.md -msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)" -msgstr "[fork]: https://en.wikipedia.org/wiki/Fork_(desenvolvemento%20de%20software)" +#, markdown-text +msgid "Follow our updates in [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." +msgstr "Siga as nosas actualizacións en [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." #. type: Plain text -#: content/_index.md content/donate/index.md content/support-us/index.md +#: content/_index.md +#, markdown-text, no-wrap +msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)\n" +msgstr "[fork]: https://en.wikipedia.org/wiki/Fork_(desenvolvemento de software)\n" + +#. type: Plain text +#: content/_index.md content/support-us/index.md +#, markdown-text msgid "{{ references() }}" msgstr "{{references()}}" @@ -410,194 +452,204 @@ msgstr "Doa para apoiar o desenvolvemento de Organic Maps" #. type: Plain text #: content/donate/index.md -msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]** in **[EUR][stripe_eur], [USD][stripe_usd], [GBP][stripe_GBP], [CHF][stripe_chf], [UAH][stripe_uah], [PLN][stripe_pln]**:" -msgstr "" +#, markdown-text +msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]**:" +msgstr "A aplicación Organic Maps é _gratuíta para todos_ grazas ás túas **[doazóns][stripe]**:" #. type: Bullet: '- ' #: content/donate/index.md +#, markdown-text msgid "No trackers" msgstr "Sen rastreadores" #. type: Bullet: '- ' #: content/donate/index.md +#, markdown-text msgid "No registration" msgstr "Sen rexistro" #. type: Bullet: '- ' #: content/donate/index.md +#, markdown-text msgid "Open source" msgstr "Código aberto" #. type: Plain text #: content/donate/index.md +#, markdown-text msgid "Click on your preferred payment method icon below:" msgstr "Fai clic no icono do método de pago preferido a continuación:" #. type: Title ## #: content/donate/index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Why donate to Organic Maps?" msgstr "¿Por qué doar a Organic Maps?" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "Our goal is to provide a privacy-focused, fast and easy-to-use alternative to Google Maps and Apple Maps." -msgstr "" +#, markdown-text +msgid "We rely on your donations to carry out our mission to keep Organic Maps open and free. And free from ads." +msgstr "Confiamos nas túas doazóns para levar a cabo a nosa misión de manter aberto e gratuíta Organic Maps. E libre de anuncios." #. type: Bullet: '2. ' #: content/donate/index.md -msgid "Improving public map data for the numerous websites, apps and platforms which use OpenStreetMap, and involving more people in contributing map info is our another goal." -msgstr "" +#, markdown-text +msgid "We are a few enthusiasts contributing in our free time, and spending our families' money on the project. We love what we do, and we love our users ❤️." +msgstr "Somos uns cantos entusiastas contribuíndo no noso tempo libre e gastando o diñeiro das nosas familias no proxecto. Amamos o que facemos e amamos aos nosos usuarios ❤️." #. type: Bullet: '3. ' #: content/donate/index.md -#, fuzzy -#| msgid "We rely on your donations to carry out our mission to keep Organic Maps open and free. And free from ads." -msgid "We rely on your donations to keep Organic Maps open and free for everyone. And free from ads." -msgstr "Confiamos nas túas doazóns para levar a cabo a nosa misión de manter aberto e gratuíta Organic Maps. E libre de anuncios." - -#. type: Bullet: '4. ' -#: content/donate/index.md -msgid "We love what we do, and we love our users ❤️." -msgstr "" +#, markdown-text +msgid "With your support, we want to become a better, privacy-focused version of Google Maps." +msgstr "Co teu apoio, queremos converternos nunha versión mellor e centrada na privacidade de Google Maps." #. type: Title ## #: content/donate/index.md -#, no-wrap -msgid "Why a free project needs money?" -msgstr "" +#, markdown-text, no-wrap +msgid "What will the money be used for?" +msgstr "¿Para qué se utilizarán os cartos?" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "In 2023, Organic Maps got its first million users. Our servers provide free, fast and frequent map updates all over the world." -msgstr "" +#, markdown-text +msgid "We pay for fast servers, so anyone in the World can download free map data updates without delays. It's hundreds of terabytes monthly, and the amount is growing." +msgstr "Pagamos por servidores rápidos, polo que calquera persoa do mundo pode descargar actualizacións gratuítas de datos de mapas sen demoras. Son centos de terabytes mensuais e a cantidade está crecendo." #. type: Bullet: '2. ' #: content/donate/index.md -#, fuzzy -#| msgid "User support, bugfixing, and improving the stability of the app are at the top of our priorities. There are [1800+ issues on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." -msgid "User support, bugfixing and publishing quality app updates are at the top of our priorities. There are [~2000 bug reports and feature requests on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." +#, markdown-text +msgid "User support, bugfixing, and improving the stability of the app are at the top of our priorities. There are [1800+ issues on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." msgstr "A asistencia ao usuario, a corrección de erros e a mellora da estabilidade da aplicación están na parte superior das nosas prioridades. Hai [1800+ issues on GitHub][github issues], e este número crece cada día. Os correos electrónicos de AppStore, Google Play e de asistencia están sobrecargados de comentarios e erros. Queremos ofrecer un produto de alta calidade." #. type: Bullet: '3. ' #: content/donate/index.md -#, fuzzy -#| msgid "With enough money, new features can be developed faster, for example:" -msgid "With enough money, new features can be developed. To name a few:" +#, markdown-text +msgid "With enough money, new features can be developed faster, for example:" msgstr "Con diñeiro suficiente, pódense desenvolver novas funcións máis rápido, por exemplo:" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Backup and sync bookmarks and tracks" -msgstr "" +#, markdown-text +msgid "Weekly and automated map data updates" +msgstr "Actualizacións semanais e automatizadas de datos de mapas" #. type: Bullet: ' - ' #: content/donate/index.md -#, fuzzy -#| msgid "GPS track recorder with GPX support" -msgid "GPS track recorder with GPX export" +#, markdown-text +msgid "Bookmarks backup and sync" +msgstr "Copia de seguridade e sincronización de marcadores" + +#. type: Bullet: ' - ' +#: content/donate/index.md +#, markdown-text +msgid "Android Auto" +msgstr "Android Auto" + +#. type: Bullet: ' - ' +#: content/donate/index.md +#, markdown-text +msgid "GPS track recorder with GPX support" msgstr "Gravador de rutas GPS con soporte GPX" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Satellite imagery" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Public Transport" -msgstr "Transporte Público" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Traffic and accident reporting" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Photos and Reviews" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -#, fuzzy -#| msgid "Better map styles for different activities" -msgid "Map styles for different activities" +#, markdown-text +msgid "Better map styles for different activities" msgstr "Mellores estilos de mapa para diferentes actividades" #. type: Bullet: ' - ' #: content/donate/index.md +#, markdown-text msgid "Hill shading and 3D terrain" msgstr "Sombreado de outeiros e terreo 3D" #. type: Bullet: ' - ' #: content/donate/index.md -#, fuzzy -#| msgid "Improve the OpenStreetMap editor" -msgid "More advanced OpenStreetMap editor" +#, markdown-text +msgid "Improve the OpenStreetMap editor" msgstr "Mellora o editor de OpenStreetMap" #. type: Bullet: ' - ' #: content/donate/index.md +#, markdown-text msgid "Better offline address search, routing, and navigation" msgstr "Mellor busca de enderezos sen conexión, enrutamento e navegación" #. type: Bullet: ' - ' #: content/donate/index.md +#, markdown-text +msgid "Public Transport" +msgstr "Transporte Público" + +#. type: Bullet: ' - ' +#: content/donate/index.md +#, markdown-text msgid "… and [many other][github issues] features you want and love" msgstr "… e [many other][github issues] funcións que queres e que che gustan" #. type: Title ## #: content/donate/index.md -#, no-wrap +#, markdown-text, no-wrap msgid "How to donate?" msgstr "¿Como doar?" #. type: Plain text #: content/donate/index.md -#, fuzzy -#| msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. But you can also donate one time." -msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. One-time donations are appreciated too." +#, markdown-text +msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. But you can also donate one time." msgstr "As doazóns recorrentes son a mellor forma de garantir uns ingresos relativamente estables para o proxecto e de motivarnos para tarefas e obxectivos a longo prazo. Pero tamén pode doar unha vez." #. type: Title ### #: content/donate/index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Bank Transfer" msgstr "Transferencia bancaria" #. type: Plain text #: content/donate/index.md +#, markdown-text msgid "{{ bank_transfer() }}" msgstr "{{ bank_transfer() }}" #. type: Title ### #: content/donate/index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Crypto" msgstr "Cripto" #. type: Plain text #: content/donate/index.md +#, markdown-text msgid "Please consider donating annually to reduce total fees." msgstr "Considere doar anualmente para reducir as taxas totais." #. type: Plain text #: content/donate/index.md +#, markdown-text msgid "{{ crypto_table() }}" msgstr "{{crypto_table()}}" #. type: Title ## #: content/donate/index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Can you help us in any other way?" msgstr "¿Podes axudarnos doutra maneira?" #. type: Plain text #: content/donate/index.md +#, markdown-text msgid "Yes! There are many ways to support Organic Maps. Please see [Support Us](@/support-us/index.md) page for more details." msgstr "Si! Hai moitas formas de admitir os mapas orgánicos. Consulte a páxina [Support Us](@/support-us/index.md) para obter máis detalles." +#. type: Plain text +#: content/donate/index.md +#, markdown-text, no-wrap +msgid "" +"[stripe]: https://donate.organicmaps.app/ \"Donate via Stripe\"\n" +"[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" +msgstr "[stripe]: https://donate.organicmaps.app/ \"Donación por Stripe\"\n[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Problemas\"\n" + #. type: Yaml Front Matter Hash Value: description #: content/news/_index.md #, no-wrap @@ -636,27 +688,31 @@ msgstr "Organic Maps: Política de privacidade" #. type: Plain text #: content/privacy/index.md +#, markdown-text msgid "Organic Maps respects your privacy and DOES NOT TRACK YOU." msgstr "Organic Maps respecta a túa privacidade e NON TE RASTREXA." #. type: Plain text #: content/privacy/index.md +#, markdown-text msgid "Unlike most other applications, there is no tracking, no ads, no spyware, no data and statistics collection in Organic Maps." msgstr "A diferencia da maioría das outras aplicacións, non hai seguimento, anuncios, programas espía, recollida de datos e estatísticas en Organic Maps." #. type: Plain text #: content/privacy/index.md +#, markdown-text msgid "Stay away from Big Tech's prying eyes!" msgstr "Mantéñase lonxe dos ollos indiscretos das grandes tecnolóxicas!" #. type: Plain text #: content/privacy/index.md content/terms/index.md +#, markdown-text msgid "If you have any questions or suggestions, please contact us at [legal@organicmaps.app](mailto:legal@organicmaps.app)." msgstr "Se tes algunha pregunta ou suxestión, póñase en contacto connosco en [legal@organicmaps.app](mailto:legal@organicmaps.app)." #. type: Plain text #: content/privacy/index.md -#, no-wrap +#, markdown-text, no-wrap msgid "This policy is effective as of 2021-04-24.\n" msgstr "Esta política entrará en vigor o 24/04/2021.\n" @@ -680,76 +736,91 @@ msgstr "Apoiar o desenvolvemento de Organic Maps" #. type: Plain text #: content/support-us/index.md +#, markdown-text msgid "Organic Maps is a free, open-source app. It is free from ads, it does not collect your personal information, and it is developed by a few enthusiasts with the help of the community." msgstr "Organic Maps é unha aplicación gratuíta de código aberto. Está libre de anuncios, non recolle a túa información persoal e é desenvolvido por algúns entusiastas coa axuda da comunidade." #. type: Plain text #: content/support-us/index.md +#, markdown-text msgid "There are different ways to support the development:" msgstr "Hai diferentes formas de apoiar o desenvolvemento:" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "[Donate](@/donate/index.md)! Every dollar or euro counts and helps us to pay for servers and scale." msgstr "[Doar](@/donate/index.md)! Cada dólar ou euro conta e axúdanos a pagar os servidores e escalar." #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Report bugs and share ideas on our [GitHub][github] or via [email][email]." msgstr "Informa de erros e comparte ideas no noso [GitHub][github] ou a través do [email][email]." #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Help us to [fix bugs][contributing] and do code reviews if you are a developer. Every fixed small issue makes someone happier." msgstr "Axúdanos a [fix bugs][contributing] e facer revisións de código se es un programador. Cada pequeno problema solucionado fai que alguén sexa máis feliz." #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "[Translate][translations] missing strings in the app's interface." msgstr "[Translate][translations] faltan cadeas na interface da aplicación." #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Translate [App Store][translations_appstore] and [Android][translations_googleplay] descriptions into your language." msgstr "Traduce as descricións de [App Store][translations_appstore] e [Android][translations_googleplay] ao teu idioma." #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "[Translate][translations_website] our web site into your language." msgstr "[Translate][translations_website] o noso sitio web ao teu idioma." #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Join the [OpenStreetMap][openstreetmap] community and contribute to the maps data." msgstr "Únete á comunidade [OpenStreetMap][openstreetmap] e contribúe cos datos dos mapas." #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Fix red cities found by our [public transport validator][public_transport_validator], for subways and light rails to work in the app." msgstr "Corrixe as cidades vermellas atopadas polo noso [public transport validator][public_transport_validator], para que o metro e os trens lixeiros funcionen na aplicación." #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Support other users on [GitHub][issues], [Telegram][telegram_chat], [Matrix][matrix], [Twitter][twitter], [Facebook][facebook], [Instagram][instagram]." msgstr "Soporte a outros usuarios en [GitHub][issues], [Telegram][telegram_chat], [Matrix][matrix], [Twitter][twitter], [Facebook][facebook], [Instagram][instagram]." #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Tell everyone about Organic Maps. A bigger community is a stronger community." msgstr "Fala a todos sobre os Organic Maps. Unha comunidade máis grande é unha comunidade máis forte." #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Rate us in [Google Play][googleplay_review], [Apple Store][appstore_review], [Huawei Appgallery][appgallery_review]." msgstr "Califícanos en [Google Play][googleplay_review], [Apple Store][appstore_review], [Huawei Appgallery][appgallery_review]." #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Any help is welcome!" msgstr "Calquera axuda é benvida!" #. type: Plain text #: content/support-us/index.md +#, markdown-text msgid "Our small team is very grateful for your feedback and support. Organic Maps would not be possible without our users ❤️." msgstr "O noso pequeno equipo está moi agradecido polos teus comentarios e apoio. Os mapas orgánicos non serían posibles sen os nosos usuarios ❤️." @@ -773,69 +844,60 @@ msgstr "Organic Maps: termoss" #. type: Plain text #: content/terms/index.md +#, markdown-text msgid "This app is licensed under the Apache License, Version 2.0 (the \"License\"); you may not use this application except in compliance with the License." msgstr "Esta aplicación está licenciada baixo a licenza Apache, versión 2.0 (a \"Licenza\"); non pode usar esta aplicación excepto en cumprimento da Licenza." #. type: Plain text #: content/terms/index.md +#, markdown-text msgid "You may obtain a copy of the License at [http://www.apache.org/licenses/LICENSE-2.0][license]" msgstr "Podes obter unha copia da licenza en [http://www.apache.org/licenses/LICENSE-2.0][license]" #. type: Plain text #: content/terms/index.md +#, markdown-text msgid "Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License." msgstr "Salvo que o requira a lexislación aplicable ou se acorde por escrito, a aplicación distribuído baixo a Licenza distribúese \"TAL CUAL\", SEN GARANTÍAS OU CONDICIÓNS DE NINGÚN TIPO, nin expresas nin implícitas. Consulte a Licenza para coñecer os permisos e limitacións específicas que regulan a lingua na Licenza." #. type: Plain text #: content/terms/index.md +#, markdown-text msgid "Most libraries in the following directories on [GitHub][github] made by other people and organizations and licensed in different ways:" msgstr "A maioría das bibliotecas dos seguintes directorios en [GitHub][github] feitas por outras persoas e organizacións e con licenza de diferentes formas:" #. type: Bullet: '- ' #: content/terms/index.md +#, markdown-text msgid "3party" msgstr "Aplicacións de terceiros" #. type: Bullet: '- ' #: content/terms/index.md +#, markdown-text msgid "tools" msgstr "ferramentas" #. type: Plain text #: content/terms/index.md +#, markdown-text msgid "Please refer to their LICENSE, COPYING or NOTICE files for terms of use." msgstr "Consulte os seus ficheiros de LICENZA, COPIA ou AVISO para coñecer os termos de uso." #. type: Plain text #: content/terms/index.md +#, markdown-text msgid "See also [data/copyright.html][copyright] file for a full list of copyright notices for Organic Maps application." msgstr "Consulte tamén o ficheiro [data/copyright.html][copyright] para obter unha lista completa de avisos de copyright para a aplicación Organic Maps." -#. type: Link reference +#. type: Plain text #: content/terms/index.md -#, no-wrap -msgid "[github]: https://github.com/organicmaps/organicmaps" -msgstr "" - -#. type: Link reference -#: content/terms/index.md -#, fuzzy, no-wrap -#| msgid "You may obtain a copy of the License at [http://www.apache.org/licenses/LICENSE-2.0][license]" -msgid "[license]: http://www.apache.org/licenses/LICENSE-2.0" -msgstr "Podes obter unha copia da licenza en [http://www.apache.org/licenses/LICENSE-2.0][license]" - -#. type: Link reference -#: content/terms/index.md -#, fuzzy, no-wrap -#| msgid "" -#| "[github]: https://github.com/organicmaps/organicmaps\n" -#| "[license]: http://www.apache.org/licenses/LICENSE-2.0\n" -#| "[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html\n" -msgid "[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html" -msgstr "" +#, markdown-text, no-wrap +msgid "" "[github]: https://github.com/organicmaps/organicmaps\n" "[license]: http://www.apache.org/licenses/LICENSE-2.0\n" "[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html\n" +msgstr "[github]: https://github.com/organicmaps/organicmaps\n[license]: http://www.apache.org/licenses/LICENSE-2.0\n[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html\n" #. type: Hash Value: address #: translations.yaml @@ -855,18 +917,6 @@ msgstr "Volver a Noticias" msgid "Contact Us" msgstr "Contacta connosco" -#. type: Hash Value: engines -#: translations.yaml -#, no-wrap -msgid "Supported TTS Engines" -msgstr "" - -#. type: Hash Value: faq-menu-title -#: translations.yaml -#, no-wrap -msgid "F.A.Q." -msgstr "" - #. type: Hash Value: install-appgallery #: translations.yaml #, no-wrap @@ -897,12 +947,6 @@ msgstr "Instala Organic Maps desde Google Play" msgid "English" msgstr "Gallego" -#. type: Hash Value: language-word -#: translations.yaml -#, no-wrap -msgid "Language" -msgstr "Idioma" - #. type: Hash Value: name #: translations.yaml #, no-wrap @@ -914,36 +958,3 @@ msgstr "Nome" #, no-wrap msgid "Token" msgstr "Token" - -#~ msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]**:" -#~ msgstr "A aplicación Organic Maps é _gratuíta para todos_ grazas ás túas **[doazóns][stripe]**:" - -#~ msgid "We are a few enthusiasts contributing in our free time, and spending our families' money on the project. We love what we do, and we love our users ❤️." -#~ msgstr "Somos uns cantos entusiastas contribuíndo no noso tempo libre e gastando o diñeiro das nosas familias no proxecto. Amamos o que facemos e amamos aos nosos usuarios ❤️." - -#~ msgid "With your support, we want to become a better, privacy-focused version of Google Maps." -#~ msgstr "Co teu apoio, queremos converternos nunha versión mellor e centrada na privacidade de Google Maps." - -#, no-wrap -#~ msgid "What will the money be used for?" -#~ msgstr "¿Para qué se utilizarán os cartos?" - -#~ msgid "We pay for fast servers, so anyone in the World can download free map data updates without delays. It's hundreds of terabytes monthly, and the amount is growing." -#~ msgstr "Pagamos por servidores rápidos, polo que calquera persoa do mundo pode descargar actualizacións gratuítas de datos de mapas sen demoras. Son centos de terabytes mensuais e a cantidade está crecendo." - -#~ msgid "Weekly and automated map data updates" -#~ msgstr "Actualizacións semanais e automatizadas de datos de mapas" - -#~ msgid "Bookmarks backup and sync" -#~ msgstr "Copia de seguridade e sincronización de marcadores" - -#~ msgid "Android Auto" -#~ msgstr "Android Auto" - -#, no-wrap -#~ msgid "" -#~ "[stripe]: https://donate.organicmaps.app/ \"Donate via Stripe\"\n" -#~ "[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" -#~ msgstr "" -#~ "[stripe]: https://donate.organicmaps.app/ \"Donación por Stripe\"\n" -#~ "[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Problemas\"\n" diff --git a/po/content.hi.po b/po/content.hi.po index 47438a47..1d4f483d 100644 --- a/po/content.hi.po +++ b/po/content.hi.po @@ -4,7 +4,16 @@ # FIRST AUTHOR , YEAR. # msgid "" -msgstr "Project-Id-Version: Organic Maps Website 1.0\nPO-Revision-Date: 2024-04-02 19:54+0000\nLast-Translator: Weblate Translation Memory \nLanguage-Team: Hindi \nLanguage: hi\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-Forms: nplurals=2; plural=n > 1;\nX-Generator: Weblate 5.5-dev\n" +msgstr "" +"Project-Id-Version: Organic Maps Website 1.0\n" +"Last-Translator: Anonymous \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 4.17-dev\n" #. type: Yaml Front Matter Hash Value: description #: content/_index.md @@ -27,23 +36,15 @@ msgstr "ऑर्गेनिक नक़्शे: ऑफ़लाइन स #. type: Plain text #: content/_index.md #, no-wrap -msgid "" -"**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, drivers and cyclists based on **[OpenStreetMap][openstreetmap]** data created by the community.\n" -"It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" +msgid "**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, and cyclists based on top of crowd-sourced **[OpenStreetMap][openstreetmap]** data. It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" msgstr "**ऑर्गेनिक मैप्स**[OpenStreetMap][openstreetmap]** डेटा के शीर्ष पर आधारित यात्रियों, पर्यटकों, हाइकर्स और साइकिल चालकों के लिए एक मुफ़्त Android और iOS ऑफ़लाइन मैप्स ऐप है। यह **Maps.me** ऐप (जिसे पहले [**MapsWithMe**][mapswithme] के नाम से जाना जाता था) का एक गोपनीयता-केंद्रित, खुला-स्रोत [fork][fork] है, जिसकी देखरेख वही लोग करते हैं जिन्होंने **MapsWithMe बनाया था ** 2011 में।\n" #. type: Plain text #: content/_index.md #, no-wrap -msgid "**Organic Maps** is one of the few applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card, and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" +msgid "**Organic Maps** is one of the only applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card (by the way, your operator constantly tracks you), and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" msgstr "**ऑर्गेनिक मैप्स** आजकल के कुछ एप्लिकेशन में से एक है जो सक्रिय इंटरनेट कनेक्शन के बिना 100% सुविधाओं का समर्थन करता है। ऑर्गेनिक मैप्स इंस्टॉल करें, मैप्स डाउनलोड करें, अपना सिम कार्ड फेंक दें (वैसे, आपका ऑपरेटर आपको लगातार ट्रैक करता है), और नेटवर्क पर कुछ भी भेजे बिना सिर्फ एक बैटरी चार्ज पर साप्ताहिक यात्रा के लिए जाएं।\n" -#. type: Plain text -#: content/_index.md -#, no-wrap -msgid "> In 2023, Organic Maps [got its first million](@/news/2023-12-23/281/index.md) users. [Help us](@/donate/index.md) to scale!\n" -msgstr "" - #. type: Title ### #: content/_index.md #, no-wrap @@ -103,8 +104,8 @@ msgstr "समोच्च रेखाएँ, उन्नयन प्रो #. type: Bullet: '- ' #: content/_index.md -msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance and Android Auto" -msgstr "आवाज मार्गदर्शन और एंड्रॉइड ऑटो के साथ बारी-बारी पैदल चलना, साइकिल चलाना और कार नेविगेशन" +msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance" +msgstr "आवाज निर्देशन के साथ बारी-बारी से चलना, साइक्लिंग करना और कार नेविगेशन" #. type: Bullet: '- ' #: content/_index.md @@ -113,8 +114,8 @@ msgstr "तेज़ ऑफ़लाइन खोज नक़्शे पर" #. type: Bullet: '- ' #: content/_index.md -msgid "Export/import bookmarks in KML/KMZ, import GPX" -msgstr "KML, KMZ, GPX प्रारूपों में बुकमार्क और ट्रैक" +msgid "Bookmarks and tracks in KML, KMZ, GPX formats" +msgstr "KML/KMZ प्रारूप में एक्सपोर्ट एवं इंपोर्ट करें(GPX [आयोजित][gpx_issue] है)" #. type: Bullet: '- ' #: content/_index.md @@ -224,11 +225,13 @@ msgstr "{{ exodus_screenshot() }}" #. type: Plain text #: content/_index.md +#, markdown-text msgid "The iOS application is verified by [TrackerControl for iOS][trackercontrol]:" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ trackercontrol_screenshot() }}" msgstr "" @@ -368,22 +371,17 @@ msgstr "हमारे [गिटहब पेज][github] पर जाएं #. type: Bullet: '- ' #: content/_index.md -msgid "Follow our updates in [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." -msgstr "[FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn] पर हमारे अपडेट का पालन करें।" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Join (or create and let us know) local communities: [Hungarian translators Matrix room](https://matrix.to/#/#organicmapstranslate_hu:matrix.org)" -msgstr "" - -#. type: Link reference -#: content/_index.md -#, no-wrap -msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)" -msgstr "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)" +msgid "Follow our updates in [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." +msgstr "[Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn] पर हमारे अपडेट का पालन करें।" #. type: Plain text -#: content/_index.md content/donate/index.md content/support-us/index.md +#: content/_index.md +#, no-wrap +msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)\n" +msgstr "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)\n" + +#. type: Plain text +#: content/_index.md content/support-us/index.md msgid "{{ references() }}" msgstr "{{ references() }}" @@ -407,7 +405,7 @@ msgstr "ऑर्गनिक मैप्स के विकास का स #. type: Plain text #: content/donate/index.md -msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]** in **[EUR][stripe_eur], [USD][stripe_usd], [GBP][stripe_GBP], [CHF][stripe_chf], [UAH][stripe_uah], [PLN][stripe_pln]**:" +msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]**:" msgstr "आपके **[दान][stripe]** की बदौलत ऑर्गेनिक मैप्स ऐप सभी के लिए _मुफ्त_ है:" #. type: Bullet: '- ' @@ -438,78 +436,63 @@ msgstr "ऑर्गेनिक मैप्स को दान क्यो #. type: Bullet: '1. ' #: content/donate/index.md -msgid "Our goal is to provide a privacy-focused, fast and easy-to-use alternative to Google Maps and Apple Maps." -msgstr "" +msgid "We rely on your donations to carry out our mission to keep Organic Maps open and free. And free from ads." +msgstr "हम जैविक मानचित्रों को खुला और मुक्त रखने के अपने मिशन को पूरा करने के लिए आपके दान पर भरोसा करते हैं। और विज्ञापनों से मुक्त।" #. type: Bullet: '2. ' #: content/donate/index.md -msgid "Improving public map data for the numerous websites, apps and platforms which use OpenStreetMap, and involving more people in contributing map info is our another goal." -msgstr "" +msgid "We are a few enthusiasts contributing in our free time, and spending our families' money on the project. We love what we do, and we love our users ❤️." +msgstr "हम कुछ उत्साही हैं जो अपने खाली समय में योगदान करते हैं, और परियोजना पर अपने परिवारों का पैसा खर्च करते हैं। हम जो करते हैं उससे प्यार करते हैं, और हम अपने उपयोगकर्ताओं से प्यार करते हैं ❤️।" #. type: Bullet: '3. ' #: content/donate/index.md -msgid "We rely on your donations to keep Organic Maps open and free for everyone. And free from ads." -msgstr "हम जैविक मानचित्रों को खुला और मुक्त रखने के अपने मिशन को पूरा करने के लिए आपके दान पर भरोसा करते हैं। और विज्ञापनों से मुक्त।" - -#. type: Bullet: '4. ' -#: content/donate/index.md -msgid "We love what we do, and we love our users ❤️." -msgstr "" +msgid "With your support, we want to become a better, privacy-focused version of Google Maps." +msgstr "आपके समर्थन से, हम गूगल मानचित्र का एक बेहतर, गोपनीयता-केंद्रित संस्करण बनना चाहते हैं।" #. type: Title ## #: content/donate/index.md #, no-wrap -msgid "Why a free project needs money?" -msgstr "" +msgid "What will the money be used for?" +msgstr "पैसे का उपयोग किस लिए किया जाएगा?" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "In 2023, Organic Maps got its first million users. Our servers provide free, fast and frequent map updates all over the world." -msgstr "" +msgid "We pay for fast servers, so anyone in the World can download free map data updates without delays. It's hundreds of terabytes monthly, and the amount is growing." +msgstr "हम तेज सर्वर के लिए भुगतान करते हैं, इसलिए दुनिया में कोई भी बिना देरी के मुफ्त मानचित्र डेटा अपडेट डाउनलोड कर सकता है। यह सैकड़ों टेराबाइट्स मासिक है, और राशि बढ़ रही है।" #. type: Bullet: '2. ' #: content/donate/index.md -msgid "User support, bugfixing and publishing quality app updates are at the top of our priorities. There are [~2000 bug reports and feature requests on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." +msgid "User support, bugfixing, and improving the stability of the app are at the top of our priorities. There are [1800+ issues on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." msgstr "उपयोगकर्ता समर्थन, बग फिक्सिंग और ऐप की स्थिरता में सुधार करना हमारी प्राथमिकताओं में सबसे ऊपर है। [GitHub पर 1800+ मुद्दे][GitHub issues] हैं, और यह संख्या हर दिन बढ़ रही है। ऐप स्टोर,गूगल प्ले, और समर्थन ईमेल टिप्पणियों और बगों से भर गए हैं। हम एक उच्च गुणवत्ता वाला उत्पाद देना चाहते हैं।" #. type: Bullet: '3. ' #: content/donate/index.md -msgid "With enough money, new features can be developed. To name a few:" +msgid "With enough money, new features can be developed faster, for example:" msgstr "पर्याप्त धन के साथ, नई सुविधाओं को तेज़ी से विकसित किया जा सकता है, उदाहरण के लिए:" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Backup and sync bookmarks and tracks" -msgstr "" +msgid "Weekly and automated map data updates" +msgstr "साप्ताहिक और स्वचालित नक्शो का डेटा अपडेट" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "GPS track recorder with GPX export" +msgid "Bookmarks backup and sync" +msgstr "बुकमार्क बैकअप और सिंक" + +#. type: Bullet: ' - ' +#: content/donate/index.md +msgid "Android Auto" +msgstr "एंड्रॉइड ऑटो" + +#. type: Bullet: ' - ' +#: content/donate/index.md +msgid "GPS track recorder with GPX support" msgstr "GPX समर्थन के साथ GPS ट्रैक रिकॉर्डर" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Satellite imagery" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Public Transport" -msgstr "सार्वजनिक परिवाहन" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Traffic and accident reporting" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Photos and Reviews" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Map styles for different activities" +msgid "Better map styles for different activities" msgstr "विभिन्न गतिविधियों के लिए बेहतर मानचित्र शैलियाँ" #. type: Bullet: ' - ' @@ -519,7 +502,7 @@ msgstr "हिल शेडिंग और 3 डी इलाके" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "More advanced OpenStreetMap editor" +msgid "Improve the OpenStreetMap editor" msgstr "OpenStreetMap एडीटर में सुधार करें" #. type: Bullet: ' - ' @@ -527,6 +510,11 @@ msgstr "OpenStreetMap एडीटर में सुधार करें" msgid "Better offline address search, routing, and navigation" msgstr "बेहतर ऑफ़लाइन पता खोज, रूटिंग और नेविगेशन" +#. type: Bullet: ' - ' +#: content/donate/index.md +msgid "Public Transport" +msgstr "सार्वजनिक परिवाहन" + #. type: Bullet: ' - ' #: content/donate/index.md msgid "… and [many other][github issues] features you want and love" @@ -540,7 +528,7 @@ msgstr "कैसे दान करें?" #. type: Plain text #: content/donate/index.md -msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. One-time donations are appreciated too." +msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. But you can also donate one time." msgstr "आवर्ती दान परियोजना के लिए अपेक्षाकृत स्थिर आय सुनिश्चित करने और दीर्घकालिक कार्यों और लक्ष्यों के लिए हमें प्रेरित करने का सबसे अच्छा तरीका है। लेकिन आप एक बार भी दान कर सकते हैं।" #. type: Title ### @@ -581,6 +569,16 @@ msgstr "क्या आप किसी और तरीके से हमा msgid "Yes! There are many ways to support Organic Maps. Please see [Support Us](@/support-us/index.md) page for more details." msgstr "जी हाँ! ऑर्गेनिक मानचित्रों का समर्थन करने के कई तरीके हैं. अधिक विवरण के लिए कृपया [समर्थन](@/support-us/index.hi.md) पृष्ठ देखें।" +#. type: Plain text +#: content/donate/index.md +#, no-wrap +msgid "" +"[stripe]: https://donate.organicmaps.app/ \"Donate via Stripe\"\n" +"[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" +msgstr "" +"[stripe]: https://donate.organicmaps.app/ \"स्ट्राइप के माध्यम से दान करें\"\n" +"[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub के मामले\"\n" + #. type: Yaml Front Matter Hash Value: description #: content/news/_index.md #, no-wrap @@ -794,23 +792,17 @@ msgstr "उपयोग की शर्तों के लिए कृपय msgid "See also [data/copyright.html][copyright] file for a full list of copyright notices for Organic Maps application." msgstr "ऑर्गेनिक मैप्स ऐप के लिए कॉपीराइट नोटिस की पूरी सूची जानने के लिए [data/copyright.html][copyright] फ़ाइल देखें।" -#. type: Link reference +#. type: Plain text #: content/terms/index.md #, no-wrap -msgid "[github]: https://github.com/organicmaps/organicmaps" -msgstr "" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[license]: http://www.apache.org/licenses/LICENSE-2.0" -msgstr "[license]: http://www.apache.org/licenses/LICENSE-2.0" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html" +msgid "" +"[github]: https://github.com/organicmaps/organicmaps\n" +"[license]: http://www.apache.org/licenses/LICENSE-2.0\n" +"[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html\n" msgstr "" +"[github]: https://github.com/organicmaps/organicmaps\n" +"[license]: http://www.apache.org/licenses/LICENSE-2.0\n" +"[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html\n" #. type: Hash Value: address #: translations.yaml @@ -830,18 +822,6 @@ msgstr "ख़बरों पर वापस जाएं" msgid "Contact Us" msgstr "संपर्क करें" -#. type: Hash Value: engines -#: translations.yaml -#, no-wrap -msgid "Supported TTS Engines" -msgstr "" - -#. type: Hash Value: faq-menu-title -#: translations.yaml -#, no-wrap -msgid "F.A.Q." -msgstr "" - #. type: Hash Value: install-appgallery #: translations.yaml #, no-wrap @@ -872,12 +852,6 @@ msgstr "गूगल प्ले से ऑर्गेनिक मैप इ msgid "English" msgstr "हिंदी" -#. type: Hash Value: language-word -#: translations.yaml -#, no-wrap -msgid "Language" -msgstr "भाषा" - #. type: Hash Value: name #: translations.yaml #, no-wrap @@ -890,39 +864,6 @@ msgstr "नाम" msgid "Token" msgstr "टोकन/Token" -#~ msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]**:" -#~ msgstr "आपके **[दान][stripe]** की बदौलत ऑर्गेनिक मैप्स ऐप सभी के लिए _मुफ्त_ है:" - -#~ msgid "We are a few enthusiasts contributing in our free time, and spending our families' money on the project. We love what we do, and we love our users ❤️." -#~ msgstr "हम कुछ उत्साही हैं जो अपने खाली समय में योगदान करते हैं, और परियोजना पर अपने परिवारों का पैसा खर्च करते हैं। हम जो करते हैं उससे प्यार करते हैं, और हम अपने उपयोगकर्ताओं से प्यार करते हैं ❤️।" - -#~ msgid "With your support, we want to become a better, privacy-focused version of Google Maps." -#~ msgstr "आपके समर्थन से, हम गूगल मानचित्र का एक बेहतर, गोपनीयता-केंद्रित संस्करण बनना चाहते हैं।" - -#, no-wrap -#~ msgid "What will the money be used for?" -#~ msgstr "पैसे का उपयोग किस लिए किया जाएगा?" - -#~ msgid "We pay for fast servers, so anyone in the World can download free map data updates without delays. It's hundreds of terabytes monthly, and the amount is growing." -#~ msgstr "हम तेज सर्वर के लिए भुगतान करते हैं, इसलिए दुनिया में कोई भी बिना देरी के मुफ्त मानचित्र डेटा अपडेट डाउनलोड कर सकता है। यह सैकड़ों टेराबाइट्स मासिक है, और राशि बढ़ रही है।" - -#~ msgid "Weekly and automated map data updates" -#~ msgstr "साप्ताहिक और स्वचालित नक्शो का डेटा अपडेट" - -#~ msgid "Bookmarks backup and sync" -#~ msgstr "बुकमार्क बैकअप और सिंक" - -#~ msgid "Android Auto" -#~ msgstr "एंड्रॉइड ऑटो" - -#, no-wrap -#~ msgid "" -#~ "[stripe]: https://donate.organicmaps.app/ \"Donate via Stripe\"\n" -#~ "[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" -#~ msgstr "" -#~ "[stripe]: https://donate.organicmaps.app/ \"स्ट्राइप के माध्यम से दान करें\"\n" -#~ "[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub के मामले\"\n" - #, no-wrap #~ msgid "There are different ways to donate:" #~ msgstr "दान करने के विभिन्न तरीके हैं:" diff --git a/po/content.hu.po b/po/content.hu.po index 7f622248..869a40fb 100644 --- a/po/content.hu.po +++ b/po/content.hu.po @@ -4,7 +4,16 @@ # FIRST AUTHOR , YEAR. # msgid "" -msgstr "Project-Id-Version: Organic Maps Website 1.0\nPO-Revision-Date: 2024-04-02 19:54+0000\nLast-Translator: Weblate Translation Memory \nLanguage-Team: Hungarian \nLanguage: hu\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-Forms: nplurals=2; plural=n != 1;\nX-Generator: Weblate 5.5-dev\n" +msgstr "" +"Project-Id-Version: Organic Maps Website 1.0\n" +"Last-Translator: Anonymous \n" +"Language-Team: Hungarian \n" +"Language: hu\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 4.16.2-dev\n" #. type: Yaml Front Matter Hash Value: description #: content/_index.md @@ -27,23 +36,15 @@ msgstr "Organic Maps: Offline túra, kerékpár, nyomvonalak és navigáció" #. type: Plain text #: content/_index.md #, no-wrap -msgid "" -"**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, drivers and cyclists based on **[OpenStreetMap][openstreetmap]** data created by the community.\n" -"It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" +msgid "**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, and cyclists based on top of crowd-sourced **[OpenStreetMap][openstreetmap]** data. It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" msgstr "Az **Organic Maps** egy ingyenes Android és iOS offline térképalkalmazás utazók, turisták, túrázók és kerékpárosok számára, amely az ingyenes **[OpenStreetMap][openstreetmap]** adatokon alapul. Ez egy adatvédelmi fókuszú, nyílt forráskódú [fork][fork] a **Maps.me** alkalmazásból (korábban [**MapsWithMe**][mapswithme] néven volt ismert), amelyet ugyanazok az emberek tartanak fenn, akik 2011-ben létrehozták a **MapsWithMe** alkalmazást.\n" #. type: Plain text #: content/_index.md #, no-wrap -msgid "**Organic Maps** is one of the few applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card, and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" +msgid "**Organic Maps** is one of the only applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card (by the way, your operator constantly tracks you), and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" msgstr "**Az Organic Maps** egyike azon kevés alkalmazásoknak, amelyek manapság 100%-ban támogatják a funkciókat aktív internetkapcsolat nélkül. Telepítse az Organic Maps-et, töltse le a térképeket, dobja el a SIM-kártyáját (máskülönben a szolgáltatója folyamatosan nyomon követi Önt), és egyetlen akkumulátortöltéssel, a hálózatra küldött egyetlen byte nélkül induljon el egy egyhetes útra.\n" -#. type: Plain text -#: content/_index.md -#, no-wrap -msgid "> In 2023, Organic Maps [got its first million](@/news/2023-12-23/281/index.md) users. [Help us](@/donate/index.md) to scale!\n" -msgstr "" - #. type: Title ### #: content/_index.md #, no-wrap @@ -103,8 +104,8 @@ msgstr "Szintvonalak, magassági profilok, csúcsok és lejtők" #. type: Bullet: '- ' #: content/_index.md -msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance and Android Auto" -msgstr "Részletes gyalogos, kerékpáros és autós navigáció hangutasítással, Android Auto" +msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance" +msgstr "Részletes gyalogos, kerékpáros és autós navigáció hangutasítással" #. type: Bullet: '- ' #: content/_index.md @@ -113,8 +114,8 @@ msgstr "Gyors offline keresés a térképen" #. type: Bullet: '- ' #: content/_index.md -msgid "Export/import bookmarks in KML/KMZ, import GPX" -msgstr "Könyvjelzők és számok KML, KMZ, GPX formátumban" +msgid "Bookmarks and tracks in KML, KMZ, GPX formats" +msgstr "Könyvjelzők exportálása és importálása KML/KMZ formátumba/ból (GPX [tervezett][gpx_issue])" #. type: Bullet: '- ' #: content/_index.md @@ -224,11 +225,13 @@ msgstr "{{ exodus_screenshot() }}" #. type: Plain text #: content/_index.md +#, markdown-text msgid "The iOS application is verified by [TrackerControl for iOS][trackercontrol]:" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ trackercontrol_screenshot() }}" msgstr "" @@ -368,22 +371,17 @@ msgstr "Látogasson el a [GitHub oldalunkra][github]." #. type: Bullet: '- ' #: content/_index.md -msgid "Follow our updates in [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." -msgstr "Kövesse frissítéseinket, újdonságainkat a [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit] és [LinkedIn][LinkedIn] szolgáltatásokon." - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Join (or create and let us know) local communities: [Hungarian translators Matrix room](https://matrix.to/#/#organicmapstranslate_hu:matrix.org)" -msgstr "" - -#. type: Link reference -#: content/_index.md -#, no-wrap -msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)" -msgstr "[fork]: https://hu.wikipedia.org/wiki/Fork_%28szoftverfejleszt%C3%A9s%29" +msgid "Follow our updates in [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." +msgstr "Kövesse frissítéseinket, újdonságainkat a [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit] és [LinkedIn][LinkedIn] szolgáltatásokon." #. type: Plain text -#: content/_index.md content/donate/index.md content/support-us/index.md +#: content/_index.md +#, no-wrap +msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)\n" +msgstr "[fork]: https://hu.wikipedia.org/wiki/Fork_%28szoftverfejleszt%C3%A9s%29\n" + +#. type: Plain text +#: content/_index.md content/support-us/index.md msgid "{{ references() }}" msgstr "{{ references() }}" @@ -407,7 +405,7 @@ msgstr "Adományozzon az Organic Maps fejlesztésének támogatására" #. type: Plain text #: content/donate/index.md -msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]** in **[EUR][stripe_eur], [USD][stripe_usd], [GBP][stripe_GBP], [CHF][stripe_chf], [UAH][stripe_uah], [PLN][stripe_pln]**:" +msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]**:" msgstr "Az Organic Maps alkalmazás _mindenki számára ingyenes_ az **[adományoknak][stripe]** köszönhetően :" #. type: Bullet: '- ' @@ -438,78 +436,63 @@ msgstr "Miért adományozzon az Organic Maps-nek?" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "Our goal is to provide a privacy-focused, fast and easy-to-use alternative to Google Maps and Apple Maps." -msgstr "" +msgid "We rely on your donations to carry out our mission to keep Organic Maps open and free. And free from ads." +msgstr "Az Ön adományaira támaszkodunk, hogy teljesíteni tudjuk küldetésünket, hogy az Organic Maps nyitott és szabad maradjon. MIndezt hirdetések nélkül." #. type: Bullet: '2. ' #: content/donate/index.md -msgid "Improving public map data for the numerous websites, apps and platforms which use OpenStreetMap, and involving more people in contributing map info is our another goal." -msgstr "" +msgid "We are a few enthusiasts contributing in our free time, and spending our families' money on the project. We love what we do, and we love our users ❤️." +msgstr "Maroknyian vagyunk, akik a szabadidőnkben hozzájárulunk a projekthez és a családunk pénzét költjük rá. Szeretjük, amit csinálunk, és szeretjük a felhasználóinkat ❤️." #. type: Bullet: '3. ' #: content/donate/index.md -msgid "We rely on your donations to keep Organic Maps open and free for everyone. And free from ads." -msgstr "Az Ön adományaira támaszkodunk, hogy teljesíteni tudjuk küldetésünket, hogy az Organic Maps nyitott és szabad maradjon. MIndezt hirdetések nélkül." - -#. type: Bullet: '4. ' -#: content/donate/index.md -msgid "We love what we do, and we love our users ❤️." -msgstr "" +msgid "With your support, we want to become a better, privacy-focused version of Google Maps." +msgstr "Az Ön támogatásával szeretnénk a Google Maps jobb, az adatvédelemre összpontosító változatává válni." #. type: Title ## #: content/donate/index.md #, no-wrap -msgid "Why a free project needs money?" -msgstr "" +msgid "What will the money be used for?" +msgstr "Mire lesz felhasználva a pénz?" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "In 2023, Organic Maps got its first million users. Our servers provide free, fast and frequent map updates all over the world." -msgstr "" +msgid "We pay for fast servers, so anyone in the World can download free map data updates without delays. It's hundreds of terabytes monthly, and the amount is growing." +msgstr "Gyors szerverekért fizetünk, így a világon bárki késedelem nélkül letöltheti az ingyenes térképadat-frissítéseket. Ez havonta több száz terabájt, és a mennyiség folyamatosan növekszik." #. type: Bullet: '2. ' #: content/donate/index.md -msgid "User support, bugfixing and publishing quality app updates are at the top of our priorities. There are [~2000 bug reports and feature requests on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." +msgid "User support, bugfixing, and improving the stability of the app are at the top of our priorities. There are [1800+ issues on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." msgstr "A felhasználói segítség, a hibajavítás és az alkalmazás stabilitásának javítása a prioritások között az első helyen áll. GitHubon [1800+ hibanapló van megnyitva][github issues], és ez a szám napról napra nő. Az AppStore, a Google Play és a támogatási e-maileket elárasztják a megjegyzések és a hibák. Minőségi terméket akarunk előállítani." #. type: Bullet: '3. ' #: content/donate/index.md -msgid "With enough money, new features can be developed. To name a few:" +msgid "With enough money, new features can be developed faster, for example:" msgstr "Elegendő pénzzel például gyorsabban tudunk új funkciókat fejleszteni, mint például:" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Backup and sync bookmarks and tracks" -msgstr "" +msgid "Weekly and automated map data updates" +msgstr "Heti és automatikus térképadat-frissítések" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "GPS track recorder with GPX export" +msgid "Bookmarks backup and sync" +msgstr "Könyvjelzők mentése és szinkronizálása" + +#. type: Bullet: ' - ' +#: content/donate/index.md +msgid "Android Auto" +msgstr "Android Auto" + +#. type: Bullet: ' - ' +#: content/donate/index.md +msgid "GPS track recorder with GPX support" msgstr "GPS nyomvonal felvevő GPX támogatással" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Satellite imagery" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Public Transport" -msgstr "Tömegközlekedés" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Traffic and accident reporting" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Photos and Reviews" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Map styles for different activities" +msgid "Better map styles for different activities" msgstr "Jobb térképrétegek a különböző tevékenységekhez" #. type: Bullet: ' - ' @@ -519,14 +502,19 @@ msgstr "Magassági árnyékolás és 3D terep" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "More advanced OpenStreetMap editor" -msgstr "Fejlettebb OpenStreetMap szerkesztő" +msgid "Improve the OpenStreetMap editor" +msgstr "Az OpenStreetMap szerkesztő javítása" #. type: Bullet: ' - ' #: content/donate/index.md msgid "Better offline address search, routing, and navigation" msgstr "Jobb offline címkeresés, útvonaltervezés és navigáció" +#. type: Bullet: ' - ' +#: content/donate/index.md +msgid "Public Transport" +msgstr "Tömegközlekedés" + #. type: Bullet: ' - ' #: content/donate/index.md msgid "… and [many other][github issues] features you want and love" @@ -540,7 +528,7 @@ msgstr "Hogyan adományozhatok?" #. type: Plain text #: content/donate/index.md -msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. One-time donations are appreciated too." +msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. But you can also donate one time." msgstr "Az ismétlődő adományok a legjobb módja annak, hogy viszonylag stabil bevételt biztosítsunk a projekt számára és motiváljanak minket a hosszú távú feladatok és célok megvalósításában. De egyszeri adományozásra is van lehetőség." #. type: Title ### @@ -581,6 +569,16 @@ msgstr "Tud más módon is segíteni nekünk?" msgid "Yes! There are many ways to support Organic Maps. Please see [Support Us](@/support-us/index.md) page for more details." msgstr "Igen! Sokféleképpen lehet támogatni az Organic Maps-et. További részletekért lásd a [Support Us](@/support-us/index.hu.md) oldalt." +#. type: Plain text +#: content/donate/index.md +#, no-wrap +msgid "" +"[stripe]: https://donate.organicmaps.app/ \"Donate via Stripe\"\n" +"[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" +msgstr "" +"[stripe]: https://donate.organicmaps.app/ \"Adományozás Stripe-on keresztül\"\n" +"[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Hibanaplók\"\n" + #. type: Yaml Front Matter Hash Value: description #: content/news/_index.md #, no-wrap @@ -794,23 +792,17 @@ msgstr "A felhasználási feltételeket lásd a LICENSE, COPYING vagy NOTICE fá msgid "See also [data/copyright.html][copyright] file for a full list of copyright notices for Organic Maps application." msgstr "Lásd még a [data/copyright.html][copyright] fájlt az Organic Maps alkalmazás szerzői jogi közleményeinek teljes listájáért." -#. type: Link reference +#. type: Plain text #: content/terms/index.md #, no-wrap -msgid "[github]: https://github.com/organicmaps/organicmaps" -msgstr "" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[license]: http://www.apache.org/licenses/LICENSE-2.0" -msgstr "[license]: http://www.apache.org/licenses/LICENSE-2.0" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html" +msgid "" +"[github]: https://github.com/organicmaps/organicmaps\n" +"[license]: http://www.apache.org/licenses/LICENSE-2.0\n" +"[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html\n" msgstr "" +"[github]: https://github.com/organicmaps/organicmaps\n" +"[license]: http://www.apache.org/licenses/LICENSE-2.0\n" +"[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html\n" #. type: Hash Value: address #: translations.yaml @@ -830,18 +822,6 @@ msgstr "Vissza a Hírekhez" msgid "Contact Us" msgstr "Kapcsolat" -#. type: Hash Value: engines -#: translations.yaml -#, no-wrap -msgid "Supported TTS Engines" -msgstr "" - -#. type: Hash Value: faq-menu-title -#: translations.yaml -#, no-wrap -msgid "F.A.Q." -msgstr "" - #. type: Hash Value: install-appgallery #: translations.yaml #, no-wrap @@ -872,12 +852,6 @@ msgstr "Telepítse az Organic Maps-et a Google Play-ről" msgid "English" msgstr "Magyar" -#. type: Hash Value: language-word -#: translations.yaml -#, no-wrap -msgid "Language" -msgstr "Nyelv" - #. type: Hash Value: name #: translations.yaml #, no-wrap @@ -890,39 +864,6 @@ msgstr "Név" msgid "Token" msgstr "Token" -#~ msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]**:" -#~ msgstr "Az Organic Maps alkalmazás _mindenki számára ingyenes_ az **[adományoknak][stripe]** köszönhetően :" - -#~ msgid "We are a few enthusiasts contributing in our free time, and spending our families' money on the project. We love what we do, and we love our users ❤️." -#~ msgstr "Maroknyian vagyunk, akik a szabadidőnkben hozzájárulunk a projekthez és a családunk pénzét költjük rá. Szeretjük, amit csinálunk, és szeretjük a felhasználóinkat ❤️." - -#~ msgid "With your support, we want to become a better, privacy-focused version of Google Maps." -#~ msgstr "Az Ön támogatásával szeretnénk a Google Maps jobb, az adatvédelemre összpontosító változatává válni." - -#, no-wrap -#~ msgid "What will the money be used for?" -#~ msgstr "Mire lesz felhasználva a pénz?" - -#~ msgid "We pay for fast servers, so anyone in the World can download free map data updates without delays. It's hundreds of terabytes monthly, and the amount is growing." -#~ msgstr "Gyors szerverekért fizetünk, így a világon bárki késedelem nélkül letöltheti az ingyenes térképadat-frissítéseket. Ez havonta több száz terabájt, és a mennyiség folyamatosan növekszik." - -#~ msgid "Weekly and automated map data updates" -#~ msgstr "Heti és automatikus térképadat-frissítések" - -#~ msgid "Bookmarks backup and sync" -#~ msgstr "Könyvjelzők mentése és szinkronizálása" - -#~ msgid "Android Auto" -#~ msgstr "Android Auto" - -#, no-wrap -#~ msgid "" -#~ "[stripe]: https://donate.organicmaps.app/ \"Donate via Stripe\"\n" -#~ "[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" -#~ msgstr "" -#~ "[stripe]: https://donate.organicmaps.app/ \"Adományozás Stripe-on keresztül\"\n" -#~ "[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Hibanaplók\"\n" - #, no-wrap #~ msgid "There are different ways to donate:" #~ msgstr "Az adományozásnak különböző módjai vannak:" diff --git a/po/content.id.po b/po/content.id.po index 02178345..6025a668 100644 --- a/po/content.id.po +++ b/po/content.id.po @@ -4,7 +4,7 @@ # FIRST AUTHOR , YEAR. # msgid "" -msgstr "Project-Id-Version: Organic Maps Website 1.0\nPO-Revision-Date: 2024-04-03 04:09+0000\nLast-Translator: Linerly \nLanguage-Team: Indonesian \nLanguage: id\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-Forms: nplurals=1; plural=0;\nX-Generator: Weblate 5.5-dev\n" +msgstr "Project-Id-Version: Organic Maps Website 1.0\nPO-Revision-Date: 2023-06-20 09:51+0000\nLast-Translator: Linerly \nLanguage-Team: Indonesian \nLanguage: id\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-Forms: nplurals=1; plural=0;\nX-Generator: Weblate 4.18.1\n" #. type: Yaml Front Matter Hash Value: description #: content/_index.md @@ -27,23 +27,15 @@ msgstr "Organic Maps: Pendakian, Bersepeda, Jalan Setapak, dan Navigasi Luring" #. type: Plain text #: content/_index.md #, no-wrap -msgid "" -"**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, drivers and cyclists based on **[OpenStreetMap][openstreetmap]** data created by the community.\n" -"It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" +msgid "**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, and cyclists based on top of crowd-sourced **[OpenStreetMap][openstreetmap]** data. It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" msgstr "**Organic Maps** adalah aplikasi peta luring Android & iOS gratis untuk pelancong, turis, pejalan kaki, dan pesepeda yang berbasis di atas data **[OpenStreetMap][openstreetmap]** yang bersumber dari orang-orang. Ini adalah [modifikasi][fork] sumber terbuka yang berfokus pada privasi dari aplikasi **Maps.me** (sebelumnya dikenal sebagai [**MapsWithMe**][mapswithme]), dikelola oleh orang yang sama yang menciptakan **MapsWithMe** pada tahun 2011.\n" #. type: Plain text #: content/_index.md #, no-wrap -msgid "**Organic Maps** is one of the few applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card, and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" +msgid "**Organic Maps** is one of the only applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card (by the way, your operator constantly tracks you), and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" msgstr "**Organic Maps** adalah salah satu dari sedikit aplikasi saat ini yang mendukung 100% fitur tanpa koneksi Internet aktif. Instal Organic Maps, unduh peta, buang kartu SIM Anda (ngomong-ngomong, operator Anda terus melacak Anda), dan lakukan perjalanan mingguan dengan satu kali pengisian baterai tanpa bita apa pun yang dikirim ke jaringan.\n" -#. type: Plain text -#: content/_index.md -#, no-wrap -msgid "> In 2023, Organic Maps [got its first million](@/news/2023-12-23/281/index.md) users. [Help us](@/donate/index.md) to scale!\n" -msgstr "" - #. type: Title ### #: content/_index.md #, no-wrap @@ -103,8 +95,8 @@ msgstr "Garis kontur, profil ketinggian, puncak, dan lereng" #. type: Bullet: '- ' #: content/_index.md -msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance and Android Auto" -msgstr "Navigasi berjalan kaki, bersepeda, dan mobil belok demi belok dengan panduan suara dan Android Auto" +msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance" +msgstr "Navigasi berjalan kaki, bersepeda, dan mobil belok demi belok dengan panduan suara" #. type: Bullet: '- ' #: content/_index.md @@ -113,8 +105,8 @@ msgstr "Pencarian luring cepat pada peta" #. type: Bullet: '- ' #: content/_index.md -msgid "Export/import bookmarks in KML/KMZ, import GPX" -msgstr "Bookmark dan trek dalam format KML, KMZ, GPX" +msgid "Bookmarks and tracks in KML, KMZ, GPX formats" +msgstr "Ekspor dan impor penanda dalam format KML/KMZ (GPX [direncanakan][gpx_issue])" #. type: Bullet: '- ' #: content/_index.md @@ -224,11 +216,13 @@ msgstr "{{ exodus_screenshot() }}" #. type: Plain text #: content/_index.md +#, markdown-text msgid "The iOS application is verified by [TrackerControl for iOS][trackercontrol]:" msgstr "Aplikasi iOS telah diverifikasi oleh [TrackerControl untuk iOS][trackercontrol]:" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ trackercontrol_screenshot() }}" msgstr "{{ trackercontrol_screenshot() }}" @@ -368,22 +362,17 @@ msgstr "Kunjungi [laman GitHub][github] kami." #. type: Bullet: '- ' #: content/_index.md -msgid "Follow our updates in [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." -msgstr "Ikuti pembaruan kami di [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Join (or create and let us know) local communities: [Hungarian translators Matrix room](https://matrix.to/#/#organicmapstranslate_hu:matrix.org)" -msgstr "" - -#. type: Link reference -#: content/_index.md -#, no-wrap -msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)" -msgstr "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)" +msgid "Follow our updates in [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." +msgstr "Ikuti pembaruan kami di [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." #. type: Plain text -#: content/_index.md content/donate/index.md content/support-us/index.md +#: content/_index.md +#, no-wrap +msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)\n" +msgstr "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)\n" + +#. type: Plain text +#: content/_index.md content/support-us/index.md msgid "{{ references() }}" msgstr "{{ references() }}" @@ -407,7 +396,7 @@ msgstr "Berdonasi untuk mendukung pengembangan Organic Maps" #. type: Plain text #: content/donate/index.md -msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]** in **[EUR][stripe_eur], [USD][stripe_usd], [GBP][stripe_GBP], [CHF][stripe_chf], [UAH][stripe_uah], [PLN][stripe_pln]**:" +msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]**:" msgstr "Aplikasi Organic Maps _gratis untuk semua orang_ berkat **[donasi][stripe]**:" #. type: Bullet: '- ' @@ -438,78 +427,63 @@ msgstr "Mengapa berdonasi ke Organic Maps?" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "Our goal is to provide a privacy-focused, fast and easy-to-use alternative to Google Maps and Apple Maps." -msgstr "" +msgid "We rely on your donations to carry out our mission to keep Organic Maps open and free. And free from ads." +msgstr "Kami mengandalkan donasi Anda untuk menjalankan misi kami agar Organic Maps tetap terbuka dan bebas. Dan bebas dari iklan." #. type: Bullet: '2. ' #: content/donate/index.md -msgid "Improving public map data for the numerous websites, apps and platforms which use OpenStreetMap, and involving more people in contributing map info is our another goal." -msgstr "" +msgid "We are a few enthusiasts contributing in our free time, and spending our families' money on the project. We love what we do, and we love our users ❤️." +msgstr "Kami adalah beberapa penggemar yang berkontribusi di waktu luang kami, dan menghabiskan uang keluarga kami untuk proyek ini. Kami mencintai apa yang kami lakukan, dan kami mencintai pengguna kami ❤️." #. type: Bullet: '3. ' #: content/donate/index.md -msgid "We rely on your donations to keep Organic Maps open and free for everyone. And free from ads." -msgstr "Kami mengandalkan donasi Anda untuk menjalankan misi kami agar Organic Maps tetap terbuka dan bebas. Dan bebas dari iklan." - -#. type: Bullet: '4. ' -#: content/donate/index.md -msgid "We love what we do, and we love our users ❤️." -msgstr "" +msgid "With your support, we want to become a better, privacy-focused version of Google Maps." +msgstr "Dengan dukungan Anda, kami ingin menjadi versi Google Maps yang lebih baik dan berfokus pada privasi." #. type: Title ## #: content/donate/index.md #, no-wrap -msgid "Why a free project needs money?" -msgstr "" +msgid "What will the money be used for?" +msgstr "Untuk apa uang itu akan digunakan?" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "In 2023, Organic Maps got its first million users. Our servers provide free, fast and frequent map updates all over the world." -msgstr "" +msgid "We pay for fast servers, so anyone in the World can download free map data updates without delays. It's hundreds of terabytes monthly, and the amount is growing." +msgstr "Kami membayar untuk server yang cepat, sehingga siapa pun di Dunia dapat mengunduh pembaruan data peta gratis tanpa penundaan. Ratusan terabyte setiap bulan, dan jumlahnya terus bertambah." #. type: Bullet: '2. ' #: content/donate/index.md -msgid "User support, bugfixing and publishing quality app updates are at the top of our priorities. There are [~2000 bug reports and feature requests on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." +msgid "User support, bugfixing, and improving the stability of the app are at the top of our priorities. There are [1800+ issues on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." msgstr "Dukungan pengguna, perbaikan kutu, dan peningkatan stabilitas aplikasi adalah prioritas utama kami. Ada [1800+ masalah di GitHub][github issues], dan jumlah ini terus bertambah setiap hari. App Store, Google Play, dan email dukungan dibanjiri dengan komentar dan kutu. Kami ingin memberikan produk berkualitas tinggi." #. type: Bullet: '3. ' #: content/donate/index.md -msgid "With enough money, new features can be developed. To name a few:" +msgid "With enough money, new features can be developed faster, for example:" msgstr "Dengan uang yang cukup, fitur baru bisa dikembangkan lebih cepat, misalnya:" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Backup and sync bookmarks and tracks" -msgstr "" +msgid "Weekly and automated map data updates" +msgstr "Pembaruan data peta mingguan dan otomatis" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "GPS track recorder with GPX export" +msgid "Bookmarks backup and sync" +msgstr "Pencadangan dan sinkronisasi penanda" + +#. type: Bullet: ' - ' +#: content/donate/index.md +msgid "Android Auto" +msgstr "Android Auto" + +#. type: Bullet: ' - ' +#: content/donate/index.md +msgid "GPS track recorder with GPX support" msgstr "Perekam trek GPS dengan dukungan GPX" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Satellite imagery" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Public Transport" -msgstr "Transportasi umum" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Traffic and accident reporting" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Photos and Reviews" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Map styles for different activities" +msgid "Better map styles for different activities" msgstr "Gaya peta yang lebih baik untuk aktivitas yang berbeda" #. type: Bullet: ' - ' @@ -519,7 +493,7 @@ msgstr "Bayangan bukit dan medan 3D" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "More advanced OpenStreetMap editor" +msgid "Improve the OpenStreetMap editor" msgstr "Memperbaiki penyunting OpenStreetMap" #. type: Bullet: ' - ' @@ -527,6 +501,11 @@ msgstr "Memperbaiki penyunting OpenStreetMap" msgid "Better offline address search, routing, and navigation" msgstr "Pencarian alamat, perutean, dan navigasi luring yang lebih baik" +#. type: Bullet: ' - ' +#: content/donate/index.md +msgid "Public Transport" +msgstr "Transportasi umum" + #. type: Bullet: ' - ' #: content/donate/index.md msgid "… and [many other][github issues] features you want and love" @@ -540,7 +519,7 @@ msgstr "Bagaimana cara berdonasi?" #. type: Plain text #: content/donate/index.md -msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. One-time donations are appreciated too." +msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. But you can also donate one time." msgstr "Donasi berulang adalah cara terbaik untuk memastikan pendapatan yang relatif stabil untuk proyek dan memotivasi kami untuk tugas dan tujuan jangka panjang. Tetapi Anda juga dapat menyumbang satu kali." #. type: Title ### @@ -581,6 +560,16 @@ msgstr "Dapatkah Anda membantu kami dengan cara lain?" msgid "Yes! There are many ways to support Organic Maps. Please see [Support Us](@/support-us/index.md) page for more details." msgstr "Ya! Ada banyak cara untuk mendukung Peta Organik. Silakan lihat halaman [Dukung Kami](@/support-us/index.id.md) untuk lebih jelasnya." +#. type: Plain text +#: content/donate/index.md +#, no-wrap +msgid "" +"[stripe]: https://donate.organicmaps.app/ \"Donate via Stripe\"\n" +"[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" +msgstr "" +"[stripe]: https://donate.organicmaps.app/ \"Donasi melalui Stripe\"\n" +"[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" + #. type: Yaml Front Matter Hash Value: description #: content/news/_index.md #, no-wrap @@ -794,23 +783,17 @@ msgstr "Silakan merujuk ke berkas LISENSI, COPYING, atau NOTICE mereka untuk ket msgid "See also [data/copyright.html][copyright] file for a full list of copyright notices for Organic Maps application." msgstr "Lihat juga berkas [data/copyright.html][copyright] untuk daftar lengkap pemberitahuan hak cipta untuk aplikasi Organic Maps." -#. type: Link reference +#. type: Plain text #: content/terms/index.md #, no-wrap -msgid "[github]: https://github.com/organicmaps/organicmaps" -msgstr "[github]: https://github.com/organicmaps/organicmaps" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[license]: http://www.apache.org/licenses/LICENSE-2.0" -msgstr "[license]: http://www.apache.org/licenses/LICENSE-2.0" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html" -msgstr "[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html" +msgid "" +"[github]: https://github.com/organicmaps/organicmaps\n" +"[license]: http://www.apache.org/licenses/LICENSE-2.0\n" +"[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html\n" +msgstr "" +"[github]: https://github.com/organicmaps/organicmaps\n" +"[license]: http://www.apache.org/licenses/LICENSE-2.0\n" +"[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html\n" #. type: Hash Value: address #: translations.yaml @@ -830,18 +813,6 @@ msgstr "Kembali ke Berita" msgid "Contact Us" msgstr "Hubungi Kami" -#. type: Hash Value: engines -#: translations.yaml -#, no-wrap -msgid "Supported TTS Engines" -msgstr "Mesin TTS yang Didukung" - -#. type: Hash Value: faq-menu-title -#: translations.yaml -#, no-wrap -msgid "F.A.Q." -msgstr "Soal Sering Ditanya (SSD)" - #. type: Hash Value: install-appgallery #: translations.yaml #, no-wrap @@ -872,12 +843,6 @@ msgstr "Instal Organic Maps dari Google Play" msgid "English" msgstr "Bahasa Indonesia" -#. type: Hash Value: language-word -#: translations.yaml -#, no-wrap -msgid "Language" -msgstr "Bahasa" - #. type: Hash Value: name #: translations.yaml #, no-wrap @@ -890,39 +855,6 @@ msgstr "Nama" msgid "Token" msgstr "Token" -#~ msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]**:" -#~ msgstr "Aplikasi Organic Maps _gratis untuk semua orang_ berkat **[donasi][stripe]**:" - -#~ msgid "We are a few enthusiasts contributing in our free time, and spending our families' money on the project. We love what we do, and we love our users ❤️." -#~ msgstr "Kami adalah beberapa penggemar yang berkontribusi di waktu luang kami, dan menghabiskan uang keluarga kami untuk proyek ini. Kami mencintai apa yang kami lakukan, dan kami mencintai pengguna kami ❤️." - -#~ msgid "With your support, we want to become a better, privacy-focused version of Google Maps." -#~ msgstr "Dengan dukungan Anda, kami ingin menjadi versi Google Maps yang lebih baik dan berfokus pada privasi." - -#, no-wrap -#~ msgid "What will the money be used for?" -#~ msgstr "Untuk apa uang itu akan digunakan?" - -#~ msgid "We pay for fast servers, so anyone in the World can download free map data updates without delays. It's hundreds of terabytes monthly, and the amount is growing." -#~ msgstr "Kami membayar untuk server yang cepat, sehingga siapa pun di Dunia dapat mengunduh pembaruan data peta gratis tanpa penundaan. Ratusan terabyte setiap bulan, dan jumlahnya terus bertambah." - -#~ msgid "Weekly and automated map data updates" -#~ msgstr "Pembaruan data peta mingguan dan otomatis" - -#~ msgid "Bookmarks backup and sync" -#~ msgstr "Pencadangan dan sinkronisasi penanda" - -#~ msgid "Android Auto" -#~ msgstr "Android Auto" - -#, no-wrap -#~ msgid "" -#~ "[stripe]: https://donate.organicmaps.app/ \"Donate via Stripe\"\n" -#~ "[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" -#~ msgstr "" -#~ "[stripe]: https://donate.organicmaps.app/ \"Donasi melalui Stripe\"\n" -#~ "[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" - #, no-wrap #~ msgid "There are different ways to donate:" #~ msgstr "Ada berbagai cara untuk berdonasi:" diff --git a/po/content.it.po b/po/content.it.po index 377ee5b4..9e1e006f 100644 --- a/po/content.it.po +++ b/po/content.it.po @@ -4,7 +4,7 @@ # FIRST AUTHOR , YEAR. # msgid "" -msgstr "Project-Id-Version: Organic Maps Website 1.0\nPO-Revision-Date: 2024-04-02 19:54+0000\nLast-Translator: Weblate Translation Memory \nLanguage-Team: Italian \nLanguage: it\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-Forms: nplurals=2; plural=n != 1;\nX-Generator: Weblate 5.5-dev\n" +msgstr "Project-Id-Version: Organic Maps Website 1.0\nPO-Revision-Date: 2023-08-28 19:52+0000\nLast-Translator: Anonymous \nLanguage-Team: Italian \nLanguage: it\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-Forms: nplurals=2; plural=n != 1;\nX-Generator: Weblate 5.0.1-dev\n" #. type: Yaml Front Matter Hash Value: description #: content/_index.md @@ -26,367 +26,410 @@ msgstr "Organic Maps: Escursioni in bicicletta, sentieri e navigazione offline" #. type: Plain text #: content/_index.md -#, fuzzy, no-wrap -#| msgid "**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, and cyclists based on top of crowd-sourced **[OpenStreetMap][openstreetmap]** data. It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" -msgid "" -"**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, drivers and cyclists based on **[OpenStreetMap][openstreetmap]** data created by the community.\n" -"It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" +#, markdown-text, no-wrap +msgid "**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, and cyclists based on top of crowd-sourced **[OpenStreetMap][openstreetmap]** data. It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" msgstr "**Organic Maps** è un'applicazione gratuita per Android e iOS di mappe offline per viaggiatori, turisti, escursionisti e ciclisti, basata sui dati **[OpenStreetMap][openstreetmap]** crowd-sourced. È un [fork][fork] open-source, incentrato sulla privacy, dell'app **Maps.me** (precedentemente nota come [**MapsWithMe**][mapswithme], gestita dalle stesse persone che hanno creato **MapsWithMe** nel 2011.\n" #. type: Plain text #: content/_index.md -#, fuzzy, no-wrap -#| msgid "**Organic Maps** is one of the only applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card (by the way, your operator constantly tracks you), and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" -msgid "**Organic Maps** is one of the few applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card, and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" +#, markdown-text, no-wrap +msgid "**Organic Maps** is one of the only applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card (by the way, your operator constantly tracks you), and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" msgstr "**Organic Maps** è una delle poche applicazioni che supporta il 100% delle funzioni senza una connessione Internet attiva. Installate Organic Maps, scaricate le mappe, buttate via la scheda SIM (a proposito, il vostro operatore vi traccia costantemente) e partite per un viaggio settimanale con una sola carica della batteria senza inviare alcun byte alla rete.\n" -#. type: Plain text -#: content/_index.md -#, no-wrap -msgid "> In 2023, Organic Maps [got its first million](@/news/2023-12-23/281/index.md) users. [Help us](@/donate/index.md) to scale!\n" -msgstr "" - #. type: Title ### #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Download and install Organic Maps from [AppStore][appstore], [Google Play][googleplay], [FDroid][fdroid], [Huawei AppGallery][appgallery] {#install}" msgstr "Scarica e installa Organic Maps da [AppStore][appstore], [Google Play][googleplay], [FDroid][fdroid], [Huawei AppGallery][appgallery] {#install}" #. type: Plain text #: content/_index.md -msgid "{{ badges() }}" +#, markdown-text +msgid "{{ badges(lang='en') }}" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ screenshot(src='/images/screenshots/hiking.jpg', alt='Hiking') }}" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ screenshot(src='/images/screenshots/prague.jpg', alt='Prague') }}" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ screenshot(src='/images/screenshots/search.jpg', alt='Offline Search') }}" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ screenshot(src='/images/screenshots/dark.jpg', alt='Navigation in dark mode') }}" msgstr "" #. type: Title ## #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Features" msgstr "Funzionalità" #. type: Plain text #: content/_index.md +#, markdown-text msgid "Organic Maps is the ultimate companion app for travelers, tourists, hikers, and cyclists:" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Detailed offline maps with places that don't exist on other maps, thanks to [OpenStreetMap][openstreetmap]" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Cycling routes, hiking trails, and walking paths" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Contour lines, elevation profiles, peaks, and slopes" msgstr "" #. type: Bullet: '- ' #: content/_index.md -msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance and Android Auto" +#, markdown-text +msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Fast offline search on the map" msgstr "" #. type: Bullet: '- ' #: content/_index.md -msgid "Export/import bookmarks in KML/KMZ, import GPX" +#, markdown-text +msgid "Bookmarks and tracks in KML, KMZ, GPX formats" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Dark Mode to protect your eyes" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Countries and regions don't take a lot of space" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Free and open-source" msgstr "Gratuito e a sorgente aperto" #. type: Title ## #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Why Organic?" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "Organic Maps is pure and organic, made with love:" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Respects your privacy" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Saves your battery" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No unexpected mobile data charges" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "Organic Maps app is free from trackers and other bad stuff:" msgstr "" #. type: Bullet: '- ' #: content/_index.md content/donate/index.md +#, markdown-text msgid "No ads" msgstr "Nessun annuncio" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No tracking" msgstr "Senza tracking" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No data collection" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No phoning home" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No annoying registration" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No mandatory tutorials" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No noisy email spam" msgstr "" #. type: Bullet: '- ' #: content/_index.md content/donate/index.md +#, markdown-text msgid "No push notifications" msgstr "Notifiche push" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No crapware" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "~~No pesticides~~ Purely organic!" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "The application is verified by [Exodus Privacy Project][exodus]:" msgstr "" #. type: Plain text #: content/_index.md -msgid "{{ exodus_screenshot() }}" +#, markdown-text +msgid "{{ exodus_screenshot(lang='en') }}" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "The iOS application is verified by [TrackerControl for iOS][trackercontrol]:" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ trackercontrol_screenshot() }}" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "Organic Maps doesn't request excessive permissions to spy on you:" msgstr "" #. type: Plain text #: content/_index.md -msgid "{{ privacy_screenshots() }}" +#, markdown-text +msgid "{{ privacy_screenshots(lang='en') }}" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "At Organic Maps, we believe that privacy is a fundamental human right:" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Organic Maps is an indie community-driven open-source project" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "We protect your privacy from Big Tech's prying eyes" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Stay safe no matter wherever you are" msgstr "" #. type: Plain text #: content/_index.md content/privacy/index.md +#, markdown-text msgid "Reject surveillance - embrace your freedom." msgstr "" #. type: Plain text #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap msgid "**[Give Organic Maps a try!](#install)**\n" msgstr "" #. type: Title ## #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Who is paying for the free app?" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "The app is free for everyone. Please [donate](@/donate/index.md) to support us!" msgstr "" -#. type: Plain text -#: content/_index.md -msgid "To donate conveniently, click on your preferred payment method icon below:" -msgstr "" - -#. type: Plain text -#: content/_index.md content/donate/index.md -msgid "{{ donate_buttons() }}" -msgstr "" - #. type: Title ### #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap +msgid "There are different ways to donate:" +msgstr "" + +#. type: Plain text +#: content/_index.md content/donate/index.md +#, markdown-text +msgid "{{ donate_buttons(lang='en') }}" +msgstr "" + +#. type: Title ### +#: content/_index.md +#, markdown-text, no-wrap msgid "Our sponsors:" msgstr "I nostri sponsor:" #. type: Plain text #: content/_index.md +#, markdown-text msgid "[Mythic Beasts](https://www.mythic-beasts.com/) ISP [provides us][mythic_beasts_donation] two virtual servers with 400 TB/month of free bandwidth to help our users with maps downloads and updates." msgstr "" #. type: Title ## #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Community" msgstr "Comunità" #. type: Plain text #: content/_index.md +#, markdown-text msgid "Organic Maps is an [open-source software][github] licensed under the Apache License 2.0." msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Please join our beta program, suggest your features, and report bugs:" msgstr "" #. type: Bullet: ' * ' #: content/_index.md +#, markdown-text msgid "[iOS Beta (TestFlight)][testflight]" msgstr "" #. type: Bullet: ' * ' #: content/_index.md +#, markdown-text msgid "[Android Beta (Firebase)][firebase]" msgstr "" #. type: Bullet: ' * ' #: content/_index.md +#, markdown-text msgid "[Linux Desktop Beta (Flatpak)][flatpak]" msgstr "" #. type: Bullet: ' * ' #: content/_index.md +#, markdown-text msgid "[Linux Desktop Beta (packages)][repology]" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Report bugs or issues to [the issue tracker][issues] or [email us][email]." msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "[Discuss][ideas] ideas or propose feature requests." msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Subscribe to our [Telegram Channel][telegram] or to the [matrix space][matrix] for updates." msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Join our [Telegram Group][telegram_chat] to discuss with other users." msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Visit our [GitHub page][github]." msgstr "" #. type: Bullet: '- ' #: content/_index.md -msgid "Follow our updates in [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." -msgstr "" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Join (or create and let us know) local communities: [Hungarian translators Matrix room](https://matrix.to/#/#organicmapstranslate_hu:matrix.org)" -msgstr "" - -#. type: Link reference -#: content/_index.md -#, no-wrap -msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)" +#, markdown-text +msgid "Follow our updates in [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit]." msgstr "" #. type: Plain text -#: content/_index.md content/donate/index.md content/support-us/index.md -msgid "{{ references() }}" +#: content/_index.md +#, markdown-text, no-wrap +msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)\n" +msgstr "" + +#. type: Plain text +#: content/_index.md content/support-us/index.md +#, markdown-text +msgid "{{ references(lang='en') }}" msgstr "" #. type: Yaml Front Matter Hash Value: description @@ -409,180 +452,198 @@ msgstr "" #. type: Plain text #: content/donate/index.md -msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]** in **[EUR][stripe_eur], [USD][stripe_usd], [GBP][stripe_GBP], [CHF][stripe_chf], [UAH][stripe_uah], [PLN][stripe_pln]**:" +#, markdown-text +msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]**:" msgstr "" #. type: Bullet: '- ' #: content/donate/index.md +#, markdown-text msgid "No trackers" -msgstr "No piste" +msgstr "" #. type: Bullet: '- ' #: content/donate/index.md +#, markdown-text msgid "No registration" -msgstr "Partita IVA" +msgstr "" #. type: Bullet: '- ' #: content/donate/index.md +#, markdown-text msgid "Open source" msgstr "Codice sorgente aperto" -#. type: Plain text -#: content/donate/index.md -msgid "Click on your preferred payment method icon below:" -msgstr "" - #. type: Title ## #: content/donate/index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Why donate to Organic Maps?" msgstr "" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "Our goal is to provide a privacy-focused, fast and easy-to-use alternative to Google Maps and Apple Maps." +#, markdown-text +msgid "We rely on your donations to carry out our mission to keep Organic Maps open and free. And free from ads." msgstr "" #. type: Bullet: '2. ' #: content/donate/index.md -msgid "Improving public map data for the numerous websites, apps and platforms which use OpenStreetMap, and involving more people in contributing map info is our another goal." +#, markdown-text +msgid "We are a few enthusiasts contributing in our free time, and spending our families' money on the project. We love what we do, and we love our users ❤️." msgstr "" #. type: Bullet: '3. ' #: content/donate/index.md -msgid "We rely on your donations to keep Organic Maps open and free for everyone. And free from ads." -msgstr "" - -#. type: Bullet: '4. ' -#: content/donate/index.md -msgid "We love what we do, and we love our users ❤️." +#, markdown-text +msgid "With your support, we want to become a better, privacy-focused version of Google Maps." msgstr "" #. type: Title ## #: content/donate/index.md -#, no-wrap -msgid "Why a free project needs money?" +#, markdown-text, no-wrap +msgid "What will the money be used for?" msgstr "" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "In 2023, Organic Maps got its first million users. Our servers provide free, fast and frequent map updates all over the world." +#, markdown-text +msgid "We pay for fast servers, so anyone in the World can download free map data updates without delays. It's hundreds of terabytes monthly, and the amount is growing." msgstr "" #. type: Bullet: '2. ' #: content/donate/index.md -msgid "User support, bugfixing and publishing quality app updates are at the top of our priorities. There are [~2000 bug reports and feature requests on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." +#, markdown-text +msgid "User support, bugfixing, and improving the stability of the app are at the top of our priorities. There are [1800+ issues on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." msgstr "" #. type: Bullet: '3. ' #: content/donate/index.md -msgid "With enough money, new features can be developed. To name a few:" +#, markdown-text +msgid "With enough money, new features can be developed faster, for example:" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Backup and sync bookmarks and tracks" +#, markdown-text +msgid "Weekly and automated map data updates" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "GPS track recorder with GPX export" +#, markdown-text +msgid "Bookmarks backup and sync" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Satellite imagery" +#, markdown-text +msgid "Android Auto" +msgstr "Android Auto" + +#. type: Bullet: ' - ' +#: content/donate/index.md +#, markdown-text +msgid "GPS track recorder with GPX support" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Public Transport" -msgstr "Public Transport" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Traffic and accident reporting" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Photos and Reviews" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Map styles for different activities" +#, markdown-text +msgid "Better map styles for different activities" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md +#, markdown-text msgid "Hill shading and 3D terrain" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "More advanced OpenStreetMap editor" +#, markdown-text +msgid "Improve the OpenStreetMap editor" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md +#, markdown-text msgid "Better offline address search, routing, and navigation" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md +#, markdown-text +msgid "Public Transport" +msgstr "Public Transport" + +#. type: Bullet: ' - ' +#: content/donate/index.md +#, markdown-text msgid "… and [many other][github issues] features you want and love" msgstr "" #. type: Title ## #: content/donate/index.md -#, no-wrap +#, markdown-text, no-wrap msgid "How to donate?" msgstr "" #. type: Plain text #: content/donate/index.md -msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. One-time donations are appreciated too." +#, markdown-text +msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. But you can also donate one time." msgstr "" #. type: Title ### #: content/donate/index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Bank Transfer" msgstr "Bonifico bancario" #. type: Plain text #: content/donate/index.md -msgid "{{ bank_transfer() }}" +#, markdown-text +msgid "{{ bank_transfer(lang='en') }}" msgstr "" #. type: Title ### #: content/donate/index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Crypto" msgstr "Cripto" #. type: Plain text #: content/donate/index.md +#, markdown-text msgid "Please consider donating annually to reduce total fees." msgstr "" #. type: Plain text #: content/donate/index.md -msgid "{{ crypto_table() }}" +#, markdown-text +msgid "{{ crypto_table(lang='en') }}" msgstr "" #. type: Title ## #: content/donate/index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Can you help us in any other way?" msgstr "" #. type: Plain text #: content/donate/index.md +#, markdown-text msgid "Yes! There are many ways to support Organic Maps. Please see [Support Us](@/support-us/index.md) page for more details." msgstr "" +#. type: Plain text +#: content/donate/index.md +#, markdown-text, no-wrap +msgid "" +"[stripe]: https://donate.organicmaps.app/ \"Donate via Stripe\"\n" +"[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" +msgstr "" + #. type: Yaml Front Matter Hash Value: description #: content/news/_index.md #, no-wrap @@ -621,27 +682,31 @@ msgstr "" #. type: Plain text #: content/privacy/index.md +#, markdown-text msgid "Organic Maps respects your privacy and DOES NOT TRACK YOU." msgstr "" #. type: Plain text #: content/privacy/index.md +#, markdown-text msgid "Unlike most other applications, there is no tracking, no ads, no spyware, no data and statistics collection in Organic Maps." msgstr "" #. type: Plain text #: content/privacy/index.md +#, markdown-text msgid "Stay away from Big Tech's prying eyes!" msgstr "" #. type: Plain text #: content/privacy/index.md content/terms/index.md +#, markdown-text msgid "If you have any questions or suggestions, please contact us at [legal@organicmaps.app](mailto:legal@organicmaps.app)." msgstr "" #. type: Plain text #: content/privacy/index.md -#, no-wrap +#, markdown-text, no-wrap msgid "This policy is effective as of 2021-04-24.\n" msgstr "" @@ -665,76 +730,91 @@ msgstr "" #. type: Plain text #: content/support-us/index.md +#, markdown-text msgid "Organic Maps is a free, open-source app. It is free from ads, it does not collect your personal information, and it is developed by a few enthusiasts with the help of the community." msgstr "" #. type: Plain text #: content/support-us/index.md +#, markdown-text msgid "There are different ways to support the development:" msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "[Donate](@/donate/index.md)! Every dollar or euro counts and helps us to pay for servers and scale." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Report bugs and share ideas on our [GitHub][github] or via [email][email]." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Help us to [fix bugs][contributing] and do code reviews if you are a developer. Every fixed small issue makes someone happier." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "[Translate][translations] missing strings in the app's interface." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Translate [App Store][translations_appstore] and [Android][translations_googleplay] descriptions into your language." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "[Translate][translations_website] our web site into your language." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Join the [OpenStreetMap][openstreetmap] community and contribute to the maps data." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Fix red cities found by our [public transport validator][public_transport_validator], for subways and light rails to work in the app." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Support other users on [GitHub][issues], [Telegram][telegram_chat], [Matrix][matrix], [Twitter][twitter], [Facebook][facebook], [Instagram][instagram]." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Tell everyone about Organic Maps. A bigger community is a stronger community." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Rate us in [Google Play][googleplay_review], [Apple Store][appstore_review], [Huawei Appgallery][appgallery_review]." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Any help is welcome!" msgstr "" #. type: Plain text #: content/support-us/index.md +#, markdown-text msgid "Our small team is very grateful for your feedback and support. Organic Maps would not be possible without our users ❤️." msgstr "" @@ -758,60 +838,59 @@ msgstr "" #. type: Plain text #: content/terms/index.md +#, markdown-text msgid "This app is licensed under the Apache License, Version 2.0 (the \"License\"); you may not use this application except in compliance with the License." msgstr "" #. type: Plain text #: content/terms/index.md +#, markdown-text msgid "You may obtain a copy of the License at [http://www.apache.org/licenses/LICENSE-2.0][license]" msgstr "" #. type: Plain text #: content/terms/index.md +#, markdown-text msgid "Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License." msgstr "" #. type: Plain text #: content/terms/index.md +#, markdown-text msgid "Most libraries in the following directories on [GitHub][github] made by other people and organizations and licensed in different ways:" msgstr "" #. type: Bullet: '- ' #: content/terms/index.md +#, markdown-text msgid "3party" msgstr "" #. type: Bullet: '- ' #: content/terms/index.md +#, markdown-text msgid "tools" msgstr "Strumenti" #. type: Plain text #: content/terms/index.md +#, markdown-text msgid "Please refer to their LICENSE, COPYING or NOTICE files for terms of use." msgstr "" #. type: Plain text #: content/terms/index.md +#, markdown-text msgid "See also [data/copyright.html][copyright] file for a full list of copyright notices for Organic Maps application." msgstr "" -#. type: Link reference +#. type: Plain text #: content/terms/index.md -#, no-wrap -msgid "[github]: https://github.com/organicmaps/organicmaps" -msgstr "" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[license]: http://www.apache.org/licenses/LICENSE-2.0" -msgstr "" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html" +#, markdown-text, no-wrap +msgid "" +"[github]: https://github.com/organicmaps/organicmaps\n" +"[license]: http://www.apache.org/licenses/LICENSE-2.0\n" +"[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html\n" msgstr "" #. type: Hash Value: address @@ -832,18 +911,6 @@ msgstr "" msgid "Contact Us" msgstr "Contattaci" -#. type: Hash Value: engines -#: translations.yaml -#, no-wrap -msgid "Supported TTS Engines" -msgstr "" - -#. type: Hash Value: faq-menu-title -#: translations.yaml -#, no-wrap -msgid "F.A.Q." -msgstr "" - #. type: Hash Value: install-appgallery #: translations.yaml #, no-wrap @@ -874,12 +941,6 @@ msgstr "" msgid "English" msgstr "Italiano" -#. type: Hash Value: language-word -#: translations.yaml -#, no-wrap -msgid "Language" -msgstr "Lingua" - #. type: Hash Value: name #: translations.yaml #, no-wrap @@ -891,6 +952,3 @@ msgstr "Nome" #, no-wrap msgid "Token" msgstr "Token" - -#~ msgid "Android Auto" -#~ msgstr "Android Auto" diff --git a/po/content.lt.po b/po/content.lt.po index a50e22d4..7107dd7c 100644 --- a/po/content.lt.po +++ b/po/content.lt.po @@ -4,7 +4,7 @@ # FIRST AUTHOR , YEAR. # msgid "" -msgstr "Project-Id-Version: Organic Maps Website 1.0\nPO-Revision-Date: 2024-04-02 19:54+0000\nLast-Translator: Weblate Translation Memory \nLanguage-Team: Lithuanian \nLanguage: lt\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\nX-Generator: Weblate 5.5-dev\n" +msgstr "Project-Id-Version: Organic Maps Website 1.0\nPO-Revision-Date: 2023-09-05 10:57+0000\nLast-Translator: Anonymous \nLanguage-Team: Lithuanian \nLanguage: lt\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-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);\nX-Generator: Weblate 5.0.1-dev\n" #. type: Yaml Front Matter Hash Value: description #: content/_index.md @@ -26,362 +26,409 @@ msgstr "Organic Maps: žygių takai pėsčiomis, dviračiu ir navigacija" #. type: Plain text #: content/_index.md -msgid "" -"**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, drivers and cyclists based on **[OpenStreetMap][openstreetmap]** data created by the community.\n" -"It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" +#, markdown-text, no-wrap +msgid "**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, and cyclists based on top of crowd-sourced **[OpenStreetMap][openstreetmap]** data. It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" msgstr "**Organic Maps** yra nemokama be interneto veikianti Android ir iOS žemėlapių programėlė, skirta keliautojams, turistams, žygeiviams ir dviratininkams, kuri naudoja bendruomenės tvarkomų **[OpenStreetMap][openstreetmap]** žemėlapių duomenis. Ji yra į privatumą orientuota atviro kodo atšaka nuo [fork][fork] **Maps.me** programėlės (anksčiau žinomos kaip [**MapsWithMe**][mapswithme]), prižiūrima tų pačių žmonių, kurie sukūrė **MapsWithMe** 2011-aisiais metais.\n" #. type: Plain text #: content/_index.md -msgid "**Organic Maps** is one of the few applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card, and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" +#, markdown-text, no-wrap +msgid "**Organic Maps** is one of the only applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card (by the way, your operator constantly tracks you), and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" msgstr "**Organic Maps** yra viena iš nedaugelio programų, kurios 100% funkcijų šiais laikais veikia be interneto ryšio. Įsidiekite Organic Maps, atsisiųskite žemėlapius, išmeskite SIM kortelę (atmikite, kad jūsų ryšio operatorius nuolat seka jus) ir išvykite į savaitės trukmės kelionę su vienu baterijos pakrovimu ir neišsiuntę nė vieno baito į internetą.\n" -#. type: Plain text -#: content/_index.md -#, no-wrap -msgid "> In 2023, Organic Maps [got its first million](@/news/2023-12-23/281/index.md) users. [Help us](@/donate/index.md) to scale!\n" -msgstr "" - #. type: Title ### #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Download and install Organic Maps from [AppStore][appstore], [Google Play][googleplay], [FDroid][fdroid], [Huawei AppGallery][appgallery] {#install}" msgstr "Atsisiųskite ir įsidiekite Organic Maps iš [AppStore][appstore], [Google Play][googleplay], [FDroid][fdroid], [Huawei AppGallery][appgallery] {#install}" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ badges() }}" msgstr "{{ badges() }}" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ screenshot(src='/images/screenshots/hiking.jpg', alt='Hiking') }}" msgstr "{{ screenshot(src='/images/screenshots/hiking.jpg', alt='Žygiavimas') }}" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ screenshot(src='/images/screenshots/prague.jpg', alt='Prague') }}" msgstr "{{ screenshot(src='/images/screenshots/prague.jpg', alt='Praha') }}" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ screenshot(src='/images/screenshots/search.jpg', alt='Offline Search') }}" msgstr "{{ screenshot(src='/images/screenshots/search.jpg', alt='Paieška neprisijungus') }}" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ screenshot(src='/images/screenshots/dark.jpg', alt='Navigation in dark mode') }}" msgstr "{{ screenshot(src='/images/screenshots/dark.jpg', alt='Navigacija tamsiuoju režimu') }}" #. type: Title ## #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Features" msgstr "Funkcijos" #. type: Plain text #: content/_index.md +#, markdown-text msgid "Organic Maps is the ultimate companion app for travelers, tourists, hikers, and cyclists:" msgstr "Organic Maps programėlė yra nuostabi palydovė keliautojams, turistams, žygeiviams ir dviratininkams:" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Detailed offline maps with places that don't exist on other maps, thanks to [OpenStreetMap][openstreetmap]" msgstr "Detalūs žemėlapiai be interneto su vietomis, kurių nerasite kituose žemėlapiuose, dėka [OpenStreetMap][openstreetmap]" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Cycling routes, hiking trails, and walking paths" msgstr "Dviračių, žygių ir pėsčiųjų takai" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Contour lines, elevation profiles, peaks, and slopes" msgstr "Reljefo kontūrai, pakilimo profiliai, viršukalnės ir šlaitai" #. type: Bullet: '- ' #: content/_index.md -msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance and Android Auto" -msgstr "Nuosekli navigacija pėstiesiems, dviratininkams ir automobilių vairuotojams su nurodymais balsu ir Android Auto" +#, markdown-text +msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance" +msgstr "Nuosekli navigacija pėstiesiems, dviratininkams ir automobilių vairuotojams su nurodymais balsu" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Fast offline search on the map" msgstr "Sparti paieška žemėlapyje neprisijungus" #. type: Bullet: '- ' #: content/_index.md -msgid "Export/import bookmarks in KML/KMZ, import GPX" +#, markdown-text +msgid "Bookmarks and tracks in KML, KMZ, GPX formats" msgstr "Žymelės ir takai KML, KMZ ir GPX formatais" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Dark Mode to protect your eyes" msgstr "Tamsus režimas apsaugos jūsų akis" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Countries and regions don't take a lot of space" msgstr "Šalys ir regionai neužima daug vietos" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Free and open-source" msgstr "Nemokama ir atvirojo kodo" #. type: Title ## #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Why Organic?" msgstr "Kodėl Organic?" #. type: Plain text #: content/_index.md +#, markdown-text msgid "Organic Maps is pure and organic, made with love:" msgstr "Organic Maps yra tyra ir ekologiška, sukurta su meile:" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Respects your privacy" msgstr "Gerbia jūsų privatumą" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Saves your battery" msgstr "Tausoja jūsų bateriją" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No unexpected mobile data charges" msgstr "Jokių netikėtų mokesčių už mobilius duomenis" #. type: Plain text #: content/_index.md +#, markdown-text msgid "Organic Maps app is free from trackers and other bad stuff:" msgstr "Organic Maps programėlė nenaudoja seklių ir neturi kitų kenksmingų savybių:" #. type: Bullet: '- ' #: content/_index.md content/donate/index.md +#, markdown-text msgid "No ads" msgstr "Jokių reklamų" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No tracking" msgstr "Jokio sekimo" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No data collection" msgstr "Jokio duomenų rinkimo" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No phoning home" msgstr "Jokio duomenų siuntimo programėlės kūrėjams" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No annoying registration" msgstr "Jokios registracijos" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No mandatory tutorials" msgstr "Jokios priverstinės pamokėlių peržiūros" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No noisy email spam" msgstr "Jokio el. pašto šlamšto" #. type: Bullet: '- ' #: content/_index.md content/donate/index.md +#, markdown-text msgid "No push notifications" msgstr "Jokių rodomų pranešimų" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No crapware" msgstr "Jokių nepageidaujamų funkcijų" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "~~No pesticides~~ Purely organic!" msgstr "~~Jokių pesticidų~~ Visiškai ekologiška!" #. type: Plain text #: content/_index.md +#, markdown-text msgid "The application is verified by [Exodus Privacy Project][exodus]:" msgstr "Programėlė yra patikrinta [Exodus Privacy Project][exodus]:" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ exodus_screenshot() }}" msgstr "{{ exodus_screenshot() }}" #. type: Plain text #: content/_index.md +#, markdown-text msgid "The iOS application is verified by [TrackerControl for iOS][trackercontrol]:" msgstr "iOS programėlė yra patikrinta [TrackerControl for iOS][trackercontrol]:" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ trackercontrol_screenshot() }}" msgstr "{{ trackercontrol_screenshot() }}" #. type: Plain text #: content/_index.md +#, markdown-text msgid "Organic Maps doesn't request excessive permissions to spy on you:" msgstr "Organic Maps neprašo perdėtų leidimų, kurie leistų jus šnipinėti:" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ privacy_screenshots() }}" msgstr "{{ privacy_screenshots() }}" #. type: Plain text #: content/_index.md +#, markdown-text msgid "At Organic Maps, we believe that privacy is a fundamental human right:" msgstr "Mes, iš Organic Maps, tikime, kad privatumas yra pamatinė žmogaus teisė:" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Organic Maps is an indie community-driven open-source project" msgstr "Organic Maps yra nekomercinis bendruomenės prižiūrimas atvirojo kodo projektas" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "We protect your privacy from Big Tech's prying eyes" msgstr "Mes saugome jūsų privatumą nuo didžiųjų įmonių sekimo" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Stay safe no matter wherever you are" msgstr "Likite saugūs nesvarbu, kur esate" #. type: Plain text #: content/_index.md content/privacy/index.md +#, markdown-text msgid "Reject surveillance - embrace your freedom." msgstr "Atmeskite sekimą – rinkitės laisvę." #. type: Plain text #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap msgid "**[Give Organic Maps a try!](#install)**\n" msgstr "**[Išbandykite Organic Maps!](#install)**\n" #. type: Title ## #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Who is paying for the free app?" msgstr "Kas moka už nemokamą programėlę?" #. type: Plain text #: content/_index.md +#, markdown-text msgid "The app is free for everyone. Please [donate](@/donate/index.md) to support us!" msgstr "Programėlė yra nemokama visiems. Prašome [paaukoti](@/donate/index.md), kad paremtumėt mus!" #. type: Plain text #: content/_index.md +#, markdown-text msgid "To donate conveniently, click on your preferred payment method icon below:" msgstr "Paaukokite iškart, spauskite ant norimo mokėjimo metodo ženklelio apačioje:" #. type: Plain text #: content/_index.md content/donate/index.md +#, markdown-text msgid "{{ donate_buttons() }}" msgstr "{{ donate_buttons() }}" #. type: Title ### #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Our sponsors:" msgstr "Mūsų rėmėjai:" #. type: Plain text #: content/_index.md +#, markdown-text msgid "[Mythic Beasts](https://www.mythic-beasts.com/) ISP [provides us][mythic_beasts_donation] two virtual servers with 400 TB/month of free bandwidth to help our users with maps downloads and updates." msgstr "[Mythic Beasts](https://www.mythic-beasts.com/) ISP [mums teikia][mythic_beasts_donation] du virtualius serverius su 400 TB per mėnesį nemokamo duomenų persiuntimo, kad padėtų mūsų naudotojams gauti žemėlapių duomenis ir atnaujinimus." #. type: Title ## #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Community" msgstr "Bendruomenė" #. type: Plain text #: content/_index.md +#, markdown-text msgid "Organic Maps is an [open-source software][github] licensed under the Apache License 2.0." msgstr "Organic Maps yra [atvirojo kodo programinė įranga][github] platinama su Apache License 2.0 licenzija." #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Please join our beta program, suggest your features, and report bugs:" msgstr "Kviečiame prisijungti prie beta testuotojų programos, siūlyti savo funkcijas ir pranešti riktus:" #. type: Bullet: ' * ' #: content/_index.md +#, markdown-text msgid "[iOS Beta (TestFlight)][testflight]" msgstr "[iOS Beta (TestFlight)][testflight]" #. type: Bullet: ' * ' #: content/_index.md +#, markdown-text msgid "[Android Beta (Firebase)][firebase]" msgstr "[Android Beta (Firebase)][firebase]" #. type: Bullet: ' * ' #: content/_index.md +#, markdown-text msgid "[Linux Desktop Beta (Flatpak)][flatpak]" msgstr "[Linux darbalaukio Beta (Flatpak)][flatpak]" #. type: Bullet: ' * ' #: content/_index.md +#, markdown-text msgid "[Linux Desktop Beta (packages)][repology]" msgstr "[Linux darbalaukio Beta (paketai)][repology]" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Report bugs or issues to [the issue tracker][issues] or [email us][email]." msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "[Discuss][ideas] ideas or propose feature requests." msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Subscribe to our [Telegram Channel][telegram] or to the [matrix space][matrix] for updates." msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Join our [Telegram Group][telegram_chat] to discuss with other users." msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Visit our [GitHub page][github]." msgstr "" #. type: Bullet: '- ' #: content/_index.md -msgid "Follow our updates in [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." -msgstr "" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Join (or create and let us know) local communities: [Hungarian translators Matrix room](https://matrix.to/#/#organicmapstranslate_hu:matrix.org)" -msgstr "" - -#. type: Link reference -#: content/_index.md -#, no-wrap -msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)" +#, markdown-text +msgid "Follow our updates in [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." msgstr "" #. type: Plain text -#: content/_index.md content/donate/index.md content/support-us/index.md +#: content/_index.md +#, markdown-text, no-wrap +msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)\n" +msgstr "" + +#. type: Plain text +#: content/_index.md content/support-us/index.md +#, markdown-text msgid "{{ references() }}" msgstr "" @@ -405,180 +452,204 @@ msgstr "" #. type: Plain text #: content/donate/index.md -msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]** in **[EUR][stripe_eur], [USD][stripe_usd], [GBP][stripe_GBP], [CHF][stripe_chf], [UAH][stripe_uah], [PLN][stripe_pln]**:" +#, markdown-text +msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]**:" msgstr "" #. type: Bullet: '- ' #: content/donate/index.md +#, markdown-text msgid "No trackers" -msgstr "Jokių takelių" +msgstr "" #. type: Bullet: '- ' #: content/donate/index.md +#, markdown-text msgid "No registration" msgstr "" #. type: Bullet: '- ' #: content/donate/index.md +#, markdown-text msgid "Open source" msgstr "" #. type: Plain text #: content/donate/index.md +#, markdown-text msgid "Click on your preferred payment method icon below:" msgstr "" #. type: Title ## #: content/donate/index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Why donate to Organic Maps?" msgstr "" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "Our goal is to provide a privacy-focused, fast and easy-to-use alternative to Google Maps and Apple Maps." +#, markdown-text +msgid "We rely on your donations to carry out our mission to keep Organic Maps open and free. And free from ads." msgstr "" #. type: Bullet: '2. ' #: content/donate/index.md -msgid "Improving public map data for the numerous websites, apps and platforms which use OpenStreetMap, and involving more people in contributing map info is our another goal." +#, markdown-text +msgid "We are a few enthusiasts contributing in our free time, and spending our families' money on the project. We love what we do, and we love our users ❤️." msgstr "" #. type: Bullet: '3. ' #: content/donate/index.md -msgid "We rely on your donations to keep Organic Maps open and free for everyone. And free from ads." -msgstr "" - -#. type: Bullet: '4. ' -#: content/donate/index.md -msgid "We love what we do, and we love our users ❤️." +#, markdown-text +msgid "With your support, we want to become a better, privacy-focused version of Google Maps." msgstr "" #. type: Title ## #: content/donate/index.md -#, no-wrap -msgid "Why a free project needs money?" +#, markdown-text, no-wrap +msgid "What will the money be used for?" msgstr "" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "In 2023, Organic Maps got its first million users. Our servers provide free, fast and frequent map updates all over the world." +#, markdown-text +msgid "We pay for fast servers, so anyone in the World can download free map data updates without delays. It's hundreds of terabytes monthly, and the amount is growing." msgstr "" #. type: Bullet: '2. ' #: content/donate/index.md -msgid "User support, bugfixing and publishing quality app updates are at the top of our priorities. There are [~2000 bug reports and feature requests on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." +#, markdown-text +msgid "User support, bugfixing, and improving the stability of the app are at the top of our priorities. There are [1800+ issues on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." msgstr "" #. type: Bullet: '3. ' #: content/donate/index.md -msgid "With enough money, new features can be developed. To name a few:" +#, markdown-text +msgid "With enough money, new features can be developed faster, for example:" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Backup and sync bookmarks and tracks" +#, markdown-text +msgid "Weekly and automated map data updates" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "GPS track recorder with GPX export" +#, markdown-text +msgid "Bookmarks backup and sync" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Satellite imagery" +#, markdown-text +msgid "Android Auto" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Public Transport" -msgstr "Viešasis transportas" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Traffic and accident reporting" +#, markdown-text +msgid "GPS track recorder with GPX support" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Photos and Reviews" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Map styles for different activities" +#, markdown-text +msgid "Better map styles for different activities" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md +#, markdown-text msgid "Hill shading and 3D terrain" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "More advanced OpenStreetMap editor" +#, markdown-text +msgid "Improve the OpenStreetMap editor" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md +#, markdown-text msgid "Better offline address search, routing, and navigation" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md +#, markdown-text +msgid "Public Transport" +msgstr "Viešasis transportas" + +#. type: Bullet: ' - ' +#: content/donate/index.md +#, markdown-text msgid "… and [many other][github issues] features you want and love" msgstr "" #. type: Title ## #: content/donate/index.md -#, no-wrap +#, markdown-text, no-wrap msgid "How to donate?" msgstr "" #. type: Plain text #: content/donate/index.md -msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. One-time donations are appreciated too." +#, markdown-text +msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. But you can also donate one time." msgstr "" #. type: Title ### #: content/donate/index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Bank Transfer" msgstr "Bankinis pavedimas" #. type: Plain text #: content/donate/index.md +#, markdown-text msgid "{{ bank_transfer() }}" msgstr "" #. type: Title ### #: content/donate/index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Crypto" msgstr "Kriptovaliuta" #. type: Plain text #: content/donate/index.md +#, markdown-text msgid "Please consider donating annually to reduce total fees." msgstr "" #. type: Plain text #: content/donate/index.md +#, markdown-text msgid "{{ crypto_table() }}" msgstr "" #. type: Title ## #: content/donate/index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Can you help us in any other way?" msgstr "" #. type: Plain text #: content/donate/index.md +#, markdown-text msgid "Yes! There are many ways to support Organic Maps. Please see [Support Us](@/support-us/index.md) page for more details." msgstr "" +#. type: Plain text +#: content/donate/index.md +#, markdown-text, no-wrap +msgid "" +"[stripe]: https://donate.organicmaps.app/ \"Donate via Stripe\"\n" +"[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" +msgstr "" + #. type: Yaml Front Matter Hash Value: description #: content/news/_index.md #, no-wrap @@ -617,27 +688,31 @@ msgstr "" #. type: Plain text #: content/privacy/index.md +#, markdown-text msgid "Organic Maps respects your privacy and DOES NOT TRACK YOU." msgstr "" #. type: Plain text #: content/privacy/index.md +#, markdown-text msgid "Unlike most other applications, there is no tracking, no ads, no spyware, no data and statistics collection in Organic Maps." msgstr "" #. type: Plain text #: content/privacy/index.md +#, markdown-text msgid "Stay away from Big Tech's prying eyes!" msgstr "" #. type: Plain text #: content/privacy/index.md content/terms/index.md +#, markdown-text msgid "If you have any questions or suggestions, please contact us at [legal@organicmaps.app](mailto:legal@organicmaps.app)." msgstr "" #. type: Plain text #: content/privacy/index.md -#, no-wrap +#, markdown-text, no-wrap msgid "This policy is effective as of 2021-04-24.\n" msgstr "" @@ -661,76 +736,91 @@ msgstr "" #. type: Plain text #: content/support-us/index.md +#, markdown-text msgid "Organic Maps is a free, open-source app. It is free from ads, it does not collect your personal information, and it is developed by a few enthusiasts with the help of the community." msgstr "" #. type: Plain text #: content/support-us/index.md +#, markdown-text msgid "There are different ways to support the development:" msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "[Donate](@/donate/index.md)! Every dollar or euro counts and helps us to pay for servers and scale." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Report bugs and share ideas on our [GitHub][github] or via [email][email]." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Help us to [fix bugs][contributing] and do code reviews if you are a developer. Every fixed small issue makes someone happier." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "[Translate][translations] missing strings in the app's interface." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Translate [App Store][translations_appstore] and [Android][translations_googleplay] descriptions into your language." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "[Translate][translations_website] our web site into your language." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Join the [OpenStreetMap][openstreetmap] community and contribute to the maps data." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Fix red cities found by our [public transport validator][public_transport_validator], for subways and light rails to work in the app." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Support other users on [GitHub][issues], [Telegram][telegram_chat], [Matrix][matrix], [Twitter][twitter], [Facebook][facebook], [Instagram][instagram]." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Tell everyone about Organic Maps. A bigger community is a stronger community." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Rate us in [Google Play][googleplay_review], [Apple Store][appstore_review], [Huawei Appgallery][appgallery_review]." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Any help is welcome!" msgstr "" #. type: Plain text #: content/support-us/index.md +#, markdown-text msgid "Our small team is very grateful for your feedback and support. Organic Maps would not be possible without our users ❤️." msgstr "" @@ -754,60 +844,59 @@ msgstr "" #. type: Plain text #: content/terms/index.md +#, markdown-text msgid "This app is licensed under the Apache License, Version 2.0 (the \"License\"); you may not use this application except in compliance with the License." msgstr "" #. type: Plain text #: content/terms/index.md +#, markdown-text msgid "You may obtain a copy of the License at [http://www.apache.org/licenses/LICENSE-2.0][license]" msgstr "" #. type: Plain text #: content/terms/index.md +#, markdown-text msgid "Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License." msgstr "" #. type: Plain text #: content/terms/index.md +#, markdown-text msgid "Most libraries in the following directories on [GitHub][github] made by other people and organizations and licensed in different ways:" msgstr "" #. type: Bullet: '- ' #: content/terms/index.md +#, markdown-text msgid "3party" msgstr "" #. type: Bullet: '- ' #: content/terms/index.md +#, markdown-text msgid "tools" msgstr "Įrankiai" #. type: Plain text #: content/terms/index.md +#, markdown-text msgid "Please refer to their LICENSE, COPYING or NOTICE files for terms of use." msgstr "" #. type: Plain text #: content/terms/index.md +#, markdown-text msgid "See also [data/copyright.html][copyright] file for a full list of copyright notices for Organic Maps application." msgstr "" -#. type: Link reference +#. type: Plain text #: content/terms/index.md -#, no-wrap -msgid "[github]: https://github.com/organicmaps/organicmaps" -msgstr "" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[license]: http://www.apache.org/licenses/LICENSE-2.0" -msgstr "" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html" +#, markdown-text, no-wrap +msgid "" +"[github]: https://github.com/organicmaps/organicmaps\n" +"[license]: http://www.apache.org/licenses/LICENSE-2.0\n" +"[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html\n" msgstr "" #. type: Hash Value: address @@ -828,18 +917,6 @@ msgstr "" msgid "Contact Us" msgstr "Susisiekite su mumis" -#. type: Hash Value: engines -#: translations.yaml -#, no-wrap -msgid "Supported TTS Engines" -msgstr "" - -#. type: Hash Value: faq-menu-title -#: translations.yaml -#, no-wrap -msgid "F.A.Q." -msgstr "" - #. type: Hash Value: install-appgallery #: translations.yaml #, no-wrap @@ -868,13 +945,7 @@ msgstr "" #: translations.yaml #, no-wrap msgid "English" -msgstr "Lietuvių" - -#. type: Hash Value: language-word -#: translations.yaml -#, no-wrap -msgid "Language" -msgstr "Kalba" +msgstr "anglų" #. type: Hash Value: name #: translations.yaml diff --git a/po/content.ml.po b/po/content.ml.po index c8cb2071..4caed8ed 100644 --- a/po/content.ml.po +++ b/po/content.ml.po @@ -4,11 +4,11 @@ # FIRST AUTHOR , YEAR. # msgid "" -msgstr "Project-Id-Version: Organic Maps Website 1.0\nPO-Revision-Date: 2024-04-02 19:54+0000\nLast-Translator: Weblate Translation Memory \nLanguage-Team: Malayalam \nLanguage: ml\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-Forms: nplurals=2; plural=n != 1;\nX-Generator: Weblate 5.5-dev\n" +msgstr "Project-Id-Version: Organic Maps Website 1.0\nPO-Revision-Date: 2023-03-28 08:34+0000\nLast-Translator: Anonymous \nLanguage-Team: Malayalam \nLanguage: ml\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-Forms: nplurals=2; plural=n != 1;\nX-Generator: Weblate 4.17-dev\n" #. type: Yaml Front Matter Hash Value: description #: content/_index.md -#, no-wrap +#, fuzzy, no-wrap msgid "Fast detailed offline maps for travelers, tourists, drivers, hikers and cyclists created by MapsWithMe (Maps.Me) app founders." msgstr "MapsWithMe (Maps.Me) ആപ്പ് സ്ഥാപകർ സൃഷ്‌ടിച്ച യാത്രക്കാർ, വിനോദസഞ്ചാരികൾ, ഡ്രൈവർമാർ, കാൽനടയാത്രക്കാർ, സൈക്ലിസ്റ്റുകൾ എന്നിവയ്‌ക്കായി അതിവേഗ വിശദമായ ഓഫ്‌ലൈൻ ഭൂപടങ്ങൾ." @@ -26,368 +26,415 @@ msgstr "Organic Maps Offline Hike, Bike, GPS Navigation" #. type: Plain text #: content/_index.md -msgid "" -"**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, drivers and cyclists based on **[OpenStreetMap][openstreetmap]** data created by the community.\n" -"It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" +#, fuzzy, markdown-text, no-wrap +msgid "**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, and cyclists based on top of crowd-sourced **[OpenStreetMap][openstreetmap]** data. It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" msgstr "**ഓർഗാനിക് മാപ്‌സ്** യാത്രക്കാർക്കും വിനോദസഞ്ചാരികൾക്കും കാൽനടയാത്രക്കാർക്കും സൈക്കിൾ യാത്രക്കാർക്കുമുള്ള സൗജന്യ Android & iOS ഓഫ്‌ലൈൻ മാപ്‌സ് ആപ്പാണ്, ആൾക്കൂട്ടത്തിൽ നിന്ന് ലഭിക്കുന്ന **[OpenStreetMap][openstreetmap]** ഡാറ്റയെ അടിസ്ഥാനമാക്കി. ഇത് **Maps.me** ആപ്പിന്റെ (മുമ്പ് [**MapsWithMe**][mapswithme] എന്നറിയപ്പെട്ടിരുന്നു), ** സൃഷ്‌ടിച്ച അതേ ആളുകൾ പരിപാലിക്കുന്ന ഒരു സ്വകാര്യത കേന്ദ്രീകൃതവും ഓപ്പൺ സോഴ്‌സ് [ഫോർക്ക്] ആണ്. 2011-ൽ MapsWithMe**.\n" #. type: Plain text #: content/_index.md -msgid "**Organic Maps** is one of the few applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card, and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" +#, fuzzy, markdown-text, no-wrap +msgid "**Organic Maps** is one of the only applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card (by the way, your operator constantly tracks you), and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" msgstr "**ഓർഗാനിക് മാപ്‌സ്** എന്നത് സജീവമായ ഇന്റർനെറ്റ് കണക്ഷൻ ഇല്ലാതെ 100% സവിശേഷതകളെ പിന്തുണയ്ക്കുന്ന ചുരുക്കം ചില പ്രയോഗങ്ങളിൽ ഒന്നാണ്. ഓർഗാനിക് മാപ്‌സ് ഇൻസ്‌റ്റാൾ ചെയ്യുക, ഭൂപടങ്ങൾ ഡൗൺലോഡ് ചെയ്യുക, നിങ്ങളുടെ സിം കാർഡ് വലിച്ചെറിയുക (വഴി, നിങ്ങളുടെ ഓപ്പറേറ്റർ നിങ്ങളെ നിരന്തരം ട്രാക്ക് ചെയ്യുന്നു), നെറ്റ്‌വർക്കിലേക്ക് അയയ്‌ക്കേണ്ട ഒരു ബൈറ്റ് ഇല്ലാതെ ഒരൊറ്റ ബാറ്ററി ചാർജിൽ ഒരു ആഴ്‌ച നീണ്ട യാത്ര പോകുക.\n" -#. type: Plain text -#: content/_index.md -#, no-wrap -msgid "> In 2023, Organic Maps [got its first million](@/news/2023-12-23/281/index.md) users. [Help us](@/donate/index.md) to scale!\n" -msgstr "" - #. type: Title ### #: content/_index.md -#, no-wrap +#, fuzzy, markdown-text, no-wrap msgid "Download and install Organic Maps from [AppStore][appstore], [Google Play][googleplay], [FDroid][fdroid], [Huawei AppGallery][appgallery] {#install}" -msgstr "[AppStore][appstore], [Google Play][googleplay], [FDroid][fdroid], [Huawei AppGallery][appgallery] എന്നിവയിൽ നിന്ന് ഓർഗാനിക് മാപ്‌സ് ഡൗൺലോഡ് ചെയ്‌ത് ഇൻസ്റ്റാൾ ചെയ്യുക {#install}" +msgstr "[AppStore][appstore], [Google Play][googleplay], [FDroid][fdroid], [Huawei AppGallery][appgallery] {#install} എന്നിവയിൽ നിന്ന് ഓർഗാനിക് മാപ്‌സ് ഡൗൺലോഡ് ചെയ്‌ത് ഇൻസ്റ്റാൾ ചെയ്യുക" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ badges() }}" msgstr "{{ badges() }}" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ screenshot(src='/images/screenshots/hiking.jpg', alt='Hiking') }}" msgstr "{{ screenshot(src='/images/screenshots/hiking.jpg', alt='കാൽനടയാത്ര') }}" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ screenshot(src='/images/screenshots/prague.jpg', alt='Prague') }}" msgstr "{{ screenshot(src='/images/screenshots/hiking.jpg', alt='കാൽനടയാത്ര') }}" #. type: Plain text #: content/_index.md +#, fuzzy, markdown-text msgid "{{ screenshot(src='/images/screenshots/search.jpg', alt='Offline Search') }}" msgstr "{{ screenshot(src='/images/screenshots/search.jpg', alt='Offline Search') }}" #. type: Plain text #: content/_index.md +#, fuzzy, markdown-text msgid "{{ screenshot(src='/images/screenshots/dark.jpg', alt='Navigation in dark mode') }}" msgstr "{{ screenshot(src='/images/screenshots/dark.jpg', alt='Navigation in dark mode') }}" #. type: Title ## #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Features" msgstr "സവിശേഷതകൾ" #. type: Plain text #: content/_index.md +#, markdown-text msgid "Organic Maps is the ultimate companion app for travelers, tourists, hikers, and cyclists:" msgstr "സഞ്ചാരികൾ, വിനോദസഞ്ചാരികൾ, കാൽനടയാത്രക്കാർ, സൈക്കിൾ യാത്രക്കാർ എന്നിവർക്കുള്ള ആത്യന്തിക കൂട്ടാളി പ്രയോഗമാണ് ജെെവ ഭൂപടങ്ങൾ:" #. type: Bullet: '- ' #: content/_index.md +#, fuzzy, markdown-text msgid "Detailed offline maps with places that don't exist on other maps, thanks to [OpenStreetMap][openstreetmap]" msgstr "മറ്റ് ഭൂപടങ്ങളിൽ നിലവിലില്ലാത്ത സ്ഥലങ്ങളുള്ള വിശദമായ ഓഫ്‌ലൈൻ ഭൂപടങ്ങൾ, [OpenStreetMap][openstreetmap] ന് നന്ദി" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Cycling routes, hiking trails, and walking paths" msgstr "സൈക്ലിംഗ് പാതകൾ, കാൽനടയാത്രകൾ, നടപ്പാതകൾ" #. type: Bullet: '- ' #: content/_index.md +#, fuzzy, markdown-text msgid "Contour lines, elevation profiles, peaks, and slopes" msgstr "കോണ്ടൂർ ലൈനുകൾ, എലവേഷൻ പ്രൊഫൈലുകൾ, കൊടുമുടികൾ, ചരിവുകൾ" #. type: Bullet: '- ' #: content/_index.md -msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance and Android Auto" +#, fuzzy, markdown-text +msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance" msgstr "വോയ്‌സ് ഗൈഡൻസുള്ള ടേൺ-ബൈ-ടേൺ നടത്തം, സൈക്ലിംഗ്, കാർ നാവിഗേഷൻ" #. type: Bullet: '- ' #: content/_index.md +#, fuzzy, markdown-text msgid "Fast offline search on the map" msgstr "ഭൂപടത്തിൽ വേഗത്തിലുള്ള ഓഫ്‌ലൈൻ തിരയൽ" #. type: Bullet: '- ' #: content/_index.md -msgid "Export/import bookmarks in KML/KMZ, import GPX" -msgstr "KML, KMZ, GPX ഫോർമാറ്റുകളിലെ ബുക്ക്‌മാർക്കുകളും ട്രാക്കുകളും" +#, fuzzy, markdown-text +msgid "Bookmarks and tracks in KML, KMZ, GPX formats" +msgstr "ബുക്ക്‌മാർക്കുകൾ KML/KMZ ഫോർമാറ്റുകളിൽ കയറ്റുമതിയും ഇറക്കുമതിയും (GPX ആണ് [പ്ലാൻഡ്][gpx_issue])" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Dark Mode to protect your eyes" msgstr "നിങ്ങളുടെ കണ്ണുകളെ സംരക്ഷിക്കാൻ ഇരുണ്ട രീതി" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Countries and regions don't take a lot of space" msgstr "രാജ്യങ്ങളും പ്രദേശങ്ങളും ധാരാളം സ്ഥലം എടുക്കുന്നില്ല" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Free and open-source" msgstr "സ്വതന്ത്രവും കാണാൻ കഴിയുന്നതുമായ ഉറവിടം" #. type: Title ## #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Why Organic?" msgstr "എന്തുകൊണ്ട് ജൈവം?" #. type: Plain text #: content/_index.md +#, fuzzy, markdown-text msgid "Organic Maps is pure and organic, made with love:" msgstr "ജെെവ ഭൂപടങ്ങൾ ശുദ്ധവും ജെെവുമാണ്, സ്‌നേഹത്തോടെ നിർമ്മിച്ചതാണ്:" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Respects your privacy" msgstr "നിങ്ങളുടെ സ്വകാര്യതയെ മാനിക്കുന്നു" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Saves your battery" msgstr "നിങ്ങളുടെ ബാറ്ററി ലാഭിക്കുന്നു" #. type: Bullet: '- ' #: content/_index.md +#, fuzzy, markdown-text msgid "No unexpected mobile data charges" msgstr "അപ്രതീക്ഷിത മൊബൈൽ ഡാറ്റ നിരക്കുകളൊന്നുമില്ല" #. type: Plain text #: content/_index.md +#, fuzzy, markdown-text msgid "Organic Maps app is free from trackers and other bad stuff:" msgstr "ഓർഗാനിക് മാപ്‌സ് ആപ്പ് ട്രാക്കറുകളിൽ നിന്നും മറ്റ് മോശം കാര്യങ്ങളിൽ നിന്നും മുക്തമാണ്:" #. type: Bullet: '- ' #: content/_index.md content/donate/index.md +#, markdown-text msgid "No ads" msgstr "പരസ്യങ്ങളില്ല" #. type: Bullet: '- ' #: content/_index.md +#, fuzzy, markdown-text msgid "No tracking" msgstr "ട്രാക്കിംഗ് ഇല്ല" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No data collection" msgstr "വിവരശേഖരണമില്ല" #. type: Bullet: '- ' #: content/_index.md +#, fuzzy, markdown-text msgid "No phoning home" msgstr "വീട്ടിലേക്ക് ഫോൺ ചെയ്യുന്നില്ല" #. type: Bullet: '- ' #: content/_index.md +#, fuzzy, markdown-text msgid "No annoying registration" msgstr "ശല്യപ്പെടുത്തുന്ന രജിസ്ട്രേഷൻ ഇല്ല" #. type: Bullet: '- ' #: content/_index.md +#, fuzzy, markdown-text msgid "No mandatory tutorials" msgstr "നിർബന്ധിത ട്യൂട്ടോറിയലുകളൊന്നുമില്ല" #. type: Bullet: '- ' #: content/_index.md +#, fuzzy, markdown-text msgid "No noisy email spam" msgstr "ശബ്ദായമാനമായ ഇമെയിൽ സ്പാം ഇല്ല" #. type: Bullet: '- ' #: content/_index.md content/donate/index.md +#, markdown-text msgid "No push notifications" msgstr "Push notifications" #. type: Bullet: '- ' #: content/_index.md +#, fuzzy, markdown-text msgid "No crapware" msgstr "ക്രാപ്പ്വെയർ ഇല്ല" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "~~No pesticides~~ Purely organic!" msgstr "~~കീടനാശിനികൾ ഇല്ല~~ പൂർണ്ണമായും ജൈവ!" #. type: Plain text #: content/_index.md +#, fuzzy, markdown-text msgid "The application is verified by [Exodus Privacy Project][exodus]:" msgstr "ഈ പ്രയോഗം [Exodus Privacy Project][exodus] പരിശോധിച്ചുറപ്പിച്ചതാണ്:" #. type: Plain text #: content/_index.md +#, fuzzy, markdown-text msgid "{{ exodus_screenshot() }}" msgstr "{{ exodus_screenshot() }}" #. type: Plain text #: content/_index.md +#, markdown-text msgid "The iOS application is verified by [TrackerControl for iOS][trackercontrol]:" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ trackercontrol_screenshot() }}" msgstr "" #. type: Plain text #: content/_index.md +#, fuzzy, markdown-text msgid "Organic Maps doesn't request excessive permissions to spy on you:" msgstr "നിങ്ങളെ ചാരപ്പണി ചെയ്യാൻ ഓർഗാനിക് മാപ്‌സ് അമിതമായ അനുമതികൾ അഭ്യർത്ഥിക്കുന്നില്ല:" #. type: Plain text #: content/_index.md +#, fuzzy, markdown-text msgid "{{ privacy_screenshots() }}" msgstr "{{ privacy_screenshots() }}" #. type: Plain text #: content/_index.md +#, markdown-text msgid "At Organic Maps, we believe that privacy is a fundamental human right:" msgstr "ഇവിടെ ജെെവ ഭൂപടങ്ങളിൽ, സ്വകാര്യത മനുഷ്യന്റെ മൗലികാവകാശമാണെന്ന് ഞങ്ങൾ വിശ്വസിക്കുന്നു:" #. type: Bullet: '- ' #: content/_index.md +#, fuzzy, markdown-text msgid "Organic Maps is an indie community-driven open-source project" msgstr "ഇൻഡി സമൂഹം നയിക്കുന്ന ഓപ്പൺ സോഴ്‌സ് പ്രോജക്റ്റാണ് ഓർഗാനിക് മാപ്‌സ്" #. type: Bullet: '- ' #: content/_index.md +#, fuzzy, markdown-text msgid "We protect your privacy from Big Tech's prying eyes" msgstr "ബിഗ് ടെക്കിന്റെ കണ്ണിൽ നിന്ന് ഞങ്ങൾ നിങ്ങളുടെ സ്വകാര്യത സംരക്ഷിക്കുന്നു" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Stay safe no matter wherever you are" msgstr "നിങ്ങൾ എവിടെയായിരുന്നാലും സുരക്ഷിതരായിരിക്കുക" #. type: Plain text #: content/_index.md content/privacy/index.md +#, markdown-text msgid "Reject surveillance - embrace your freedom." msgstr "നിരീക്ഷണം നിരസിക്കുക - നിങ്ങളുടെ സ്വാതന്ത്ര്യം പുണരുക." #. type: Plain text #: content/_index.md -#, no-wrap +#, fuzzy, markdown-text, no-wrap msgid "**[Give Organic Maps a try!](#install)**\n" msgstr "**[ഓർഗാനിക് മാപ്പുകൾ ഒന്ന് ശ്രമിച്ചുനോക്കൂ!](#install)**\n" #. type: Title ## #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Who is paying for the free app?" msgstr "സൗജന്യ പ്രയോഗത്തിന് ആരാണ് പണം നൽകുന്നത്?" #. type: Plain text #: content/_index.md +#, markdown-text msgid "The app is free for everyone. Please [donate](@/donate/index.md) to support us!" msgstr "ഈ പ്രയോഗം എല്ലാവർക്കും സൗജന്യമാണ്. ഞങ്ങളെ പിന്തുണയ്ക്കാൻ ദയവായി [സംഭാവന](@/donate/index.md)!" -#. type: Plain text +#. type: Title ### #: content/_index.md -msgid "To donate conveniently, click on your preferred payment method icon below:" -msgstr "" +#, markdown-text, no-wrap +msgid "There are different ways to donate:" +msgstr "സംഭാവന ചെയ്യാൻ വ്യത്യസ്ത മാർഗങ്ങളുണ്ട്:" #. type: Plain text #: content/_index.md content/donate/index.md +#, fuzzy, markdown-text msgid "{{ donate_buttons() }}" msgstr "{{ donate_buttons() }}" #. type: Title ### #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Our sponsors:" msgstr "ഞങ്ങളുടെ സ്പോൺസർമാർ" #. type: Plain text #: content/_index.md +#, markdown-text msgid "[Mythic Beasts](https://www.mythic-beasts.com/) ISP [provides us][mythic_beasts_donation] two virtual servers with 400 TB/month of free bandwidth to help our users with maps downloads and updates." msgstr "" #. type: Title ## #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Community" msgstr "സമൂഹം" #. type: Plain text #: content/_index.md +#, markdown-text msgid "Organic Maps is an [open-source software][github] licensed under the Apache License 2.0." msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Please join our beta program, suggest your features, and report bugs:" msgstr "" #. type: Bullet: ' * ' #: content/_index.md +#, fuzzy, markdown-text msgid "[iOS Beta (TestFlight)][testflight]" msgstr "[iOS Beta (TestFlight)][testflight]" #. type: Bullet: ' * ' #: content/_index.md +#, fuzzy, markdown-text msgid "[Android Beta (Firebase)][firebase]" msgstr "[Android Beta (Firebase)][firebase]" #. type: Bullet: ' * ' #: content/_index.md +#, fuzzy, markdown-text msgid "[Linux Desktop Beta (Flatpak)][flatpak]" msgstr "[Linux Desktop Beta (Flatpak)][flatpak]" #. type: Bullet: ' * ' #: content/_index.md +#, fuzzy, markdown-text msgid "[Linux Desktop Beta (packages)][repology]" msgstr "[Linux Desktop Beta (packages)][repology]" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Report bugs or issues to [the issue tracker][issues] or [email us][email]." msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "[Discuss][ideas] ideas or propose feature requests." msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Subscribe to our [Telegram Channel][telegram] or to the [matrix space][matrix] for updates." msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, fuzzy, markdown-text msgid "Join our [Telegram Group][telegram_chat] to discuss with other users." msgstr "മറ്റ് ഉപയോക്താക്കളുമായി ചർച്ച ചെയ്യാൻ ഞങ്ങളുടെ [Telegram Group][telegram_chat] ചേരുക." #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Visit our [GitHub page][github]." msgstr "ഞങ്ങളുടെ [GitHub page][github] സന്ദർശിക്കുക." #. type: Bullet: '- ' #: content/_index.md -msgid "Follow our updates in [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." -msgstr "" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Join (or create and let us know) local communities: [Hungarian translators Matrix room](https://matrix.to/#/#organicmapstranslate_hu:matrix.org)" -msgstr "" - -#. type: Link reference -#: content/_index.md -#, no-wrap -msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)" +#, markdown-text +msgid "Follow our updates in [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." msgstr "" #. type: Plain text -#: content/_index.md content/donate/index.md content/support-us/index.md +#: content/_index.md +#, markdown-text, no-wrap +msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)\n" +msgstr "" + +#. type: Plain text +#: content/_index.md content/support-us/index.md +#, fuzzy, markdown-text msgid "{{ references() }}" msgstr "{{ references() }}" #. type: Yaml Front Matter Hash Value: description #: content/donate/index.md -#, no-wrap +#, fuzzy, no-wrap msgid "Your money pays for all project-related expenses and motivates us to improve Organic Maps." msgstr "നിങ്ങളുടെ പണം പദ്ധതിയുമായി ബന്ധപ്പെട്ട എല്ലാ ചെലവുകൾക്കും നൽകുകയും ജെെവ ഭൂപടങ്ങൾ മെച്ചപ്പെടുത്താൻ ഞങ്ങളെ പ്രേരിപ്പിക്കുകയും ചെയ്യുന്നു." @@ -405,180 +452,198 @@ msgstr "" #. type: Plain text #: content/donate/index.md -msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]** in **[EUR][stripe_eur], [USD][stripe_usd], [GBP][stripe_GBP], [CHF][stripe_chf], [UAH][stripe_uah], [PLN][stripe_pln]**:" +#, markdown-text +msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]**:" msgstr "" #. type: Bullet: '- ' #: content/donate/index.md +#, markdown-text msgid "No trackers" msgstr "" #. type: Bullet: '- ' #: content/donate/index.md +#, markdown-text msgid "No registration" -msgstr "നികുതി രജിസ്ട്രേഷൻ" +msgstr "" #. type: Bullet: '- ' #: content/donate/index.md +#, markdown-text msgid "Open source" msgstr "" -#. type: Plain text -#: content/donate/index.md -msgid "Click on your preferred payment method icon below:" -msgstr "" - #. type: Title ## #: content/donate/index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Why donate to Organic Maps?" msgstr "" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "Our goal is to provide a privacy-focused, fast and easy-to-use alternative to Google Maps and Apple Maps." +#, markdown-text +msgid "We rely on your donations to carry out our mission to keep Organic Maps open and free. And free from ads." msgstr "" #. type: Bullet: '2. ' #: content/donate/index.md -msgid "Improving public map data for the numerous websites, apps and platforms which use OpenStreetMap, and involving more people in contributing map info is our another goal." +#, markdown-text +msgid "We are a few enthusiasts contributing in our free time, and spending our families' money on the project. We love what we do, and we love our users ❤️." msgstr "" #. type: Bullet: '3. ' #: content/donate/index.md -msgid "We rely on your donations to keep Organic Maps open and free for everyone. And free from ads." -msgstr "" - -#. type: Bullet: '4. ' -#: content/donate/index.md -msgid "We love what we do, and we love our users ❤️." +#, markdown-text +msgid "With your support, we want to become a better, privacy-focused version of Google Maps." msgstr "" #. type: Title ## #: content/donate/index.md -#, no-wrap -msgid "Why a free project needs money?" -msgstr "" +#, markdown-text, no-wrap +msgid "What will the money be used for?" +msgstr "പണം എന്തിനുവേണ്ടി ഉപയോഗിക്കും?" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "In 2023, Organic Maps got its first million users. Our servers provide free, fast and frequent map updates all over the world." +#, markdown-text +msgid "We pay for fast servers, so anyone in the World can download free map data updates without delays. It's hundreds of terabytes monthly, and the amount is growing." msgstr "" #. type: Bullet: '2. ' #: content/donate/index.md -msgid "User support, bugfixing and publishing quality app updates are at the top of our priorities. There are [~2000 bug reports and feature requests on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." +#, markdown-text +msgid "User support, bugfixing, and improving the stability of the app are at the top of our priorities. There are [1800+ issues on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." msgstr "" #. type: Bullet: '3. ' #: content/donate/index.md -msgid "With enough money, new features can be developed. To name a few:" +#, markdown-text +msgid "With enough money, new features can be developed faster, for example:" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Backup and sync bookmarks and tracks" +#, markdown-text +msgid "Weekly and automated map data updates" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "GPS track recorder with GPX export" +#, markdown-text +msgid "Bookmarks backup and sync" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Satellite imagery" +#, markdown-text +msgid "Android Auto" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Public Transport" -msgstr "പൊതു ഗതാഗതം" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Traffic and accident reporting" +#, markdown-text +msgid "GPS track recorder with GPX support" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Photos and Reviews" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Map styles for different activities" +#, markdown-text +msgid "Better map styles for different activities" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md +#, markdown-text msgid "Hill shading and 3D terrain" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "More advanced OpenStreetMap editor" +#, markdown-text +msgid "Improve the OpenStreetMap editor" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md +#, markdown-text msgid "Better offline address search, routing, and navigation" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md +#, markdown-text +msgid "Public Transport" +msgstr "പൊതു ഗതാഗതം" + +#. type: Bullet: ' - ' +#: content/donate/index.md +#, markdown-text msgid "… and [many other][github issues] features you want and love" msgstr "" #. type: Title ## #: content/donate/index.md -#, no-wrap +#, markdown-text, no-wrap msgid "How to donate?" msgstr "എങ്ങനെ സംഭാവന ചെയ്യാം?" #. type: Plain text #: content/donate/index.md -msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. One-time donations are appreciated too." +#, markdown-text +msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. But you can also donate one time." msgstr "" #. type: Title ### #: content/donate/index.md -#, no-wrap +#, fuzzy, markdown-text, no-wrap msgid "Bank Transfer" msgstr "ബാങ്ക് കൈമാറ്റം" #. type: Plain text #: content/donate/index.md +#, markdown-text msgid "{{ bank_transfer() }}" msgstr "" #. type: Title ### #: content/donate/index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Crypto" msgstr "ക്രിപ്റ്റോ" #. type: Plain text #: content/donate/index.md +#, fuzzy, markdown-text msgid "Please consider donating annually to reduce total fees." msgstr "മൊത്തം ഫീസ് കുറയ്ക്കാൻ വർഷം തോറും സംഭാവന നൽകുന്നത് പരിഗണിക്കുക." #. type: Plain text #: content/donate/index.md +#, markdown-text msgid "{{ crypto_table() }}" msgstr "" #. type: Title ## #: content/donate/index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Can you help us in any other way?" msgstr "മറ്റേതെങ്കിലും വിധത്തിൽ ഞങ്ങളെ സഹായിക്കാമോ?" #. type: Plain text #: content/donate/index.md +#, markdown-text msgid "Yes! There are many ways to support Organic Maps. Please see [Support Us](@/support-us/index.md) page for more details." msgstr "" +#. type: Plain text +#: content/donate/index.md +#, markdown-text, no-wrap +msgid "" +"[stripe]: https://donate.organicmaps.app/ \"Donate via Stripe\"\n" +"[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" +msgstr "" + #. type: Yaml Front Matter Hash Value: description #: content/news/_index.md #, no-wrap @@ -617,27 +682,31 @@ msgstr "ജൈവ ഭൂപടങ്ങൾ: സ്വകാര്യതാ ന #. type: Plain text #: content/privacy/index.md +#, markdown-text msgid "Organic Maps respects your privacy and DOES NOT TRACK YOU." msgstr "" #. type: Plain text #: content/privacy/index.md +#, markdown-text msgid "Unlike most other applications, there is no tracking, no ads, no spyware, no data and statistics collection in Organic Maps." msgstr "" #. type: Plain text #: content/privacy/index.md +#, markdown-text msgid "Stay away from Big Tech's prying eyes!" msgstr "" #. type: Plain text #: content/privacy/index.md content/terms/index.md +#, markdown-text msgid "If you have any questions or suggestions, please contact us at [legal@organicmaps.app](mailto:legal@organicmaps.app)." msgstr "" #. type: Plain text #: content/privacy/index.md -#, no-wrap +#, markdown-text, no-wrap msgid "This policy is effective as of 2021-04-24.\n" msgstr "" @@ -661,76 +730,91 @@ msgstr "ജൈവ ഭൂപടങ്ങളുടെ വികസനത്തെ #. type: Plain text #: content/support-us/index.md +#, fuzzy, markdown-text msgid "Organic Maps is a free, open-source app. It is free from ads, it does not collect your personal information, and it is developed by a few enthusiasts with the help of the community." msgstr "ജെെവ ഭൂപടങ്ങൾ ഒരു സൗജന്യ ഓപ്പൺ സോഴ്‌സ് പ്രയോഗമാണ്. ഇത് പരസ്യങ്ങളിൽ നിന്ന് മുക്തമാണ്, ഇത് നിങ്ങളുടെ വ്യക്തിഗത വിവരങ്ങൾ ശേഖരിക്കുന്നില്ല, മാത്രമല്ല ഇത് സമൂഹത്തിന്റെ സഹായത്തോടെ കുറച്ച് താൽപ്പര്യക്കാർ വികസിപ്പിച്ചെടുത്തതാണ്." #. type: Plain text #: content/support-us/index.md +#, markdown-text msgid "There are different ways to support the development:" msgstr "വികസനത്തെ പിന്തുണയ്ക്കുന്നതിന് വ്യത്യസ്ത മാർഗങ്ങളുണ്ട്:" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "[Donate](@/donate/index.md)! Every dollar or euro counts and helps us to pay for servers and scale." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Report bugs and share ideas on our [GitHub][github] or via [email][email]." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Help us to [fix bugs][contributing] and do code reviews if you are a developer. Every fixed small issue makes someone happier." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "[Translate][translations] missing strings in the app's interface." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Translate [App Store][translations_appstore] and [Android][translations_googleplay] descriptions into your language." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "[Translate][translations_website] our web site into your language." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Join the [OpenStreetMap][openstreetmap] community and contribute to the maps data." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Fix red cities found by our [public transport validator][public_transport_validator], for subways and light rails to work in the app." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Support other users on [GitHub][issues], [Telegram][telegram_chat], [Matrix][matrix], [Twitter][twitter], [Facebook][facebook], [Instagram][instagram]." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Tell everyone about Organic Maps. A bigger community is a stronger community." msgstr "ജെെവ ഭൂപടങ്ങളെക്കുറിച്ച് എല്ലാവരോടും പറയുക. ഒരു വലിയ സമൂഹം ശക്തമായ ഒരു സമൂഹമാണ്." #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Rate us in [Google Play][googleplay_review], [Apple Store][appstore_review], [Huawei Appgallery][appgallery_review]." msgstr "ഞങ്ങളെ വിലയിരുത്തുക [Google Play][googleplay_review], [Apple Store][appstore_review], [Huawei Appgallery][appgallery_review]." #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Any help is welcome!" msgstr "ഏത് സഹായവും സ്വാഗതം ചെയ്യുന്നു!" #. type: Plain text #: content/support-us/index.md +#, markdown-text msgid "Our small team is very grateful for your feedback and support. Organic Maps would not be possible without our users ❤️." msgstr "നിങ്ങളുടെ പ്രതികരണവും പിന്തുണയ്ക്കും ഞങ്ങളുടെ ചെറിയ സംഘം വളരെ നന്ദിയുള്ളവരാണ്. ഞങ്ങളുടെ ഉപയോക്താക്കൾ ഇല്ലാതെ ജൈവ ഭൂപടങ്ങൾ സാധ്യമല്ല ❤️." @@ -754,60 +838,59 @@ msgstr "ജെെവ ഭൂപടങ്ങൾ: നിബന്ധനകള്‍ #. type: Plain text #: content/terms/index.md +#, markdown-text msgid "This app is licensed under the Apache License, Version 2.0 (the \"License\"); you may not use this application except in compliance with the License." msgstr "" #. type: Plain text #: content/terms/index.md +#, markdown-text msgid "You may obtain a copy of the License at [http://www.apache.org/licenses/LICENSE-2.0][license]" msgstr "" #. type: Plain text #: content/terms/index.md +#, markdown-text msgid "Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License." msgstr "" #. type: Plain text #: content/terms/index.md +#, markdown-text msgid "Most libraries in the following directories on [GitHub][github] made by other people and organizations and licensed in different ways:" msgstr "" #. type: Bullet: '- ' #: content/terms/index.md +#, markdown-text msgid "3party" msgstr "" #. type: Bullet: '- ' #: content/terms/index.md +#, markdown-text msgid "tools" msgstr "ഉപകരണങ്ങൾ" #. type: Plain text #: content/terms/index.md +#, markdown-text msgid "Please refer to their LICENSE, COPYING or NOTICE files for terms of use." msgstr "" #. type: Plain text #: content/terms/index.md +#, markdown-text msgid "See also [data/copyright.html][copyright] file for a full list of copyright notices for Organic Maps application." msgstr "" -#. type: Link reference +#. type: Plain text #: content/terms/index.md -#, no-wrap -msgid "[github]: https://github.com/organicmaps/organicmaps" -msgstr "" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[license]: http://www.apache.org/licenses/LICENSE-2.0" -msgstr "" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html" +#, markdown-text, no-wrap +msgid "" +"[github]: https://github.com/organicmaps/organicmaps\n" +"[license]: http://www.apache.org/licenses/LICENSE-2.0\n" +"[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html\n" msgstr "" #. type: Hash Value: address @@ -828,18 +911,6 @@ msgstr "വാർത്തയിലേക്ക് മടങ്ങുക" msgid "Contact Us" msgstr "ഞങ്ങളെ സമീപിക്കുക" -#. type: Hash Value: engines -#: translations.yaml -#, no-wrap -msgid "Supported TTS Engines" -msgstr "" - -#. type: Hash Value: faq-menu-title -#: translations.yaml -#, no-wrap -msgid "F.A.Q." -msgstr "" - #. type: Hash Value: install-appgallery #: translations.yaml #, no-wrap @@ -870,12 +941,6 @@ msgstr "" msgid "English" msgstr "മലയാളം" -#. type: Hash Value: language-word -#: translations.yaml -#, no-wrap -msgid "Language" -msgstr "ഭാഷ" - #. type: Hash Value: name #: translations.yaml #, no-wrap @@ -887,11 +952,3 @@ msgstr "പേര്" #, no-wrap msgid "Token" msgstr "ടോക്കൺ" - -#, no-wrap -#~ msgid "There are different ways to donate:" -#~ msgstr "സംഭാവന ചെയ്യാൻ വ്യത്യസ്ത മാർഗങ്ങളുണ്ട്:" - -#, no-wrap -#~ msgid "What will the money be used for?" -#~ msgstr "പണം എന്തിനുവേണ്ടി ഉപയോഗിക്കും?" diff --git a/po/content.mr.po b/po/content.mr.po index 056b5950..12bdee08 100644 --- a/po/content.mr.po +++ b/po/content.mr.po @@ -4,7 +4,16 @@ # FIRST AUTHOR , YEAR. # msgid "" -msgstr "Project-Id-Version: Organic Maps Website 1.0\nPO-Revision-Date: 2024-04-02 19:54+0000\nLast-Translator: Weblate Translation Memory \nLanguage-Team: Marathi \nLanguage: mr\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-Forms: nplurals=2; plural=n != 1;\nX-Generator: Weblate 5.5-dev\n" +msgstr "" +"Project-Id-Version: Organic Maps Website 1.0\n" +"Last-Translator: संकेत गराडे \n" +"Language-Team: Marathi \n" +"Language: mr\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 4.17-dev\n" #. type: Yaml Front Matter Hash Value: description #: content/_index.md @@ -27,23 +36,15 @@ msgstr "Organic Maps : ऑफलाईन भटकंती, सायकल #. type: Plain text #: content/_index.md #, no-wrap -msgid "" -"**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, drivers and cyclists based on **[OpenStreetMap][openstreetmap]** data created by the community.\n" -"It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" +msgid "**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, and cyclists based on top of crowd-sourced **[OpenStreetMap][openstreetmap]** data. It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" msgstr "**Organic Maps** (ऑर्गनिक मॅप्स) हे एक अँड्रॉईड व iOS वर चालणारे ऑफलाईन नकाशांचे निःशुल्क अॅप आहे जे जनयोगदानातून तयार केलेल्या **[OpenStreetMap(ओपन स्ट्रीट मॅप)][openstreetmap]** च्या डेटा वर आधारीत आहे.\n" #. type: Plain text #: content/_index.md #, no-wrap -msgid "**Organic Maps** is one of the few applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card, and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" +msgid "**Organic Maps** is one of the only applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card (by the way, your operator constantly tracks you), and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" msgstr "**Organic Maps** हे आजकाल विनाइंटरनेटचे सर्व वैशिष्ट्यांसकट चालणाऱ्या मोजक्या अॅप पैकी एक अॅप आहे.\n" -#. type: Plain text -#: content/_index.md -#, no-wrap -msgid "> In 2023, Organic Maps [got its first million](@/news/2023-12-23/281/index.md) users. [Help us](@/donate/index.md) to scale!\n" -msgstr "" - #. type: Title ### #: content/_index.md #, no-wrap @@ -103,8 +104,8 @@ msgstr "समोच्च रेषा, उंची प्रोफाइल, #. type: Bullet: '- ' #: content/_index.md -msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance and Android Auto" -msgstr "व्हॉइस मार्गदर्शन आणि Android Auto सह कार, सायकली आणि चालण्यासाठी टर्न-बाय-टर्न दिशानिर्देश" +msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance" +msgstr "ध्वनी मार्गदर्शनासह कार, सायकल व चालण्याचे वळणावळणाप्रमाणे दिशा निर्देशन" #. type: Bullet: '- ' #: content/_index.md @@ -113,8 +114,8 @@ msgstr "नकाशावर वेगवान ऑफलाईन शोध" #. type: Bullet: '- ' #: content/_index.md -msgid "Export/import bookmarks in KML/KMZ, import GPX" -msgstr "KML, KMZ, GPX फॉरमॅटमध्ये बुकमार्क आणि ट्रॅक" +msgid "Bookmarks and tracks in KML, KMZ, GPX formats" +msgstr "KML/KMZ स्वरूपात बुकमार्क निर्यात व आयात (GPS [नियोजित][gpx_issue])" #. type: Bullet: '- ' #: content/_index.md @@ -224,11 +225,13 @@ msgstr "{{ exodus_screenshot() }}" #. type: Plain text #: content/_index.md +#, markdown-text msgid "The iOS application is verified by [TrackerControl for iOS][trackercontrol]:" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ trackercontrol_screenshot() }}" msgstr "" @@ -368,22 +371,17 @@ msgstr "आमच्या [GitHub पृष्ठावर][github] भेट #. type: Bullet: '- ' #: content/_index.md -msgid "Follow our updates in [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." -msgstr "[FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn] वरुन आमची माहिती मिळवा." - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Join (or create and let us know) local communities: [Hungarian translators Matrix room](https://matrix.to/#/#organicmapstranslate_hu:matrix.org)" -msgstr "" - -#. type: Link reference -#: content/_index.md -#, no-wrap -msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)" -msgstr "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)" +msgid "Follow our updates in [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." +msgstr "[Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn] वरुन आमची माहिती मिळवा." #. type: Plain text -#: content/_index.md content/donate/index.md content/support-us/index.md +#: content/_index.md +#, no-wrap +msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)\n" +msgstr "[फोर्क]: https://en.wikipedia.org/wiki/Fork_(software_development)\n" + +#. type: Plain text +#: content/_index.md content/support-us/index.md msgid "{{ references() }}" msgstr "{{ references() }}" @@ -407,8 +405,8 @@ msgstr "Organic Maps च्या विकासाला पाठिंबा #. type: Plain text #: content/donate/index.md -msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]** in **[EUR][stripe_eur], [USD][stripe_usd], [GBP][stripe_GBP], [CHF][stripe_chf], [UAH][stripe_uah], [PLN][stripe_pln]**:" -msgstr "" +msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]**:" +msgstr "आपल्या **[देणगीमुळे][stripe]** Organic Maps ऍप हे _सगळ्यांसाठी निःशुल्क_ आहे.:" #. type: Bullet: '- ' #: content/donate/index.md @@ -438,78 +436,63 @@ msgstr "Organic Maps ला देणगी का द्यावी?" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "Our goal is to provide a privacy-focused, fast and easy-to-use alternative to Google Maps and Apple Maps." -msgstr "" +msgid "We rely on your donations to carry out our mission to keep Organic Maps open and free. And free from ads." +msgstr "Organic Maps हे मुक्त व निःशुल्क, तसेच जाहिरातहीन ठेवण्याच्या आमचा उद्देशासाठी आम्ही आपल्या देणगीवर अवलंबून आहोत." #. type: Bullet: '2. ' #: content/donate/index.md -msgid "Improving public map data for the numerous websites, apps and platforms which use OpenStreetMap, and involving more people in contributing map info is our another goal." -msgstr "" +msgid "We are a few enthusiasts contributing in our free time, and spending our families' money on the project. We love what we do, and we love our users ❤️." +msgstr "आमच्या रिकाम्या वेळात व आमच्या खिशातले पैसे खर्च करुन हा प्रकल्प चालवणारे आम्ही काही हौशी लोक आहोत. आम्हाला आमच्या कामावर, तसेच आमच्या वापरकर्त्यांवर प्रेम आहे ❤️." #. type: Bullet: '3. ' #: content/donate/index.md -msgid "We rely on your donations to keep Organic Maps open and free for everyone. And free from ads." -msgstr "Organic Maps हे मुक्त व निःशुल्क, तसेच जाहिरातहीन ठेवण्याच्या आमचा उद्देशासाठी आम्ही आपल्या देणगीवर अवलंबून आहोत." - -#. type: Bullet: '4. ' -#: content/donate/index.md -msgid "We love what we do, and we love our users ❤️." -msgstr "" +msgid "With your support, we want to become a better, privacy-focused version of Google Maps." +msgstr "तुमच्या पाठिंब्याने, आम्ही Google Maps ची एक जास्त चांगली व गोपनीयता केंद्रित आवृत्ती होऊ इच्छितो." #. type: Title ## #: content/donate/index.md #, no-wrap -msgid "Why a free project needs money?" -msgstr "" +msgid "What will the money be used for?" +msgstr "देणगीचा तुम्ही काय वापर करणार?" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "In 2023, Organic Maps got its first million users. Our servers provide free, fast and frequent map updates all over the world." +msgid "We pay for fast servers, so anyone in the World can download free map data updates without delays. It's hundreds of terabytes monthly, and the amount is growing." msgstr "" #. type: Bullet: '2. ' #: content/donate/index.md -msgid "User support, bugfixing and publishing quality app updates are at the top of our priorities. There are [~2000 bug reports and feature requests on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." +msgid "User support, bugfixing, and improving the stability of the app are at the top of our priorities. There are [1800+ issues on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." msgstr "" #. type: Bullet: '3. ' #: content/donate/index.md -msgid "With enough money, new features can be developed. To name a few:" +msgid "With enough money, new features can be developed faster, for example:" msgstr "पुरेश्या पैश्यांनी नवीन वैशिष्ट्ये लवकर विकसित केली जाऊ शकतात, जसे की:" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Backup and sync bookmarks and tracks" +msgid "Weekly and automated map data updates" +msgstr "साप्ताहिक व स्वयंचलित नकाशा डेटा अद्यतने" + +#. type: Bullet: ' - ' +#: content/donate/index.md +msgid "Bookmarks backup and sync" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "GPS track recorder with GPX export" +msgid "Android Auto" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Satellite imagery" +msgid "GPS track recorder with GPX support" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Public Transport" -msgstr "सार्वजनिक परिवहन" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Traffic and accident reporting" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Photos and Reviews" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Map styles for different activities" +msgid "Better map styles for different activities" msgstr "" #. type: Bullet: ' - ' @@ -519,7 +502,7 @@ msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "More advanced OpenStreetMap editor" +msgid "Improve the OpenStreetMap editor" msgstr "" #. type: Bullet: ' - ' @@ -527,6 +510,11 @@ msgstr "" msgid "Better offline address search, routing, and navigation" msgstr "" +#. type: Bullet: ' - ' +#: content/donate/index.md +msgid "Public Transport" +msgstr "सार्वजनिक परिवहन" + #. type: Bullet: ' - ' #: content/donate/index.md msgid "… and [many other][github issues] features you want and love" @@ -540,7 +528,7 @@ msgstr "" #. type: Plain text #: content/donate/index.md -msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. One-time donations are appreciated too." +msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. But you can also donate one time." msgstr "" #. type: Title ### @@ -581,6 +569,14 @@ msgstr "" msgid "Yes! There are many ways to support Organic Maps. Please see [Support Us](@/support-us/index.md) page for more details." msgstr "" +#. type: Plain text +#: content/donate/index.md +#, no-wrap +msgid "" +"[stripe]: https://donate.organicmaps.app/ \"Donate via Stripe\"\n" +"[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" +msgstr "" + #. type: Yaml Front Matter Hash Value: description #: content/news/_index.md #, no-wrap @@ -794,23 +790,17 @@ msgstr "वापरण्याच्या अटींसाठी LICENSE, C msgid "See also [data/copyright.html][copyright] file for a full list of copyright notices for Organic Maps application." msgstr "" -#. type: Link reference +#. type: Plain text #: content/terms/index.md #, no-wrap -msgid "[github]: https://github.com/organicmaps/organicmaps" -msgstr "" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[license]: http://www.apache.org/licenses/LICENSE-2.0" -msgstr "[license]: http://www.apache.org/licenses/LICENSE-2.0" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html" +msgid "" +"[github]: https://github.com/organicmaps/organicmaps\n" +"[license]: http://www.apache.org/licenses/LICENSE-2.0\n" +"[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html\n" msgstr "" +"[github]: https://github.com/organicmaps/organicmaps\n" +"[license]: http://www.apache.org/licenses/LICENSE-2.0\n" +"[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html\n" #. type: Hash Value: address #: translations.yaml @@ -830,18 +820,6 @@ msgstr "बातम्यांवर परता" msgid "Contact Us" msgstr "आमच्याशी संपर्क साधा" -#. type: Hash Value: engines -#: translations.yaml -#, no-wrap -msgid "Supported TTS Engines" -msgstr "" - -#. type: Hash Value: faq-menu-title -#: translations.yaml -#, no-wrap -msgid "F.A.Q." -msgstr "" - #. type: Hash Value: install-appgallery #: translations.yaml #, no-wrap @@ -872,12 +850,6 @@ msgstr "गूगल प्ले द्वारे Organic Maps स्था msgid "English" msgstr "मराठी" -#. type: Hash Value: language-word -#: translations.yaml -#, no-wrap -msgid "Language" -msgstr "भाषा" - #. type: Hash Value: name #: translations.yaml #, no-wrap @@ -890,22 +862,6 @@ msgstr "नाव" msgid "Token" msgstr "" -#~ msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]**:" -#~ msgstr "आपल्या **[देणगीमुळे][stripe]** Organic Maps ऍप हे _सगळ्यांसाठी निःशुल्क_ आहे.:" - -#~ msgid "We are a few enthusiasts contributing in our free time, and spending our families' money on the project. We love what we do, and we love our users ❤️." -#~ msgstr "आमच्या रिकाम्या वेळात व आमच्या खिशातले पैसे खर्च करुन हा प्रकल्प चालवणारे आम्ही काही हौशी लोक आहोत. आम्हाला आमच्या कामावर, तसेच आमच्या वापरकर्त्यांवर प्रेम आहे ❤️." - -#~ msgid "With your support, we want to become a better, privacy-focused version of Google Maps." -#~ msgstr "तुमच्या पाठिंब्याने, आम्ही Google Maps ची एक जास्त चांगली व गोपनीयता केंद्रित आवृत्ती होऊ इच्छितो." - -#, no-wrap -#~ msgid "What will the money be used for?" -#~ msgstr "देणगीचा तुम्ही काय वापर करणार?" - -#~ msgid "Weekly and automated map data updates" -#~ msgstr "साप्ताहिक व स्वयंचलित नकाशा डेटा अद्यतने" - #, no-wrap #~ msgid "There are different ways to donate:" #~ msgstr "दान करण्याचे विविध मार्ग आहे:" diff --git a/po/content.nb-rNO.po b/po/content.nb-rNO.po index fcc3a361..a4f2cbaf 100644 --- a/po/content.nb-rNO.po +++ b/po/content.nb-rNO.po @@ -4,7 +4,7 @@ # FIRST AUTHOR , YEAR. # msgid "" -msgstr "Project-Id-Version: Organic Maps Website 1.0\nPO-Revision-Date: 2024-04-02 19:54+0000\nLast-Translator: Weblate Translation Memory \nLanguage-Team: Norwegian Bokmål \nLanguage: nb-rNO\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-Forms: nplurals=2; plural=n != 1;\nX-Generator: Weblate 5.5-dev\n" +msgstr "Project-Id-Version: Organic Maps Website 1.0\nPO-Revision-Date: 2023-08-21 09:52+0000\nLast-Translator: Anonymous \nLanguage-Team: Norwegian Bokmål \nLanguage: nb-rNO\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-Forms: nplurals=2; plural=n != 1;\nX-Generator: Weblate 5.0-dev\n" #. type: Yaml Front Matter Hash Value: description #: content/_index.md @@ -26,364 +26,409 @@ msgstr "Organic Maps Offline Hike, Bike, GPS Navigation" #. type: Plain text #: content/_index.md -#, no-wrap -msgid "" -"**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, drivers and cyclists based on **[OpenStreetMap][openstreetmap]** data created by the community.\n" -"It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" +#, markdown-text, no-wrap +msgid "**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, and cyclists based on top of crowd-sourced **[OpenStreetMap][openstreetmap]** data. It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" msgstr "" #. type: Plain text #: content/_index.md -#, no-wrap -msgid "**Organic Maps** is one of the few applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card, and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" -msgstr "" - -#. type: Plain text -#: content/_index.md -#, no-wrap -msgid "> In 2023, Organic Maps [got its first million](@/news/2023-12-23/281/index.md) users. [Help us](@/donate/index.md) to scale!\n" +#, markdown-text, no-wrap +msgid "**Organic Maps** is one of the only applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card (by the way, your operator constantly tracks you), and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" msgstr "" #. type: Title ### #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Download and install Organic Maps from [AppStore][appstore], [Google Play][googleplay], [FDroid][fdroid], [Huawei AppGallery][appgallery] {#install}" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ badges() }}" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ screenshot(src='/images/screenshots/hiking.jpg', alt='Hiking') }}" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ screenshot(src='/images/screenshots/prague.jpg', alt='Prague') }}" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ screenshot(src='/images/screenshots/search.jpg', alt='Offline Search') }}" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ screenshot(src='/images/screenshots/dark.jpg', alt='Navigation in dark mode') }}" msgstr "" #. type: Title ## #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Features" msgstr "Funksjoner" #. type: Plain text #: content/_index.md +#, markdown-text msgid "Organic Maps is the ultimate companion app for travelers, tourists, hikers, and cyclists:" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Detailed offline maps with places that don't exist on other maps, thanks to [OpenStreetMap][openstreetmap]" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Cycling routes, hiking trails, and walking paths" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Contour lines, elevation profiles, peaks, and slopes" msgstr "" #. type: Bullet: '- ' #: content/_index.md -msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance and Android Auto" +#, markdown-text +msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Fast offline search on the map" msgstr "" #. type: Bullet: '- ' #: content/_index.md -msgid "Export/import bookmarks in KML/KMZ, import GPX" +#, markdown-text +msgid "Bookmarks and tracks in KML, KMZ, GPX formats" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Dark Mode to protect your eyes" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Countries and regions don't take a lot of space" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Free and open-source" msgstr "Fri programvare" #. type: Title ## #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Why Organic?" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "Organic Maps is pure and organic, made with love:" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Respects your privacy" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Saves your battery" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No unexpected mobile data charges" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "Organic Maps app is free from trackers and other bad stuff:" msgstr "" #. type: Bullet: '- ' #: content/_index.md content/donate/index.md +#, markdown-text msgid "No ads" msgstr "Ingen reklamer" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No tracking" msgstr "Ingen sporing" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No data collection" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No phoning home" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No annoying registration" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No mandatory tutorials" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No noisy email spam" msgstr "" #. type: Bullet: '- ' #: content/_index.md content/donate/index.md +#, markdown-text msgid "No push notifications" msgstr "Push-varsler" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No crapware" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "~~No pesticides~~ Purely organic!" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "The application is verified by [Exodus Privacy Project][exodus]:" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ exodus_screenshot() }}" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "The iOS application is verified by [TrackerControl for iOS][trackercontrol]:" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ trackercontrol_screenshot() }}" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "Organic Maps doesn't request excessive permissions to spy on you:" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ privacy_screenshots() }}" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "At Organic Maps, we believe that privacy is a fundamental human right:" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Organic Maps is an indie community-driven open-source project" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "We protect your privacy from Big Tech's prying eyes" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Stay safe no matter wherever you are" msgstr "" #. type: Plain text #: content/_index.md content/privacy/index.md +#, markdown-text msgid "Reject surveillance - embrace your freedom." msgstr "" #. type: Plain text #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap msgid "**[Give Organic Maps a try!](#install)**\n" msgstr "" #. type: Title ## #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Who is paying for the free app?" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "The app is free for everyone. Please [donate](@/donate/index.md) to support us!" msgstr "" -#. type: Plain text +#. type: Title ### #: content/_index.md -msgid "To donate conveniently, click on your preferred payment method icon below:" +#, markdown-text, no-wrap +msgid "There are different ways to donate:" msgstr "" #. type: Plain text #: content/_index.md content/donate/index.md +#, markdown-text msgid "{{ donate_buttons() }}" msgstr "" #. type: Title ### #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Our sponsors:" msgstr "Våre sponsorer" #. type: Plain text #: content/_index.md +#, markdown-text msgid "[Mythic Beasts](https://www.mythic-beasts.com/) ISP [provides us][mythic_beasts_donation] two virtual servers with 400 TB/month of free bandwidth to help our users with maps downloads and updates." msgstr "" #. type: Title ## #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Community" msgstr "Samfunn" #. type: Plain text #: content/_index.md +#, markdown-text msgid "Organic Maps is an [open-source software][github] licensed under the Apache License 2.0." msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Please join our beta program, suggest your features, and report bugs:" msgstr "" #. type: Bullet: ' * ' #: content/_index.md +#, markdown-text msgid "[iOS Beta (TestFlight)][testflight]" msgstr "" #. type: Bullet: ' * ' #: content/_index.md +#, markdown-text msgid "[Android Beta (Firebase)][firebase]" msgstr "" #. type: Bullet: ' * ' #: content/_index.md +#, markdown-text msgid "[Linux Desktop Beta (Flatpak)][flatpak]" msgstr "" #. type: Bullet: ' * ' #: content/_index.md +#, markdown-text msgid "[Linux Desktop Beta (packages)][repology]" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Report bugs or issues to [the issue tracker][issues] or [email us][email]." msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "[Discuss][ideas] ideas or propose feature requests." msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Subscribe to our [Telegram Channel][telegram] or to the [matrix space][matrix] for updates." msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Join our [Telegram Group][telegram_chat] to discuss with other users." msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Visit our [GitHub page][github]." msgstr "" #. type: Bullet: '- ' #: content/_index.md -msgid "Follow our updates in [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." -msgstr "" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Join (or create and let us know) local communities: [Hungarian translators Matrix room](https://matrix.to/#/#organicmapstranslate_hu:matrix.org)" -msgstr "" - -#. type: Link reference -#: content/_index.md -#, no-wrap -msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)" +#, markdown-text +msgid "Follow our updates in [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." msgstr "" #. type: Plain text -#: content/_index.md content/donate/index.md content/support-us/index.md +#: content/_index.md +#, markdown-text, no-wrap +msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)\n" +msgstr "" + +#. type: Plain text +#: content/_index.md content/support-us/index.md +#, markdown-text msgid "{{ references() }}" msgstr "" @@ -407,180 +452,198 @@ msgstr "" #. type: Plain text #: content/donate/index.md -msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]** in **[EUR][stripe_eur], [USD][stripe_usd], [GBP][stripe_GBP], [CHF][stripe_chf], [UAH][stripe_uah], [PLN][stripe_pln]**:" +#, markdown-text +msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]**:" msgstr "" #. type: Bullet: '- ' #: content/donate/index.md +#, markdown-text msgid "No trackers" -msgstr "Ingen spor" - -#. type: Bullet: '- ' -#: content/donate/index.md -msgid "No registration" -msgstr "Skatteregistrering" - -#. type: Bullet: '- ' -#: content/donate/index.md -msgid "Open source" msgstr "" -#. type: Plain text +#. type: Bullet: '- ' #: content/donate/index.md -msgid "Click on your preferred payment method icon below:" +#, markdown-text +msgid "No registration" +msgstr "" + +#. type: Bullet: '- ' +#: content/donate/index.md +#, markdown-text +msgid "Open source" msgstr "" #. type: Title ## #: content/donate/index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Why donate to Organic Maps?" msgstr "" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "Our goal is to provide a privacy-focused, fast and easy-to-use alternative to Google Maps and Apple Maps." +#, markdown-text +msgid "We rely on your donations to carry out our mission to keep Organic Maps open and free. And free from ads." msgstr "" #. type: Bullet: '2. ' #: content/donate/index.md -msgid "Improving public map data for the numerous websites, apps and platforms which use OpenStreetMap, and involving more people in contributing map info is our another goal." +#, markdown-text +msgid "We are a few enthusiasts contributing in our free time, and spending our families' money on the project. We love what we do, and we love our users ❤️." msgstr "" #. type: Bullet: '3. ' #: content/donate/index.md -msgid "We rely on your donations to keep Organic Maps open and free for everyone. And free from ads." -msgstr "" - -#. type: Bullet: '4. ' -#: content/donate/index.md -msgid "We love what we do, and we love our users ❤️." +#, markdown-text +msgid "With your support, we want to become a better, privacy-focused version of Google Maps." msgstr "" #. type: Title ## #: content/donate/index.md -#, no-wrap -msgid "Why a free project needs money?" +#, markdown-text, no-wrap +msgid "What will the money be used for?" msgstr "" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "In 2023, Organic Maps got its first million users. Our servers provide free, fast and frequent map updates all over the world." +#, markdown-text +msgid "We pay for fast servers, so anyone in the World can download free map data updates without delays. It's hundreds of terabytes monthly, and the amount is growing." msgstr "" #. type: Bullet: '2. ' #: content/donate/index.md -msgid "User support, bugfixing and publishing quality app updates are at the top of our priorities. There are [~2000 bug reports and feature requests on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." +#, markdown-text +msgid "User support, bugfixing, and improving the stability of the app are at the top of our priorities. There are [1800+ issues on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." msgstr "" #. type: Bullet: '3. ' #: content/donate/index.md -msgid "With enough money, new features can be developed. To name a few:" +#, markdown-text +msgid "With enough money, new features can be developed faster, for example:" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Backup and sync bookmarks and tracks" +#, markdown-text +msgid "Weekly and automated map data updates" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "GPS track recorder with GPX export" +#, markdown-text +msgid "Bookmarks backup and sync" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Satellite imagery" +#, markdown-text +msgid "Android Auto" +msgstr "Android Auto" + +#. type: Bullet: ' - ' +#: content/donate/index.md +#, markdown-text +msgid "GPS track recorder with GPX support" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Public Transport" -msgstr "Public Transport" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Traffic and accident reporting" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Photos and Reviews" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Map styles for different activities" +#, markdown-text +msgid "Better map styles for different activities" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md +#, markdown-text msgid "Hill shading and 3D terrain" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "More advanced OpenStreetMap editor" +#, markdown-text +msgid "Improve the OpenStreetMap editor" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md +#, markdown-text msgid "Better offline address search, routing, and navigation" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md +#, markdown-text +msgid "Public Transport" +msgstr "Public Transport" + +#. type: Bullet: ' - ' +#: content/donate/index.md +#, markdown-text msgid "… and [many other][github issues] features you want and love" msgstr "" #. type: Title ## #: content/donate/index.md -#, no-wrap +#, markdown-text, no-wrap msgid "How to donate?" msgstr "" #. type: Plain text #: content/donate/index.md -msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. One-time donations are appreciated too." +#, markdown-text +msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. But you can also donate one time." msgstr "" #. type: Title ### #: content/donate/index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Bank Transfer" msgstr "Bankoverføring" #. type: Plain text #: content/donate/index.md +#, markdown-text msgid "{{ bank_transfer() }}" msgstr "" #. type: Title ### #: content/donate/index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Crypto" msgstr "Krypto" #. type: Plain text #: content/donate/index.md +#, markdown-text msgid "Please consider donating annually to reduce total fees." msgstr "" #. type: Plain text #: content/donate/index.md +#, markdown-text msgid "{{ crypto_table() }}" msgstr "" #. type: Title ## #: content/donate/index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Can you help us in any other way?" msgstr "" #. type: Plain text #: content/donate/index.md +#, markdown-text msgid "Yes! There are many ways to support Organic Maps. Please see [Support Us](@/support-us/index.md) page for more details." msgstr "" +#. type: Plain text +#: content/donate/index.md +#, markdown-text, no-wrap +msgid "" +"[stripe]: https://donate.organicmaps.app/ \"Donate via Stripe\"\n" +"[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" +msgstr "" + #. type: Yaml Front Matter Hash Value: description #: content/news/_index.md #, no-wrap @@ -619,27 +682,31 @@ msgstr "" #. type: Plain text #: content/privacy/index.md +#, markdown-text msgid "Organic Maps respects your privacy and DOES NOT TRACK YOU." msgstr "" #. type: Plain text #: content/privacy/index.md +#, markdown-text msgid "Unlike most other applications, there is no tracking, no ads, no spyware, no data and statistics collection in Organic Maps." msgstr "" #. type: Plain text #: content/privacy/index.md +#, markdown-text msgid "Stay away from Big Tech's prying eyes!" msgstr "" #. type: Plain text #: content/privacy/index.md content/terms/index.md +#, markdown-text msgid "If you have any questions or suggestions, please contact us at [legal@organicmaps.app](mailto:legal@organicmaps.app)." msgstr "" #. type: Plain text #: content/privacy/index.md -#, no-wrap +#, markdown-text, no-wrap msgid "This policy is effective as of 2021-04-24.\n" msgstr "" @@ -663,76 +730,91 @@ msgstr "" #. type: Plain text #: content/support-us/index.md +#, markdown-text msgid "Organic Maps is a free, open-source app. It is free from ads, it does not collect your personal information, and it is developed by a few enthusiasts with the help of the community." msgstr "" #. type: Plain text #: content/support-us/index.md +#, markdown-text msgid "There are different ways to support the development:" msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "[Donate](@/donate/index.md)! Every dollar or euro counts and helps us to pay for servers and scale." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Report bugs and share ideas on our [GitHub][github] or via [email][email]." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Help us to [fix bugs][contributing] and do code reviews if you are a developer. Every fixed small issue makes someone happier." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "[Translate][translations] missing strings in the app's interface." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Translate [App Store][translations_appstore] and [Android][translations_googleplay] descriptions into your language." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "[Translate][translations_website] our web site into your language." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Join the [OpenStreetMap][openstreetmap] community and contribute to the maps data." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Fix red cities found by our [public transport validator][public_transport_validator], for subways and light rails to work in the app." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Support other users on [GitHub][issues], [Telegram][telegram_chat], [Matrix][matrix], [Twitter][twitter], [Facebook][facebook], [Instagram][instagram]." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Tell everyone about Organic Maps. A bigger community is a stronger community." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Rate us in [Google Play][googleplay_review], [Apple Store][appstore_review], [Huawei Appgallery][appgallery_review]." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Any help is welcome!" msgstr "" #. type: Plain text #: content/support-us/index.md +#, markdown-text msgid "Our small team is very grateful for your feedback and support. Organic Maps would not be possible without our users ❤️." msgstr "" @@ -756,60 +838,59 @@ msgstr "" #. type: Plain text #: content/terms/index.md +#, markdown-text msgid "This app is licensed under the Apache License, Version 2.0 (the \"License\"); you may not use this application except in compliance with the License." msgstr "" #. type: Plain text #: content/terms/index.md +#, markdown-text msgid "You may obtain a copy of the License at [http://www.apache.org/licenses/LICENSE-2.0][license]" msgstr "" #. type: Plain text #: content/terms/index.md +#, markdown-text msgid "Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License." msgstr "" #. type: Plain text #: content/terms/index.md +#, markdown-text msgid "Most libraries in the following directories on [GitHub][github] made by other people and organizations and licensed in different ways:" msgstr "" #. type: Bullet: '- ' #: content/terms/index.md +#, markdown-text msgid "3party" msgstr "" #. type: Bullet: '- ' #: content/terms/index.md +#, markdown-text msgid "tools" msgstr "Verktøy" #. type: Plain text #: content/terms/index.md +#, markdown-text msgid "Please refer to their LICENSE, COPYING or NOTICE files for terms of use." msgstr "" #. type: Plain text #: content/terms/index.md +#, markdown-text msgid "See also [data/copyright.html][copyright] file for a full list of copyright notices for Organic Maps application." msgstr "" -#. type: Link reference +#. type: Plain text #: content/terms/index.md -#, no-wrap -msgid "[github]: https://github.com/organicmaps/organicmaps" -msgstr "" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[license]: http://www.apache.org/licenses/LICENSE-2.0" -msgstr "" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html" +#, markdown-text, no-wrap +msgid "" +"[github]: https://github.com/organicmaps/organicmaps\n" +"[license]: http://www.apache.org/licenses/LICENSE-2.0\n" +"[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html\n" msgstr "" #. type: Hash Value: address @@ -830,18 +911,6 @@ msgstr "" msgid "Contact Us" msgstr "Kontakt oss" -#. type: Hash Value: engines -#: translations.yaml -#, no-wrap -msgid "Supported TTS Engines" -msgstr "" - -#. type: Hash Value: faq-menu-title -#: translations.yaml -#, no-wrap -msgid "F.A.Q." -msgstr "" - #. type: Hash Value: install-appgallery #: translations.yaml #, no-wrap @@ -870,13 +939,7 @@ msgstr "" #: translations.yaml #, no-wrap msgid "English" -msgstr "Norsk Bokmål" - -#. type: Hash Value: language-word -#: translations.yaml -#, no-wrap -msgid "Language" -msgstr "Språk" +msgstr "Engelsk" #. type: Hash Value: name #: translations.yaml @@ -889,6 +952,3 @@ msgstr "Navn" #, no-wrap msgid "Token" msgstr "Symbol" - -#~ msgid "Android Auto" -#~ msgstr "Android Auto" diff --git a/po/content.nl.po b/po/content.nl.po index 3271543d..6bf2897f 100644 --- a/po/content.nl.po +++ b/po/content.nl.po @@ -4,7 +4,16 @@ # FIRST AUTHOR , YEAR. # msgid "" -msgstr "Project-Id-Version: Organic Maps Website 1.0\nPO-Revision-Date: 2024-04-02 19:54+0000\nLast-Translator: Weblate Translation Memory \nLanguage-Team: Dutch \nLanguage: nl\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-Forms: nplurals=2; plural=n != 1;\nX-Generator: Weblate 5.5-dev\n" +msgstr "" +"Project-Id-Version: Organic Maps Website 1.0\n" +"Last-Translator: fincent \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 4.17-dev\n" #. type: Yaml Front Matter Hash Value: description #: content/_index.md @@ -27,23 +36,15 @@ msgstr "Organic Maps: Offline Wandelen, Fietsen, Routes en Navigatie" #. type: Plain text #: content/_index.md #, no-wrap -msgid "" -"**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, drivers and cyclists based on **[OpenStreetMap][openstreetmap]** data created by the community.\n" -"It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" +msgid "**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, and cyclists based on top of crowd-sourced **[OpenStreetMap][openstreetmap]** data. It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" msgstr "**Organic Maps** is een gratis Android & iOS offline kaartenapp voor reizigers, toeristen, wandelaars en fietsers gebaseerd op gecrowdsourcete **[OpenStreetMap][openstreetmap]** gegevens. Het is een privacy-gefocuste, open-source [fork][fork] van de app **Maps.me** (voorheen bekend als [**MapsWithMe**][mapswithme]), en wordt onderhouden door dezelfde mensen die **MapsWithMe** hebben gemaakt in 2011.\n" #. type: Plain text #: content/_index.md #, no-wrap -msgid "**Organic Maps** is one of the few applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card, and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" +msgid "**Organic Maps** is one of the only applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card (by the way, your operator constantly tracks you), and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" msgstr "**Organic Maps** is één van de weinige apps heden ten dage die 100% van de functionaliteit heeft zonder actieve internetverbinding. Installeer Organic Maps, download kaarten, gooi je SIM kaart weg (trouwens, je provider trackt je altijd), en ga een week op pad zonder je batterij op te laden en zonder dat er één byte naar het netwerk verzonden wordt.\n" -#. type: Plain text -#: content/_index.md -#, no-wrap -msgid "> In 2023, Organic Maps [got its first million](@/news/2023-12-23/281/index.md) users. [Help us](@/donate/index.md) to scale!\n" -msgstr "" - #. type: Title ### #: content/_index.md #, no-wrap @@ -103,8 +104,8 @@ msgstr "Contourlijnen, hoogteprofielen, pieken en hellingen" #. type: Bullet: '- ' #: content/_index.md -msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance and Android Auto" -msgstr "Routebegeleiding voor wandelen en fietsen en autonavigatie met stembegeleiding en Android Auto" +msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance" +msgstr "Routebegeleiding voor wandelen en fietsen en autonavigatie met stembegeleiding" #. type: Bullet: '- ' #: content/_index.md @@ -113,8 +114,8 @@ msgstr "Snel offline zoeken op de kaart" #. type: Bullet: '- ' #: content/_index.md -msgid "Export/import bookmarks in KML/KMZ, import GPX" -msgstr "Bladwijzers exporteren en importeren in KML/KMZ formats, importeren GPX" +msgid "Bookmarks and tracks in KML, KMZ, GPX formats" +msgstr "Bladwijzers exporteren en importeren in KML/KMZ formats (GPX is [gepland][gpx_issue])" #. type: Bullet: '- ' #: content/_index.md @@ -224,14 +225,15 @@ msgstr "{{ exodus_screenshot() }}" #. type: Plain text #: content/_index.md +#, markdown-text msgid "The iOS application is verified by [TrackerControl for iOS][trackercontrol]:" -msgstr "De iOS applicatie is geverifieerd door [TrackerControl voor iOS][trackercontrol]:" +msgstr "" #. type: Plain text #: content/_index.md -#, fuzzy +#, markdown-text msgid "{{ trackercontrol_screenshot() }}" -msgstr "{{ trackercontrol_screenshot() }}" +msgstr "" #. type: Plain text #: content/_index.md @@ -288,7 +290,7 @@ msgstr "De app is voor iedereen gratis. [Doneer](@/donate/index.nl.md) alstublie #. type: Plain text #: content/_index.md msgid "To donate conveniently, click on your preferred payment method icon below:" -msgstr "Om gemakkelijk te doneren, klik op het icoon van uw voorkeurs-betalingsmethode hieronder:" +msgstr "" #. type: Plain text #: content/_index.md content/donate/index.md @@ -369,22 +371,17 @@ msgstr "Bezoek onze [GitHub pagina][github]." #. type: Bullet: '- ' #: content/_index.md -msgid "Follow our updates in [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." -msgstr "Volg onze update op [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Join (or create and let us know) local communities: [Hungarian translators Matrix room](https://matrix.to/#/#organicmapstranslate_hu:matrix.org)" -msgstr "" - -#. type: Link reference -#: content/_index.md -#, no-wrap -msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)" -msgstr "[fork]: https://nl.wikipedia.org/wiki/Fork_(ontwikkeling)" +msgid "Follow our updates in [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." +msgstr "Volg onze update op [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." #. type: Plain text -#: content/_index.md content/donate/index.md content/support-us/index.md +#: content/_index.md +#, no-wrap +msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)\n" +msgstr "[fork]: https://nl.wikipedia.org/wiki/Fork_(ontwikkeling)\n" + +#. type: Plain text +#: content/_index.md content/support-us/index.md msgid "{{ references() }}" msgstr "{{ references() }}" @@ -408,7 +405,7 @@ msgstr "Doneer om de ontwikkeling van Organic Maps te ondersteunen" #. type: Plain text #: content/donate/index.md -msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]** in **[EUR][stripe_eur], [USD][stripe_usd], [GBP][stripe_GBP], [CHF][stripe_chf], [UAH][stripe_uah], [PLN][stripe_pln]**:" +msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]**:" msgstr "Organic Maps app is _gratis voor iedereen_ dankzij jullie **[donaties][stripe]**:" #. type: Bullet: '- ' @@ -429,7 +426,7 @@ msgstr "Open source" #. type: Plain text #: content/donate/index.md msgid "Click on your preferred payment method icon below:" -msgstr "Klik hieronder op het icoon van uw voorkeurs-betalingsmethode:" +msgstr "" #. type: Title ## #: content/donate/index.md @@ -439,78 +436,63 @@ msgstr "Waarom doneren aan Organic Maps?" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "Our goal is to provide a privacy-focused, fast and easy-to-use alternative to Google Maps and Apple Maps." -msgstr "Ons doel is om een privacy-gefocust, snel en makkelijk te gebruiken alternatief voor Google Maps en Apple Maps te bieden." +msgid "We rely on your donations to carry out our mission to keep Organic Maps open and free. And free from ads." +msgstr "We zijn op jullie donaties aangewezen om onze missie te volbrengen om Organic Maps open en gratis te houden. En vrij van advertenties." #. type: Bullet: '2. ' #: content/donate/index.md -msgid "Improving public map data for the numerous websites, apps and platforms which use OpenStreetMap, and involving more people in contributing map info is our another goal." -msgstr "Publieke kaartendata verbeteren voor de verschillende websites, apps en platforms die OpenStreetMap gebruiken, en meer mensen betrokken krijgen bij het bijdragen aan kaartendata is ons andere doel." +msgid "We are a few enthusiasts contributing in our free time, and spending our families' money on the project. We love what we do, and we love our users ❤️." +msgstr "We zijn een paar enthousiastelingen die in onze vrije tijd een bijdrage leveren, en het geld van onze familie aan het project besteden. We houden van wat we doen, en we houden van onze gebruikers ❤️." #. type: Bullet: '3. ' #: content/donate/index.md -msgid "We rely on your donations to keep Organic Maps open and free for everyone. And free from ads." -msgstr "We zijn op jullie donaties aangewezen om onze missie te volbrengen om Organic Maps open en gratis te houden. En vrij van advertenties." - -#. type: Bullet: '4. ' -#: content/donate/index.md -msgid "We love what we do, and we love our users ❤️." -msgstr "We houden van wat we doen, en we houden van onze gebruikers ❤️." +msgid "With your support, we want to become a better, privacy-focused version of Google Maps." +msgstr "Met jullie steun willen we een betere, privacy-gefocuste versie van Google Maps worden." #. type: Title ## #: content/donate/index.md #, no-wrap -msgid "Why a free project needs money?" -msgstr "Waarom heeft een gratis project geld nodig?" +msgid "What will the money be used for?" +msgstr "Waar wordt het geld voor gebruikt?" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "In 2023, Organic Maps got its first million users. Our servers provide free, fast and frequent map updates all over the world." -msgstr "In 2023 kreeg Organic Maps zijn eerste miljoen gebruikers. Onze servers zorgen voor gratis, snelle en frequente kaartenupdates over de hele wereld." +msgid "We pay for fast servers, so anyone in the World can download free map data updates without delays. It's hundreds of terabytes monthly, and the amount is growing." +msgstr "We betalen voor snelle servers, zodat iedereen in de wereld gratis kaartenupdates kan downloaden zonder vertraging. Dit zijn honderden terabytes per maand, en de hoeveelheid neemt toe." #. type: Bullet: '2. ' #: content/donate/index.md -msgid "User support, bugfixing and publishing quality app updates are at the top of our priorities. There are [~2000 bug reports and feature requests on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." +msgid "User support, bugfixing, and improving the stability of the app are at the top of our priorities. There are [1800+ issues on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." msgstr "Gebruikersondersteuning, bugs fixen, en de stabiliteit van de app verbeteren zijn onze topprioriteiten. Er zijn [1800+ issues op GitHub][github issues], en dit aantal neemt elke dag toe. De AppStore, Google Play, en support email-adressen worden overspoeld met reacties en fouten. We willen een product van een hoge kwaliteit leveren." #. type: Bullet: '3. ' #: content/donate/index.md -msgid "With enough money, new features can be developed. To name a few:" +msgid "With enough money, new features can be developed faster, for example:" msgstr "Met genoeg geld kunnen nieuwe functies sneller worden ontwikkeld, zoals:" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Backup and sync bookmarks and tracks" -msgstr "Backup en synchroniseer bladwijzers en routes" +msgid "Weekly and automated map data updates" +msgstr "Wekelijkse en geautomatiseerde kaartendata-updates" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "GPS track recorder with GPX export" +msgid "Bookmarks backup and sync" +msgstr "Bladwijzerbackups en -synchronisatie" + +#. type: Bullet: ' - ' +#: content/donate/index.md +msgid "Android Auto" +msgstr "Android Auto" + +#. type: Bullet: ' - ' +#: content/donate/index.md +msgid "GPS track recorder with GPX support" msgstr "GPS-pad-opnames met GPX ondersteuning" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Satellite imagery" -msgstr "Satellietbeelden" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Public Transport" -msgstr "Openbaar vervoer" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Traffic and accident reporting" -msgstr "Verkeers- en ongelukkencontrole" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Photos and Reviews" -msgstr "Foto's en beoordelingen" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Map styles for different activities" +msgid "Better map styles for different activities" msgstr "Betere kaartenstijlen voor verschillende activiteiten" #. type: Bullet: ' - ' @@ -520,7 +502,7 @@ msgstr "Reliëfschaduwen en 3D-terreinen" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "More advanced OpenStreetMap editor" +msgid "Improve the OpenStreetMap editor" msgstr "Verbetering van de OpenStreetMap-bewerker" #. type: Bullet: ' - ' @@ -528,6 +510,11 @@ msgstr "Verbetering van de OpenStreetMap-bewerker" msgid "Better offline address search, routing, and navigation" msgstr "Betere offline adressen-zoekfunctie, routes, en navigatie" +#. type: Bullet: ' - ' +#: content/donate/index.md +msgid "Public Transport" +msgstr "Openbaar vervoer" + #. type: Bullet: ' - ' #: content/donate/index.md msgid "… and [many other][github issues] features you want and love" @@ -541,7 +528,7 @@ msgstr "Hoe kan je doneren?" #. type: Plain text #: content/donate/index.md -msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. One-time donations are appreciated too." +msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. But you can also donate one time." msgstr "Terugkerende donaties zijn de beste manier om een relatief stabiel inkomen voor het project te verzorgen en motiveren ons voor lange termijn taken en doelen. Maar je kan ook eenmalig doneren." #. type: Title ### @@ -582,6 +569,16 @@ msgstr "Kunt u ons op een andere manier helpen?" msgid "Yes! There are many ways to support Organic Maps. Please see [Support Us](@/support-us/index.md) page for more details." msgstr "Ja! Er zijn vele manieren om Organic Maps te ondersteunen. Kijk alstublieft op de pagina [Steun ons](@/support-us/index.nl.md) voor meer details." +#. type: Plain text +#: content/donate/index.md +#, no-wrap +msgid "" +"[stripe]: https://donate.organicmaps.app/ \"Donate via Stripe\"\n" +"[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" +msgstr "" +"[stripe]: https://donate.organicmaps.app/ \"Doneer via Stripe\"\n" +"[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" + #. type: Yaml Front Matter Hash Value: description #: content/news/_index.md #, no-wrap @@ -795,23 +792,17 @@ msgstr "Kijkt u alstublieft naar de LICENSE, COPYING of NOTICE bestanden voor de msgid "See also [data/copyright.html][copyright] file for a full list of copyright notices for Organic Maps application." msgstr "Zie ook het bestand [data/copyright.html][copyright] voor een volledige lijst van copyright-berichten voor de Organic Maps applicatie." -#. type: Link reference +#. type: Plain text #: content/terms/index.md #, no-wrap -msgid "[github]: https://github.com/organicmaps/organicmaps" -msgstr "[github]: https://github.com/organicmaps/organicmaps" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[license]: http://www.apache.org/licenses/LICENSE-2.0" -msgstr "[license]: http://www.apache.org/licenses/LICENSE-2.0" - -#. type: Link reference -#: content/terms/index.md -#, fuzzy, no-wrap -msgid "[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html" -msgstr "[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html" +msgid "" +"[github]: https://github.com/organicmaps/organicmaps\n" +"[license]: http://www.apache.org/licenses/LICENSE-2.0\n" +"[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html\n" +msgstr "" +"[github]: https://github.com/organicmaps/organicmaps\n" +"[license]: http://www.apache.org/licenses/LICENSE-2.0\n" +"[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html\n" #. type: Hash Value: address #: translations.yaml @@ -831,18 +822,6 @@ msgstr "Terug naar Nieuws" msgid "Contact Us" msgstr "Contacteer ons" -#. type: Hash Value: engines -#: translations.yaml -#, no-wrap -msgid "Supported TTS Engines" -msgstr "Ondersteunde TTS-engines" - -#. type: Hash Value: faq-menu-title -#: translations.yaml -#, fuzzy, no-wrap -msgid "F.A.Q." -msgstr "F.A.Q." - #. type: Hash Value: install-appgallery #: translations.yaml #, no-wrap @@ -873,12 +852,6 @@ msgstr "Installeer Organic Maps op Google Play" msgid "English" msgstr "Dutch" -#. type: Hash Value: language-word -#: translations.yaml -#, no-wrap -msgid "Language" -msgstr "Taal" - #. type: Hash Value: name #: translations.yaml #, no-wrap @@ -891,39 +864,6 @@ msgstr "Naam" msgid "Token" msgstr "Token" -#~ msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]**:" -#~ msgstr "Organic Maps app is _gratis voor iedereen_ dankzij jullie **[donaties][stripe]**:" - -#~ msgid "We are a few enthusiasts contributing in our free time, and spending our families' money on the project. We love what we do, and we love our users ❤️." -#~ msgstr "We zijn een paar enthousiastelingen die in onze vrije tijd een bijdrage leveren, en het geld van onze familie aan het project besteden. We houden van wat we doen, en we houden van onze gebruikers ❤️." - -#~ msgid "With your support, we want to become a better, privacy-focused version of Google Maps." -#~ msgstr "Met jullie steun willen we een betere, privacy-gefocuste versie van Google Maps worden." - -#, no-wrap -#~ msgid "What will the money be used for?" -#~ msgstr "Waar wordt het geld voor gebruikt?" - -#~ msgid "We pay for fast servers, so anyone in the World can download free map data updates without delays. It's hundreds of terabytes monthly, and the amount is growing." -#~ msgstr "We betalen voor snelle servers, zodat iedereen in de wereld gratis kaartenupdates kan downloaden zonder vertraging. Dit zijn honderden terabytes per maand, en de hoeveelheid neemt toe." - -#~ msgid "Weekly and automated map data updates" -#~ msgstr "Wekelijkse en geautomatiseerde kaartendata-updates" - -#~ msgid "Bookmarks backup and sync" -#~ msgstr "Bladwijzerbackups en -synchronisatie" - -#~ msgid "Android Auto" -#~ msgstr "Android Auto" - -#, no-wrap -#~ msgid "" -#~ "[stripe]: https://donate.organicmaps.app/ \"Donate via Stripe\"\n" -#~ "[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" -#~ msgstr "" -#~ "[stripe]: https://donate.organicmaps.app/ \"Doneer via Stripe\"\n" -#~ "[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" - #, no-wrap #~ msgid "There are different ways to donate:" #~ msgstr "Er zijn verschillende manieren om te doneren:" diff --git a/po/content.oc.po b/po/content.oc.po index dcdff353..9facb61c 100644 --- a/po/content.oc.po +++ b/po/content.oc.po @@ -4,7 +4,16 @@ # FIRST AUTHOR , YEAR. # msgid "" -msgstr "Project-Id-Version: Organic Maps Website 1.0\nPO-Revision-Date: 2024-04-02 19:54+0000\nLast-Translator: Weblate Translation Memory \nLanguage-Team: Occitan \nLanguage: oc\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-Forms: nplurals=2; plural=n > 1;\nX-Generator: Weblate 5.5-dev\n" +msgstr "" +"Project-Id-Version: Organic Maps Website 1.0\n" +"Last-Translator: Pèire Bréchet \n" +"Language-Team: Occitan \n" +"Language: oc\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 4.18-dev\n" #. type: Yaml Front Matter Hash Value: description #: content/_index.md @@ -26,21 +35,15 @@ msgstr "De Mapas Organicas : escorregudas ciclistas, caminadas, itineraris e per #. type: Plain text #: content/_index.md -msgid "" -"**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, drivers and cyclists based on **[OpenStreetMap][openstreetmap]** data created by the community.\n" -"It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" +#, no-wrap +msgid "**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, and cyclists based on top of crowd-sourced **[OpenStreetMap][openstreetmap]** data. It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" msgstr "**Mapas Organicas** es una aplicacion de mapas a gratis sensa connexion per Android e iOS destinada ai viatgaires, toristas, caminaires d’escorregudas e ciclistas, basada sus lei donadas d’**[OpenStreetMap][openstreetmap]**. Es una [bifurcacion][fork] centrada sus la privadesa de **Maps.me** (ancianament conegut per [**MapsWithMe**][mapswithme]), e mantenguda per lei meteissas personas que crearàn **MapsWithMe** en 2011.\n" -#. type: Plain text -#: content/_index.md -msgid "**Organic Maps** is one of the few applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card, and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" -msgstr "N’i a gaire a l’ora d’ara d’aplicacions coma **Mapas Organicas** que foncionan entierament sensa la connexion a Internet activa. Installatz Mapas Organicas, teledescargatz de mapas, escampatz vòstra carteta SIM (que, o sabètz, vòstre operator vos es a l’après de lònga) e partètz per una setmana de viatge amb un solet plen de batariá sensa un bit mandat au malhum.\n" - #. type: Plain text #: content/_index.md #, no-wrap -msgid "> In 2023, Organic Maps [got its first million](@/news/2023-12-23/281/index.md) users. [Help us](@/donate/index.md) to scale!\n" -msgstr "" +msgid "**Organic Maps** is one of the only applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card (by the way, your operator constantly tracks you), and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" +msgstr "N’i a gaire a l’ora d’ara d’aplicacions coma **Mapas Organicas** que foncionan entierament sensa la connexion a Internet activa. Installatz Mapas Organicas, teledescargatz de mapas, escampatz vòstra carteta SIM (que, o sabètz, vòstre operator vos es a l’après de lònga) e partètz per una setmana de viatge amb un solet plen de batariá sensa un bit mandat au malhum.\n" #. type: Title ### #: content/_index.md @@ -101,8 +104,8 @@ msgstr "Linhas de contorn, perfius d’elevacion, cimas e pendents" #. type: Bullet: '- ' #: content/_index.md -msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance and Android Auto" -msgstr "Navigacion pas a pas d’a pès, amb la bicicleta, l’automobila e guida de votz, Android Auto" +msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance" +msgstr "Navigacion pas a pas d’a pès, amb la bicicleta, l’automobila e guida de votz" #. type: Bullet: '- ' #: content/_index.md @@ -111,8 +114,8 @@ msgstr "Recèrcas rapidas sus la mapa e fòra de linha" #. type: Bullet: '- ' #: content/_index.md -msgid "Export/import bookmarks in KML/KMZ, import GPX" -msgstr "Marcas de libre e traças en formats KML, KMZ, GPX" +msgid "Bookmarks and tracks in KML, KMZ, GPX formats" +msgstr "Lei marcadors s'expòrtan e impòrtan en formats KML/KMZ (GPX es [planificat][gpx_issue])" #. type: Bullet: '- ' #: content/_index.md @@ -222,16 +225,19 @@ msgstr "{{ exodus_screenshot() }}" #. type: Plain text #: content/_index.md +#, markdown-text msgid "The iOS application is verified by [TrackerControl for iOS][trackercontrol]:" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ trackercontrol_screenshot() }}" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "Organic Maps doesn't request excessive permissions to spy on you:" msgstr "Mapas Organicas demanda pas de permissions excessivas per vos espiar:" @@ -366,21 +372,17 @@ msgstr "Visitatz nòstra [pagina GitHub][github]." #. type: Bullet: '- ' #: content/_index.md -msgid "Follow our updates in [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." -msgstr "Seguissètz lei noveutats sus [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit] e [LinkedIn][LinkedIn]." - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Join (or create and let us know) local communities: [Hungarian translators Matrix room](https://matrix.to/#/#organicmapstranslate_hu:matrix.org)" -msgstr "" - -#. type: Link reference -#: content/_index.md -msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)" -msgstr "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)" +msgid "Follow our updates in [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." +msgstr "Seguissètz lei noveutats sus [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit] e [LinkedIn][LinkedIn]." #. type: Plain text -#: content/_index.md content/donate/index.md content/support-us/index.md +#: content/_index.md +#, no-wrap +msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)\n" +msgstr "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)\n" + +#. type: Plain text +#: content/_index.md content/support-us/index.md msgid "{{ references() }}" msgstr "{{ references() }}" @@ -404,8 +406,8 @@ msgstr "Donatz per ajudar lo desvelopament de Mapas Organicas" #. type: Plain text #: content/donate/index.md -msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]** in **[EUR][stripe_eur], [USD][stripe_usd], [GBP][stripe_GBP], [CHF][stripe_chf], [UAH][stripe_uah], [PLN][stripe_pln]**:" -msgstr "" +msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]**:" +msgstr "Mapas Organicas es_a gratis per totei_gràcias a vòstrei **[dons][stripe]**:" #. type: Bullet: '- ' #: content/donate/index.md @@ -435,78 +437,63 @@ msgstr "Perqué donar a Mapas Organicas ?" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "Our goal is to provide a privacy-focused, fast and easy-to-use alternative to Google Maps and Apple Maps." -msgstr "" +msgid "We rely on your donations to carry out our mission to keep Organic Maps open and free. And free from ads." +msgstr "Dependèm dei dons per contunhar la mission de mantenir Mapas Organicas dobèrta e a gratis. E liura d'anóncias." #. type: Bullet: '2. ' #: content/donate/index.md -msgid "Improving public map data for the numerous websites, apps and platforms which use OpenStreetMap, and involving more people in contributing map info is our another goal." -msgstr "" +msgid "We are a few enthusiasts contributing in our free time, and spending our families' money on the project. We love what we do, and we love our users ❤️." +msgstr "Siam una còla plena d'estrambòrd qu'òbra dins son temps liure, e pagant de nòstra pòcha lo projècte. Çò que fasèm nos agrada coma aimam nòstreis utilizators ❤️." #. type: Bullet: '3. ' #: content/donate/index.md -msgid "We rely on your donations to keep Organic Maps open and free for everyone. And free from ads." -msgstr "Dependèm dei dons per contunhar la mission de mantenir Mapas Organicas dobèrta e a gratis. E liura d'anóncias." - -#. type: Bullet: '4. ' -#: content/donate/index.md -msgid "We love what we do, and we love our users ❤️." -msgstr "" +msgid "With your support, we want to become a better, privacy-focused version of Google Maps." +msgstr "Amb vòstra ajuda, volèm devenir una version melhora de Google Maps, preoccupada de la vida privada." #. type: Title ## #: content/donate/index.md #, no-wrap -msgid "Why a free project needs money?" -msgstr "" +msgid "What will the money be used for?" +msgstr "En qué serviràn vòstrei dons ?" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "In 2023, Organic Maps got its first million users. Our servers provide free, fast and frequent map updates all over the world." -msgstr "" +msgid "We pay for fast servers, so anyone in the World can download free map data updates without delays. It's hundreds of terabytes monthly, and the amount is growing." +msgstr "Pagam per de servidors rapides, que pertot dins lo monde se pòsque descargar leis actualizacions dei mapas a gratis e sensa relambi. Aquò son de centanaus de terabytes au mes, e la quantitat va creissenta." #. type: Bullet: '2. ' #: content/donate/index.md -msgid "User support, bugfixing and publishing quality app updates are at the top of our priorities. There are [~2000 bug reports and feature requests on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." +msgid "User support, bugfixing, and improving the stability of the app are at the top of our priorities. There are [1800+ issues on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." msgstr "L'assisténcia deis utilizators, la correccion d'errors e una estabiitat melhora de l'aplicacion son nòstrei prioritats principalas. I a mai de [1800 senhalaments sus GitHub][github issues], e lo nombre crèis cada jorn. AppStore, Google Play, e lei messatjariás d'assisténcia regòrgan de comentaris e de senhalaments. Volèm ofrir un produch de qualitat." #. type: Bullet: '3. ' #: content/donate/index.md -msgid "With enough money, new features can be developed. To name a few:" +msgid "With enough money, new features can be developed faster, for example:" msgstr "Amb pron d'argent, podèm desvelopar pus lèu de prestacions novèlas, per exemple :" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Backup and sync bookmarks and tracks" -msgstr "" +msgid "Weekly and automated map data updates" +msgstr "Actualizacions semaniera e automaticas dei mapas" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "GPS track recorder with GPX export" +msgid "Bookmarks backup and sync" +msgstr "Còpia de seguretat e sincronizacion dei luòcs d'interès" + +#. type: Bullet: ' - ' +#: content/donate/index.md +msgid "Android Auto" +msgstr "Android Auto" + +#. type: Bullet: ' - ' +#: content/donate/index.md +msgid "GPS track recorder with GPX support" msgstr "Enregistrament GPS amb compatibilitat per GPX" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Satellite imagery" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Public Transport" -msgstr "Transport public" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Traffic and accident reporting" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Photos and Reviews" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Map styles for different activities" +msgid "Better map styles for different activities" msgstr "D'estils cartografics diversificats segon leis activitats" #. type: Bullet: ' - ' @@ -516,7 +503,7 @@ msgstr "Ombras de relèu 3D" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "More advanced OpenStreetMap editor" +msgid "Improve the OpenStreetMap editor" msgstr "Melhorar l'editor d'OpenStreetMap" #. type: Bullet: ' - ' @@ -524,6 +511,11 @@ msgstr "Melhorar l'editor d'OpenStreetMap" msgid "Better offline address search, routing, and navigation" msgstr "Recèrca d'adreiças melhora fòra de connexion, guidatge e navigacion" +#. type: Bullet: ' - ' +#: content/donate/index.md +msgid "Public Transport" +msgstr "Transport public" + #. type: Bullet: ' - ' #: content/donate/index.md msgid "… and [many other][github issues] features you want and love" @@ -537,7 +529,7 @@ msgstr "Coma donar ?" #. type: Plain text #: content/donate/index.md -msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. One-time donations are appreciated too." +msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. But you can also donate one time." msgstr "Lei dons regulars e automatizats son lo biais melhor d'assegurar un crèis periodic dau projècte e nos motiva per lei tascas e pretzfach de lònga tòca. Aquò vos empacha pas de donar qu'un còp." #. type: Title ### @@ -578,6 +570,14 @@ msgstr "" msgid "Yes! There are many ways to support Organic Maps. Please see [Support Us](@/support-us/index.md) page for more details." msgstr "" +#. type: Plain text +#: content/donate/index.md +#, no-wrap +msgid "" +"[stripe]: https://donate.organicmaps.app/ \"Donate via Stripe\"\n" +"[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" +msgstr "" + #. type: Yaml Front Matter Hash Value: description #: content/news/_index.md #, no-wrap @@ -791,22 +791,13 @@ msgstr "" msgid "See also [data/copyright.html][copyright] file for a full list of copyright notices for Organic Maps application." msgstr "" -#. type: Link reference +#. type: Plain text #: content/terms/index.md #, no-wrap -msgid "[github]: https://github.com/organicmaps/organicmaps" -msgstr "" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[license]: http://www.apache.org/licenses/LICENSE-2.0" -msgstr "" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html" +msgid "" +"[github]: https://github.com/organicmaps/organicmaps\n" +"[license]: http://www.apache.org/licenses/LICENSE-2.0\n" +"[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html\n" msgstr "" #. type: Hash Value: address @@ -827,18 +818,6 @@ msgstr "" msgid "Contact Us" msgstr "Nos contactar" -#. type: Hash Value: engines -#: translations.yaml -#, no-wrap -msgid "Supported TTS Engines" -msgstr "" - -#. type: Hash Value: faq-menu-title -#: translations.yaml -#, no-wrap -msgid "F.A.Q." -msgstr "" - #. type: Hash Value: install-appgallery #: translations.yaml #, no-wrap @@ -869,12 +848,6 @@ msgstr "Installar Mapas Organicas de Google Play" msgid "English" msgstr "Occitan" -#. type: Hash Value: language-word -#: translations.yaml -#, no-wrap -msgid "Language" -msgstr "Lenga" - #. type: Hash Value: name #: translations.yaml #, no-wrap @@ -887,31 +860,6 @@ msgstr "Nom" msgid "Token" msgstr "geton" -#~ msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]**:" -#~ msgstr "Mapas Organicas es_a gratis per totei_gràcias a vòstrei **[dons][stripe]**:" - -#~ msgid "We are a few enthusiasts contributing in our free time, and spending our families' money on the project. We love what we do, and we love our users ❤️." -#~ msgstr "Siam una còla plena d'estrambòrd qu'òbra dins son temps liure, e pagant de nòstra pòcha lo projècte. Çò que fasèm nos agrada coma aimam nòstreis utilizators ❤️." - -#~ msgid "With your support, we want to become a better, privacy-focused version of Google Maps." -#~ msgstr "Amb vòstra ajuda, volèm devenir una version melhora de Google Maps, preoccupada de la vida privada." - -#, no-wrap -#~ msgid "What will the money be used for?" -#~ msgstr "En qué serviràn vòstrei dons ?" - -#~ msgid "We pay for fast servers, so anyone in the World can download free map data updates without delays. It's hundreds of terabytes monthly, and the amount is growing." -#~ msgstr "Pagam per de servidors rapides, que pertot dins lo monde se pòsque descargar leis actualizacions dei mapas a gratis e sensa relambi. Aquò son de centanaus de terabytes au mes, e la quantitat va creissenta." - -#~ msgid "Weekly and automated map data updates" -#~ msgstr "Actualizacions semaniera e automaticas dei mapas" - -#~ msgid "Bookmarks backup and sync" -#~ msgstr "Còpia de seguretat e sincronizacion dei luòcs d'interès" - -#~ msgid "Android Auto" -#~ msgstr "Android Auto" - #, no-wrap #~ msgid "There are different ways to donate:" #~ msgstr "I a mai d'un biais de donar:" diff --git a/po/content.pl.po b/po/content.pl.po index 56680b38..30c090a5 100644 --- a/po/content.pl.po +++ b/po/content.pl.po @@ -4,7 +4,7 @@ # FIRST AUTHOR , YEAR. # msgid "" -msgstr "Project-Id-Version: Organic Maps Website 1.0\nPO-Revision-Date: 2024-04-02 19:54+0000\nLast-Translator: Weblate Translation Memory \nLanguage-Team: Polish \nLanguage: pl\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\nX-Generator: Weblate 5.5-dev\n" +msgstr "Project-Id-Version: Organic Maps Website 1.0\nPO-Revision-Date: 2023-06-24 18:53+0000\nLast-Translator: WaldiS \nLanguage-Team: Polish \nLanguage: pl\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\nX-Generator: Weblate 4.18.1\n" #. type: Yaml Front Matter Hash Value: description #: content/_index.md @@ -27,23 +27,15 @@ msgstr "Organic Maps: wędrówki, jazda na rowerze, szlaki i nawigacja offline" #. type: Plain text #: content/_index.md #, no-wrap -msgid "" -"**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, drivers and cyclists based on **[OpenStreetMap][openstreetmap]** data created by the community.\n" -"It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" +msgid "**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, and cyclists based on top of crowd-sourced **[OpenStreetMap][openstreetmap]** data. It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" msgstr "**Organic Maps** to darmowa aplikacja na Androida i iOS z mapami offline dla podróżników, turystów, wędrowców i rowerzystów, bazująca na współtworzonych danych **[OpenStreetMap][openstreetmap]**. Jest otwartoźródłowym [forkiem][fork] aplikacji **Maps.me** (wcześniej znanej jako [**MapsWithMe**][mapswithme]) z naciskiem na prywatność, utrzymywanym przez te same osoby, które stworzyły **MapsWithMe** w 2011 roku.\n" #. type: Plain text #: content/_index.md #, no-wrap -msgid "**Organic Maps** is one of the few applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card, and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" +msgid "**Organic Maps** is one of the only applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card (by the way, your operator constantly tracks you), and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" msgstr "**Organic Maps** to jedna z niewielu obecnie aplikacji, która obsługuje 100% funkcji bez aktywnego połączenia z internetem. Zainstaluj Organic Maps, pobierz mapy, wyrzuć kartę SIM (tak przy okazji, Twój operator stale Cię śledzi) i wybierz się na tygodniową wycieczkę na jednym ładowaniu baterii bez żadnego bajtu wysłanego do sieci.\n" -#. type: Plain text -#: content/_index.md -#, no-wrap -msgid "> In 2023, Organic Maps [got its first million](@/news/2023-12-23/281/index.md) users. [Help us](@/donate/index.md) to scale!\n" -msgstr "" - #. type: Title ### #: content/_index.md #, no-wrap @@ -103,8 +95,8 @@ msgstr "Linie konturowe, profile wysokościowe, szczyty i zbocza" #. type: Bullet: '- ' #: content/_index.md -msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance and Android Auto" -msgstr "Nawigacja piesza, rowerowa i samochodowa \"zakręt po zakręcie\" ze wskazówkami głosowymi, Android Auto" +msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance" +msgstr "Nawigacja piesza, rowerowa i samochodowa \"zakręt po zakręcie\" ze wskazówkami głosowymi" #. type: Bullet: '- ' #: content/_index.md @@ -113,8 +105,8 @@ msgstr "Szybkie wyszukiwanie offline na mapie" #. type: Bullet: '- ' #: content/_index.md -msgid "Export/import bookmarks in KML/KMZ, import GPX" -msgstr "Zakładki i ścieżki w formatach KML, KMZ, GPX" +msgid "Bookmarks and tracks in KML, KMZ, GPX formats" +msgstr "Eksport i import zakładek w formatach KML/KMZ (GPX jest [planowane][gpx_issue])" #. type: Bullet: '- ' #: content/_index.md @@ -224,11 +216,13 @@ msgstr "{{ exodus_screenshot() }}" #. type: Plain text #: content/_index.md +#, markdown-text msgid "The iOS application is verified by [TrackerControl for iOS][trackercontrol]:" msgstr "Aplikacja iOS jest weryfikowana przez [TrackerControl for iOS][trackercontrol]:" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ trackercontrol_screenshot() }}" msgstr "{{ trackercontrol_screenshot() }}" @@ -368,22 +362,17 @@ msgstr "Odwiedź naszą stronę [GitHub][github]." #. type: Bullet: '- ' #: content/_index.md -msgid "Follow our updates in [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." -msgstr "Śledź nasze aktualizacje na [FOSStodonie][fosstodon], [Mastodonie][mastodon], [Facebooku][facebook], [Twitterze][twitter], [Instagramie][instagram], [Reddicie][reddit], [LinkedIn][LinkedIn]." - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Join (or create and let us know) local communities: [Hungarian translators Matrix room](https://matrix.to/#/#organicmapstranslate_hu:matrix.org)" -msgstr "" - -#. type: Link reference -#: content/_index.md -#, no-wrap -msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)" -msgstr "[fork]: https://pl.wikipedia.org/wiki/Fork" +msgid "Follow our updates in [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." +msgstr "Śledź nasze aktualizacje na [Mastodonie][mastodon], [Facebooku][facebook], [Twitterze][twitter], [Instagramie][instagram], [Reddicie][reddit], [LinkedIn][LinkedIn]." #. type: Plain text -#: content/_index.md content/donate/index.md content/support-us/index.md +#: content/_index.md +#, no-wrap +msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)\n" +msgstr "[fork]: https://pl.wikipedia.org/wiki/Fork\n" + +#. type: Plain text +#: content/_index.md content/support-us/index.md msgid "{{ references() }}" msgstr "{{ references() }}" @@ -407,7 +396,7 @@ msgstr "Przekaż darowiznę, aby wesprzeć rozwój Organic Maps" #. type: Plain text #: content/donate/index.md -msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]** in **[EUR][stripe_eur], [USD][stripe_usd], [GBP][stripe_GBP], [CHF][stripe_chf], [UAH][stripe_uah], [PLN][stripe_pln]**:" +msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]**:" msgstr "Aplikacja Organic Maps jest _darmowa dla wszystkich_ dzięki Waszym **[donacjom][stripe]**:" #. type: Bullet: '- ' @@ -438,78 +427,63 @@ msgstr "Dlaczego warto przekazać darowiznę na rzecz Organic Maps?" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "Our goal is to provide a privacy-focused, fast and easy-to-use alternative to Google Maps and Apple Maps." -msgstr "" +msgid "We rely on your donations to carry out our mission to keep Organic Maps open and free. And free from ads." +msgstr "Polegamy na Twoich darowiznach, aby realizować naszą misję polegającą na utrzymaniu Organic Maps otwartymi i wolnymi. I wolnymi od reklam." #. type: Bullet: '2. ' #: content/donate/index.md -msgid "Improving public map data for the numerous websites, apps and platforms which use OpenStreetMap, and involving more people in contributing map info is our another goal." -msgstr "" +msgid "We are a few enthusiasts contributing in our free time, and spending our families' money on the project. We love what we do, and we love our users ❤️." +msgstr "Jesteśmy nielicznymi entuzjastami, którzy w wolnym czasie przyczyniają się do rozwoju projektu i wydają na niego pieniądze naszych rodzin. Kochamy to, co robimy i kochamy naszych użytkowników ❤️." #. type: Bullet: '3. ' #: content/donate/index.md -msgid "We rely on your donations to keep Organic Maps open and free for everyone. And free from ads." -msgstr "Polegamy na Twoich darowiznach, aby realizować naszą misję polegającą na utrzymaniu Organic Maps otwartymi i wolnymi. I wolnymi od reklam." - -#. type: Bullet: '4. ' -#: content/donate/index.md -msgid "We love what we do, and we love our users ❤️." -msgstr "" +msgid "With your support, we want to become a better, privacy-focused version of Google Maps." +msgstr "Dzięki Waszemu wsparciu chcemy stać się lepszą, dbającą o prywatność wersją Map Google." #. type: Title ## #: content/donate/index.md #, no-wrap -msgid "Why a free project needs money?" -msgstr "" +msgid "What will the money be used for?" +msgstr "Na co zostaną przeznaczone te pieniądze?" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "In 2023, Organic Maps got its first million users. Our servers provide free, fast and frequent map updates all over the world." -msgstr "" +msgid "We pay for fast servers, so anyone in the World can download free map data updates without delays. It's hundreds of terabytes monthly, and the amount is growing." +msgstr "Płacimy za szybkie serwery, więc każdy na świecie może pobierać darmowe aktualizacje danych mapowych bez opóźnień. To setki terabajtów miesięcznie, a ilość ta stale rośnie." #. type: Bullet: '2. ' #: content/donate/index.md -msgid "User support, bugfixing and publishing quality app updates are at the top of our priorities. There are [~2000 bug reports and feature requests on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." +msgid "User support, bugfixing, and improving the stability of the app are at the top of our priorities. There are [1800+ issues on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." msgstr "Wsparcie użytkowników, usuwanie błędów i poprawa stabilności aplikacji są na szczycie naszych priorytetów. Mamy [ponad 1800 zgłoszonych na GitHubie problemów do rozwiązania][github issues], a liczba ta rośnie każdego dnia. AppStore, Google Play i e-maile wsparcia są zalane komentarzami i błędami. Chcemy dostarczać produkt wysokiej jakości." #. type: Bullet: '3. ' #: content/donate/index.md -msgid "With enough money, new features can be developed. To name a few:" +msgid "With enough money, new features can be developed faster, for example:" msgstr "Mając wystarczająco dużo pieniędzy, można na przykład szybciej rozwijać nowe funkcje:" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Backup and sync bookmarks and tracks" -msgstr "" +msgid "Weekly and automated map data updates" +msgstr "Cotygodniowe i automatyczne aktualizacje danych mapowych" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "GPS track recorder with GPX export" +msgid "Bookmarks backup and sync" +msgstr "Kopia zapasowa i synchronizacja zakładek" + +#. type: Bullet: ' - ' +#: content/donate/index.md +msgid "Android Auto" +msgstr "Android Auto" + +#. type: Bullet: ' - ' +#: content/donate/index.md +msgid "GPS track recorder with GPX support" msgstr "Rejestrator śladów GPS z obsługą GPX" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Satellite imagery" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Public Transport" -msgstr "Transport publiczny" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Traffic and accident reporting" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Photos and Reviews" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Map styles for different activities" +msgid "Better map styles for different activities" msgstr "Lepsze style map dla różnych działań" #. type: Bullet: ' - ' @@ -519,14 +493,19 @@ msgstr "Cieniowanie wzgórz i teren 3D" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "More advanced OpenStreetMap editor" -msgstr "Bardziej zaawansowany edytor OpenStreetMap" +msgid "Improve the OpenStreetMap editor" +msgstr "Ulepszenie edytora OpenStreetMap" #. type: Bullet: ' - ' #: content/donate/index.md msgid "Better offline address search, routing, and navigation" msgstr "Lepsze wyszukiwanie adresów w trybie offline, wyznaczanie tras i nawigacja" +#. type: Bullet: ' - ' +#: content/donate/index.md +msgid "Public Transport" +msgstr "Transport publiczny" + #. type: Bullet: ' - ' #: content/donate/index.md msgid "… and [many other][github issues] features you want and love" @@ -540,7 +519,7 @@ msgstr "Jak przekazać darowiznę?" #. type: Plain text #: content/donate/index.md -msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. One-time donations are appreciated too." +msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. But you can also donate one time." msgstr "Powtarzające się darowizny to najlepszy sposób na zapewnienie względnie stabilnego dochodu dla projektu i zmotywowanie nas do realizacji długoterminowych zadań i celów. Ale możesz też przekazać darowiznę jednorazowo." #. type: Title ### @@ -581,6 +560,16 @@ msgstr "Czy można nam pomóc w jakiś inny sposób?" msgid "Yes! There are many ways to support Organic Maps. Please see [Support Us](@/support-us/index.md) page for more details." msgstr "Tak! Istnieje wiele sposobów na wsparcie Organic Maps. Więcej szczegółów znajdziesz na stronie [Wesprzyj nas](@/support-us/index.pl.md)." +#. type: Plain text +#: content/donate/index.md +#, no-wrap +msgid "" +"[stripe]: https://donate.organicmaps.app/ \"Donate via Stripe\"\n" +"[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" +msgstr "" +"[stripe]: https://donate.organicmaps.app/ \"Wesprzyj przez Stripe\"\n" +"[github issues]: https://github.com/organicmaps/organicmaps/issues \"Problemy na GitHub\"\n" + #. type: Yaml Front Matter Hash Value: description #: content/news/_index.md #, no-wrap @@ -794,23 +783,17 @@ msgstr "Warunki użytkowania można znaleźć w plikach LICENCJA, KOPIOWANIE i U msgid "See also [data/copyright.html][copyright] file for a full list of copyright notices for Organic Maps application." msgstr "Zobacz również plik [data/copyright.html][copyright], aby zapoznać się z pełną listą informacji o prawach autorskich dla aplikacji Organic Maps." -#. type: Link reference +#. type: Plain text #: content/terms/index.md #, no-wrap -msgid "[github]: https://github.com/organicmaps/organicmaps" -msgstr "" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[license]: http://www.apache.org/licenses/LICENSE-2.0" -msgstr "[license]: http://www.apache.org/licenses/LICENSE-2.0" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html" +msgid "" +"[github]: https://github.com/organicmaps/organicmaps\n" +"[license]: http://www.apache.org/licenses/LICENSE-2.0\n" +"[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html\n" msgstr "" +"[github]: https://github.com/organicmaps/organicmaps\n" +"[licencja]: http://www.apache.org/licenses/LICENSE-2.0\n" +"[prawa autorskie]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html\n" #. type: Hash Value: address #: translations.yaml @@ -830,18 +813,6 @@ msgstr "Powrót do Nowości" msgid "Contact Us" msgstr "Kontakt z nami" -#. type: Hash Value: engines -#: translations.yaml -#, no-wrap -msgid "Supported TTS Engines" -msgstr "" - -#. type: Hash Value: faq-menu-title -#: translations.yaml -#, no-wrap -msgid "F.A.Q." -msgstr "" - #. type: Hash Value: install-appgallery #: translations.yaml #, no-wrap @@ -872,12 +843,6 @@ msgstr "Zainstaluj Organic Maps z Google Play" msgid "English" msgstr "Polski" -#. type: Hash Value: language-word -#: translations.yaml -#, no-wrap -msgid "Language" -msgstr "Języki" - #. type: Hash Value: name #: translations.yaml #, no-wrap @@ -890,39 +855,6 @@ msgstr "Nazwa" msgid "Token" msgstr "Token" -#~ msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]**:" -#~ msgstr "Aplikacja Organic Maps jest _darmowa dla wszystkich_ dzięki Waszym **[donacjom][stripe]**:" - -#~ msgid "We are a few enthusiasts contributing in our free time, and spending our families' money on the project. We love what we do, and we love our users ❤️." -#~ msgstr "Jesteśmy nielicznymi entuzjastami, którzy w wolnym czasie przyczyniają się do rozwoju projektu i wydają na niego pieniądze naszych rodzin. Kochamy to, co robimy i kochamy naszych użytkowników ❤️." - -#~ msgid "With your support, we want to become a better, privacy-focused version of Google Maps." -#~ msgstr "Dzięki Waszemu wsparciu chcemy stać się lepszą, dbającą o prywatność wersją Map Google." - -#, no-wrap -#~ msgid "What will the money be used for?" -#~ msgstr "Na co zostaną przeznaczone te pieniądze?" - -#~ msgid "We pay for fast servers, so anyone in the World can download free map data updates without delays. It's hundreds of terabytes monthly, and the amount is growing." -#~ msgstr "Płacimy za szybkie serwery, więc każdy na świecie może pobierać darmowe aktualizacje danych mapowych bez opóźnień. To setki terabajtów miesięcznie, a ilość ta stale rośnie." - -#~ msgid "Weekly and automated map data updates" -#~ msgstr "Cotygodniowe i automatyczne aktualizacje danych mapowych" - -#~ msgid "Bookmarks backup and sync" -#~ msgstr "Kopia zapasowa i synchronizacja zakładek" - -#~ msgid "Android Auto" -#~ msgstr "Android Auto" - -#, no-wrap -#~ msgid "" -#~ "[stripe]: https://donate.organicmaps.app/ \"Donate via Stripe\"\n" -#~ "[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" -#~ msgstr "" -#~ "[stripe]: https://donate.organicmaps.app/ \"Wesprzyj przez Stripe\"\n" -#~ "[github issues]: https://github.com/organicmaps/organicmaps/issues \"Problemy na GitHub\"\n" - #, no-wrap #~ msgid "There are different ways to donate:" #~ msgstr "Istnieją różne sposoby wsparcia:" diff --git a/po/content.pot b/po/content.pot index 88c5fde3..f9e611fa 100644 --- a/po/content.pot +++ b/po/content.pot @@ -35,21 +35,13 @@ msgstr "" #. type: Plain text #: content/_index.md #, markdown-text, no-wrap -msgid "" -"**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, drivers and cyclists based on **[OpenStreetMap][openstreetmap]** data created by the community.\n" -"It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" +msgid "**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, and cyclists based on top of crowd-sourced **[OpenStreetMap][openstreetmap]** data. It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" msgstr "" #. type: Plain text #: content/_index.md #, markdown-text, no-wrap -msgid "**Organic Maps** is one of the few applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card, and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" -msgstr "" - -#. type: Plain text -#: content/_index.md -#, markdown-text, no-wrap -msgid "> In 2023, Organic Maps [got its first million](@/news/2023-12-23/281/index.md) users. [Help us](@/donate/index.md) to scale!\n" +msgid "**Organic Maps** is one of the only applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card (by the way, your operator constantly tracks you), and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" msgstr "" #. type: Title ### @@ -121,7 +113,7 @@ msgstr "" #. type: Bullet: '- ' #: content/_index.md #, markdown-text -msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance and Android Auto" +msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance" msgstr "" #. type: Bullet: '- ' @@ -133,7 +125,7 @@ msgstr "" #. type: Bullet: '- ' #: content/_index.md #, markdown-text -msgid "Export/import bookmarks in KML/KMZ, import GPX" +msgid "Bookmarks and tracks in KML, KMZ, GPX formats" msgstr "" #. type: Bullet: '- ' @@ -433,23 +425,17 @@ msgstr "" #. type: Bullet: '- ' #: content/_index.md #, markdown-text -msgid "Follow our updates in [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." -msgstr "" - -#. type: Bullet: '- ' -#: content/_index.md -#, markdown-text -msgid "Join (or create and let us know) local communities: [Hungarian translators Matrix room](https://matrix.to/#/#organicmapstranslate_hu:matrix.org)" -msgstr "" - -#. type: Link reference -#: content/_index.md -#, no-wrap -msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)" +msgid "Follow our updates in [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." msgstr "" #. type: Plain text -#: content/_index.md content/donate/index.md content/support-us/index.md +#: content/_index.md +#, markdown-text, no-wrap +msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)\n" +msgstr "" + +#. type: Plain text +#: content/_index.md content/support-us/index.md #, markdown-text msgid "{{ references() }}" msgstr "" @@ -475,7 +461,7 @@ msgstr "" #. type: Plain text #: content/donate/index.md #, markdown-text -msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]** in **[EUR][stripe_eur], [USD][stripe_usd], [GBP][stripe_GBP], [CHF][stripe_chf], [UAH][stripe_uah], [PLN][stripe_pln]**:" +msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]**:" msgstr "" #. type: Bullet: '- ' @@ -511,91 +497,73 @@ msgstr "" #. type: Bullet: '1. ' #: content/donate/index.md #, markdown-text -msgid "Our goal is to provide a privacy-focused, fast and easy-to-use alternative to Google Maps and Apple Maps." +msgid "We rely on your donations to carry out our mission to keep Organic Maps open and free. And free from ads." msgstr "" #. type: Bullet: '2. ' #: content/donate/index.md #, markdown-text -msgid "Improving public map data for the numerous websites, apps and platforms which use OpenStreetMap, and involving more people in contributing map info is our another goal." +msgid "We are a few enthusiasts contributing in our free time, and spending our families' money on the project. We love what we do, and we love our users ❤️." msgstr "" #. type: Bullet: '3. ' #: content/donate/index.md #, markdown-text -msgid "We rely on your donations to keep Organic Maps open and free for everyone. And free from ads." -msgstr "" - -#. type: Bullet: '4. ' -#: content/donate/index.md -#, markdown-text -msgid "We love what we do, and we love our users ❤️." +msgid "With your support, we want to become a better, privacy-focused version of Google Maps." msgstr "" #. type: Title ## #: content/donate/index.md #, markdown-text, no-wrap -msgid "Why a free project needs money?" +msgid "What will the money be used for?" msgstr "" #. type: Bullet: '1. ' #: content/donate/index.md #, markdown-text -msgid "In 2023, Organic Maps got its first million users. Our servers provide free, fast and frequent map updates all over the world." +msgid "We pay for fast servers, so anyone in the World can download free map data updates without delays. It's hundreds of terabytes monthly, and the amount is growing." msgstr "" #. type: Bullet: '2. ' #: content/donate/index.md #, markdown-text -msgid "User support, bugfixing and publishing quality app updates are at the top of our priorities. There are [~2000 bug reports and feature requests on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." +msgid "User support, bugfixing, and improving the stability of the app are at the top of our priorities. There are [1800+ issues on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." msgstr "" #. type: Bullet: '3. ' #: content/donate/index.md #, markdown-text -msgid "With enough money, new features can be developed. To name a few:" +msgid "With enough money, new features can be developed faster, for example:" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md #, markdown-text -msgid "Backup and sync bookmarks and tracks" +msgid "Weekly and automated map data updates" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md #, markdown-text -msgid "GPS track recorder with GPX export" +msgid "Bookmarks backup and sync" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md #, markdown-text -msgid "Satellite imagery" +msgid "Android Auto" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md #, markdown-text -msgid "Public Transport" +msgid "GPS track recorder with GPX support" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md #, markdown-text -msgid "Traffic and accident reporting" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -#, markdown-text -msgid "Photos and Reviews" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -#, markdown-text -msgid "Map styles for different activities" +msgid "Better map styles for different activities" msgstr "" #. type: Bullet: ' - ' @@ -607,7 +575,7 @@ msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md #, markdown-text -msgid "More advanced OpenStreetMap editor" +msgid "Improve the OpenStreetMap editor" msgstr "" #. type: Bullet: ' - ' @@ -616,6 +584,12 @@ msgstr "" msgid "Better offline address search, routing, and navigation" msgstr "" +#. type: Bullet: ' - ' +#: content/donate/index.md +#, markdown-text +msgid "Public Transport" +msgstr "" + #. type: Bullet: ' - ' #: content/donate/index.md #, markdown-text @@ -631,7 +605,7 @@ msgstr "" #. type: Plain text #: content/donate/index.md #, markdown-text -msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. One-time donations are appreciated too." +msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. But you can also donate one time." msgstr "" #. type: Title ### @@ -676,6 +650,14 @@ msgstr "" msgid "Yes! There are many ways to support Organic Maps. Please see [Support Us](@/support-us/index.md) page for more details." msgstr "" +#. type: Plain text +#: content/donate/index.md +#, markdown-text, no-wrap +msgid "" +"[stripe]: https://donate.organicmaps.app/ \"Donate via Stripe\"\n" +"[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" +msgstr "" + #. type: Yaml Front Matter Hash Value: description #: content/news/_index.md #, no-wrap @@ -916,22 +898,13 @@ msgstr "" msgid "See also [data/copyright.html][copyright] file for a full list of copyright notices for Organic Maps application." msgstr "" -#. type: Link reference +#. type: Plain text #: content/terms/index.md -#, no-wrap -msgid "[github]: https://github.com/organicmaps/organicmaps" -msgstr "" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[license]: http://www.apache.org/licenses/LICENSE-2.0" -msgstr "" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html" +#, markdown-text, no-wrap +msgid "" +"[github]: https://github.com/organicmaps/organicmaps\n" +"[license]: http://www.apache.org/licenses/LICENSE-2.0\n" +"[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html\n" msgstr "" #. type: Hash Value: address @@ -952,18 +925,6 @@ msgstr "" msgid "Contact Us" msgstr "" -#. type: Hash Value: engines -#: translations.yaml -#, no-wrap -msgid "Supported TTS Engines" -msgstr "" - -#. type: Hash Value: faq-menu-title -#: translations.yaml -#, no-wrap -msgid "F.A.Q." -msgstr "" - #. type: Hash Value: install-appgallery #: translations.yaml #, no-wrap @@ -994,12 +955,6 @@ msgstr "" msgid "English" msgstr "" -#. type: Hash Value: language-word -#: translations.yaml -#, no-wrap -msgid "Language" -msgstr "" - #. type: Hash Value: name #: translations.yaml #, no-wrap diff --git a/po/content.pt-BR.po b/po/content.pt-BR.po index 9f713e3c..5de4951b 100644 --- a/po/content.pt-BR.po +++ b/po/content.pt-BR.po @@ -4,7 +4,7 @@ # FIRST AUTHOR , YEAR. # msgid "" -msgstr "Project-Id-Version: Organic Maps Website 1.0\nPO-Revision-Date: 2024-04-03 04:09+0000\nLast-Translator: Matheus Gomes Correia \nLanguage-Team: Portuguese (Brazil) \nLanguage: pt-BR\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-Forms: nplurals=2; plural=n > 1;\nX-Generator: Weblate 5.5-dev\n" +msgstr "Project-Id-Version: Organic Maps Website 1.0\nPO-Revision-Date: 2023-06-20 09:51+0000\nLast-Translator: Matheus Gomes Correia \nLanguage-Team: Portuguese (Brazil) \nLanguage: pt-BR\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-Forms: nplurals=2; plural=n > 1;\nX-Generator: Weblate 4.18.1\n" #. type: Yaml Front Matter Hash Value: description #: content/_index.md @@ -27,23 +27,15 @@ msgstr "Organic Maps: Caminhada, Ciclismo, Trilhas e Navegação Offline" #. type: Plain text #: content/_index.md #, no-wrap -msgid "" -"**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, drivers and cyclists based on **[OpenStreetMap][openstreetmap]** data created by the community.\n" -"It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" -msgstr "**Organic Maps** é um aplicativo gratuito para Android e iOS de mapas offline para viajantes, turistas, caminhantes e ciclistas baseado nos dados do **[OpenStreetMap][openstreetmap]**.\nÉ um aplicativo com foco na privacidade, sendo uma [bifurcação][fork] aberta do app **Maps.me** (anteriormente conhecido como [**MapsWithMe**][mapswithme]), mantido pelas mesmas pessoas que criaram o **MapsWithMe** em 2011.\n" +msgid "**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, and cyclists based on top of crowd-sourced **[OpenStreetMap][openstreetmap]** data. It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" +msgstr "**Organic Maps** é um aplicativo gratuito para Android e iOS de mapas offline para viajantes, turistas, caminhantes e ciclistas baseado nos dados do **[OpenStreetMap][openstreetmap]**. É um aplicativo com foco na privacidade, sendo uma [bifurcação][fork] aberta do app **Maps.me** (anteriormente conhecido como [**MapsWithMe**][mapswithme]), mantido pelas mesmas pessoas que criaram o **MapsWithMe** em 2011.\n" #. type: Plain text #: content/_index.md #, no-wrap -msgid "**Organic Maps** is one of the few applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card, and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" +msgid "**Organic Maps** is one of the only applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card (by the way, your operator constantly tracks you), and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" msgstr "**Organic Maps** é atualmente um dos poucos apps que suporta 100% das suas funcionalidades sem uma conexão ativa com a internet. Instale Organic Maps, baixe mapas, jogue fora seu chip (a propósito, sua operadora o rastreia constantemente), e faça uma viagem no fim de semana com uma única carga de bateria sem nenhum byte enviado para a rede.\n" -#. type: Plain text -#: content/_index.md -#, no-wrap -msgid "> In 2023, Organic Maps [got its first million](@/news/2023-12-23/281/index.md) users. [Help us](@/donate/index.md) to scale!\n" -msgstr "> Em 2023, Organic Maps [alcançou seu primeiro milhão de usuários](@/news/2023-12-23/281/index.md). [Ajude-nos](@/donate/index.md) a crescer!\n" - #. type: Title ### #: content/_index.md #, no-wrap @@ -103,8 +95,8 @@ msgstr "Curvas de nível, perfis de elevação, picos e encostas" #. type: Bullet: '- ' #: content/_index.md -msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance and Android Auto" -msgstr "Navegação passo a passo a pé, bicicleta e carro, com orientação por voz e Android Auto" +msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance" +msgstr "Navegação passo a passo a pé, bicicleta e carro, com orientação por voz" #. type: Bullet: '- ' #: content/_index.md @@ -113,8 +105,8 @@ msgstr "Busca rápida offline no mapa" #. type: Bullet: '- ' #: content/_index.md -msgid "Export/import bookmarks in KML/KMZ, import GPX" -msgstr "Exportação e importação de marcadores nos formatos KML/KMZ, importação GPX" +msgid "Bookmarks and tracks in KML, KMZ, GPX formats" +msgstr "Exportação e importação de marcadores nos formatos KML/KMZ (GPX é [planejado][gpx_issue])" #. type: Bullet: '- ' #: content/_index.md @@ -224,11 +216,13 @@ msgstr "{{ exodus_screenshot() }}" #. type: Plain text #: content/_index.md +#, markdown-text msgid "The iOS application is verified by [TrackerControl for iOS][trackercontrol]:" -msgstr "A versão iOS é verificada por [TrackerControl para iOS][trackercontrol]:" +msgstr "A versão iOS é verificada por [TrackerControl for iOS][trackercontrol]:" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ trackercontrol_screenshot() }}" msgstr "{{ trackercontrol_screenshot() }}" @@ -368,22 +362,17 @@ msgstr "Visite nossa [página no GitHub][github]." #. type: Bullet: '- ' #: content/_index.md -msgid "Follow our updates in [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." -msgstr "Siga nossas atualizações no [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit] e [LinkedIn][LinkedIn]." - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Join (or create and let us know) local communities: [Hungarian translators Matrix room](https://matrix.to/#/#organicmapstranslate_hu:matrix.org)" -msgstr "Junte-se (ou crie e nos diga) às comunidades locais: [Sala Matrix de tradutores de húngaro](https://matrix.to/#/#organicmapstranslate_hu:matrix.org)" - -#. type: Link reference -#: content/_index.md -#, no-wrap -msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)" -msgstr "[fork]: https://pt.wikipedia.org/wiki/Bifurcação_(desenvolvimento_de_software)" +msgid "Follow our updates in [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." +msgstr "Siga nossas atualizações no [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit] e [LinkedIn][LinkedIn]." #. type: Plain text -#: content/_index.md content/donate/index.md content/support-us/index.md +#: content/_index.md +#, no-wrap +msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)\n" +msgstr "[fork]: https://pt.wikipedia.org/wiki/Bifurcação_(desenvolvimento_de_software)\n" + +#. type: Plain text +#: content/_index.md content/support-us/index.md msgid "{{ references() }}" msgstr "{{ references() }}" @@ -407,7 +396,7 @@ msgstr "Doe para apoiar o desenvolvimento do Organic Maps" #. type: Plain text #: content/donate/index.md -msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]** in **[EUR][stripe_eur], [USD][stripe_usd], [GBP][stripe_GBP], [CHF][stripe_chf], [UAH][stripe_uah], [PLN][stripe_pln]**:" +msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]**:" msgstr "O app Organic Maps é _gratuito para todos_ graças as suas **[doações][stripe]**:" #. type: Bullet: '- ' @@ -438,78 +427,63 @@ msgstr "Por que doar para Organic Maps?" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "Our goal is to provide a privacy-focused, fast and easy-to-use alternative to Google Maps and Apple Maps." -msgstr "Nosso objetivo é oferecer uma alternativa ao Google Maps e Apple Maps centrada na privacidade, rápida e fácil de usar." +msgid "We rely on your donations to carry out our mission to keep Organic Maps open and free. And free from ads." +msgstr "Contamos com suas doações para cumprir nossa missão de manter o Organic Maps aberto e livre. E livre de anúncios." #. type: Bullet: '2. ' #: content/donate/index.md -msgid "Improving public map data for the numerous websites, apps and platforms which use OpenStreetMap, and involving more people in contributing map info is our another goal." -msgstr "Outro dos nossos objetivos é melhorar os dados dos mapas públicos para os vários sites, apps e plataformas que utilizam OpenStreetMap, e envolver mais pessoas na contribuição para os mapas." +msgid "We are a few enthusiasts contributing in our free time, and spending our families' money on the project. We love what we do, and we love our users ❤️." +msgstr "Somos alguns entusiastas contribuindo em nosso tempo livre e gastando o dinheiro de nossas famílias no projeto. Adoramos o que fazemos e nossos usuários ❤️." #. type: Bullet: '3. ' #: content/donate/index.md -msgid "We rely on your donations to keep Organic Maps open and free for everyone. And free from ads." -msgstr "Contamos com suas doações para cumprir nossa missão de manter o Organic Maps aberto e livre. E livre de anúncios." - -#. type: Bullet: '4. ' -#: content/donate/index.md -msgid "We love what we do, and we love our users ❤️." -msgstr "A gente ama o que faz e amamos nossos usuários ❤️." +msgid "With your support, we want to become a better, privacy-focused version of Google Maps." +msgstr "Com seu apoio, queremos nos tornar uma versão melhor e focada na privacidade do Google Maps." #. type: Title ## #: content/donate/index.md #, no-wrap -msgid "Why a free project needs money?" -msgstr "Por que um projeto gratuito precisa de dinheiro?" +msgid "What will the money be used for?" +msgstr "Para que será usado o dinheiro?" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "In 2023, Organic Maps got its first million users. Our servers provide free, fast and frequent map updates all over the world." -msgstr "Em 2023, Organic Maps conseguiu seu primeiro milhão de usuários. Nossos servidores proporcionam atualizações de mapas gratuitas, rápidas e frequentes no mundo todo." +msgid "We pay for fast servers, so anyone in the World can download free map data updates without delays. It's hundreds of terabytes monthly, and the amount is growing." +msgstr "Pagamos por servidores rápidos, para que qualquer pessoa no mundo possa baixar gratuitamente as atualizações de dados do mapa sem atrasos. São centenas de terabytes por mês, que cresce mais e mais." #. type: Bullet: '2. ' #: content/donate/index.md -msgid "User support, bugfixing and publishing quality app updates are at the top of our priorities. There are [~2000 bug reports and feature requests on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." +msgid "User support, bugfixing, and improving the stability of the app are at the top of our priorities. There are [1800+ issues on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." msgstr "Suporte ao usuário, correção de erros e melhoria da estabilidade do app estão no topo de nossas prioridades. Existem [mais de 1800 problemas no GitHub][github issues], e este número está crescendo a cada dia. AppStore, Google Play, e e-mails de suporte estão sobrecarregados com comentários e erros. Queremos entregar um produto de alta qualidade." #. type: Bullet: '3. ' #: content/donate/index.md -msgid "With enough money, new features can be developed. To name a few:" +msgid "With enough money, new features can be developed faster, for example:" msgstr "Com dinheiro suficiente, novos recursos podem ser desenvolvidos mais rapidamente, por exemplo:" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Backup and sync bookmarks and tracks" -msgstr "Cópia de segurança e sincronização de favoritos e trilhas" +msgid "Weekly and automated map data updates" +msgstr "Atualizações semanais e automatizadas dos dados do mapa" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "GPS track recorder with GPX export" +msgid "Bookmarks backup and sync" +msgstr "Backup e sincronização de marcadores" + +#. type: Bullet: ' - ' +#: content/donate/index.md +msgid "Android Auto" +msgstr "Android Auto" + +#. type: Bullet: ' - ' +#: content/donate/index.md +msgid "GPS track recorder with GPX support" msgstr "Gravador de trilhas GPS com suporte a GPX" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Satellite imagery" -msgstr "Imagens por satélite" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Public Transport" -msgstr "Transporte público" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Traffic and accident reporting" -msgstr "Informação sobre tráfego e acidentes" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Photos and Reviews" -msgstr "Fotos e avaliações" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Map styles for different activities" +msgid "Better map styles for different activities" msgstr "Melhores estilos de mapas para diferentes atividades" #. type: Bullet: ' - ' @@ -519,7 +493,7 @@ msgstr "Relevo e terreno 3D" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "More advanced OpenStreetMap editor" +msgid "Improve the OpenStreetMap editor" msgstr "Melhorar o editor do OpenStreetMap" #. type: Bullet: ' - ' @@ -527,6 +501,11 @@ msgstr "Melhorar o editor do OpenStreetMap" msgid "Better offline address search, routing, and navigation" msgstr "Melhor busca de endereços offline, roteamento e navegação" +#. type: Bullet: ' - ' +#: content/donate/index.md +msgid "Public Transport" +msgstr "Transporte público" + #. type: Bullet: ' - ' #: content/donate/index.md msgid "… and [many other][github issues] features you want and love" @@ -540,7 +519,7 @@ msgstr "Como doar?" #. type: Plain text #: content/donate/index.md -msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. One-time donations are appreciated too." +msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. But you can also donate one time." msgstr "Doações recorrentes são a melhor maneira de garantir uma renda relativamente estável para o projeto e nos motivar para tarefas e objetivos de longo prazo. Mas você também pode doar uma única vez." #. type: Title ### @@ -581,6 +560,16 @@ msgstr "Você pode nos ajudar de qualquer outra forma?" msgid "Yes! There are many ways to support Organic Maps. Please see [Support Us](@/support-us/index.md) page for more details." msgstr "Sim! Há muitas maneiras de apoiar o Organic Maps. Por favor, consulte a página [Apoie-nos](@/support-us/index.pt-BR.md) para mais detalhes." +#. type: Plain text +#: content/donate/index.md +#, no-wrap +msgid "" +"[stripe]: https://donate.organicmaps.app/ \"Donate via Stripe\"\n" +"[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" +msgstr "" +"[stripe]: https://donate.organicmaps.app/ \"Doe via Stripe\"\n" +"[github issues]: https://github.com/organicmaps/organicmaps/issues \"Problemas do GitHub\"\n" + #. type: Yaml Front Matter Hash Value: description #: content/news/_index.md #, no-wrap @@ -794,23 +783,17 @@ msgstr "Favor consultar seus arquivos de LICENÇA, CÓPIA ou AVISO para os termo msgid "See also [data/copyright.html][copyright] file for a full list of copyright notices for Organic Maps application." msgstr "Veja também o arquivo [data/copyright.html][copyright] para uma lista completa de avisos de copyright para o app Organic Maps." -#. type: Link reference +#. type: Plain text #: content/terms/index.md #, no-wrap -msgid "[github]: https://github.com/organicmaps/organicmaps" -msgstr "[github]: https://github.com/organicmaps/organicmaps" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[license]: http://www.apache.org/licenses/LICENSE-2.0" -msgstr "[license]: http://www.apache.org/licenses/LICENSE-2.0" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html" -msgstr "[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html" +msgid "" +"[github]: https://github.com/organicmaps/organicmaps\n" +"[license]: http://www.apache.org/licenses/LICENSE-2.0\n" +"[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html\n" +msgstr "" +"[github]: https://github.com/organicmaps/organicmaps\n" +"[license]: http://www.apache.org/licenses/LICENSE-2.0\n" +"[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html\n" #. type: Hash Value: address #: translations.yaml @@ -830,18 +813,6 @@ msgstr "Voltar às Notícias" msgid "Contact Us" msgstr "Contate-nos" -#. type: Hash Value: engines -#: translations.yaml -#, no-wrap -msgid "Supported TTS Engines" -msgstr "Compatibilidade com TTS" - -#. type: Hash Value: faq-menu-title -#: translations.yaml -#, no-wrap -msgid "F.A.Q." -msgstr "Perguntas frequentes" - #. type: Hash Value: install-appgallery #: translations.yaml #, no-wrap @@ -870,13 +841,7 @@ msgstr "Instale Organic Maps a partir da Google Play" #: translations.yaml #, no-wrap msgid "English" -msgstr "Português (Brasil)" - -#. type: Hash Value: language-word -#: translations.yaml -#, no-wrap -msgid "Language" -msgstr "Idioma" +msgstr "Português (Brazil)" #. type: Hash Value: name #: translations.yaml @@ -890,39 +855,6 @@ msgstr "Nome" msgid "Token" msgstr "Token" -#~ msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]**:" -#~ msgstr "O app Organic Maps é _gratuito para todos_ graças as suas **[doações][stripe]**:" - -#~ msgid "We are a few enthusiasts contributing in our free time, and spending our families' money on the project. We love what we do, and we love our users ❤️." -#~ msgstr "Somos alguns entusiastas contribuindo em nosso tempo livre e gastando o dinheiro de nossas famílias no projeto. Adoramos o que fazemos e nossos usuários ❤️." - -#~ msgid "With your support, we want to become a better, privacy-focused version of Google Maps." -#~ msgstr "Com seu apoio, queremos nos tornar uma versão melhor e focada na privacidade do Google Maps." - -#, no-wrap -#~ msgid "What will the money be used for?" -#~ msgstr "Para que será usado o dinheiro?" - -#~ msgid "We pay for fast servers, so anyone in the World can download free map data updates without delays. It's hundreds of terabytes monthly, and the amount is growing." -#~ msgstr "Pagamos por servidores rápidos, para que qualquer pessoa no mundo possa baixar gratuitamente as atualizações de dados do mapa sem atrasos. São centenas de terabytes por mês, que cresce mais e mais." - -#~ msgid "Weekly and automated map data updates" -#~ msgstr "Atualizações semanais e automatizadas dos dados do mapa" - -#~ msgid "Bookmarks backup and sync" -#~ msgstr "Backup e sincronização de marcadores" - -#~ msgid "Android Auto" -#~ msgstr "Android Auto" - -#, no-wrap -#~ msgid "" -#~ "[stripe]: https://donate.organicmaps.app/ \"Donate via Stripe\"\n" -#~ "[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" -#~ msgstr "" -#~ "[stripe]: https://donate.organicmaps.app/ \"Doe via Stripe\"\n" -#~ "[github issues]: https://github.com/organicmaps/organicmaps/issues \"Problemas do GitHub\"\n" - #, no-wrap #~ msgid "There are different ways to donate:" #~ msgstr "Há diferentes maneiras de doar:" diff --git a/po/content.pt.po b/po/content.pt.po deleted file mode 100644 index 5c58d935..00000000 --- a/po/content.pt.po +++ /dev/null @@ -1,924 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Organic Maps -# This file is distributed under the same license as the Organic Maps Website package. -# FIRST AUTHOR , YEAR. -# -msgid "" -msgstr "Project-Id-Version: Organic Maps Website 1.0\nPO-Revision-Date: 2024-04-02 19:54+0000\nLast-Translator: Weblate Translation Memory \nLanguage-Team: Portuguese \nLanguage: pt\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-Forms: nplurals=2; plural=n > 1;\nX-Generator: Weblate 5.5-dev\n" - -#. type: Yaml Front Matter Hash Value: description -#: content/_index.md -#, no-wrap -msgid "Fast detailed offline maps for travelers, tourists, drivers, hikers and cyclists created by MapsWithMe (Maps.Me) app founders." -msgstr "Mapas offline detalhados e rápidos para viajantes, turistas, condutores, caminhantes e ciclistas criados pelos fundadores da aplicação MapsWithMe (Maps.Me)." - -#. type: Yaml Front Matter Hash Value: extra menu_title -#: content/_index.md -#, no-wrap -msgid "Home" -msgstr "Início" - -#. type: Yaml Front Matter Hash Value: title -#: content/_index.md -#, no-wrap -msgid "Organic Maps: Offline Hike, Bike, Trails and Navigation" -msgstr "Mapas orgânicos: caminhada, ciclismo, trilhos e navegação offline" - -#. type: Plain text -#: content/_index.md -#, no-wrap -msgid "" -"**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, drivers and cyclists based on **[OpenStreetMap][openstreetmap]** data created by the community.\n" -"It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" -msgstr "**Organic Maps** é uma aplicação gratuita para Android e iOS de mapas offline para viajantes, turistas, caminhantes e ciclistas baseado nos dados do **[OpenStreetMap][openstreetmap]**. É uma aplicação com foco na privacidade, sendo uma [bifurcação][fork] aberta da aplicação **Maps.me** (anteriormente conhecida como [**MapsWithMe**][mapswithme]), mantida pelas mesmas pessoas que criaram o **MapsWithMe** em 2011.\n" - -#. type: Plain text -#: content/_index.md -#, no-wrap -msgid "**Organic Maps** is one of the few applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card, and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" -msgstr "**Organic Maps** é atualmente uma das poucas aplicações que suporta 100% das suas funcionalidades sem uma conexão ativa com a Internet. Instale o Organic Maps, descarregue mapas, deixe de lado o seu cartão SIM (a propósito, o seu operador segue-o constantemente) e faça uma viagem de uma semana com uma única carga de bateria sem qualquer byte enviado para a rede.\n" - -#. type: Plain text -#: content/_index.md -#, no-wrap -msgid "> In 2023, Organic Maps [got its first million](@/news/2023-12-23/281/index.md) users. [Help us](@/donate/index.md) to scale!\n" -msgstr "" - -#. type: Title ### -#: content/_index.md -#, no-wrap -msgid "Download and install Organic Maps from [AppStore][appstore], [Google Play][googleplay], [FDroid][fdroid], [Huawei AppGallery][appgallery] {#install}" -msgstr "Descarregue e instale o Organic Maps a partir da [AppStore][appstore], [Google Play][googleplay], [FDroid][fdroid], [Huawei AppGallery][appgallery] {#install}" - -#. type: Plain text -#: content/_index.md -msgid "{{ badges() }}" -msgstr "{{ badges() }}" - -#. type: Plain text -#: content/_index.md -msgid "{{ screenshot(src='/images/screenshots/hiking.jpg', alt='Hiking') }}" -msgstr "{{ screenshot(src='/images/screenshots/hiking.jpg', alt='Caminhada') }}" - -#. type: Plain text -#: content/_index.md -msgid "{{ screenshot(src='/images/screenshots/prague.jpg', alt='Prague') }}" -msgstr "{{ screenshot(src='/images/screenshots/prague.jpg', alt='Praga') }}" - -#. type: Plain text -#: content/_index.md -msgid "{{ screenshot(src='/images/screenshots/search.jpg', alt='Offline Search') }}" -msgstr "{{ screenshot(src='/images/screenshots/search.jpg', alt='Pesquisa offline') }}" - -#. type: Plain text -#: content/_index.md -msgid "{{ screenshot(src='/images/screenshots/dark.jpg', alt='Navigation in dark mode') }}" -msgstr "{{ screenshot(src='/images/screenshots/dark.jpg', alt='Navegação em modo escuro') }}" - -#. type: Title ## -#: content/_index.md -#, no-wrap -msgid "Features" -msgstr "Funcionalidades" - -#. type: Plain text -#: content/_index.md -msgid "Organic Maps is the ultimate companion app for travelers, tourists, hikers, and cyclists:" -msgstr "O Organic Maps é a aplicação ideal para viajantes, turistas, caminhantes e ciclistas:" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Detailed offline maps with places that don't exist on other maps, thanks to [OpenStreetMap][openstreetmap]" -msgstr "Mapas offline detalhados com locais que não existem noutros mapas, graças ao [OpenStreetMap][openstreetmap]" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Cycling routes, hiking trails, and walking paths" -msgstr "Rotas de ciclismo, trilhos para caminhadas e caminhos para pedestres" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Contour lines, elevation profiles, peaks, and slopes" -msgstr "Curvas de nível, perfis de elevação, picos e encostas" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance and Android Auto" -msgstr "Navegação passo a passo para peões, ciclistas e automóveis com orientação por voz e Android Auto" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Fast offline search on the map" -msgstr "Pesquisa rápida offline no mapa" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Export/import bookmarks in KML/KMZ, import GPX" -msgstr "Exportação e importação de marcadores nos formatos KML/KMZ, importação GPX" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Dark Mode to protect your eyes" -msgstr "Modo escuro para proteger os seus olhos" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Countries and regions don't take a lot of space" -msgstr "Os dados de países e regiões inteiras não ocupam muito espaço" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Free and open-source" -msgstr "Livre e de código aberto" - -#. type: Title ## -#: content/_index.md -#, no-wrap -msgid "Why Organic?" -msgstr "Porquê orgânico?" - -#. type: Plain text -#: content/_index.md -msgid "Organic Maps is pure and organic, made with love:" -msgstr "O Organic Maps é puro e orgânico, feito com amor:" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Respects your privacy" -msgstr "Respeita a sua privacidade" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Saves your battery" -msgstr "Economiza a sua bateria" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "No unexpected mobile data charges" -msgstr "Sem custos inesperados de dados móveis" - -#. type: Plain text -#: content/_index.md -msgid "Organic Maps app is free from trackers and other bad stuff:" -msgstr "A aplicação Organic Maps não tem rastreadores de terceiros nem outras coisas más:" - -#. type: Bullet: '- ' -#: content/_index.md content/donate/index.md -msgid "No ads" -msgstr "Sem anúncios" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "No tracking" -msgstr "Sem deixar rasto" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "No data collection" -msgstr "Sem recolha de dados" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "No phoning home" -msgstr "Sem conexões para servidores externos" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "No annoying registration" -msgstr "Sem registos desnecessários e irritantes" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "No mandatory tutorials" -msgstr "Sem tutoriais obrigatórios" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "No noisy email spam" -msgstr "Sem lixo eletrónico enviado para o email" - -#. type: Bullet: '- ' -#: content/_index.md content/donate/index.md -msgid "No push notifications" -msgstr "Sem notificações" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "No crapware" -msgstr "Sem crapware (software pré-instalado indesejado)" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "~~No pesticides~~ Purely organic!" -msgstr "~~Sem pesticidas~~ Puramente orgânico!" - -#. type: Plain text -#: content/_index.md -msgid "The application is verified by [Exodus Privacy Project][exodus]:" -msgstr "A aplicação é verificada pelo [Projeto Exodus Privacy][exodus]:" - -#. type: Plain text -#: content/_index.md -msgid "{{ exodus_screenshot() }}" -msgstr "{{ exodus_screenshot() }}" - -#. type: Plain text -#: content/_index.md -msgid "The iOS application is verified by [TrackerControl for iOS][trackercontrol]:" -msgstr "A versão iOS é verificada pelo [TrackerControl para iOS][trackercontrol]:" - -#. type: Plain text -#: content/_index.md -msgid "{{ trackercontrol_screenshot() }}" -msgstr "{{ trackercontrol_screenshot() }}" - -#. type: Plain text -#: content/_index.md -msgid "Organic Maps doesn't request excessive permissions to spy on you:" -msgstr "O Organic Maps não solicita permissões excessivas para espiá-lo:" - -#. type: Plain text -#: content/_index.md -msgid "{{ privacy_screenshots() }}" -msgstr "{{ privacy_screenshots() }}" - -#. type: Plain text -#: content/_index.md -msgid "At Organic Maps, we believe that privacy is a fundamental human right:" -msgstr "No Organic Maps, acreditamos que a privacidade é um direito humano fundamental:" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Organic Maps is an indie community-driven open-source project" -msgstr "O Organic Maps é um projeto independente de código aberto orientado para a comunidade" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "We protect your privacy from Big Tech's prying eyes" -msgstr "Protegemos a sua privacidade dos olhos curiosos das grandes empresas" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Stay safe no matter wherever you are" -msgstr "Fique protegido, não importa onde esteja" - -#. type: Plain text -#: content/_index.md content/privacy/index.md -msgid "Reject surveillance - embrace your freedom." -msgstr "Rejeite a vigilância - abrace a sua liberdade." - -#. type: Plain text -#: content/_index.md -#, no-wrap -msgid "**[Give Organic Maps a try!](#install)**\n" -msgstr "**[Experimente o Organic Maps!](#install)**\n" - -#. type: Title ## -#: content/_index.md -#, no-wrap -msgid "Who is paying for the free app?" -msgstr "Quem está a pagar pela aplicação gratuita?" - -#. type: Plain text -#: content/_index.md -msgid "The app is free for everyone. Please [donate](@/donate/index.md) to support us!" -msgstr "A aplicação é gratuita para todos. Por favor, [faça mm donativo](@/donate/index.md) para nos apoiar!" - -#. type: Plain text -#: content/_index.md -msgid "To donate conveniently, click on your preferred payment method icon below:" -msgstr "Para fazer um donativo de forma cómoda, clique no ícone do seu método de pagamento preferido abaixo:" - -#. type: Plain text -#: content/_index.md content/donate/index.md -msgid "{{ donate_buttons() }}" -msgstr "{{ donate_buttons() }}" - -#. type: Title ### -#: content/_index.md -#, no-wrap -msgid "Our sponsors:" -msgstr "Os nossos patrocinadores:" - -#. type: Plain text -#: content/_index.md -msgid "[Mythic Beasts](https://www.mythic-beasts.com/) ISP [provides us][mythic_beasts_donation] two virtual servers with 400 TB/month of free bandwidth to help our users with maps downloads and updates." -msgstr "O fornecedor de Internet [Mythic Beasts](https://www.mythic-beasts.com/) [fornece-nos][mythic_beasts_donation] dois servidores virtuais com 400 TB/mês de largura de banda gratuita para ajudar os nossos utilizadores a descarregar e atualizar os mapas." - -#. type: Title ## -#: content/_index.md -#, no-wrap -msgid "Community" -msgstr "Comunidade" - -#. type: Plain text -#: content/_index.md -msgid "Organic Maps is an [open-source software][github] licensed under the Apache License 2.0." -msgstr "O Organic Maps é um [software de código aberto][github] licenciado sob a Licença Apache 2.0." - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Please join our beta program, suggest your features, and report bugs:" -msgstr "Por favor, junte-se ao nosso programa beta, faça sugestões e reporte erros:" - -#. type: Bullet: ' * ' -#: content/_index.md -msgid "[iOS Beta (TestFlight)][testflight]" -msgstr "[Beta iOS (TestFlight)][testflight]" - -#. type: Bullet: ' * ' -#: content/_index.md -msgid "[Android Beta (Firebase)][firebase]" -msgstr "[Beta Android (Firebase)][firebase]" - -#. type: Bullet: ' * ' -#: content/_index.md -msgid "[Linux Desktop Beta (Flatpak)][flatpak]" -msgstr "[Beta PC Linux (Flatpak)][flatpak]" - -#. type: Bullet: ' * ' -#: content/_index.md -msgid "[Linux Desktop Beta (packages)][repology]" -msgstr "[Beta PC Linux (pacotes)][repology]" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Report bugs or issues to [the issue tracker][issues] or [email us][email]." -msgstr "Reporte erros ou problemas no [rastreador de problemas][issues] ou por [e-mail][email]." - -#. type: Bullet: '- ' -#: content/_index.md -msgid "[Discuss][ideas] ideas or propose feature requests." -msgstr "[Discuta][ideas] ideias ou proponha novas funcionalidades." - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Subscribe to our [Telegram Channel][telegram] or to the [matrix space][matrix] for updates." -msgstr "Inscreva-se no nosso [canal do Telegram][telegram] ou no [espaço matrix][matrix] para receber notícias." - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Join our [Telegram Group][telegram_chat] to discuss with other users." -msgstr "Junte-se ao nosso [grupo do Telegram][telegram_chat] para conversar com outros utilizadores." - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Visit our [GitHub page][github]." -msgstr "Visite a nossa [página no GitHub][github]." - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Follow our updates in [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." -msgstr "Siga as nossas atualizações no [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit] e [LinkedIn][LinkedIn]." - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Join (or create and let us know) local communities: [Hungarian translators Matrix room](https://matrix.to/#/#organicmapstranslate_hu:matrix.org)" -msgstr "" - -#. type: Link reference -#: content/_index.md -#, no-wrap -msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)" -msgstr "[fork]: https://pt.wikipedia.org/wiki/Bifurcação_(desenvolvimento_de_software)" - -#. type: Plain text -#: content/_index.md content/donate/index.md content/support-us/index.md -msgid "{{ references() }}" -msgstr "{{ references() }}" - -#. type: Yaml Front Matter Hash Value: description -#: content/donate/index.md -#, no-wrap -msgid "Your money pays for all project-related expenses and motivates us to improve Organic Maps." -msgstr "O seu dinheiro paga todas as despesas relacionadas com o projeto e motiva-nos a melhorar o Organic Maps." - -#. type: Yaml Front Matter Hash Value: extra menu_title -#: content/donate/index.md -#, no-wrap -msgid "Donate" -msgstr "Doar" - -#. type: Yaml Front Matter Hash Value: title -#: content/donate/index.md -#, no-wrap -msgid "Donate to support the development of Organic Maps" -msgstr "Faça uma doação para apoiar o desenvolvimento do Organic Maps" - -#. type: Plain text -#: content/donate/index.md -msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]** in **[EUR][stripe_eur], [USD][stripe_usd], [GBP][stripe_GBP], [CHF][stripe_chf], [UAH][stripe_uah], [PLN][stripe_pln]**:" -msgstr "O app Organic Maps é _gratuito para todos_ graças as suas **[doações][stripe]**:" - -#. type: Bullet: '- ' -#: content/donate/index.md -msgid "No trackers" -msgstr "Sem rastreadores" - -#. type: Bullet: '- ' -#: content/donate/index.md -msgid "No registration" -msgstr "Sem registo" - -#. type: Bullet: '- ' -#: content/donate/index.md -msgid "Open source" -msgstr "Código-fonte aberto" - -#. type: Plain text -#: content/donate/index.md -msgid "Click on your preferred payment method icon below:" -msgstr "Clique no ícone do seu método de pagamento preferido abaixo:" - -#. type: Title ## -#: content/donate/index.md -#, no-wrap -msgid "Why donate to Organic Maps?" -msgstr "Porquê doar ao Organic Maps?" - -#. type: Bullet: '1. ' -#: content/donate/index.md -msgid "Our goal is to provide a privacy-focused, fast and easy-to-use alternative to Google Maps and Apple Maps." -msgstr "" - -#. type: Bullet: '2. ' -#: content/donate/index.md -msgid "Improving public map data for the numerous websites, apps and platforms which use OpenStreetMap, and involving more people in contributing map info is our another goal." -msgstr "" - -#. type: Bullet: '3. ' -#: content/donate/index.md -msgid "We rely on your donations to keep Organic Maps open and free for everyone. And free from ads." -msgstr "Contamos com os vossos donativos para levar a cabo a nossa missão de manter os Mapas Orgânicos abertos e livres. E livre de anúncios." - -#. type: Bullet: '4. ' -#: content/donate/index.md -msgid "We love what we do, and we love our users ❤️." -msgstr "" - -#. type: Title ## -#: content/donate/index.md -#, no-wrap -msgid "Why a free project needs money?" -msgstr "" - -#. type: Bullet: '1. ' -#: content/donate/index.md -msgid "In 2023, Organic Maps got its first million users. Our servers provide free, fast and frequent map updates all over the world." -msgstr "" - -#. type: Bullet: '2. ' -#: content/donate/index.md -msgid "User support, bugfixing and publishing quality app updates are at the top of our priorities. There are [~2000 bug reports and feature requests on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." -msgstr "O apoio ao utilizador, a correção de erros e a melhoria da estabilidade da aplicação estão no topo das nossas prioridades. Existem [mais de 1800 problemas no GitHub][github issues], e este número está a aumentar todos os dias. A AppStore, o Google Play e os e-mails de apoio estão inundados de comentários e erros. Queremos fornecer um produto de alta qualidade." - -#. type: Bullet: '3. ' -#: content/donate/index.md -msgid "With enough money, new features can be developed. To name a few:" -msgstr "Com dinheiro suficiente, as novas funcionalidades podem ser desenvolvidas mais rapidamente, por exemplo:" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Backup and sync bookmarks and tracks" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "GPS track recorder with GPX export" -msgstr "Gravador de trajetos GPS com suporte de GPX" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Satellite imagery" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Public Transport" -msgstr "Transporte público" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Traffic and accident reporting" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Photos and Reviews" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Map styles for different activities" -msgstr "Melhores estilos de mapas para diferentes atividades" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Hill shading and 3D terrain" -msgstr "Sombreamento de colinas e terreno 3D" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "More advanced OpenStreetMap editor" -msgstr "Melhorar o editor do OpenStreetMap" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Better offline address search, routing, and navigation" -msgstr "Melhor pesquisa de endereços offline, roteamento e navegação" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "… and [many other][github issues] features you want and love" -msgstr "... e [muitas outras][github issues] funcionalidades que deseja e adora" - -#. type: Title ## -#: content/donate/index.md -#, no-wrap -msgid "How to donate?" -msgstr "Como fazer um donativo?" - -#. type: Plain text -#: content/donate/index.md -msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. One-time donations are appreciated too." -msgstr "Os donativos recorrentes são a melhor forma de garantir um rendimento relativamente estável para o projeto e de nos motivar para tarefas e objetivos a longo prazo. Mas também pode fazer um donativo único." - -#. type: Title ### -#: content/donate/index.md -#, no-wrap -msgid "Bank Transfer" -msgstr "Transferência bancária" - -#. type: Plain text -#: content/donate/index.md -msgid "{{ bank_transfer() }}" -msgstr "{{ bank_transfer() }}" - -#. type: Title ### -#: content/donate/index.md -#, no-wrap -msgid "Crypto" -msgstr "Criptomoeda" - -#. type: Plain text -#: content/donate/index.md -msgid "Please consider donating annually to reduce total fees." -msgstr "Considere a possibilidade de efetuar um donativo anual para reduzir as taxas totais." - -#. type: Plain text -#: content/donate/index.md -msgid "{{ crypto_table() }}" -msgstr "{{ crypto_table() }}" - -#. type: Title ## -#: content/donate/index.md -#, no-wrap -msgid "Can you help us in any other way?" -msgstr "Pode ajudar-nos de outra forma?" - -#. type: Plain text -#: content/donate/index.md -msgid "Yes! There are many ways to support Organic Maps. Please see [Support Us](@/support-us/index.md) page for more details." -msgstr "Sim! Há muitas maneiras de apoiar o Organic Maps. Por favor, consulte a página [Apoie-nos](@/support-us/index.pt.md) para mais detalhes." - -#. type: Yaml Front Matter Hash Value: description -#: content/news/_index.md -#, no-wrap -msgid "Stay in touch with the latest Organic Maps releases, news and updates from our team" -msgstr "Mantenha-se informado com os últimos lançamentos, notícias e atualizações do Organic Maps" - -#. type: Yaml Front Matter Hash Value: extra menu_title -#: content/news/_index.md -#, no-wrap -msgid "News" -msgstr "Notícias" - -#. type: Yaml Front Matter Hash Value: title -#: content/news/_index.md -#, no-wrap -msgid "Organic Maps: Latest news and updates from our team" -msgstr "Organic Maps: últimas notícias e atualizações" - -#. type: Yaml Front Matter Hash Value: description -#: content/privacy/index.md -#, no-wrap -msgid "No tracking, no ads, no data collection, no statistics collection, no spyware" -msgstr "Sem rastreamento, sem anúncios, sem recolha de dados, sem recolha de estatísticas, sem \"spyware\"" - -#. type: Yaml Front Matter Hash Value: extra menu_title -#: content/privacy/index.md -#, no-wrap -msgid "Privacy" -msgstr "Privacidade" - -#. type: Yaml Front Matter Hash Value: title -#: content/privacy/index.md -#, no-wrap -msgid "Organic Maps: Privacy Policy" -msgstr "Organic Maps: política de privacidade" - -#. type: Plain text -#: content/privacy/index.md -msgid "Organic Maps respects your privacy and DOES NOT TRACK YOU." -msgstr "O Organic Maps respeita a sua privacidade e NÃO O RASTREIA." - -#. type: Plain text -#: content/privacy/index.md -msgid "Unlike most other applications, there is no tracking, no ads, no spyware, no data and statistics collection in Organic Maps." -msgstr "Ao contrário da maioria das outras aplicações, o Organic Maps não faz rastreio, não tem anúncios, não tem spyware, não recolhe dados nem estatísticas." - -#. type: Plain text -#: content/privacy/index.md -msgid "Stay away from Big Tech's prying eyes!" -msgstr "Fique longe dos olhos curiosos das grandes empresas!" - -#. type: Plain text -#: content/privacy/index.md content/terms/index.md -msgid "If you have any questions or suggestions, please contact us at [legal@organicmaps.app](mailto:legal@organicmaps.app)." -msgstr "Se tiver alguma dúvida ou sugestão, por favor entre em contacto connosco em [legal@organicmaps.app](mailto:legal@organicmaps.app)." - -#. type: Plain text -#: content/privacy/index.md -#, no-wrap -msgid "This policy is effective as of 2021-04-24.\n" -msgstr "Esta política é efetiva a partir de 2021-04-24.\n" - -#. type: Yaml Front Matter Hash Value: description -#: content/support-us/index.md -#, no-wrap -msgid "Different ways to support the development of our free application" -msgstr "Diferentes formas de apoiar o desenvolvimento da nossa aplicação gratuita" - -#. type: Yaml Front Matter Hash Value: extra menu_title -#: content/support-us/index.md -#, no-wrap -msgid "Support Us" -msgstr "Apoie-nos" - -#. type: Yaml Front Matter Hash Value: title -#: content/support-us/index.md -#, no-wrap -msgid "Support the development of Organic Maps" -msgstr "Apoie o desenvolvimento do Organic Maps" - -#. type: Plain text -#: content/support-us/index.md -msgid "Organic Maps is a free, open-source app. It is free from ads, it does not collect your personal information, and it is developed by a few enthusiasts with the help of the community." -msgstr "O Organic Maps é uma aplicação gratuita e de código aberto. Não tem anúncios, não recolhe as suas informações pessoais e é desenvolvida por alguns entusiastas com a ajuda da comunidade." - -#. type: Plain text -#: content/support-us/index.md -msgid "There are different ways to support the development:" -msgstr "Existem diferentes formas de apoiar o desenvolvimento:" - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "[Donate](@/donate/index.md)! Every dollar or euro counts and helps us to pay for servers and scale." -msgstr "[Doar](@/donate/index.md)! Cada dólar ou euro conta e ajuda-nos a pagar os servidores e o desenvolvimento." - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "Report bugs and share ideas on our [GitHub][github] or via [email][email]." -msgstr "Reporte erros e partilhe ideias no [GitHub][github] ou por [email][email]." - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "Help us to [fix bugs][contributing] and do code reviews if you are a developer. Every fixed small issue makes someone happier." -msgstr "Ajude-nos a [corrigir erros][contributing] e fazer revisões do código se for um programador. Cada pequeno problema resolvido deixa alguém mais feliz." - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "[Translate][translations] missing strings in the app's interface." -msgstr "[Traduzir][translations] os textos que faltam na interface da aplicação." - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "Translate [App Store][translations_appstore] and [Android][translations_googleplay] descriptions into your language." -msgstr "Traduza as descrições da [App Store][translations_appstore] e [Android][translations_googleplay] para o seu idioma." - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "[Translate][translations_website] our web site into your language." -msgstr "[Traduza][translations_website] o nosso site para o seu idioma." - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "Join the [OpenStreetMap][openstreetmap] community and contribute to the maps data." -msgstr "Junte-se à comunidade [OpenStreetMap][openstreetmap] e contribua com os dados do mapa." - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "Fix red cities found by our [public transport validator][public_transport_validator], for subways and light rails to work in the app." -msgstr "Corrija as cidades vermelhas encontradas pelo nosso [verificador de transportes públicos][public_transport_validator], para que os metropolitanos e os metros ligeiros funcionem na aplicação." - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "Support other users on [GitHub][issues], [Telegram][telegram_chat], [Matrix][matrix], [Twitter][twitter], [Facebook][facebook], [Instagram][instagram]." -msgstr "Apoie outros utilizadores no [GitHub][issues], [Telegram][telegram_chat], [Matrix][matrix], [Twitter][twitter], [Facebook][facebook] e [Instagram][instagram]." - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "Tell everyone about Organic Maps. A bigger community is a stronger community." -msgstr "Fale a toda a gente sobre o Organic Maps. Uma comunidade maior é uma comunidade mais forte." - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "Rate us in [Google Play][googleplay_review], [Apple Store][appstore_review], [Huawei Appgallery][appgallery_review]." -msgstr "Avalie-nos no [Google Play][googleplay_review], [Apple Store][appstore_review], [Huawei Appgallery][appgallery_review]." - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "Any help is welcome!" -msgstr "Qualquer ajuda é bem-vinda!" - -#. type: Plain text -#: content/support-us/index.md -msgid "Our small team is very grateful for your feedback and support. Organic Maps would not be possible without our users ❤️." -msgstr "A nossa pequena equipa está muito grata pelas suas opiniões e apoio. O Organic Maps não seria possível sem os nossos utilizadores ❤️." - -#. type: Yaml Front Matter Hash Value: description -#: content/terms/index.md -#, no-wrap -msgid "Terms of use for Organic Maps application" -msgstr "Termos de utilização da aplicação Organic Maps" - -#. type: Yaml Front Matter Hash Value: extra menu_title -#: content/terms/index.md -#, no-wrap -msgid "Terms" -msgstr "Termos de utilização" - -#. type: Yaml Front Matter Hash Value: title -#: content/terms/index.md -#, no-wrap -msgid "Organic Maps: terms" -msgstr "Organic Maps: termos de utilização" - -#. type: Plain text -#: content/terms/index.md -msgid "This app is licensed under the Apache License, Version 2.0 (the \"License\"); you may not use this application except in compliance with the License." -msgstr "Esta aplicação está licenciada ao abrigo da Licença Apache, Versão 2.0 (a \"Licença\"); você não pode utilizar esta aplicação exceto em conformidade com a Licença." - -#. type: Plain text -#: content/terms/index.md -msgid "You may obtain a copy of the License at [http://www.apache.org/licenses/LICENSE-2.0][license]" -msgstr "Pode obter uma cópia da Licença em [http://www.apache.org/licenses/LICENSE-2.0][license]" - -#. type: Plain text -#: content/terms/index.md -msgid "Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License." -msgstr "Exceto se exigido pela lei aplicável ou acordado por escrito, o software distribuído ao abrigo da Licença é distribuído numa BASE \"TAL COMO ESTÁ\", SEM GARANTIAS OU CONDIÇÕES DE QUALQUER TIPO, expressas ou implícitas. Consulte a Licença para obter o idioma específico que rege as permissões e limitações sob a Licença." - -#. type: Plain text -#: content/terms/index.md -msgid "Most libraries in the following directories on [GitHub][github] made by other people and organizations and licensed in different ways:" -msgstr "A maioria das bibliotecas nos seguintes diretórios no [GitHub][github] foram criadas por outras pessoas e organizações e licenciadas de diferentes formas:" - -#. type: Bullet: '- ' -#: content/terms/index.md -msgid "3party" -msgstr "Recursos de terceiros" - -#. type: Bullet: '- ' -#: content/terms/index.md -msgid "tools" -msgstr "ferramentas" - -#. type: Plain text -#: content/terms/index.md -msgid "Please refer to their LICENSE, COPYING or NOTICE files for terms of use." -msgstr "Consulte os respetivos ficheiros LICENSE, COPYING ou NOTICE para obter informações sobre os termos de utilização." - -#. type: Plain text -#: content/terms/index.md -msgid "See also [data/copyright.html][copyright] file for a full list of copyright notices for Organic Maps application." -msgstr "Consulte também o ficheiro [data/copyright.html][copyright] para obter uma lista completa de avisos de direitos de autor para a aplicação Organic Maps." - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[github]: https://github.com/organicmaps/organicmaps" -msgstr "" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[license]: http://www.apache.org/licenses/LICENSE-2.0" -msgstr "[license]: http://www.apache.org/licenses/LICENSE-2.0" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html" -msgstr "" - -#. type: Hash Value: address -#: translations.yaml -#, no-wrap -msgid "Address" -msgstr "Endereço" - -#. type: Hash Value: back -#: translations.yaml -#, no-wrap -msgid "Back to News" -msgstr "Voltar às notícias" - -#. type: Hash Value: contact -#: translations.yaml -#, no-wrap -msgid "Contact Us" -msgstr "Contacte-nos" - -#. type: Hash Value: engines -#: translations.yaml -#, no-wrap -msgid "Supported TTS Engines" -msgstr "" - -#. type: Hash Value: faq-menu-title -#: translations.yaml -#, no-wrap -msgid "F.A.Q." -msgstr "" - -#. type: Hash Value: install-appgallery -#: translations.yaml -#, no-wrap -msgid "Install Organic Maps from Huawei AppGallery" -msgstr "Instalar o Organic Maps a partir da Huawei AppGallery" - -#. type: Hash Value: install-appstore -#: translations.yaml -#, no-wrap -msgid "Install Organic Maps from the AppStore" -msgstr "Instalar o Organic Maps a partir da AppStore" - -#. type: Hash Value: install-fdroid -#: translations.yaml -#, no-wrap -msgid "Install Organic Maps from F-Droid" -msgstr "Instalar o Organic Maps a partir do F-Droid" - -#. type: Hash Value: install-googleplay -#: translations.yaml -#, no-wrap -msgid "Install Organic Maps from Google Play" -msgstr "Instalar o Organic Maps a partir do Google Play" - -#. type: Hash Value: language -#: translations.yaml -#, no-wrap -msgid "English" -msgstr "Português" - -#. type: Hash Value: language-word -#: translations.yaml -#, no-wrap -msgid "Language" -msgstr "Idioma" - -#. type: Hash Value: name -#: translations.yaml -#, no-wrap -msgid "Name" -msgstr "Nome" - -#. type: Hash Value: token -#: translations.yaml -#, no-wrap -msgid "Token" -msgstr "Token" - -#~ msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]**:" -#~ msgstr "A aplicação Organic Maps é _gratuita para todos_ graças aos seus **[donativos][stripe]**:" - -#~ msgid "We are a few enthusiasts contributing in our free time, and spending our families' money on the project. We love what we do, and we love our users ❤️." -#~ msgstr "Somos alguns entusiastas que contribuem no nosso tempo livre e gastam o dinheiro das nossas famílias no projeto. Adoramos o que fazemos e adoramos os nossos utilizadores ❤️." - -#~ msgid "With your support, we want to become a better, privacy-focused version of Google Maps." -#~ msgstr "Com o seu apoio, queremos tornar-nos numa versão melhor do Google Maps, centrada na privacidade." - -#, no-wrap -#~ msgid "What will the money be used for?" -#~ msgstr "Em que será utilizado o dinheiro?" - -#~ msgid "We pay for fast servers, so anyone in the World can download free map data updates without delays. It's hundreds of terabytes monthly, and the amount is growing." -#~ msgstr "Pagamos por servidores rápidos, para que qualquer pessoa no mundo possa descarregar atualizações gratuitas de dados de mapas sem atrasos. São centenas de terabytes por mês, e a quantidade está a aumentar." - -#~ msgid "Weekly and automated map data updates" -#~ msgstr "Actualizações semanais e automáticas de dados cartográficos" - -#~ msgid "Bookmarks backup and sync" -#~ msgstr "Cópia de segurança e sincronização dos favoritos" - -#~ msgid "Android Auto" -#~ msgstr "Android Auto" - -#, no-wrap -#~ msgid "" -#~ "[stripe]: https://donate.organicmaps.app/ \"Donate via Stripe\"\n" -#~ "[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" -#~ msgstr "" -#~ "[stripe]: https://donate.organicmaps.app/ \"Doar via Stripe\"\n" -#~ "[github issues]: https://github.com/organicmaps/organicmaps/issues \"Problemas no GitHub\"\n" diff --git a/po/content.ru.po b/po/content.ru.po index 9854f448..ee2ce861 100644 --- a/po/content.ru.po +++ b/po/content.ru.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the Organic Maps Website. # msgid "" -msgstr "Project-Id-Version: Organic Maps Website 1.0\nPO-Revision-Date: 2024-04-02 19:54+0000\nLast-Translator: Weblate Translation Memory \nLanguage-Team: Russian \nLanguage: ru\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-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);\nX-Generator: Weblate 5.5-dev\n" +msgstr "Project-Id-Version: Organic Maps Website 1.0\nPO-Revision-Date: 2023-09-05 10:57+0000\nLast-Translator: Pacha Tchernof \nLanguage-Team: Russian \nLanguage: ru\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-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;\nX-Generator: Weblate 5.0.1-dev\n" #. type: Yaml Front Matter Hash Value: description #: content/_index.md @@ -25,25 +25,15 @@ msgstr "Organic Maps: бесплатные офлайн карты и навиг #. type: Plain text #: content/_index.md -#, fuzzy, no-wrap -#| msgid "**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, and cyclists based on top of crowd-sourced **[OpenStreetMap][openstreetmap]** data. It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme], maintained by the same people who created **MapsWithMe** in 2011.\n" -msgid "" -"**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, drivers and cyclists based on **[OpenStreetMap][openstreetmap]** data created by the community.\n" -"It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" +#, no-wrap +msgid "**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, and cyclists based on top of crowd-sourced **[OpenStreetMap][openstreetmap]** data. It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme], maintained by the same people who created **MapsWithMe** in 2011.\n" msgstr "**Organic Maps** – это бесплатные iOS и Android офлайн карты с навигацией для путешественников, туристов, велосипедистов и водителей на основе данных **[OpenStreetMap][openstreetmap]** с открытым исходным кодом, с фокусом на приватность и безопасность пользователей. Это [форк][fork] приложения **Maps.me** (ранее известное как [**MapsWithMe**][mapswithme]) от тех же людей, которые создали **MapsWithMe** в 2011.\n" -#. type: Plain text -#: content/_index.md -#, fuzzy, no-wrap -#| msgid "**Organic Maps** is one of the only applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card (by the way, your operator constantly tracks you), and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" -msgid "**Organic Maps** is one of the few applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card, and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" -msgstr "**Organic Maps** поддерживает 100% функций без активного Интернет-подключения. Загрузите нужные карты, выбросьте SIM-карту (кстати, ваш оператор постоянно отслеживает вас) и отправляйтесь в недельное путешествие на одном заряде батареи.\n" - #. type: Plain text #: content/_index.md #, no-wrap -msgid "> In 2023, Organic Maps [got its first million](@/news/2023-12-23/281/index.md) users. [Help us](@/donate/index.md) to scale!\n" -msgstr "" +msgid "**Organic Maps** is one of the only applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card (by the way, your operator constantly tracks you), and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" +msgstr "**Organic Maps** поддерживает 100% функций без активного Интернет-подключения. Загрузите нужные карты, выбросьте SIM-карту (кстати, ваш оператор постоянно отслеживает вас) и отправляйтесь в недельное путешествие на одном заряде батареи.\n" #. type: Title ### #: content/_index.md @@ -104,9 +94,7 @@ msgstr "Контурные линии, профили высот, пики и с #. type: Bullet: '- ' #: content/_index.md -#, fuzzy -#| msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance" -msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance and Android Auto" +msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance" msgstr "Авто, вело и пеший навигатор с голосовыми подсказками" #. type: Bullet: '- ' @@ -116,8 +104,8 @@ msgstr "Быстрый поиск интересных мест на карте" #. type: Bullet: '- ' #: content/_index.md -msgid "Export/import bookmarks in KML/KMZ, import GPX" -msgstr "Закладки и треки в форматах KML, KMZ, GPX" +msgid "Bookmarks and tracks in KML, KMZ, GPX formats" +msgstr "Экспорт и импорт закладок в форматах KML/KMZ (GPX is [planned][gpx_issue])" #. type: Bullet: '- ' #: content/_index.md @@ -227,11 +215,13 @@ msgstr "{{ exodus_screenshot() }}" #. type: Plain text #: content/_index.md +#, markdown-text msgid "The iOS application is verified by [TrackerControl for iOS][trackercontrol]:" msgstr "Приложение iOS проверено [TrackerControl для iOS][trackercontrol]:" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ trackercontrol_screenshot() }}" msgstr "{{ trackercontrol_screenshot() }}" @@ -287,10 +277,11 @@ msgstr "Кто оплачивает банкет?" msgid "The app is free for everyone. Please [donate](@/donate/index.md) to support us!" msgstr "Приложение бесплатно для всех. Пожалуйста, совершите [пожертвование](@/donate/index.ru.md) чтобы поддержать нас!" -#. type: Plain text +#. type: Title ### #: content/_index.md -msgid "To donate conveniently, click on your preferred payment method icon below:" -msgstr "" +#, no-wrap +msgid "There are different ways to donate:" +msgstr "Можно помочь нам следующими способами:" #. type: Plain text #: content/_index.md content/donate/index.md @@ -371,24 +362,17 @@ msgstr "Загляните на наш [GitHub][github]." #. type: Bullet: '- ' #: content/_index.md -#, fuzzy -#| msgid "Follow our updates in [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit]." -msgid "Follow our updates in [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." -msgstr "Подпишитесь на наши новости в [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], и [Reddit][reddit]." +msgid "Follow our updates in [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit]." +msgstr "Подпишитесь на наши новости в [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], и [Reddit][reddit]." -#. type: Bullet: '- ' -#: content/_index.md -msgid "Join (or create and let us know) local communities: [Hungarian translators Matrix room](https://matrix.to/#/#organicmapstranslate_hu:matrix.org)" -msgstr "" - -#. type: Link reference +#. type: Plain text #: content/_index.md #, no-wrap -msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)" +msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)\n" msgstr "[fork]: https://ru.wikipedia.org/wiki/%D0%A4%D0%BE%D1%80%D0%BA\n" #. type: Plain text -#: content/_index.md content/donate/index.md content/support-us/index.md +#: content/_index.md content/support-us/index.md msgid "{{ references() }}" msgstr "{{ references() }}" @@ -412,7 +396,7 @@ msgstr "Поддержите разработку Organic Maps" #. type: Plain text #: content/donate/index.md -msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]** in **[EUR][stripe_eur], [USD][stripe_usd], [GBP][stripe_GBP], [CHF][stripe_chf], [UAH][stripe_uah], [PLN][stripe_pln]**:" +msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]**:" msgstr "Приложение Organic Maps _бесплатно_ для всех благодаря вашей **[помощи][stripe]**:" #. type: Bullet: '- ' @@ -430,11 +414,6 @@ msgstr "Без регистрации и SMS" msgid "Open source" msgstr "С открытым исходным кодом" -#. type: Plain text -#: content/donate/index.md -msgid "Click on your preferred payment method icon below:" -msgstr "" - #. type: Title ## #: content/donate/index.md #, no-wrap @@ -443,88 +422,63 @@ msgstr "Зачем помогать Organic Maps?" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "Our goal is to provide a privacy-focused, fast and easy-to-use alternative to Google Maps and Apple Maps." -msgstr "" +msgid "We rely on your donations to carry out our mission to keep Organic Maps open and free. And free from ads." +msgstr "Мы полагаемся исключительно на ваши пожертвования для развития Organic Maps. Без рекламы." #. type: Bullet: '2. ' #: content/donate/index.md -msgid "Improving public map data for the numerous websites, apps and platforms which use OpenStreetMap, and involving more people in contributing map info is our another goal." -msgstr "" +msgid "We are a few enthusiasts contributing in our free time, and spending our families' money on the project. We love what we do, and we love our users ❤️." +msgstr "Мы — энтузиасты, которые в свободное время вносят свой вклад и тратят на проект деньги наших семей. Мы любим то, что делаем, и мы любим наших пользователей ❤️." #. type: Bullet: '3. ' #: content/donate/index.md -#, fuzzy -#| msgid "We rely on your donations to carry out our mission to keep Organic Maps open and free. And free from ads." -msgid "We rely on your donations to keep Organic Maps open and free for everyone. And free from ads." -msgstr "Мы полагаемся исключительно на ваши пожертвования для развития Organic Maps. Без рекламы." - -#. type: Bullet: '4. ' -#: content/donate/index.md -msgid "We love what we do, and we love our users ❤️." -msgstr "" +msgid "With your support, we want to become a better, privacy-focused version of Google Maps." +msgstr "С вашей поддержкой мы хотим стать лучшей версией Google Maps, ориентированной на конфиденциальность." #. type: Title ## #: content/donate/index.md #, no-wrap -msgid "Why a free project needs money?" -msgstr "" +msgid "What will the money be used for?" +msgstr "На что пойдут деньги?" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "In 2023, Organic Maps got its first million users. Our servers provide free, fast and frequent map updates all over the world." -msgstr "" +msgid "We pay for fast servers, so anyone in the World can download free map data updates without delays. It's hundreds of terabytes monthly, and the amount is growing." +msgstr "Мы платим за быстрые серверы, чтобы любой человек в мире мог загружать бесплатные обновления картографических данных без задержек. Это сотни терабайт ежемесячно, и объемы постоянно растут." #. type: Bullet: '2. ' #: content/donate/index.md -#, fuzzy -#| msgid "User support, bugfixing, and improving the stability of the app are at the top of our priorities. There are [1800+ issues on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." -msgid "User support, bugfixing and publishing quality app updates are at the top of our priorities. There are [~2000 bug reports and feature requests on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." +msgid "User support, bugfixing, and improving the stability of the app are at the top of our priorities. There are [1800+ issues on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." msgstr "Поддержка пользователей, исправление ошибок и повышение стабильности приложения — в числе наших наивысших приоритетов. Сейчас [на GitHub более 1800 сообщений об ошибках и улучшениях][github issues], и это число растет с каждым днем. AppStore, Google Play и наша электронная почта так же переполнены комментариями. Мы хотим поддерживать качество и скорость работы на высоком уровне." #. type: Bullet: '3. ' #: content/donate/index.md -#, fuzzy -#| msgid "With enough money, new features can be developed faster, for example:" -msgid "With enough money, new features can be developed. To name a few:" +msgid "With enough money, new features can be developed faster, for example:" msgstr "При наличии достаточного количества денег можно будет быстрее разрабатывать новые функции, например:" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Backup and sync bookmarks and tracks" -msgstr "" +msgid "Weekly and automated map data updates" +msgstr "Еженедельное и автоматическое обновление картографических данных" #. type: Bullet: ' - ' #: content/donate/index.md -#, fuzzy -#| msgid "GPS track recorder with GPX support" -msgid "GPS track recorder with GPX export" +msgid "Bookmarks backup and sync" +msgstr "Резервное копирование и синхронизация меток" + +#. type: Bullet: ' - ' +#: content/donate/index.md +msgid "Android Auto" +msgstr "Android Auto" + +#. type: Bullet: ' - ' +#: content/donate/index.md +msgid "GPS track recorder with GPX support" msgstr "Запись GPS-треков с поддержкой GPX" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Satellite imagery" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Public Transport" -msgstr "Общественный транспорт" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Traffic and accident reporting" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Photos and Reviews" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -#, fuzzy -#| msgid "Better map styles for different activities" -msgid "Map styles for different activities" +msgid "Better map styles for different activities" msgstr "Улучшенные стили карт для различных видов туризма и путешествий" #. type: Bullet: ' - ' @@ -534,9 +488,7 @@ msgstr "Трёхмерный рельеф" #. type: Bullet: ' - ' #: content/donate/index.md -#, fuzzy -#| msgid "Improve the OpenStreetMap editor" -msgid "More advanced OpenStreetMap editor" +msgid "Improve the OpenStreetMap editor" msgstr "Расширенный редактор OpenStreetMap" #. type: Bullet: ' - ' @@ -544,6 +496,11 @@ msgstr "Расширенный редактор OpenStreetMap" msgid "Better offline address search, routing, and navigation" msgstr "Улучшенние поиска адресов, маршрутизации и навигации" +#. type: Bullet: ' - ' +#: content/donate/index.md +msgid "Public Transport" +msgstr "Общественный транспорт" + #. type: Bullet: ' - ' #: content/donate/index.md msgid "… and [many other][github issues] features you want and love" @@ -557,9 +514,7 @@ msgstr "Как помочь?" #. type: Plain text #: content/donate/index.md -#, fuzzy -#| msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. But you can also donate one time." -msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. One-time donations are appreciated too." +msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. But you can also donate one time." msgstr "Подписка — это лучший способ обеспечить предсказуемый стабильный доход для проекта и мотивировать нас на долгосрочные задачи и цели. Но вы также можете пожертвовать разово." #. type: Title ### @@ -600,6 +555,14 @@ msgstr "Как еще помочь?" msgid "Yes! There are many ways to support Organic Maps. Please see [Support Us](@/support-us/index.md) page for more details." msgstr "Конечно! Есть много способов поддержать Organic Maps. Пожалуйста, обратитесь к странице [Support Us](@/support-us/index.ru.md) для более подробной информации." +#. type: Plain text +#: content/donate/index.md +#, no-wrap +msgid "" +"[stripe]: https://donate.organicmaps.app/ \"Donate via Stripe\"\n" +"[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" +msgstr "[stripe]: https://donate.organicmaps.app/ \"Donate via Stripe\"\n[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" + #. type: Yaml Front Matter Hash Value: description #: content/news/_index.md #, no-wrap @@ -813,30 +776,14 @@ msgstr "Пожалуйста, обратитесь к их файлам LICENSE, msgid "See also [data/copyright.html][copyright] file for a full list of copyright notices for Organic Maps application." msgstr "См. также [data/copyright.html][copyright] файл для полного списка уведомлений об авторских правах для приложения Organic Maps." -#. type: Link reference +#. type: Plain text #: content/terms/index.md #, no-wrap -msgid "[github]: https://github.com/organicmaps/organicmaps" -msgstr "[github]: https://github.com/organicmaps/organicmaps" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[license]: http://www.apache.org/licenses/LICENSE-2.0" -msgstr "[license]: http://www.apache.org/licenses/LICENSE-2.0" - -#. type: Link reference -#: content/terms/index.md -#, fuzzy, no-wrap -#| msgid "" -#| "[github]: https://github.com/organicmaps/organicmaps\n" -#| "[license]: http://www.apache.org/licenses/LICENSE-2.0\n" -#| "[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html\n" -msgid "[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html" -msgstr "" +msgid "" "[github]: https://github.com/organicmaps/organicmaps\n" "[license]: http://www.apache.org/licenses/LICENSE-2.0\n" "[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html\n" +msgstr "[github]: https://github.com/organicmaps/organicmaps\n[license]: http://www.apache.org/licenses/LICENSE-2.0\n[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html\n" #. type: Hash Value: address #: translations.yaml @@ -856,18 +803,6 @@ msgstr "Назад к новостям" msgid "Contact Us" msgstr "Связаться с нами" -#. type: Hash Value: engines -#: translations.yaml -#, no-wrap -msgid "Supported TTS Engines" -msgstr "" - -#. type: Hash Value: faq-menu-title -#: translations.yaml -#, no-wrap -msgid "F.A.Q." -msgstr "" - #. type: Hash Value: install-appgallery #: translations.yaml #, no-wrap @@ -898,12 +833,6 @@ msgstr "Установите Organic Maps из Google Play" msgid "English" msgstr "Русский" -#. type: Hash Value: language-word -#: translations.yaml -#, no-wrap -msgid "Language" -msgstr "Язык" - #. type: Hash Value: name #: translations.yaml #, no-wrap @@ -915,40 +844,3 @@ msgstr "Название" #, no-wrap msgid "Token" msgstr "Токен" - -#, no-wrap -#~ msgid "There are different ways to donate:" -#~ msgstr "Можно помочь нам следующими способами:" - -#~ msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]**:" -#~ msgstr "Приложение Organic Maps _бесплатно_ для всех благодаря вашей **[помощи][stripe]**:" - -#~ msgid "We are a few enthusiasts contributing in our free time, and spending our families' money on the project. We love what we do, and we love our users ❤️." -#~ msgstr "Мы — энтузиасты, которые в свободное время вносят свой вклад и тратят на проект деньги наших семей. Мы любим то, что делаем, и мы любим наших пользователей ❤️." - -#~ msgid "With your support, we want to become a better, privacy-focused version of Google Maps." -#~ msgstr "С вашей поддержкой мы хотим стать лучшей версией Google Maps, ориентированной на конфиденциальность." - -#, no-wrap -#~ msgid "What will the money be used for?" -#~ msgstr "На что пойдут деньги?" - -#~ msgid "We pay for fast servers, so anyone in the World can download free map data updates without delays. It's hundreds of terabytes monthly, and the amount is growing." -#~ msgstr "Мы платим за быстрые серверы, чтобы любой человек в мире мог загружать бесплатные обновления картографических данных без задержек. Это сотни терабайт ежемесячно, и объемы постоянно растут." - -#~ msgid "Weekly and automated map data updates" -#~ msgstr "Еженедельное и автоматическое обновление картографических данных" - -#~ msgid "Bookmarks backup and sync" -#~ msgstr "Резервное копирование и синхронизация меток" - -#~ msgid "Android Auto" -#~ msgstr "Android Auto" - -#, no-wrap -#~ msgid "" -#~ "[stripe]: https://donate.organicmaps.app/ \"Donate via Stripe\"\n" -#~ "[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" -#~ msgstr "" -#~ "[stripe]: https://donate.organicmaps.app/ \"Donate via Stripe\"\n" -#~ "[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" diff --git a/po/content.sk.po b/po/content.sk.po index d3bc62d3..9a536369 100644 --- a/po/content.sk.po +++ b/po/content.sk.po @@ -4,7 +4,7 @@ # FIRST AUTHOR , YEAR. # msgid "" -msgstr "Project-Id-Version: Organic Maps Website 1.0\nPO-Revision-Date: 2024-04-02 19:54+0000\nLast-Translator: Weblate Translation Memory \nLanguage-Team: Slovak \nLanguage: sk\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-Forms: nplurals=3; plural=((n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2);\nX-Generator: Weblate 5.5-dev\n" +msgstr "Project-Id-Version: Organic Maps Website 1.0\nPO-Revision-Date: 2023-08-28 19:52+0000\nLast-Translator: Anonymous \nLanguage-Team: Slovak \nLanguage: sk\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\nX-Generator: Weblate 5.0.1-dev\n" #. type: Yaml Front Matter Hash Value: description #: content/_index.md @@ -26,364 +26,409 @@ msgstr "Organic Maps Offline Hike, Bike, GPS Navigation" #. type: Plain text #: content/_index.md -#, no-wrap -msgid "" -"**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, drivers and cyclists based on **[OpenStreetMap][openstreetmap]** data created by the community.\n" -"It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" +#, markdown-text, no-wrap +msgid "**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, and cyclists based on top of crowd-sourced **[OpenStreetMap][openstreetmap]** data. It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" msgstr "" #. type: Plain text #: content/_index.md -#, no-wrap -msgid "**Organic Maps** is one of the few applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card, and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" -msgstr "" - -#. type: Plain text -#: content/_index.md -#, no-wrap -msgid "> In 2023, Organic Maps [got its first million](@/news/2023-12-23/281/index.md) users. [Help us](@/donate/index.md) to scale!\n" +#, markdown-text, no-wrap +msgid "**Organic Maps** is one of the only applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card (by the way, your operator constantly tracks you), and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" msgstr "" #. type: Title ### #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Download and install Organic Maps from [AppStore][appstore], [Google Play][googleplay], [FDroid][fdroid], [Huawei AppGallery][appgallery] {#install}" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ badges() }}" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ screenshot(src='/images/screenshots/hiking.jpg', alt='Hiking') }}" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ screenshot(src='/images/screenshots/prague.jpg', alt='Prague') }}" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ screenshot(src='/images/screenshots/search.jpg', alt='Offline Search') }}" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ screenshot(src='/images/screenshots/dark.jpg', alt='Navigation in dark mode') }}" msgstr "" #. type: Title ## #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Features" msgstr "Funkcie" #. type: Plain text #: content/_index.md +#, markdown-text msgid "Organic Maps is the ultimate companion app for travelers, tourists, hikers, and cyclists:" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Detailed offline maps with places that don't exist on other maps, thanks to [OpenStreetMap][openstreetmap]" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Cycling routes, hiking trails, and walking paths" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Contour lines, elevation profiles, peaks, and slopes" msgstr "" #. type: Bullet: '- ' #: content/_index.md -msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance and Android Auto" +#, markdown-text +msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Fast offline search on the map" msgstr "" #. type: Bullet: '- ' #: content/_index.md -msgid "Export/import bookmarks in KML/KMZ, import GPX" +#, markdown-text +msgid "Bookmarks and tracks in KML, KMZ, GPX formats" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Dark Mode to protect your eyes" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Countries and regions don't take a lot of space" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Free and open-source" -msgstr "Zadarmo a Kód verejne dostupný" +msgstr "" #. type: Title ## #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Why Organic?" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "Organic Maps is pure and organic, made with love:" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Respects your privacy" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Saves your battery" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No unexpected mobile data charges" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "Organic Maps app is free from trackers and other bad stuff:" msgstr "" #. type: Bullet: '- ' #: content/_index.md content/donate/index.md +#, markdown-text msgid "No ads" -msgstr "Žiadne podložky" +msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No tracking" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No data collection" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No phoning home" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No annoying registration" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No mandatory tutorials" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No noisy email spam" msgstr "" #. type: Bullet: '- ' #: content/_index.md content/donate/index.md +#, markdown-text msgid "No push notifications" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No crapware" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "~~No pesticides~~ Purely organic!" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "The application is verified by [Exodus Privacy Project][exodus]:" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ exodus_screenshot() }}" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "The iOS application is verified by [TrackerControl for iOS][trackercontrol]:" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ trackercontrol_screenshot() }}" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "Organic Maps doesn't request excessive permissions to spy on you:" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ privacy_screenshots() }}" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "At Organic Maps, we believe that privacy is a fundamental human right:" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Organic Maps is an indie community-driven open-source project" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "We protect your privacy from Big Tech's prying eyes" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Stay safe no matter wherever you are" msgstr "" #. type: Plain text #: content/_index.md content/privacy/index.md +#, markdown-text msgid "Reject surveillance - embrace your freedom." msgstr "" #. type: Plain text #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap msgid "**[Give Organic Maps a try!](#install)**\n" msgstr "" #. type: Title ## #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Who is paying for the free app?" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "The app is free for everyone. Please [donate](@/donate/index.md) to support us!" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "To donate conveniently, click on your preferred payment method icon below:" msgstr "" #. type: Plain text #: content/_index.md content/donate/index.md +#, markdown-text msgid "{{ donate_buttons() }}" msgstr "" #. type: Title ### #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Our sponsors:" msgstr "Naši sponzory" #. type: Plain text #: content/_index.md +#, markdown-text msgid "[Mythic Beasts](https://www.mythic-beasts.com/) ISP [provides us][mythic_beasts_donation] two virtual servers with 400 TB/month of free bandwidth to help our users with maps downloads and updates." msgstr "" #. type: Title ## #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Community" msgstr "Spoločnosť" #. type: Plain text #: content/_index.md +#, markdown-text msgid "Organic Maps is an [open-source software][github] licensed under the Apache License 2.0." msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Please join our beta program, suggest your features, and report bugs:" msgstr "" #. type: Bullet: ' * ' #: content/_index.md +#, markdown-text msgid "[iOS Beta (TestFlight)][testflight]" msgstr "" #. type: Bullet: ' * ' #: content/_index.md +#, markdown-text msgid "[Android Beta (Firebase)][firebase]" msgstr "" #. type: Bullet: ' * ' #: content/_index.md +#, markdown-text msgid "[Linux Desktop Beta (Flatpak)][flatpak]" msgstr "" #. type: Bullet: ' * ' #: content/_index.md +#, markdown-text msgid "[Linux Desktop Beta (packages)][repology]" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Report bugs or issues to [the issue tracker][issues] or [email us][email]." msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "[Discuss][ideas] ideas or propose feature requests." msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Subscribe to our [Telegram Channel][telegram] or to the [matrix space][matrix] for updates." msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Join our [Telegram Group][telegram_chat] to discuss with other users." msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Visit our [GitHub page][github]." msgstr "" #. type: Bullet: '- ' #: content/_index.md -msgid "Follow our updates in [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." -msgstr "" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Join (or create and let us know) local communities: [Hungarian translators Matrix room](https://matrix.to/#/#organicmapstranslate_hu:matrix.org)" -msgstr "" - -#. type: Link reference -#: content/_index.md -#, no-wrap -msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)" +#, markdown-text +msgid "Follow our updates in [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." msgstr "" #. type: Plain text -#: content/_index.md content/donate/index.md content/support-us/index.md +#: content/_index.md +#, markdown-text, no-wrap +msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)\n" +msgstr "" + +#. type: Plain text +#: content/_index.md content/support-us/index.md +#, markdown-text msgid "{{ references() }}" msgstr "" @@ -407,180 +452,204 @@ msgstr "" #. type: Plain text #: content/donate/index.md -msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]** in **[EUR][stripe_eur], [USD][stripe_usd], [GBP][stripe_GBP], [CHF][stripe_chf], [UAH][stripe_uah], [PLN][stripe_pln]**:" +#, markdown-text +msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]**:" msgstr "" #. type: Bullet: '- ' #: content/donate/index.md +#, markdown-text msgid "No trackers" -msgstr "Žiadne stopy" +msgstr "" #. type: Bullet: '- ' #: content/donate/index.md +#, markdown-text msgid "No registration" -msgstr "Daňová registrácia" +msgstr "" #. type: Bullet: '- ' #: content/donate/index.md +#, markdown-text msgid "Open source" msgstr "" #. type: Plain text #: content/donate/index.md +#, markdown-text msgid "Click on your preferred payment method icon below:" msgstr "" #. type: Title ## #: content/donate/index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Why donate to Organic Maps?" msgstr "" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "Our goal is to provide a privacy-focused, fast and easy-to-use alternative to Google Maps and Apple Maps." +#, markdown-text +msgid "We rely on your donations to carry out our mission to keep Organic Maps open and free. And free from ads." msgstr "" #. type: Bullet: '2. ' #: content/donate/index.md -msgid "Improving public map data for the numerous websites, apps and platforms which use OpenStreetMap, and involving more people in contributing map info is our another goal." +#, markdown-text +msgid "We are a few enthusiasts contributing in our free time, and spending our families' money on the project. We love what we do, and we love our users ❤️." msgstr "" #. type: Bullet: '3. ' #: content/donate/index.md -msgid "We rely on your donations to keep Organic Maps open and free for everyone. And free from ads." -msgstr "" - -#. type: Bullet: '4. ' -#: content/donate/index.md -msgid "We love what we do, and we love our users ❤️." +#, markdown-text +msgid "With your support, we want to become a better, privacy-focused version of Google Maps." msgstr "" #. type: Title ## #: content/donate/index.md -#, no-wrap -msgid "Why a free project needs money?" +#, markdown-text, no-wrap +msgid "What will the money be used for?" msgstr "" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "In 2023, Organic Maps got its first million users. Our servers provide free, fast and frequent map updates all over the world." +#, markdown-text +msgid "We pay for fast servers, so anyone in the World can download free map data updates without delays. It's hundreds of terabytes monthly, and the amount is growing." msgstr "" #. type: Bullet: '2. ' #: content/donate/index.md -msgid "User support, bugfixing and publishing quality app updates are at the top of our priorities. There are [~2000 bug reports and feature requests on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." +#, markdown-text +msgid "User support, bugfixing, and improving the stability of the app are at the top of our priorities. There are [1800+ issues on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." msgstr "" #. type: Bullet: '3. ' #: content/donate/index.md -msgid "With enough money, new features can be developed. To name a few:" +#, markdown-text +msgid "With enough money, new features can be developed faster, for example:" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Backup and sync bookmarks and tracks" +#, markdown-text +msgid "Weekly and automated map data updates" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "GPS track recorder with GPX export" +#, markdown-text +msgid "Bookmarks backup and sync" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Satellite imagery" +#, markdown-text +msgid "Android Auto" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Public Transport" -msgstr "Public Transport" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Traffic and accident reporting" +#, markdown-text +msgid "GPS track recorder with GPX support" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Photos and Reviews" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Map styles for different activities" +#, markdown-text +msgid "Better map styles for different activities" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md +#, markdown-text msgid "Hill shading and 3D terrain" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "More advanced OpenStreetMap editor" +#, markdown-text +msgid "Improve the OpenStreetMap editor" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md +#, markdown-text msgid "Better offline address search, routing, and navigation" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md +#, markdown-text +msgid "Public Transport" +msgstr "Public Transport" + +#. type: Bullet: ' - ' +#: content/donate/index.md +#, markdown-text msgid "… and [many other][github issues] features you want and love" msgstr "" #. type: Title ## #: content/donate/index.md -#, no-wrap +#, markdown-text, no-wrap msgid "How to donate?" msgstr "" #. type: Plain text #: content/donate/index.md -msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. One-time donations are appreciated too." +#, markdown-text +msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. But you can also donate one time." msgstr "" #. type: Title ### #: content/donate/index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Bank Transfer" msgstr "Bankový Prevod" #. type: Plain text #: content/donate/index.md +#, markdown-text msgid "{{ bank_transfer() }}" msgstr "" #. type: Title ### #: content/donate/index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Crypto" msgstr "Krypto" #. type: Plain text #: content/donate/index.md +#, markdown-text msgid "Please consider donating annually to reduce total fees." msgstr "" #. type: Plain text #: content/donate/index.md +#, markdown-text msgid "{{ crypto_table() }}" msgstr "" #. type: Title ## #: content/donate/index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Can you help us in any other way?" msgstr "" #. type: Plain text #: content/donate/index.md +#, markdown-text msgid "Yes! There are many ways to support Organic Maps. Please see [Support Us](@/support-us/index.md) page for more details." msgstr "" +#. type: Plain text +#: content/donate/index.md +#, markdown-text, no-wrap +msgid "" +"[stripe]: https://donate.organicmaps.app/ \"Donate via Stripe\"\n" +"[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" +msgstr "" + #. type: Yaml Front Matter Hash Value: description #: content/news/_index.md #, no-wrap @@ -619,27 +688,31 @@ msgstr "" #. type: Plain text #: content/privacy/index.md +#, markdown-text msgid "Organic Maps respects your privacy and DOES NOT TRACK YOU." msgstr "" #. type: Plain text #: content/privacy/index.md +#, markdown-text msgid "Unlike most other applications, there is no tracking, no ads, no spyware, no data and statistics collection in Organic Maps." msgstr "" #. type: Plain text #: content/privacy/index.md +#, markdown-text msgid "Stay away from Big Tech's prying eyes!" msgstr "" #. type: Plain text #: content/privacy/index.md content/terms/index.md +#, markdown-text msgid "If you have any questions or suggestions, please contact us at [legal@organicmaps.app](mailto:legal@organicmaps.app)." msgstr "" #. type: Plain text #: content/privacy/index.md -#, no-wrap +#, markdown-text, no-wrap msgid "This policy is effective as of 2021-04-24.\n" msgstr "" @@ -663,76 +736,91 @@ msgstr "" #. type: Plain text #: content/support-us/index.md +#, markdown-text msgid "Organic Maps is a free, open-source app. It is free from ads, it does not collect your personal information, and it is developed by a few enthusiasts with the help of the community." msgstr "" #. type: Plain text #: content/support-us/index.md +#, markdown-text msgid "There are different ways to support the development:" msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "[Donate](@/donate/index.md)! Every dollar or euro counts and helps us to pay for servers and scale." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Report bugs and share ideas on our [GitHub][github] or via [email][email]." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Help us to [fix bugs][contributing] and do code reviews if you are a developer. Every fixed small issue makes someone happier." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "[Translate][translations] missing strings in the app's interface." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Translate [App Store][translations_appstore] and [Android][translations_googleplay] descriptions into your language." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "[Translate][translations_website] our web site into your language." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Join the [OpenStreetMap][openstreetmap] community and contribute to the maps data." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Fix red cities found by our [public transport validator][public_transport_validator], for subways and light rails to work in the app." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Support other users on [GitHub][issues], [Telegram][telegram_chat], [Matrix][matrix], [Twitter][twitter], [Facebook][facebook], [Instagram][instagram]." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Tell everyone about Organic Maps. A bigger community is a stronger community." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Rate us in [Google Play][googleplay_review], [Apple Store][appstore_review], [Huawei Appgallery][appgallery_review]." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Any help is welcome!" msgstr "" #. type: Plain text #: content/support-us/index.md +#, markdown-text msgid "Our small team is very grateful for your feedback and support. Organic Maps would not be possible without our users ❤️." msgstr "" @@ -756,60 +844,59 @@ msgstr "" #. type: Plain text #: content/terms/index.md +#, markdown-text msgid "This app is licensed under the Apache License, Version 2.0 (the \"License\"); you may not use this application except in compliance with the License." msgstr "" #. type: Plain text #: content/terms/index.md +#, markdown-text msgid "You may obtain a copy of the License at [http://www.apache.org/licenses/LICENSE-2.0][license]" msgstr "" #. type: Plain text #: content/terms/index.md +#, markdown-text msgid "Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License." msgstr "" #. type: Plain text #: content/terms/index.md +#, markdown-text msgid "Most libraries in the following directories on [GitHub][github] made by other people and organizations and licensed in different ways:" msgstr "" #. type: Bullet: '- ' #: content/terms/index.md +#, markdown-text msgid "3party" msgstr "" #. type: Bullet: '- ' #: content/terms/index.md +#, markdown-text msgid "tools" msgstr "Nástroje" #. type: Plain text #: content/terms/index.md +#, markdown-text msgid "Please refer to their LICENSE, COPYING or NOTICE files for terms of use." msgstr "" #. type: Plain text #: content/terms/index.md +#, markdown-text msgid "See also [data/copyright.html][copyright] file for a full list of copyright notices for Organic Maps application." msgstr "" -#. type: Link reference +#. type: Plain text #: content/terms/index.md -#, no-wrap -msgid "[github]: https://github.com/organicmaps/organicmaps" -msgstr "" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[license]: http://www.apache.org/licenses/LICENSE-2.0" -msgstr "" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html" +#, markdown-text, no-wrap +msgid "" +"[github]: https://github.com/organicmaps/organicmaps\n" +"[license]: http://www.apache.org/licenses/LICENSE-2.0\n" +"[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html\n" msgstr "" #. type: Hash Value: address @@ -830,18 +917,6 @@ msgstr "" msgid "Contact Us" msgstr "Kontaktujte nás" -#. type: Hash Value: engines -#: translations.yaml -#, no-wrap -msgid "Supported TTS Engines" -msgstr "" - -#. type: Hash Value: faq-menu-title -#: translations.yaml -#, no-wrap -msgid "F.A.Q." -msgstr "" - #. type: Hash Value: install-appgallery #: translations.yaml #, no-wrap @@ -872,12 +947,6 @@ msgstr "" msgid "English" msgstr "Angličtina" -#. type: Hash Value: language-word -#: translations.yaml -#, no-wrap -msgid "Language" -msgstr "Jazyk" - #. type: Hash Value: name #: translations.yaml #, no-wrap @@ -889,6 +958,3 @@ msgstr "Name" #, no-wrap msgid "Token" msgstr "Token" - -#~ msgid "Android Auto" -#~ msgstr "Android Auto" diff --git a/po/content.sv.po b/po/content.sv.po index 51571f92..498db184 100644 --- a/po/content.sv.po +++ b/po/content.sv.po @@ -4,7 +4,7 @@ # FIRST AUTHOR , YEAR. # msgid "" -msgstr "Project-Id-Version: Organic Maps Website 1.0\nPO-Revision-Date: 2024-04-02 19:54+0000\nLast-Translator: Weblate Translation Memory \nLanguage-Team: Swedish \nLanguage: sv\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-Forms: nplurals=2; plural=n != 1;\nX-Generator: Weblate 5.5-dev\n" +msgstr "Project-Id-Version: Organic Maps Website 1.0\nPO-Revision-Date: 2023-07-03 12:33+0000\nLast-Translator: Anders Svensson \nLanguage-Team: Swedish \nLanguage: sv\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-Forms: nplurals=2; plural=n != 1;\nX-Generator: Weblate 5.0-dev\n" #. type: Yaml Front Matter Hash Value: description #: content/_index.md @@ -27,23 +27,15 @@ msgstr "Organic Maps: Offline Vandring, Cykling, Leder och Navigering" #. type: Plain text #: content/_index.md #, no-wrap -msgid "" -"**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, drivers and cyclists based on **[OpenStreetMap][openstreetmap]** data created by the community.\n" -"It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" +msgid "**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, and cyclists based on top of crowd-sourced **[OpenStreetMap][openstreetmap]** data. It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" msgstr "**Organic Maps** är en gratis Android- och iOS-app för resenärer, turister, vandrare och cyklister som bygger på data från publiken **[OpenStreetMap][openstreetmap]**. Det är en [fork][fork] med öppen källkod av appen **Maps.me** (tidigare känd som [**MapsWithMe**][mapswithme]), som underhålls av samma personer som skapade **MapsWithMe** 2011.\n" #. type: Plain text #: content/_index.md #, no-wrap -msgid "**Organic Maps** is one of the few applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card, and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" +msgid "**Organic Maps** is one of the only applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card (by the way, your operator constantly tracks you), and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" msgstr "**Organic Maps** är ett av få program som numera stöder 100 % av funktionerna utan en aktiv internetanslutning. Installera Organic Maps, ladda ner kartor, släng ditt SIM-kort (din operatör spårar dig förresten hela tiden) och gör en veckolång resa med en enda batteriladdning utan att någon byte skickas till nätet.\n" -#. type: Plain text -#: content/_index.md -#, no-wrap -msgid "> In 2023, Organic Maps [got its first million](@/news/2023-12-23/281/index.md) users. [Help us](@/donate/index.md) to scale!\n" -msgstr "" - #. type: Title ### #: content/_index.md #, no-wrap @@ -103,8 +95,8 @@ msgstr "Konturlinjer, höjdprofiler, toppar och sluttningar" #. type: Bullet: '- ' #: content/_index.md -msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance and Android Auto" -msgstr "Tur-för-tur-navigering för promenader, cykling och bilnavigering med röststyrning, Android Auto" +msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance" +msgstr "Tur-för-tur-navigering för promenader, cykling och bilnavigering med röststyrning" #. type: Bullet: '- ' #: content/_index.md @@ -113,8 +105,8 @@ msgstr "Snabb offline-sökning på kartan" #. type: Bullet: '- ' #: content/_index.md -msgid "Export/import bookmarks in KML/KMZ, import GPX" -msgstr "Export och import av bokmärken i KML/KMZ-format, importera GPX" +msgid "Bookmarks and tracks in KML, KMZ, GPX formats" +msgstr "Export och import av bokmärken i KML/KMZ-format (GPX är [planerat][gpx_issue])" #. type: Bullet: '- ' #: content/_index.md @@ -224,16 +216,19 @@ msgstr "{{ exodus_screenshot() }}" #. type: Plain text #: content/_index.md +#, markdown-text msgid "The iOS application is verified by [TrackerControl for iOS][trackercontrol]:" msgstr "iOS-applikationen har verifierats av [TrackerControl för iOS][trackercontrol]:" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ trackercontrol_screenshot() }}" msgstr "{{ trackercontrol_screenshot() }}" #. type: Plain text #: content/_index.md +#, markdown-text msgid "Organic Maps doesn't request excessive permissions to spy on you:" msgstr "Organic Maps begär inte överdrivna behörigheter för att spionera på dig:" @@ -368,22 +363,17 @@ msgstr "Besök vår [GitHub-sida][github]." #. type: Bullet: '- ' #: content/_index.md -msgid "Follow our updates in [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." -msgstr "Följ våra uppdateringar på [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Join (or create and let us know) local communities: [Hungarian translators Matrix room](https://matrix.to/#/#organicmapstranslate_hu:matrix.org)" -msgstr "" - -#. type: Link reference -#: content/_index.md -#, no-wrap -msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)" -msgstr "[fork]: https://sv.wikipedia.org/wiki/Fork" +msgid "Follow our updates in [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." +msgstr "Följ våra uppdateringar på [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." #. type: Plain text -#: content/_index.md content/donate/index.md content/support-us/index.md +#: content/_index.md +#, no-wrap +msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)\n" +msgstr "[fork]: https://sv.wikipedia.org/wiki/Fork\n" + +#. type: Plain text +#: content/_index.md content/support-us/index.md msgid "{{ references() }}" msgstr "{{ references() }}" @@ -407,8 +397,8 @@ msgstr "Donera för att stödja utvecklingen av Organic Maps" #. type: Plain text #: content/donate/index.md -msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]** in **[EUR][stripe_eur], [USD][stripe_usd], [GBP][stripe_GBP], [CHF][stripe_chf], [UAH][stripe_uah], [PLN][stripe_pln]**:" -msgstr "Appen Organic Maps är _gratis för alla_ tack vare era **[donationer][stripe]**" +msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]**:" +msgstr "Appen Organic Maps är _gratis för alla_ tack vare era **[donationer][stripe]**:" #. type: Bullet: '- ' #: content/donate/index.md @@ -438,78 +428,63 @@ msgstr "Varför ska jag donera till Organic Maps?" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "Our goal is to provide a privacy-focused, fast and easy-to-use alternative to Google Maps and Apple Maps." -msgstr "" +msgid "We rely on your donations to carry out our mission to keep Organic Maps open and free. And free from ads." +msgstr "Vi är beroende av dina donationer för att kunna utföra vårt uppdrag att hålla Organic Maps öppet och fritt. Och fria från annonser." #. type: Bullet: '2. ' #: content/donate/index.md -msgid "Improving public map data for the numerous websites, apps and platforms which use OpenStreetMap, and involving more people in contributing map info is our another goal." -msgstr "" +msgid "We are a few enthusiasts contributing in our free time, and spending our families' money on the project. We love what we do, and we love our users ❤️." +msgstr "Vi är ett fåtal entusiaster som bidrar på vår fritid och lägger våra familjers pengar på projektet. Vi älskar det vi gör och vi älskar våra användare ❤️." #. type: Bullet: '3. ' #: content/donate/index.md -msgid "We rely on your donations to keep Organic Maps open and free for everyone. And free from ads." -msgstr "Vi är beroende av dina donationer för att kunna utföra vårt uppdrag att hålla Organic Maps öppet och fritt. Och fria från annonser." - -#. type: Bullet: '4. ' -#: content/donate/index.md -msgid "We love what we do, and we love our users ❤️." -msgstr "" +msgid "With your support, we want to become a better, privacy-focused version of Google Maps." +msgstr "Med ditt stöd vill vi bli en bättre version av Google Maps med fokus på personlig integritet." #. type: Title ## #: content/donate/index.md #, no-wrap -msgid "Why a free project needs money?" -msgstr "" +msgid "What will the money be used for?" +msgstr "Vad kommer pengarna att användas till?" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "In 2023, Organic Maps got its first million users. Our servers provide free, fast and frequent map updates all over the world." -msgstr "" +msgid "We pay for fast servers, so anyone in the World can download free map data updates without delays. It's hundreds of terabytes monthly, and the amount is growing." +msgstr "Vi betalar för snabba servrar, så att alla i världen kan ladda ner gratis kartuppdateringar utan fördröjning. Det handlar om hundratals terabyte varje månad, och mängden ökar." #. type: Bullet: '2. ' #: content/donate/index.md -msgid "User support, bugfixing and publishing quality app updates are at the top of our priorities. There are [~2000 bug reports and feature requests on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." +msgid "User support, bugfixing, and improving the stability of the app are at the top of our priorities. There are [1800+ issues on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." msgstr "Användarstöd, felavhjälpning och förbättrad stabilitet i appen står högst upp på vår prioriteringslista. Det finns [fler än 1 200 problem på GitHub][github issues], och antalet ökar varje dag. AppStore, Google Play och supportmejl översvämmas av kommentarer och buggrapporter. Vi vill leverera en högkvalitativ produkt." #. type: Bullet: '3. ' #: content/donate/index.md -msgid "With enough money, new features can be developed. To name a few:" +msgid "With enough money, new features can be developed faster, for example:" msgstr "Med tillräckligt med pengar kan nya funktioner utvecklas snabbare, till exempel:" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Backup and sync bookmarks and tracks" -msgstr "" +msgid "Weekly and automated map data updates" +msgstr "Automatiska uppdateringar av kartdata varje vecka" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "GPS track recorder with GPX export" +msgid "Bookmarks backup and sync" +msgstr "Säkerhetskopiering och synkronisering av bokmärken" + +#. type: Bullet: ' - ' +#: content/donate/index.md +msgid "Android Auto" +msgstr "Android Auto" + +#. type: Bullet: ' - ' +#: content/donate/index.md +msgid "GPS track recorder with GPX support" msgstr "Inspelning av GPS-spår med GPX-stöd" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Satellite imagery" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Public Transport" -msgstr "Kollektivtrafik" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Traffic and accident reporting" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Photos and Reviews" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Map styles for different activities" +msgid "Better map styles for different activities" msgstr "Bättre versioner av kartan för olika aktiviteter" #. type: Bullet: ' - ' @@ -519,7 +494,7 @@ msgstr "Skuggning av kullar och berg samt 3D-terräng" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "More advanced OpenStreetMap editor" +msgid "Improve the OpenStreetMap editor" msgstr "Förbättring av OpenStreetMap-redigeraren" #. type: Bullet: ' - ' @@ -527,6 +502,11 @@ msgstr "Förbättring av OpenStreetMap-redigeraren" msgid "Better offline address search, routing, and navigation" msgstr "Bättre adressökning, vägvisning och navigering offline" +#. type: Bullet: ' - ' +#: content/donate/index.md +msgid "Public Transport" +msgstr "Kollektivtrafik" + #. type: Bullet: ' - ' #: content/donate/index.md msgid "… and [many other][github issues] features you want and love" @@ -540,7 +520,7 @@ msgstr "Hur kan man donera?" #. type: Plain text #: content/donate/index.md -msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. One-time donations are appreciated too." +msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. But you can also donate one time." msgstr "Återkommande donationer är det bästa sättet att säkerställa en relativt stabil inkomst för projektet och motivera oss för långsiktiga uppgifter och mål. Men du kan också skänka en engångssumma." #. type: Title ### @@ -581,6 +561,16 @@ msgstr "Finns det fler sätt att hjälpa er på?" msgid "Yes! There are many ways to support Organic Maps. Please see [Support Us](@/support-us/index.md) page for more details." msgstr "Ja! Det finns många sätt att stödja Organic Maps. Se sidan [Support Us](@/support-us/index.sv.md) för mer information." +#. type: Plain text +#: content/donate/index.md +#, no-wrap +msgid "" +"[stripe]: https://donate.organicmaps.app/ \"Donate via Stripe\"\n" +"[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" +msgstr "" +"[stripe]: https://donate.organicmaps.app/ \"Donera via Stripe\"\n" +"[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" + #. type: Yaml Front Matter Hash Value: description #: content/news/_index.md #, no-wrap @@ -794,23 +784,17 @@ msgstr "Se filerna i respektive katalog med namnen LICENSE, COPYING eller NOTICE msgid "See also [data/copyright.html][copyright] file for a full list of copyright notices for Organic Maps application." msgstr "Se även filen [data/copyright.html][copyright] för en fullständig lista över upphovsrättsliga meddelanden för Organic Maps-appen." -#. type: Link reference +#. type: Plain text #: content/terms/index.md #, no-wrap -msgid "[github]: https://github.com/organicmaps/organicmaps" -msgstr "" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[license]: http://www.apache.org/licenses/LICENSE-2.0" -msgstr "[license]: http://www.apache.org/licenses/LICENSE-2.0" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html" +msgid "" +"[github]: https://github.com/organicmaps/organicmaps\n" +"[license]: http://www.apache.org/licenses/LICENSE-2.0\n" +"[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html\n" msgstr "" +"[github]: https://github.com/organicmaps/organicmaps\n" +"[licens]: http://www.apache.org/licenses/LICENSE-2.0\n" +"[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html\n" #. type: Hash Value: address #: translations.yaml @@ -830,18 +814,6 @@ msgstr "Tillbaka till nyheter" msgid "Contact Us" msgstr "Kontakta oss" -#. type: Hash Value: engines -#: translations.yaml -#, no-wrap -msgid "Supported TTS Engines" -msgstr "" - -#. type: Hash Value: faq-menu-title -#: translations.yaml -#, no-wrap -msgid "F.A.Q." -msgstr "" - #. type: Hash Value: install-appgallery #: translations.yaml #, no-wrap @@ -872,12 +844,6 @@ msgstr "Installera Organic Maps från Google Play" msgid "English" msgstr "Svenska" -#. type: Hash Value: language-word -#: translations.yaml -#, no-wrap -msgid "Language" -msgstr "Språk" - #. type: Hash Value: name #: translations.yaml #, no-wrap @@ -890,39 +856,6 @@ msgstr "Namn" msgid "Token" msgstr "Token" -#~ msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]**:" -#~ msgstr "Appen Organic Maps är _gratis för alla_ tack vare era **[donationer][stripe]**:" - -#~ msgid "We are a few enthusiasts contributing in our free time, and spending our families' money on the project. We love what we do, and we love our users ❤️." -#~ msgstr "Vi är ett fåtal entusiaster som bidrar på vår fritid och lägger våra familjers pengar på projektet. Vi älskar det vi gör och vi älskar våra användare ❤️." - -#~ msgid "With your support, we want to become a better, privacy-focused version of Google Maps." -#~ msgstr "Med ditt stöd vill vi bli en bättre version av Google Maps med fokus på personlig integritet." - -#, no-wrap -#~ msgid "What will the money be used for?" -#~ msgstr "Vad kommer pengarna att användas till?" - -#~ msgid "We pay for fast servers, so anyone in the World can download free map data updates without delays. It's hundreds of terabytes monthly, and the amount is growing." -#~ msgstr "Vi betalar för snabba servrar, så att alla i världen kan ladda ner gratis kartuppdateringar utan fördröjning. Det handlar om hundratals terabyte varje månad, och mängden ökar." - -#~ msgid "Weekly and automated map data updates" -#~ msgstr "Automatiska uppdateringar av kartdata varje vecka" - -#~ msgid "Bookmarks backup and sync" -#~ msgstr "Säkerhetskopiering och synkronisering av bokmärken" - -#~ msgid "Android Auto" -#~ msgstr "Android Auto" - -#, no-wrap -#~ msgid "" -#~ "[stripe]: https://donate.organicmaps.app/ \"Donate via Stripe\"\n" -#~ "[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" -#~ msgstr "" -#~ "[stripe]: https://donate.organicmaps.app/ \"Donera via Stripe\"\n" -#~ "[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" - #, no-wrap #~ msgid "There are different ways to donate:" #~ msgstr "Det finns olika sätt att donera på:" diff --git a/po/content.te.po b/po/content.te.po deleted file mode 100644 index b10d80fe..00000000 --- a/po/content.te.po +++ /dev/null @@ -1,907 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Organic Maps -# This file is distributed under the same license as the Organic Maps Website package. -# FIRST AUTHOR , YEAR. -# -msgid "" -msgstr "Project-Id-Version: Organic Maps Website 1.0\nPO-Revision-Date: 2024-04-02 19:54+0000\nLast-Translator: sai \nLanguage-Team: Telugu \nLanguage: te\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-Forms: nplurals=2; plural=n != 1;\nX-Generator: Weblate 5.5-dev\n" - -#. type: Yaml Front Matter Hash Value: description -#: content/_index.md -#, no-wrap -msgid "Fast detailed offline maps for travelers, tourists, drivers, hikers and cyclists created by MapsWithMe (Maps.Me) app founders." -msgstr "ప్రయాణికులు, పర్యాటకులు, డ్రైవర్లు, హైకర్లు మరియు సైక్లిస్ట్‌ల కోసం వేగవంతమైన వివరణాత్మక ఆఫ్‌లైన్ మ్యాప్‌లు, MapsWithMe (Maps.Me) యాప్ వ్యవస్థాపకుల నుండి." - -#. type: Yaml Front Matter Hash Value: extra menu_title -#: content/_index.md -#, no-wrap -msgid "Home" -msgstr "హోమ్" - -#. type: Yaml Front Matter Hash Value: title -#: content/_index.md -#, no-wrap -msgid "Organic Maps: Offline Hike, Bike, Trails and Navigation" -msgstr "ఆర్గానిక్ మ్యాప్స్: ఆఫ్‌లైన్ హైక్, బైక్, ట్రైల్స్ మరియు నావిగేషన్" - -#. type: Plain text -#: content/_index.md -msgid "" -"**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, drivers and cyclists based on **[OpenStreetMap][openstreetmap]** data created by the community.\n" -"It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" -msgstr "**ఓర్గానిక్ మ్యాప్స్** అనేది ప్రయాణికులు, పర్యాటకులు, హైకర్లు మరియు సైక్లిస్ట్‌ల కోసం ఒక ఉచిత Android & iOS ఆఫ్‌లైన్ మ్యాప్‌ల యాప్. ఇది క్రౌడ్ సోర్స్డ్ **[OpenStreetMap][openstreetmap]** డేటా ఆధారంగా ఉంటుంది. **Maps.me** యాప్ (గతంలో [**MapsWithMe**][mapswithme]గా పిలువబడేది) గోప్యత-కేంద్రీకృత, ఓపెన్-సోర్స్ గా [ఫోర్క్]ఉంటూ, 2011లో **MapsWithMe** సృష్టించిన వారిచే నిర్వహించబడుతుంది.\n" - -#. type: Plain text -#: content/_index.md -msgid "**Organic Maps** is one of the few applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card, and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" -msgstr "ఈరోజుల్లో ఇంటర్నెట్ కనెక్షన్ లేకుండా 100% లక్షణాలను మద్దతు చేసే ఏకైక అప్లికేషన్ ఒక్క ఓర్గానిక్ మ్యాప్స్ మాత్రమే. ఓర్గానిక్ మ్యాప్స్ ఇన్స్టాల్ చేసి, మ్యాప్లను డౌన్‌లోడ్ చేస్కోని మీ సిమ్ కార్డును విసిరేయండి ( మీ ఆపరేటర్ నిరంతరం మిమ్మల్ని ఎలానో ట్రాక్ చేస్తుంది అనుకోండి ).ఇప్పుడు ఒక్క బైట్ కూడా నెట్వర్క్ కి పంపకుండా సింగల్ బాటరీ ఛార్జింగ్ తో వారంపాటు విహారయాత్రకు నిచ్చతింగా వెళ్లి రండి.\n" - -#. type: Plain text -#: content/_index.md -#, no-wrap -msgid "> In 2023, Organic Maps [got its first million](@/news/2023-12-23/281/index.md) users. [Help us](@/donate/index.md) to scale!\n" -msgstr "" - -#. type: Title ### -#: content/_index.md -#, no-wrap -msgid "Download and install Organic Maps from [AppStore][appstore], [Google Play][googleplay], [FDroid][fdroid], [Huawei AppGallery][appgallery] {#install}" -msgstr "[AppStore][appstore], [Google Play][googleplay], [FDroid][fdroid], [Huawei AppGallery][appgallery] నుండి ఓర్గానిక్ మ్యాప్స్ ను డౌన్‌లోడ్ చేసి ఇన్‌స్టాల్ చేయండి. {#install}" - -#. type: Plain text -#: content/_index.md -msgid "{{ badges() }}" -msgstr "{{ badges() }}" - -#. type: Plain text -#: content/_index.md -msgid "{{ screenshot(src='/images/screenshots/hiking.jpg', alt='Hiking') }}" -msgstr "{{ screenshot(src='/images/screenshots/hiking.jpg', alt='హైకింగ్') }}" - -#. type: Plain text -#: content/_index.md -msgid "{{ screenshot(src='/images/screenshots/prague.jpg', alt='Prague') }}" -msgstr "ప్రేగ్ పట్నం" - -#. type: Plain text -#: content/_index.md -msgid "{{ screenshot(src='/images/screenshots/search.jpg', alt='Offline Search') }}" -msgstr "ఆఫ్లైన్ సెర్చ్" - -#. type: Plain text -#: content/_index.md -msgid "{{ screenshot(src='/images/screenshots/dark.jpg', alt='Navigation in dark mode') }}" -msgstr "డార్క్ మోడ్లో నావిగేషన్" - -#. type: Title ## -#: content/_index.md -#, no-wrap -msgid "Features" -msgstr "ఫీచర్స్" - -#. type: Plain text -#: content/_index.md -msgid "Organic Maps is the ultimate companion app for travelers, tourists, hikers, and cyclists:" -msgstr "పర్యాటకులకు, హైకర్లు మరియు సైకిలిస్టులకు క్రింది ఫీచర్ల చే ఈ \"ఓర్గానిక్ మ్యాప్స్\" అత్యంత మైత్రిగల యాప్ గా మారింది:" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Detailed offline maps with places that don't exist on other maps, thanks to [OpenStreetMap][openstreetmap]" -msgstr "ఇతర మ్యాప్‌లలో లేని ప్రాంతాలను వివరసమృద్ధ ఆఫ్‌లైన్ మ్యాప్‌లుగా అందిస్తుంది, [ఓపెన్‌స్ట్రీట్‌మ్యాప్]కు ధన్యవాదాలు." - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Cycling routes, hiking trails, and walking paths" -msgstr "సైక్లింగ్ దారులను, హైకింగ్ మార్గాలు, మరియు నడిచే త్రోవలను" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Contour lines, elevation profiles, peaks, and slopes" -msgstr "కౌంటర్ లైన్లు, ఎలివేషన్ ప్రొఫైల్లు, పర్వతాలు, మరియు పర్వత చోటులను చూపిస్తుంది." - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance and Android Auto" -msgstr "ఆడియో గైడెన్స్ మరియు ఆండ్రాయిడ్ ఆటోతో వాకింగ్, సైక్లింగ్ మరియు కార్ నావిగేషన్ చేయండి" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Fast offline search on the map" -msgstr "వేగవంతమైన ఆఫ్ లైన్ సెర్చ్ ." - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Export/import bookmarks in KML/KMZ, import GPX" -msgstr "KML, KMZ, GPX ఫార్మాట్‌లలో బుక్‌మార్క్‌లు మరియు ట్రాక్‌లు" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Dark Mode to protect your eyes" -msgstr "మీ కళ్ళను సంరక్షించడానికి డార్క్ మోడ్ ఆప్షన్ ఉంది." - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Countries and regions don't take a lot of space" -msgstr "దేశాలు, ప్రాంతాలు పెద్దగా స్టోరేజ్ తీసుకోవు" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Free and open-source" -msgstr "ఈ యాప్ పూర్తిగా ఉచితం మరియు ఓపెన్-సోర్స్ ." - -#. type: Title ## -#: content/_index.md -#, no-wrap -msgid "Why Organic?" -msgstr "ఆర్గానిక్ మ్యాపులే ఎందుకు ?" - -#. type: Plain text -#: content/_index.md -msgid "Organic Maps is pure and organic, made with love:" -msgstr "\"ఆర్గానిక్ మ్యాప్స్\"స్వచ్ఛమైనది .ఇది ప్రేమతో తయారు చేయపడినది." - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Respects your privacy" -msgstr "మీ గోప్యతను గౌరవిస్తాది" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Saves your battery" -msgstr "మీ బ్యాటరీని సేవ్ చేస్తుంది." - -#. type: Bullet: '- ' -#: content/_index.md -msgid "No unexpected mobile data charges" -msgstr "అనవసరమైన డేటా చార్జీలు ఉండవు." - -#. type: Plain text -#: content/_index.md -msgid "Organic Maps app is free from trackers and other bad stuff:" -msgstr "\"ఆర్గానిక్ మ్యాప్స్\" యాప్ ట్రాకర్‌లు మరియు ఇతర దుష్ట పద్ధతులు నుండి స్వేచ్ఛగా ఉంటాది." - -#. type: Bullet: '- ' -#: content/_index.md content/donate/index.md -msgid "No ads" -msgstr "ప్రకటనలు ఉండవు" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "No tracking" -msgstr "మిమ్మల్ని ట్రాక్ చేయదు" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "No data collection" -msgstr "డేటా సేకరణలు ఉండవు" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "No phoning home" -msgstr "" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "No annoying registration" -msgstr "అసహజమైన నమోదులు ఉండవు" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "No mandatory tutorials" -msgstr "అనివార్యమైన ట్యుటోరియల్లు ఉండవు" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "No noisy email spam" -msgstr "ఇమెయిలు స్పామ్ ఉండవు" - -#. type: Bullet: '- ' -#: content/_index.md content/donate/index.md -msgid "No push notifications" -msgstr "పుష్ నోటిఫికేషన్లు లేవు" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "No crapware" -msgstr "అనవశ్యకమైన సాఫ్ట్‌వేర్ ఉండదు" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "~~No pesticides~~ Purely organic!" -msgstr "ఇది పూర్తిగా స్వచ్ఛమైనది !!" - -#. type: Plain text -#: content/_index.md -msgid "The application is verified by [Exodus Privacy Project][exodus]:" -msgstr "ఈ అప్లికేషన్ [ఎక్సోడస్ ప్రైవసీ ప్రాజెక్ట్][exodus] ద్వారా ధృవీకరించబడింది." - -#. type: Plain text -#: content/_index.md -msgid "{{ exodus_screenshot() }}" -msgstr "{{ exodus_screenshot() }}" - -#. type: Plain text -#: content/_index.md -msgid "The iOS application is verified by [TrackerControl for iOS][trackercontrol]:" -msgstr "iOS అనువర్తనం [TrackerControl for iOS][trackercontrol] ద్వారా ధృవీకరించబడింది." - -#. type: Plain text -#: content/_index.md -msgid "{{ trackercontrol_screenshot() }}" -msgstr "{{ trackercontrol_screenshot() }}" - -#. type: Plain text -#: content/_index.md -msgid "Organic Maps doesn't request excessive permissions to spy on you:" -msgstr "ఆర్గానిక్ మప్స్ మీ మొయిద నిఘా ఉంచాడనికి అనవసరమైన అనుమతులు అడగదు" - -#. type: Plain text -#: content/_index.md -msgid "{{ privacy_screenshots() }}" -msgstr "{{ privacy_screenshots() }}" - -#. type: Plain text -#: content/_index.md -msgid "At Organic Maps, we believe that privacy is a fundamental human right:" -msgstr "ఈ ఆర్గానిక్ మప్స్ లో , మేము మీ గోప్యతను ప్రాధమిక హక్కుగా భావిస్తాము ." - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Organic Maps is an indie community-driven open-source project" -msgstr "ఆర్గానిక్ మ్యాప్స్ ఒక ఇండి కమ్యూనిటీ-నియోజిత ఓపెన్-సోర్స్ ప్రాజెక్ట్." - -#. type: Bullet: '- ' -#: content/_index.md -msgid "We protect your privacy from Big Tech's prying eyes" -msgstr "పెద్ద టెక్ సంస్థల కళ్ళు నుండి మీ గోప్యతను మేము రక్షిస్తాము." - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Stay safe no matter wherever you are" -msgstr "మీరు ఎక్కడ ఉన్న సురక్షితంగా ఉండండి." - -#. type: Plain text -#: content/_index.md content/privacy/index.md -msgid "Reject surveillance - embrace your freedom." -msgstr "పరివీక్షణను తిరస్కరించండి - మీ స్వాత్రంత్యాన్ని స్వాగతించండి" - -#. type: Plain text -#: content/_index.md -#, no-wrap -msgid "**[Give Organic Maps a try!](#install)**\n" -msgstr "**[ఆర్గానిక్ మ్యాప్స్ ని ఒకసారి ప్రయత్నించండి!](#install)**\n" - -#. type: Title ## -#: content/_index.md -#, no-wrap -msgid "Who is paying for the free app?" -msgstr "మరి ఈ ఉచిత అనువర్తనానికి ఎవరు చెల్లిస్తున్నారు?" - -#. type: Plain text -#: content/_index.md -msgid "The app is free for everyone. Please [donate](@/donate/index.md) to support us!" -msgstr "ఈ అనువర్తనం అందరికీ ఉచితం. మాకు తోడ్పడేందుకు [విరాళం] (@/donate/index.md) ఇవ్వండి!" - -#. type: Plain text -#: content/_index.md -msgid "To donate conveniently, click on your preferred payment method icon below:" -msgstr "సులభంగా విరాళం ఇచ్చేందుకు, మీకు నచ్చిన చెల్లింపు విధానం యొక్క ఐకాన్ పై నొక్కండి:" - -#. type: Plain text -#: content/_index.md content/donate/index.md -msgid "{{ donate_buttons() }}" -msgstr "{{ donate_buttons() }}" - -#. type: Title ### -#: content/_index.md -#, no-wrap -msgid "Our sponsors:" -msgstr "మా స్పాన్సర్లు:" - -#. type: Plain text -#: content/_index.md -msgid "[Mythic Beasts](https://www.mythic-beasts.com/) ISP [provides us][mythic_beasts_donation] two virtual servers with 400 TB/month of free bandwidth to help our users with maps downloads and updates." -msgstr "[మైతిక్ బీస్ట్స్](https://www.mythic-beasts.com/) ఇంటర్నెట్ సర్వీస్ ప్రొవైడర్స్ మా వినియోగదార్లకు మ్యాప్ డౌన్లోడ్లు, అప్డేట్లు కోసం రెండు సెర్వర్లలో నెలకి నాలుగు వందల టెరాబైట్ల వరకు బ్యాండ్విడ్త్ ఉచితంగా [ఇస్తున్నారు][mythic_beasts_donation]." - -#. type: Title ## -#: content/_index.md -#, no-wrap -msgid "Community" -msgstr "సంఘం" - -#. type: Plain text -#: content/_index.md -msgid "Organic Maps is an [open-source software][github] licensed under the Apache License 2.0." -msgstr "ఆర్గానిక్ మ్యాప్స్, అపాచీ లైసెన్స్ 2.0 గల ఒక [స్వేచ్ఛామూలాలు][github] సాఫ్ట్‌వేర్." - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Please join our beta program, suggest your features, and report bugs:" -msgstr "మా బీటా ప్రోగ్రామ్ లో చేరి, మీ సూచనలు, తప్పులను నివేదించండి:" - -#. type: Bullet: ' * ' -#: content/_index.md -msgid "[iOS Beta (TestFlight)][testflight]" -msgstr "[ఐఓయస్ (టెస్ట్ ఫ్లైట్)][testflight]" - -#. type: Bullet: ' * ' -#: content/_index.md -msgid "[Android Beta (Firebase)][firebase]" -msgstr "[ఆండ్రాయిడ్ బీటా (ఫైర్బేస్)][firebase]" - -#. type: Bullet: ' * ' -#: content/_index.md -msgid "[Linux Desktop Beta (Flatpak)][flatpak]" -msgstr "[లీనక్స్ డెస్కటాప్ బీటా (ఫ్లాట్పాక్)][flatpak]" - -#. type: Bullet: ' * ' -#: content/_index.md -msgid "[Linux Desktop Beta (packages)][repology]" -msgstr "[లీనక్స్ డెస్కటాప్ బీటా (పాకేజీలు)][repology]" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Report bugs or issues to [the issue tracker][issues] or [email us][email]." -msgstr "బగ్ లు, లేదా సమస్యలను మాకు [ఇస్స్యూ ట్రాకర్][issues] లేదా [ఈ-మెయిల్][email] ద్వారా తెలియజెయ్యండి." - -#. type: Bullet: '- ' -#: content/_index.md -msgid "[Discuss][ideas] ideas or propose feature requests." -msgstr "కొత్త అలోచనలు [చర్చించండి][ideas], ఫీచర్లు ప్రతిపాదించండి." - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Subscribe to our [Telegram Channel][telegram] or to the [matrix space][matrix] for updates." -msgstr "వార్తల కొరకు మా [టెలీగ్రామ్ చానెల్][telegram] లేదా [మ్యాట్రిక్స్ స్పేస్][matrix] కి సబ్ స్క్రైబ్ అవ్వండి." - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Join our [Telegram Group][telegram_chat] to discuss with other users." -msgstr "ఇతర వినియోగదారులతో చర్చించడానికి మా [టెలీగ్రామ్ సమూహం][telegram_chat]లో చేరండి." - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Visit our [GitHub page][github]." -msgstr "మా [గిట్ హబ్ పేజీ][github]ని సందర్సించండి." - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Follow our updates in [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." -msgstr "[ఫోస్టోడాన్][fosstodon], [మాస్టోడాన్][mastodon], [ఫేస్‌బుక్][facebook], [ట్విట్టర్][twitter], [ఇన్‌స్టాగ్రామ్][instagram], [రెడ్డిట్][reddit], [లింకిడిన్][LinkedIn] లో మమ్మల్ని ఫాలో అవ్వండి." - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Join (or create and let us know) local communities: [Hungarian translators Matrix room](https://matrix.to/#/#organicmapstranslate_hu:matrix.org)" -msgstr "" - -#. type: Link reference -#: content/_index.md -#, no-wrap -msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)" -msgstr "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)" - -#. type: Plain text -#: content/_index.md content/donate/index.md content/support-us/index.md -msgid "{{ references() }}" -msgstr "{{ references() }}" - -#. type: Yaml Front Matter Hash Value: description -#: content/donate/index.md -#, no-wrap -msgid "Your money pays for all project-related expenses and motivates us to improve Organic Maps." -msgstr "మీ విరాళాలు ప్రాజెక్ట్ సంబంధిత అన్ని ఖర్చులకు ఉపయోగపడుతాయి. ఇంకా ఆర్గానిక్ మ్యాప్స్ ని మెరుగుపరచడానికి మమ్మల్ని ప్రొత్సహిస్తాయి." - -#. type: Yaml Front Matter Hash Value: extra menu_title -#: content/donate/index.md -#, no-wrap -msgid "Donate" -msgstr "దానం" - -#. type: Yaml Front Matter Hash Value: title -#: content/donate/index.md -#, no-wrap -msgid "Donate to support the development of Organic Maps" -msgstr "ఆర్గానిక్ మ్యాప్స్ అభివృద్ధికి తోడ్పడటానికి విరాళం ఇవ్వండి" - -#. type: Plain text -#: content/donate/index.md -msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]** in **[EUR][stripe_eur], [USD][stripe_usd], [GBP][stripe_GBP], [CHF][stripe_chf], [UAH][stripe_uah], [PLN][stripe_pln]**:" -msgstr "" - -#. type: Bullet: '- ' -#: content/donate/index.md -msgid "No trackers" -msgstr "ట్రాకర్స్ లేవు" - -#. type: Bullet: '- ' -#: content/donate/index.md -msgid "No registration" -msgstr "నమోదు చేసుకోనవసరంలేదు" - -#. type: Bullet: '- ' -#: content/donate/index.md -msgid "Open source" -msgstr "ఓపెన్ సోర్స్" - -#. type: Plain text -#: content/donate/index.md -msgid "Click on your preferred payment method icon below:" -msgstr "కింద మీకు నచ్చిన చెల్లింపు పద్ధతి చిహ్నంపై క్లిక్ చేయండి:" - -#. type: Title ## -#: content/donate/index.md -#, no-wrap -msgid "Why donate to Organic Maps?" -msgstr "ఆర్గానిక్ మ్యాప్స్ కి ఎందుకు విరాళం ఇవ్వాలి?" - -#. type: Bullet: '1. ' -#: content/donate/index.md -msgid "Our goal is to provide a privacy-focused, fast and easy-to-use alternative to Google Maps and Apple Maps." -msgstr "" - -#. type: Bullet: '2. ' -#: content/donate/index.md -msgid "Improving public map data for the numerous websites, apps and platforms which use OpenStreetMap, and involving more people in contributing map info is our another goal." -msgstr "" - -#. type: Bullet: '3. ' -#: content/donate/index.md -msgid "We rely on your donations to keep Organic Maps open and free for everyone. And free from ads." -msgstr "" - -#. type: Bullet: '4. ' -#: content/donate/index.md -msgid "We love what we do, and we love our users ❤️." -msgstr "" - -#. type: Title ## -#: content/donate/index.md -#, no-wrap -msgid "Why a free project needs money?" -msgstr "" - -#. type: Bullet: '1. ' -#: content/donate/index.md -msgid "In 2023, Organic Maps got its first million users. Our servers provide free, fast and frequent map updates all over the world." -msgstr "" - -#. type: Bullet: '2. ' -#: content/donate/index.md -msgid "User support, bugfixing and publishing quality app updates are at the top of our priorities. There are [~2000 bug reports and feature requests on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." -msgstr "" - -#. type: Bullet: '3. ' -#: content/donate/index.md -msgid "With enough money, new features can be developed. To name a few:" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Backup and sync bookmarks and tracks" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "GPS track recorder with GPX export" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Satellite imagery" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Public Transport" -msgstr "Public transport" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Traffic and accident reporting" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Photos and Reviews" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Map styles for different activities" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Hill shading and 3D terrain" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "More advanced OpenStreetMap editor" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Better offline address search, routing, and navigation" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "… and [many other][github issues] features you want and love" -msgstr "" - -#. type: Title ## -#: content/donate/index.md -#, no-wrap -msgid "How to donate?" -msgstr "విరాళం ఎలా ఇవ్వాలి?" - -#. type: Plain text -#: content/donate/index.md -msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. One-time donations are appreciated too." -msgstr "" - -#. type: Title ### -#: content/donate/index.md -#, no-wrap -msgid "Bank Transfer" -msgstr "" - -#. type: Plain text -#: content/donate/index.md -msgid "{{ bank_transfer() }}" -msgstr "{{ bank_transfer() }}" - -#. type: Title ### -#: content/donate/index.md -#, no-wrap -msgid "Crypto" -msgstr "క్రిప్టో" - -#. type: Plain text -#: content/donate/index.md -msgid "Please consider donating annually to reduce total fees." -msgstr "" - -#. type: Plain text -#: content/donate/index.md -msgid "{{ crypto_table() }}" -msgstr "{{ crypto_table() }}" - -#. type: Title ## -#: content/donate/index.md -#, no-wrap -msgid "Can you help us in any other way?" -msgstr "మీరు మాకు ఇంకే విధంగా అయినా సాహాయం చేయగలరా?" - -#. type: Plain text -#: content/donate/index.md -msgid "Yes! There are many ways to support Organic Maps. Please see [Support Us](@/support-us/index.md) page for more details." -msgstr "" - -#. type: Yaml Front Matter Hash Value: description -#: content/news/_index.md -#, no-wrap -msgid "Stay in touch with the latest Organic Maps releases, news and updates from our team" -msgstr "" - -#. type: Yaml Front Matter Hash Value: extra menu_title -#: content/news/_index.md -#, no-wrap -msgid "News" -msgstr "వార్తలు" - -#. type: Yaml Front Matter Hash Value: title -#: content/news/_index.md -#, no-wrap -msgid "Organic Maps: Latest news and updates from our team" -msgstr "" - -#. type: Yaml Front Matter Hash Value: description -#: content/privacy/index.md -#, no-wrap -msgid "No tracking, no ads, no data collection, no statistics collection, no spyware" -msgstr "" - -#. type: Yaml Front Matter Hash Value: extra menu_title -#: content/privacy/index.md -#, no-wrap -msgid "Privacy" -msgstr "అంతరంగికత" - -#. type: Yaml Front Matter Hash Value: title -#: content/privacy/index.md -#, no-wrap -msgid "Organic Maps: Privacy Policy" -msgstr "ఆర్గానిక్ మ్యాప్స్: ప్రైవసీ పాలసీ" - -#. type: Plain text -#: content/privacy/index.md -msgid "Organic Maps respects your privacy and DOES NOT TRACK YOU." -msgstr "" - -#. type: Plain text -#: content/privacy/index.md -msgid "Unlike most other applications, there is no tracking, no ads, no spyware, no data and statistics collection in Organic Maps." -msgstr "" - -#. type: Plain text -#: content/privacy/index.md -msgid "Stay away from Big Tech's prying eyes!" -msgstr "" - -#. type: Plain text -#: content/privacy/index.md content/terms/index.md -msgid "If you have any questions or suggestions, please contact us at [legal@organicmaps.app](mailto:legal@organicmaps.app)." -msgstr "" - -#. type: Plain text -#: content/privacy/index.md -#, no-wrap -msgid "This policy is effective as of 2021-04-24.\n" -msgstr "" - -#. type: Yaml Front Matter Hash Value: description -#: content/support-us/index.md -#, no-wrap -msgid "Different ways to support the development of our free application" -msgstr "" - -#. type: Yaml Front Matter Hash Value: extra menu_title -#: content/support-us/index.md -#, no-wrap -msgid "Support Us" -msgstr "యాప్ అభివృద్ధికి సహకరించండి" - -#. type: Yaml Front Matter Hash Value: title -#: content/support-us/index.md -#, no-wrap -msgid "Support the development of Organic Maps" -msgstr "" - -#. type: Plain text -#: content/support-us/index.md -msgid "Organic Maps is a free, open-source app. It is free from ads, it does not collect your personal information, and it is developed by a few enthusiasts with the help of the community." -msgstr "" - -#. type: Plain text -#: content/support-us/index.md -msgid "There are different ways to support the development:" -msgstr "" - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "[Donate](@/donate/index.md)! Every dollar or euro counts and helps us to pay for servers and scale." -msgstr "" - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "Report bugs and share ideas on our [GitHub][github] or via [email][email]." -msgstr "" - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "Help us to [fix bugs][contributing] and do code reviews if you are a developer. Every fixed small issue makes someone happier." -msgstr "" - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "[Translate][translations] missing strings in the app's interface." -msgstr "" - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "Translate [App Store][translations_appstore] and [Android][translations_googleplay] descriptions into your language." -msgstr "" - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "[Translate][translations_website] our web site into your language." -msgstr "" - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "Join the [OpenStreetMap][openstreetmap] community and contribute to the maps data." -msgstr "" - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "Fix red cities found by our [public transport validator][public_transport_validator], for subways and light rails to work in the app." -msgstr "" - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "Support other users on [GitHub][issues], [Telegram][telegram_chat], [Matrix][matrix], [Twitter][twitter], [Facebook][facebook], [Instagram][instagram]." -msgstr "" - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "Tell everyone about Organic Maps. A bigger community is a stronger community." -msgstr "" - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "Rate us in [Google Play][googleplay_review], [Apple Store][appstore_review], [Huawei Appgallery][appgallery_review]." -msgstr "" - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "Any help is welcome!" -msgstr "" - -#. type: Plain text -#: content/support-us/index.md -msgid "Our small team is very grateful for your feedback and support. Organic Maps would not be possible without our users ❤️." -msgstr "" - -#. type: Yaml Front Matter Hash Value: description -#: content/terms/index.md -#, no-wrap -msgid "Terms of use for Organic Maps application" -msgstr "" - -#. type: Yaml Front Matter Hash Value: extra menu_title -#: content/terms/index.md -#, no-wrap -msgid "Terms" -msgstr "నియమాలు" - -#. type: Yaml Front Matter Hash Value: title -#: content/terms/index.md -#, no-wrap -msgid "Organic Maps: terms" -msgstr "" - -#. type: Plain text -#: content/terms/index.md -msgid "This app is licensed under the Apache License, Version 2.0 (the \"License\"); you may not use this application except in compliance with the License." -msgstr "" - -#. type: Plain text -#: content/terms/index.md -msgid "You may obtain a copy of the License at [http://www.apache.org/licenses/LICENSE-2.0][license]" -msgstr "" - -#. type: Plain text -#: content/terms/index.md -msgid "Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License." -msgstr "" - -#. type: Plain text -#: content/terms/index.md -msgid "Most libraries in the following directories on [GitHub][github] made by other people and organizations and licensed in different ways:" -msgstr "" - -#. type: Bullet: '- ' -#: content/terms/index.md -msgid "3party" -msgstr "" - -#. type: Bullet: '- ' -#: content/terms/index.md -msgid "tools" -msgstr "" - -#. type: Plain text -#: content/terms/index.md -msgid "Please refer to their LICENSE, COPYING or NOTICE files for terms of use." -msgstr "" - -#. type: Plain text -#: content/terms/index.md -msgid "See also [data/copyright.html][copyright] file for a full list of copyright notices for Organic Maps application." -msgstr "" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[github]: https://github.com/organicmaps/organicmaps" -msgstr "" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[license]: http://www.apache.org/licenses/LICENSE-2.0" -msgstr "" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html" -msgstr "" - -#. type: Hash Value: address -#: translations.yaml -#, no-wrap -msgid "Address" -msgstr "Address" - -#. type: Hash Value: back -#: translations.yaml -#, no-wrap -msgid "Back to News" -msgstr "" - -#. type: Hash Value: contact -#: translations.yaml -#, no-wrap -msgid "Contact Us" -msgstr "Contact us" - -#. type: Hash Value: engines -#: translations.yaml -#, no-wrap -msgid "Supported TTS Engines" -msgstr "" - -#. type: Hash Value: faq-menu-title -#: translations.yaml -#, no-wrap -msgid "F.A.Q." -msgstr "" - -#. type: Hash Value: install-appgallery -#: translations.yaml -#, no-wrap -msgid "Install Organic Maps from Huawei AppGallery" -msgstr "" - -#. type: Hash Value: install-appstore -#: translations.yaml -#, no-wrap -msgid "Install Organic Maps from the AppStore" -msgstr "" - -#. type: Hash Value: install-fdroid -#: translations.yaml -#, no-wrap -msgid "Install Organic Maps from F-Droid" -msgstr "" - -#. type: Hash Value: install-googleplay -#: translations.yaml -#, no-wrap -msgid "Install Organic Maps from Google Play" -msgstr "" - -#. type: Hash Value: language -#: translations.yaml -#, no-wrap -msgid "English" -msgstr "తెలుగు" - -#. type: Hash Value: language-word -#: translations.yaml -#, no-wrap -msgid "Language" -msgstr "భాష" - -#. type: Hash Value: name -#: translations.yaml -#, no-wrap -msgid "Name" -msgstr "Name" - -#. type: Hash Value: token -#: translations.yaml -#, no-wrap -msgid "Token" -msgstr "" - -#~ msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]**:" -#~ msgstr "ఆర్గానిక్ మ్యాప్స్ యాప్ _అందరికీ ఉచితం_. ఇది కేవలం మీ **[విరాళాల][stripe]** వలనే సాధ్యం:" - -#, no-wrap -#~ msgid "What will the money be used for?" -#~ msgstr "ఈ డబ్బును దేనికి ఉపయోగిస్తారు?" - -#~ msgid "Android Auto" -#~ msgstr "ఆండ్రోయిడ్ ఆటో" - -#, no-wrap -#~ msgid "" -#~ "[stripe]: https://donate.organicmaps.app/ \"Donate via Stripe\"\n" -#~ "[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" -#~ msgstr "" -#~ "[stripe]: https://donate.organicmaps.app/ \"Donate via Stripe\"\n" -#~ "[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" diff --git a/po/content.tr.po b/po/content.tr.po deleted file mode 100644 index 1fb72f27..00000000 --- a/po/content.tr.po +++ /dev/null @@ -1,891 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Organic Maps -# This file is distributed under the same license as the Organic Maps Website package. -# FIRST AUTHOR , YEAR. -# -msgid "" -msgstr "Project-Id-Version: Organic Maps Website 1.0\nPO-Revision-Date: 2024-04-02 19:54+0000\nLast-Translator: Weblate Translation Memory \nLanguage-Team: Turkish \nLanguage: tr\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-Forms: nplurals=2; plural=n != 1;\nX-Generator: Weblate 5.5-dev\n" - -#. type: Yaml Front Matter Hash Value: description -#: content/_index.md -#, no-wrap -msgid "Fast detailed offline maps for travelers, tourists, drivers, hikers and cyclists created by MapsWithMe (Maps.Me) app founders." -msgstr "" - -#. type: Yaml Front Matter Hash Value: extra menu_title -#: content/_index.md -#, no-wrap -msgid "Home" -msgstr "Ana sayfa" - -#. type: Yaml Front Matter Hash Value: title -#: content/_index.md -#, no-wrap -msgid "Organic Maps: Offline Hike, Bike, Trails and Navigation" -msgstr "" - -#. type: Plain text -#: content/_index.md -#, no-wrap -msgid "" -"**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, drivers and cyclists based on **[OpenStreetMap][openstreetmap]** data created by the community.\n" -"It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" -msgstr "" - -#. type: Plain text -#: content/_index.md -#, no-wrap -msgid "**Organic Maps** is one of the few applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card, and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" -msgstr "" - -#. type: Plain text -#: content/_index.md -#, no-wrap -msgid "> In 2023, Organic Maps [got its first million](@/news/2023-12-23/281/index.md) users. [Help us](@/donate/index.md) to scale!\n" -msgstr "" - -#. type: Title ### -#: content/_index.md -#, no-wrap -msgid "Download and install Organic Maps from [AppStore][appstore], [Google Play][googleplay], [FDroid][fdroid], [Huawei AppGallery][appgallery] {#install}" -msgstr "" - -#. type: Plain text -#: content/_index.md -msgid "{{ badges() }}" -msgstr "" - -#. type: Plain text -#: content/_index.md -msgid "{{ screenshot(src='/images/screenshots/hiking.jpg', alt='Hiking') }}" -msgstr "" - -#. type: Plain text -#: content/_index.md -msgid "{{ screenshot(src='/images/screenshots/prague.jpg', alt='Prague') }}" -msgstr "" - -#. type: Plain text -#: content/_index.md -msgid "{{ screenshot(src='/images/screenshots/search.jpg', alt='Offline Search') }}" -msgstr "" - -#. type: Plain text -#: content/_index.md -msgid "{{ screenshot(src='/images/screenshots/dark.jpg', alt='Navigation in dark mode') }}" -msgstr "" - -#. type: Title ## -#: content/_index.md -#, no-wrap -msgid "Features" -msgstr "Features" - -#. type: Plain text -#: content/_index.md -msgid "Organic Maps is the ultimate companion app for travelers, tourists, hikers, and cyclists:" -msgstr "" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Detailed offline maps with places that don't exist on other maps, thanks to [OpenStreetMap][openstreetmap]" -msgstr "" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Cycling routes, hiking trails, and walking paths" -msgstr "" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Contour lines, elevation profiles, peaks, and slopes" -msgstr "" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance and Android Auto" -msgstr "" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Fast offline search on the map" -msgstr "" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Export/import bookmarks in KML/KMZ, import GPX" -msgstr "" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Dark Mode to protect your eyes" -msgstr "" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Countries and regions don't take a lot of space" -msgstr "" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Free and open-source" -msgstr "Özgür ve açık kaynaklı" - -#. type: Title ## -#: content/_index.md -#, no-wrap -msgid "Why Organic?" -msgstr "" - -#. type: Plain text -#: content/_index.md -msgid "Organic Maps is pure and organic, made with love:" -msgstr "" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Respects your privacy" -msgstr "" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Saves your battery" -msgstr "" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "No unexpected mobile data charges" -msgstr "" - -#. type: Plain text -#: content/_index.md -msgid "Organic Maps app is free from trackers and other bad stuff:" -msgstr "" - -#. type: Bullet: '- ' -#: content/_index.md content/donate/index.md -msgid "No ads" -msgstr "Reklamsız" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "No tracking" -msgstr "İzlenme yok." - -#. type: Bullet: '- ' -#: content/_index.md -msgid "No data collection" -msgstr "" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "No phoning home" -msgstr "" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "No annoying registration" -msgstr "" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "No mandatory tutorials" -msgstr "" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "No noisy email spam" -msgstr "" - -#. type: Bullet: '- ' -#: content/_index.md content/donate/index.md -msgid "No push notifications" -msgstr "" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "No crapware" -msgstr "" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "~~No pesticides~~ Purely organic!" -msgstr "" - -#. type: Plain text -#: content/_index.md -msgid "The application is verified by [Exodus Privacy Project][exodus]:" -msgstr "" - -#. type: Plain text -#: content/_index.md -msgid "{{ exodus_screenshot() }}" -msgstr "" - -#. type: Plain text -#: content/_index.md -msgid "The iOS application is verified by [TrackerControl for iOS][trackercontrol]:" -msgstr "" - -#. type: Plain text -#: content/_index.md -msgid "{{ trackercontrol_screenshot() }}" -msgstr "" - -#. type: Plain text -#: content/_index.md -msgid "Organic Maps doesn't request excessive permissions to spy on you:" -msgstr "" - -#. type: Plain text -#: content/_index.md -msgid "{{ privacy_screenshots() }}" -msgstr "" - -#. type: Plain text -#: content/_index.md -msgid "At Organic Maps, we believe that privacy is a fundamental human right:" -msgstr "" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Organic Maps is an indie community-driven open-source project" -msgstr "" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "We protect your privacy from Big Tech's prying eyes" -msgstr "" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Stay safe no matter wherever you are" -msgstr "" - -#. type: Plain text -#: content/_index.md content/privacy/index.md -msgid "Reject surveillance - embrace your freedom." -msgstr "" - -#. type: Plain text -#: content/_index.md -#, no-wrap -msgid "**[Give Organic Maps a try!](#install)**\n" -msgstr "" - -#. type: Title ## -#: content/_index.md -#, no-wrap -msgid "Who is paying for the free app?" -msgstr "" - -#. type: Plain text -#: content/_index.md -msgid "The app is free for everyone. Please [donate](@/donate/index.md) to support us!" -msgstr "" - -#. type: Plain text -#: content/_index.md -msgid "To donate conveniently, click on your preferred payment method icon below:" -msgstr "" - -#. type: Plain text -#: content/_index.md content/donate/index.md -msgid "{{ donate_buttons() }}" -msgstr "" - -#. type: Title ### -#: content/_index.md -#, no-wrap -msgid "Our sponsors:" -msgstr "Sponsorlarımız" - -#. type: Plain text -#: content/_index.md -msgid "[Mythic Beasts](https://www.mythic-beasts.com/) ISP [provides us][mythic_beasts_donation] two virtual servers with 400 TB/month of free bandwidth to help our users with maps downloads and updates." -msgstr "" - -#. type: Title ## -#: content/_index.md -#, no-wrap -msgid "Community" -msgstr "Topluluk" - -#. type: Plain text -#: content/_index.md -msgid "Organic Maps is an [open-source software][github] licensed under the Apache License 2.0." -msgstr "" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Please join our beta program, suggest your features, and report bugs:" -msgstr "" - -#. type: Bullet: ' * ' -#: content/_index.md -msgid "[iOS Beta (TestFlight)][testflight]" -msgstr "" - -#. type: Bullet: ' * ' -#: content/_index.md -msgid "[Android Beta (Firebase)][firebase]" -msgstr "" - -#. type: Bullet: ' * ' -#: content/_index.md -msgid "[Linux Desktop Beta (Flatpak)][flatpak]" -msgstr "" - -#. type: Bullet: ' * ' -#: content/_index.md -msgid "[Linux Desktop Beta (packages)][repology]" -msgstr "" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Report bugs or issues to [the issue tracker][issues] or [email us][email]." -msgstr "" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "[Discuss][ideas] ideas or propose feature requests." -msgstr "" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Subscribe to our [Telegram Channel][telegram] or to the [matrix space][matrix] for updates." -msgstr "" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Join our [Telegram Group][telegram_chat] to discuss with other users." -msgstr "" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Visit our [GitHub page][github]." -msgstr "" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Follow our updates in [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." -msgstr "" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Join (or create and let us know) local communities: [Hungarian translators Matrix room](https://matrix.to/#/#organicmapstranslate_hu:matrix.org)" -msgstr "" - -#. type: Link reference -#: content/_index.md -#, no-wrap -msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)" -msgstr "" - -#. type: Plain text -#: content/_index.md content/donate/index.md content/support-us/index.md -msgid "{{ references() }}" -msgstr "" - -#. type: Yaml Front Matter Hash Value: description -#: content/donate/index.md -#, no-wrap -msgid "Your money pays for all project-related expenses and motivates us to improve Organic Maps." -msgstr "" - -#. type: Yaml Front Matter Hash Value: extra menu_title -#: content/donate/index.md -#, no-wrap -msgid "Donate" -msgstr "Bağış yap" - -#. type: Yaml Front Matter Hash Value: title -#: content/donate/index.md -#, no-wrap -msgid "Donate to support the development of Organic Maps" -msgstr "" - -#. type: Plain text -#: content/donate/index.md -msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]** in **[EUR][stripe_eur], [USD][stripe_usd], [GBP][stripe_GBP], [CHF][stripe_chf], [UAH][stripe_uah], [PLN][stripe_pln]**:" -msgstr "" - -#. type: Bullet: '- ' -#: content/donate/index.md -msgid "No trackers" -msgstr "" - -#. type: Bullet: '- ' -#: content/donate/index.md -msgid "No registration" -msgstr "" - -#. type: Bullet: '- ' -#: content/donate/index.md -msgid "Open source" -msgstr "Açık Kaynak" - -#. type: Plain text -#: content/donate/index.md -msgid "Click on your preferred payment method icon below:" -msgstr "" - -#. type: Title ## -#: content/donate/index.md -#, no-wrap -msgid "Why donate to Organic Maps?" -msgstr "" - -#. type: Bullet: '1. ' -#: content/donate/index.md -msgid "Our goal is to provide a privacy-focused, fast and easy-to-use alternative to Google Maps and Apple Maps." -msgstr "" - -#. type: Bullet: '2. ' -#: content/donate/index.md -msgid "Improving public map data for the numerous websites, apps and platforms which use OpenStreetMap, and involving more people in contributing map info is our another goal." -msgstr "" - -#. type: Bullet: '3. ' -#: content/donate/index.md -msgid "We rely on your donations to keep Organic Maps open and free for everyone. And free from ads." -msgstr "" - -#. type: Bullet: '4. ' -#: content/donate/index.md -msgid "We love what we do, and we love our users ❤️." -msgstr "" - -#. type: Title ## -#: content/donate/index.md -#, no-wrap -msgid "Why a free project needs money?" -msgstr "" - -#. type: Bullet: '1. ' -#: content/donate/index.md -msgid "In 2023, Organic Maps got its first million users. Our servers provide free, fast and frequent map updates all over the world." -msgstr "" - -#. type: Bullet: '2. ' -#: content/donate/index.md -msgid "User support, bugfixing and publishing quality app updates are at the top of our priorities. There are [~2000 bug reports and feature requests on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." -msgstr "" - -#. type: Bullet: '3. ' -#: content/donate/index.md -msgid "With enough money, new features can be developed. To name a few:" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Backup and sync bookmarks and tracks" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "GPS track recorder with GPX export" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Satellite imagery" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Public Transport" -msgstr "Public Transport" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Traffic and accident reporting" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Photos and Reviews" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Map styles for different activities" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Hill shading and 3D terrain" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "More advanced OpenStreetMap editor" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Better offline address search, routing, and navigation" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "… and [many other][github issues] features you want and love" -msgstr "" - -#. type: Title ## -#: content/donate/index.md -#, no-wrap -msgid "How to donate?" -msgstr "" - -#. type: Plain text -#: content/donate/index.md -msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. One-time donations are appreciated too." -msgstr "" - -#. type: Title ### -#: content/donate/index.md -#, no-wrap -msgid "Bank Transfer" -msgstr "Banka Havalesi" - -#. type: Plain text -#: content/donate/index.md -msgid "{{ bank_transfer() }}" -msgstr "" - -#. type: Title ### -#: content/donate/index.md -#, no-wrap -msgid "Crypto" -msgstr "Kripto" - -#. type: Plain text -#: content/donate/index.md -msgid "Please consider donating annually to reduce total fees." -msgstr "" - -#. type: Plain text -#: content/donate/index.md -msgid "{{ crypto_table() }}" -msgstr "" - -#. type: Title ## -#: content/donate/index.md -#, no-wrap -msgid "Can you help us in any other way?" -msgstr "" - -#. type: Plain text -#: content/donate/index.md -msgid "Yes! There are many ways to support Organic Maps. Please see [Support Us](@/support-us/index.md) page for more details." -msgstr "" - -#. type: Yaml Front Matter Hash Value: description -#: content/news/_index.md -#, no-wrap -msgid "Stay in touch with the latest Organic Maps releases, news and updates from our team" -msgstr "" - -#. type: Yaml Front Matter Hash Value: extra menu_title -#: content/news/_index.md -#, no-wrap -msgid "News" -msgstr "Haberler" - -#. type: Yaml Front Matter Hash Value: title -#: content/news/_index.md -#, no-wrap -msgid "Organic Maps: Latest news and updates from our team" -msgstr "" - -#. type: Yaml Front Matter Hash Value: description -#: content/privacy/index.md -#, no-wrap -msgid "No tracking, no ads, no data collection, no statistics collection, no spyware" -msgstr "" - -#. type: Yaml Front Matter Hash Value: extra menu_title -#: content/privacy/index.md -#, no-wrap -msgid "Privacy" -msgstr "Gizlilik" - -#. type: Yaml Front Matter Hash Value: title -#: content/privacy/index.md -#, no-wrap -msgid "Organic Maps: Privacy Policy" -msgstr "" - -#. type: Plain text -#: content/privacy/index.md -msgid "Organic Maps respects your privacy and DOES NOT TRACK YOU." -msgstr "" - -#. type: Plain text -#: content/privacy/index.md -msgid "Unlike most other applications, there is no tracking, no ads, no spyware, no data and statistics collection in Organic Maps." -msgstr "" - -#. type: Plain text -#: content/privacy/index.md -msgid "Stay away from Big Tech's prying eyes!" -msgstr "" - -#. type: Plain text -#: content/privacy/index.md content/terms/index.md -msgid "If you have any questions or suggestions, please contact us at [legal@organicmaps.app](mailto:legal@organicmaps.app)." -msgstr "" - -#. type: Plain text -#: content/privacy/index.md -#, no-wrap -msgid "This policy is effective as of 2021-04-24.\n" -msgstr "" - -#. type: Yaml Front Matter Hash Value: description -#: content/support-us/index.md -#, no-wrap -msgid "Different ways to support the development of our free application" -msgstr "" - -#. type: Yaml Front Matter Hash Value: extra menu_title -#: content/support-us/index.md -#, no-wrap -msgid "Support Us" -msgstr "Bizi Destekleyin" - -#. type: Yaml Front Matter Hash Value: title -#: content/support-us/index.md -#, no-wrap -msgid "Support the development of Organic Maps" -msgstr "" - -#. type: Plain text -#: content/support-us/index.md -msgid "Organic Maps is a free, open-source app. It is free from ads, it does not collect your personal information, and it is developed by a few enthusiasts with the help of the community." -msgstr "" - -#. type: Plain text -#: content/support-us/index.md -msgid "There are different ways to support the development:" -msgstr "" - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "[Donate](@/donate/index.md)! Every dollar or euro counts and helps us to pay for servers and scale." -msgstr "" - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "Report bugs and share ideas on our [GitHub][github] or via [email][email]." -msgstr "" - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "Help us to [fix bugs][contributing] and do code reviews if you are a developer. Every fixed small issue makes someone happier." -msgstr "" - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "[Translate][translations] missing strings in the app's interface." -msgstr "" - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "Translate [App Store][translations_appstore] and [Android][translations_googleplay] descriptions into your language." -msgstr "" - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "[Translate][translations_website] our web site into your language." -msgstr "" - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "Join the [OpenStreetMap][openstreetmap] community and contribute to the maps data." -msgstr "" - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "Fix red cities found by our [public transport validator][public_transport_validator], for subways and light rails to work in the app." -msgstr "" - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "Support other users on [GitHub][issues], [Telegram][telegram_chat], [Matrix][matrix], [Twitter][twitter], [Facebook][facebook], [Instagram][instagram]." -msgstr "" - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "Tell everyone about Organic Maps. A bigger community is a stronger community." -msgstr "" - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "Rate us in [Google Play][googleplay_review], [Apple Store][appstore_review], [Huawei Appgallery][appgallery_review]." -msgstr "" - -#. type: Bullet: '- ' -#: content/support-us/index.md -msgid "Any help is welcome!" -msgstr "" - -#. type: Plain text -#: content/support-us/index.md -msgid "Our small team is very grateful for your feedback and support. Organic Maps would not be possible without our users ❤️." -msgstr "" - -#. type: Yaml Front Matter Hash Value: description -#: content/terms/index.md -#, no-wrap -msgid "Terms of use for Organic Maps application" -msgstr "" - -#. type: Yaml Front Matter Hash Value: extra menu_title -#: content/terms/index.md -#, no-wrap -msgid "Terms" -msgstr "Koşullar" - -#. type: Yaml Front Matter Hash Value: title -#: content/terms/index.md -#, no-wrap -msgid "Organic Maps: terms" -msgstr "" - -#. type: Plain text -#: content/terms/index.md -msgid "This app is licensed under the Apache License, Version 2.0 (the \"License\"); you may not use this application except in compliance with the License." -msgstr "" - -#. type: Plain text -#: content/terms/index.md -msgid "You may obtain a copy of the License at [http://www.apache.org/licenses/LICENSE-2.0][license]" -msgstr "" - -#. type: Plain text -#: content/terms/index.md -msgid "Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License." -msgstr "" - -#. type: Plain text -#: content/terms/index.md -msgid "Most libraries in the following directories on [GitHub][github] made by other people and organizations and licensed in different ways:" -msgstr "" - -#. type: Bullet: '- ' -#: content/terms/index.md -msgid "3party" -msgstr "" - -#. type: Bullet: '- ' -#: content/terms/index.md -msgid "tools" -msgstr "Araçlar" - -#. type: Plain text -#: content/terms/index.md -msgid "Please refer to their LICENSE, COPYING or NOTICE files for terms of use." -msgstr "" - -#. type: Plain text -#: content/terms/index.md -msgid "See also [data/copyright.html][copyright] file for a full list of copyright notices for Organic Maps application." -msgstr "" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[github]: https://github.com/organicmaps/organicmaps" -msgstr "" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[license]: http://www.apache.org/licenses/LICENSE-2.0" -msgstr "" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html" -msgstr "" - -#. type: Hash Value: address -#: translations.yaml -#, no-wrap -msgid "Address" -msgstr "Adres" - -#. type: Hash Value: back -#: translations.yaml -#, no-wrap -msgid "Back to News" -msgstr "" - -#. type: Hash Value: contact -#: translations.yaml -#, no-wrap -msgid "Contact Us" -msgstr "İletişim" - -#. type: Hash Value: engines -#: translations.yaml -#, no-wrap -msgid "Supported TTS Engines" -msgstr "" - -#. type: Hash Value: faq-menu-title -#: translations.yaml -#, no-wrap -msgid "F.A.Q." -msgstr "" - -#. type: Hash Value: install-appgallery -#: translations.yaml -#, no-wrap -msgid "Install Organic Maps from Huawei AppGallery" -msgstr "" - -#. type: Hash Value: install-appstore -#: translations.yaml -#, no-wrap -msgid "Install Organic Maps from the AppStore" -msgstr "" - -#. type: Hash Value: install-fdroid -#: translations.yaml -#, no-wrap -msgid "Install Organic Maps from F-Droid" -msgstr "" - -#. type: Hash Value: install-googleplay -#: translations.yaml -#, no-wrap -msgid "Install Organic Maps from Google Play" -msgstr "" - -#. type: Hash Value: language -#: translations.yaml -#, no-wrap -msgid "English" -msgstr "Türkçe" - -#. type: Hash Value: language-word -#: translations.yaml -#, no-wrap -msgid "Language" -msgstr "Dil" - -#. type: Hash Value: name -#: translations.yaml -#, no-wrap -msgid "Name" -msgstr "Ad" - -#. type: Hash Value: token -#: translations.yaml -#, no-wrap -msgid "Token" -msgstr "Belirteç" diff --git a/po/content.uk.po b/po/content.uk.po index 3c44ce14..108633b7 100644 --- a/po/content.uk.po +++ b/po/content.uk.po @@ -4,7 +4,7 @@ # FIRST AUTHOR , YEAR. # msgid "" -msgstr "Project-Id-Version: Organic Maps Website 1.0\nPO-Revision-Date: 2024-04-02 19:54+0000\nLast-Translator: Weblate Translation Memory \nLanguage-Team: Ukrainian \nLanguage: uk\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-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);\nX-Generator: Weblate 5.5-dev\n" +msgstr "Project-Id-Version: Organic Maps Website 1.0\nPO-Revision-Date: 2023-08-05 07:04+0000\nLast-Translator: Skrripy \nLanguage-Team: Ukrainian \nLanguage: uk\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-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;\nX-Generator: Weblate 5.0-dev\n" #. type: Yaml Front Matter Hash Value: description #: content/_index.md @@ -27,23 +27,15 @@ msgstr "Organic Maps: Офлайн карти та GPS навігація" #. type: Plain text #: content/_index.md #, no-wrap -msgid "" -"**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, drivers and cyclists based on **[OpenStreetMap][openstreetmap]** data created by the community.\n" -"It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" +msgid "**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, and cyclists based on top of crowd-sourced **[OpenStreetMap][openstreetmap]** data. It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" msgstr "**Organic Maps** - це безкоштовний офлайн застосунок під Android та iOS для мандрівників, туристів, пішоходів та велосипедистів, що базується на даних з відкритого джерела **[OpenStreetMap][openstreetmap]**. Це орієнтований на конфіденційність, відкритий [форк][fork] застосунку **Maps.me** (раніше відомого, як [**MapsWithMe**][mapswithme]), який підтримується тими ж людьми, що створили **MapsWithMe** у 2011 році.\n" #. type: Plain text #: content/_index.md #, no-wrap -msgid "**Organic Maps** is one of the few applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card, and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" +msgid "**Organic Maps** is one of the only applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card (by the way, your operator constantly tracks you), and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" msgstr "**Organic Maps** - один з небагатьох застосунків, який підтримує 100% функціональність без активного інтернет-з’єднання. Встановіть Organic Maps, завантажте мапи, викиньте SIM-карту (до речі, ваш оператор постійно відстежує вас) та вирушайте в тижневу подорож на одному заряді батареї без жодного байта, відправленого в мережу.\n" -#. type: Plain text -#: content/_index.md -#, no-wrap -msgid "> In 2023, Organic Maps [got its first million](@/news/2023-12-23/281/index.md) users. [Help us](@/donate/index.md) to scale!\n" -msgstr "" - #. type: Title ### #: content/_index.md #, no-wrap @@ -103,8 +95,8 @@ msgstr "Контурні лінії, профілі висот, піки та с #. type: Bullet: '- ' #: content/_index.md -msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance and Android Auto" -msgstr "Покрокові інструкції для пішоходів, велосипедистів та автомобільна навігація з голосовим супроводом, Android Auto" +msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance" +msgstr "Покрокові інструкції для пішоходів, велосипедистів та автомобільна навігація з голосовим супроводом" #. type: Bullet: '- ' #: content/_index.md @@ -113,7 +105,7 @@ msgstr "Швидкий офлайн пошук на мапі" #. type: Bullet: '- ' #: content/_index.md -msgid "Export/import bookmarks in KML/KMZ, import GPX" +msgid "Bookmarks and tracks in KML, KMZ, GPX formats" msgstr "Експорт та імпорт закладок та треків у форматах KML/KMZ та GPX" #. type: Bullet: '- ' @@ -224,11 +216,13 @@ msgstr "{{ exodus_screenshot() }}" #. type: Plain text #: content/_index.md +#, markdown-text msgid "The iOS application is verified by [TrackerControl for iOS][trackercontrol]:" msgstr "Застосусок для iOS перевірено за допомогою [TrackerControl for iOS][trackercontrol]:" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ trackercontrol_screenshot() }}" msgstr "{{ trackercontrol_screenshot() }}" @@ -368,22 +362,17 @@ msgstr "Відвідайте нашу [сторінку на GitHub][github]." #. type: Bullet: '- ' #: content/_index.md -msgid "Follow our updates in [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." -msgstr "Слідкуйте за нами у [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Join (or create and let us know) local communities: [Hungarian translators Matrix room](https://matrix.to/#/#organicmapstranslate_hu:matrix.org)" -msgstr "" - -#. type: Link reference -#: content/_index.md -#, no-wrap -msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)" -msgstr "[fork]: https://uk.wikipedia.org/wiki/%D0%A4%D0%BE%D1%80%D0%BA" +msgid "Follow our updates in [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." +msgstr "Слідкуйте за нами у [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." #. type: Plain text -#: content/_index.md content/donate/index.md content/support-us/index.md +#: content/_index.md +#, no-wrap +msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)\n" +msgstr "[fork]: https://uk.wikipedia.org/wiki/%D0%A4%D0%BE%D1%80%D0%BA\n" + +#. type: Plain text +#: content/_index.md content/support-us/index.md msgid "{{ references() }}" msgstr "{{ references() }}" @@ -407,7 +396,7 @@ msgstr "Пожертвуйте, щоб підтримати розвиток Org #. type: Plain text #: content/donate/index.md -msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]** in **[EUR][stripe_eur], [USD][stripe_usd], [GBP][stripe_GBP], [CHF][stripe_chf], [UAH][stripe_uah], [PLN][stripe_pln]**:" +msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]**:" msgstr "Organic Maps є _безкоштовним для всіх_ завдяки вашим **[пожертвам][stripe]**:" #. type: Bullet: '- ' @@ -438,78 +427,63 @@ msgstr "Чому варто пожертвувати на Organic Maps?" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "Our goal is to provide a privacy-focused, fast and easy-to-use alternative to Google Maps and Apple Maps." -msgstr "" +msgid "We rely on your donations to carry out our mission to keep Organic Maps open and free. And free from ads." +msgstr "Ми покладаємося на ваші пожертви, щоб здійснювати нашу місію - тримати Organic Maps відкритим та безкоштовним. А також вільним від реклами." #. type: Bullet: '2. ' #: content/donate/index.md -msgid "Improving public map data for the numerous websites, apps and platforms which use OpenStreetMap, and involving more people in contributing map info is our another goal." -msgstr "" +msgid "We are a few enthusiasts contributing in our free time, and spending our families' money on the project. We love what we do, and we love our users ❤️." +msgstr "Ми - кілька ентузіастів, які роблять свій внесок у вільний час і витрачають на проєкт гроші своїх родин. Ми любимо те, що робимо, і ми любимо наших користувачів ❤️." #. type: Bullet: '3. ' #: content/donate/index.md -msgid "We rely on your donations to keep Organic Maps open and free for everyone. And free from ads." -msgstr "Ми покладаємося на ваші пожертви, щоб здійснювати нашу місію - тримати Organic Maps відкритим та безкоштовним. А також вільним від реклами." - -#. type: Bullet: '4. ' -#: content/donate/index.md -msgid "We love what we do, and we love our users ❤️." -msgstr "" +msgid "With your support, we want to become a better, privacy-focused version of Google Maps." +msgstr "З вашою підтримкою ми хочемо стати кращою, орієнтованою на конфіденційність версією Google Maps." #. type: Title ## #: content/donate/index.md #, no-wrap -msgid "Why a free project needs money?" -msgstr "" +msgid "What will the money be used for?" +msgstr "На що підуть ці кошти?" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "In 2023, Organic Maps got its first million users. Our servers provide free, fast and frequent map updates all over the world." -msgstr "" +msgid "We pay for fast servers, so anyone in the World can download free map data updates without delays. It's hundreds of terabytes monthly, and the amount is growing." +msgstr "Ми платимо за швидкі сервери, щоб будь-хто у світі міг завантажувати безкоштовні оновлення картографічних даних без затримок. Це сотні терабайт щомісяця, і обʼєми зростають." #. type: Bullet: '2. ' #: content/donate/index.md -msgid "User support, bugfixing and publishing quality app updates are at the top of our priorities. There are [~2000 bug reports and feature requests on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." +msgid "User support, bugfixing, and improving the stability of the app are at the top of our priorities. There are [1800+ issues on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." msgstr "Підтримка користувачів, виправлення помилок та покращення стабільності роботи застосунку є одними з наших пріоритетів. На GitHub існує [1800+ проблем][github issues], і ця кількість зростає щодня. AppStore, Google Play та електронна пошта служби підтримки переповнені коментарями та помилками. Ми хочемо створювати якісний продукт." #. type: Bullet: '3. ' #: content/donate/index.md -msgid "With enough money, new features can be developed. To name a few:" +msgid "With enough money, new features can be developed faster, for example:" msgstr "Наприклад, маючи достатньо грошей, можна швидше розробляти нові функції:" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Backup and sync bookmarks and tracks" -msgstr "" +msgid "Weekly and automated map data updates" +msgstr "Щотижневе та автоматичне оновлення картографічних даних" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "GPS track recorder with GPX export" +msgid "Bookmarks backup and sync" +msgstr "Резервне копіювання та синхронізація закладок" + +#. type: Bullet: ' - ' +#: content/donate/index.md +msgid "Android Auto" +msgstr "Android Auto" + +#. type: Bullet: ' - ' +#: content/donate/index.md +msgid "GPS track recorder with GPX support" msgstr "GPS реєстратор з підтримкою GPX" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Satellite imagery" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Public Transport" -msgstr "Громадський транспорт" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Traffic and accident reporting" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Photos and Reviews" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Map styles for different activities" +msgid "Better map styles for different activities" msgstr "Кращі стилі мап для різних видів діяльності" #. type: Bullet: ' - ' @@ -519,14 +493,19 @@ msgstr "Затінення пагорбів і 3D-рельєф" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "More advanced OpenStreetMap editor" -msgstr "Досконаліший редактор OpenStreetMap" +msgid "Improve the OpenStreetMap editor" +msgstr "Покращення редактору OpenStreetMap" #. type: Bullet: ' - ' #: content/donate/index.md msgid "Better offline address search, routing, and navigation" msgstr "Покращений пошук адрес, маршрутизація та навігація в автономному режимі" +#. type: Bullet: ' - ' +#: content/donate/index.md +msgid "Public Transport" +msgstr "Громадський транспорт" + #. type: Bullet: ' - ' #: content/donate/index.md msgid "… and [many other][github issues] features you want and love" @@ -540,7 +519,7 @@ msgstr "Як пожертвувати?" #. type: Plain text #: content/donate/index.md -msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. One-time donations are appreciated too." +msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. But you can also donate one time." msgstr "Регулярні пожертви - найкращий спосіб забезпечити відносно стабільний дохід для проєкту і мотивувати нас на довгострокові завдання і цілі. Але ви також можете зробити одноразову пожертву." #. type: Title ### @@ -581,6 +560,16 @@ msgstr "Чи можете ви допомогти нам ще якимось ч msgid "Yes! There are many ways to support Organic Maps. Please see [Support Us](@/support-us/index.md) page for more details." msgstr "Так! Існує багато способів підтримати Organic Maps. Будь ласка, відвідайте сторінку [Підтримайте нас](@/support-us/index.uk.md) для отримання більш детальної інформації." +#. type: Plain text +#: content/donate/index.md +#, no-wrap +msgid "" +"[stripe]: https://donate.organicmaps.app/ \"Donate via Stripe\"\n" +"[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" +msgstr "" +"[stripe]: https://donate.organicmaps.app/ \"Пожертвуйте через Stripe\"\n" +"[github issues]: https://github.com/organicmaps/organicmaps/issues \"Проблеми на GitHub\"\n" + #. type: Yaml Front Matter Hash Value: description #: content/news/_index.md #, no-wrap @@ -794,23 +783,17 @@ msgstr "Будь ласка, зверніться до їхніх файлів L msgid "See also [data/copyright.html][copyright] file for a full list of copyright notices for Organic Maps application." msgstr "Дивіться також файл [data/copyright.html][copyright], щоб отримати повний список повідомлень про авторські права для застосунку Organic Maps." -#. type: Link reference +#. type: Plain text #: content/terms/index.md #, no-wrap -msgid "[github]: https://github.com/organicmaps/organicmaps" -msgstr "[github]: https://github.com/organicmaps/organicmaps" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[license]: http://www.apache.org/licenses/LICENSE-2.0" -msgstr "[license]: http://www.apache.org/licenses/LICENSE-2.0" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html" +msgid "" +"[github]: https://github.com/organicmaps/organicmaps\n" +"[license]: http://www.apache.org/licenses/LICENSE-2.0\n" +"[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html\n" msgstr "" +"[github]: https://github.com/organicmaps/organicmaps\n" +"[license]: http://www.apache.org/licenses/LICENSE-2.0\n" +"[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html\n" #. type: Hash Value: address #: translations.yaml @@ -830,18 +813,6 @@ msgstr "Назад до Новин" msgid "Contact Us" msgstr "Контакти" -#. type: Hash Value: engines -#: translations.yaml -#, no-wrap -msgid "Supported TTS Engines" -msgstr "" - -#. type: Hash Value: faq-menu-title -#: translations.yaml -#, no-wrap -msgid "F.A.Q." -msgstr "" - #. type: Hash Value: install-appgallery #: translations.yaml #, no-wrap @@ -872,12 +843,6 @@ msgstr "Встановіть Organic Maps з Google Play" msgid "English" msgstr "Українська" -#. type: Hash Value: language-word -#: translations.yaml -#, no-wrap -msgid "Language" -msgstr "Мова" - #. type: Hash Value: name #: translations.yaml #, no-wrap @@ -890,39 +855,6 @@ msgstr "Назва" msgid "Token" msgstr "Токен" -#~ msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]**:" -#~ msgstr "Organic Maps є _безкоштовним для всіх_ завдяки вашим **[пожертвам][stripe]**:" - -#~ msgid "We are a few enthusiasts contributing in our free time, and spending our families' money on the project. We love what we do, and we love our users ❤️." -#~ msgstr "Ми - кілька ентузіастів, які роблять свій внесок у вільний час і витрачають на проєкт гроші своїх родин. Ми любимо те, що робимо, і ми любимо наших користувачів ❤️." - -#~ msgid "With your support, we want to become a better, privacy-focused version of Google Maps." -#~ msgstr "З вашою підтримкою ми хочемо стати кращою, орієнтованою на конфіденційність версією Google Maps." - -#, no-wrap -#~ msgid "What will the money be used for?" -#~ msgstr "На що підуть ці кошти?" - -#~ msgid "We pay for fast servers, so anyone in the World can download free map data updates without delays. It's hundreds of terabytes monthly, and the amount is growing." -#~ msgstr "Ми платимо за швидкі сервери, щоб будь-хто у світі міг завантажувати безкоштовні оновлення картографічних даних без затримок. Це сотні терабайт щомісяця, і обʼєми зростають." - -#~ msgid "Weekly and automated map data updates" -#~ msgstr "Щотижневе та автоматичне оновлення картографічних даних" - -#~ msgid "Bookmarks backup and sync" -#~ msgstr "Резервне копіювання та синхронізація закладок" - -#~ msgid "Android Auto" -#~ msgstr "Android Auto" - -#, no-wrap -#~ msgid "" -#~ "[stripe]: https://donate.organicmaps.app/ \"Donate via Stripe\"\n" -#~ "[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" -#~ msgstr "" -#~ "[stripe]: https://donate.organicmaps.app/ \"Пожертвуйте через Stripe\"\n" -#~ "[github issues]: https://github.com/organicmaps/organicmaps/issues \"Проблеми на GitHub\"\n" - #, no-wrap #~ msgid "There are different ways to donate:" #~ msgstr "Є різні способи пожертвувати:" diff --git a/po/content.vi.po b/po/content.vi.po index 02c9fbcc..06ff908a 100644 --- a/po/content.vi.po +++ b/po/content.vi.po @@ -4,7 +4,7 @@ # FIRST AUTHOR , YEAR. # msgid "" -msgstr "Project-Id-Version: Organic Maps Website 1.0\nPO-Revision-Date: 2024-04-02 19:54+0000\nLast-Translator: Weblate Translation Memory \nLanguage-Team: Vietnamese \nLanguage: vi\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-Forms: nplurals=1; plural=0;\nX-Generator: Weblate 5.5-dev\n" +msgstr "Project-Id-Version: Organic Maps Website 1.0\nPO-Revision-Date: 2023-03-11 16:32+0000\nLast-Translator: ngocanhtve \nLanguage-Team: Vietnamese \nLanguage: vi\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-Forms: nplurals=1; plural=0;\nX-Generator: Weblate 4.16.2-dev\n" #. type: Yaml Front Matter Hash Value: description #: content/_index.md @@ -26,365 +26,410 @@ msgstr "Organic Maps: Đi bộ đường dài, Đi xe đạp, Đường nhỏ v #. type: Plain text #: content/_index.md -#, no-wrap -msgid "" -"**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, drivers and cyclists based on **[OpenStreetMap][openstreetmap]** data created by the community.\n" -"It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" +#, markdown-text, no-wrap +msgid "**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, and cyclists based on top of crowd-sourced **[OpenStreetMap][openstreetmap]** data. It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" msgstr "" #. type: Plain text #: content/_index.md -#, no-wrap -msgid "**Organic Maps** is one of the few applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card, and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" -msgstr "" - -#. type: Plain text -#: content/_index.md -#, no-wrap -msgid "> In 2023, Organic Maps [got its first million](@/news/2023-12-23/281/index.md) users. [Help us](@/donate/index.md) to scale!\n" +#, markdown-text, no-wrap +msgid "**Organic Maps** is one of the only applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card (by the way, your operator constantly tracks you), and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" msgstr "" #. type: Title ### #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Download and install Organic Maps from [AppStore][appstore], [Google Play][googleplay], [FDroid][fdroid], [Huawei AppGallery][appgallery] {#install}" msgstr "" #. type: Plain text #: content/_index.md -msgid "{{ badges() }}" +#, markdown-text +msgid "{{ badges(lang='en') }}" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ screenshot(src='/images/screenshots/hiking.jpg', alt='Hiking') }}" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ screenshot(src='/images/screenshots/prague.jpg', alt='Prague') }}" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ screenshot(src='/images/screenshots/search.jpg', alt='Offline Search') }}" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ screenshot(src='/images/screenshots/dark.jpg', alt='Navigation in dark mode') }}" msgstr "" #. type: Title ## #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Features" msgstr "Tính năng" #. type: Plain text #: content/_index.md +#, markdown-text msgid "Organic Maps is the ultimate companion app for travelers, tourists, hikers, and cyclists:" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Detailed offline maps with places that don't exist on other maps, thanks to [OpenStreetMap][openstreetmap]" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Cycling routes, hiking trails, and walking paths" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Contour lines, elevation profiles, peaks, and slopes" msgstr "" #. type: Bullet: '- ' #: content/_index.md -msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance and Android Auto" +#, markdown-text +msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Fast offline search on the map" msgstr "" #. type: Bullet: '- ' #: content/_index.md -msgid "Export/import bookmarks in KML/KMZ, import GPX" +#, markdown-text +msgid "Bookmarks and tracks in KML, KMZ, GPX formats" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Dark Mode to protect your eyes" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Countries and regions don't take a lot of space" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Free and open-source" msgstr "" #. type: Title ## #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Why Organic?" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "Organic Maps is pure and organic, made with love:" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Respects your privacy" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Saves your battery" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No unexpected mobile data charges" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "Organic Maps app is free from trackers and other bad stuff:" msgstr "" #. type: Bullet: '- ' #: content/_index.md content/donate/index.md +#, markdown-text msgid "No ads" msgstr "Không quảng cáo" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No tracking" -msgstr "Không theo dõi" +msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No data collection" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No phoning home" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No annoying registration" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No mandatory tutorials" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No noisy email spam" msgstr "" #. type: Bullet: '- ' #: content/_index.md content/donate/index.md +#, markdown-text msgid "No push notifications" msgstr "Thông báo đẩy" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No crapware" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "~~No pesticides~~ Purely organic!" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "The application is verified by [Exodus Privacy Project][exodus]:" msgstr "" #. type: Plain text #: content/_index.md -msgid "{{ exodus_screenshot() }}" +#, markdown-text +msgid "{{ exodus_screenshot(lang='en') }}" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "The iOS application is verified by [TrackerControl for iOS][trackercontrol]:" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ trackercontrol_screenshot() }}" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "Organic Maps doesn't request excessive permissions to spy on you:" msgstr "" #. type: Plain text #: content/_index.md -msgid "{{ privacy_screenshots() }}" +#, markdown-text +msgid "{{ privacy_screenshots(lang='en') }}" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "At Organic Maps, we believe that privacy is a fundamental human right:" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Organic Maps is an indie community-driven open-source project" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "We protect your privacy from Big Tech's prying eyes" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Stay safe no matter wherever you are" msgstr "" #. type: Plain text #: content/_index.md content/privacy/index.md +#, markdown-text msgid "Reject surveillance - embrace your freedom." msgstr "" #. type: Plain text #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap msgid "**[Give Organic Maps a try!](#install)**\n" msgstr "" #. type: Title ## #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Who is paying for the free app?" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "The app is free for everyone. Please [donate](@/donate/index.md) to support us!" msgstr "" -#. type: Plain text -#: content/_index.md -msgid "To donate conveniently, click on your preferred payment method icon below:" -msgstr "" - -#. type: Plain text -#: content/_index.md content/donate/index.md -msgid "{{ donate_buttons() }}" -msgstr "" - #. type: Title ### #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap +msgid "There are different ways to donate:" +msgstr "" + +#. type: Plain text +#: content/_index.md content/donate/index.md +#, markdown-text +msgid "{{ donate_buttons(lang='en') }}" +msgstr "" + +#. type: Title ### +#: content/_index.md +#, markdown-text, no-wrap msgid "Our sponsors:" msgstr "Our sponsors" #. type: Plain text #: content/_index.md +#, markdown-text msgid "[Mythic Beasts](https://www.mythic-beasts.com/) ISP [provides us][mythic_beasts_donation] two virtual servers with 400 TB/month of free bandwidth to help our users with maps downloads and updates." msgstr "" #. type: Title ## #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Community" msgstr "Cộng đồng" #. type: Plain text #: content/_index.md +#, markdown-text msgid "Organic Maps is an [open-source software][github] licensed under the Apache License 2.0." msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Please join our beta program, suggest your features, and report bugs:" msgstr "" #. type: Bullet: ' * ' #: content/_index.md +#, markdown-text msgid "[iOS Beta (TestFlight)][testflight]" msgstr "" #. type: Bullet: ' * ' #: content/_index.md +#, markdown-text msgid "[Android Beta (Firebase)][firebase]" msgstr "" #. type: Bullet: ' * ' #: content/_index.md +#, markdown-text msgid "[Linux Desktop Beta (Flatpak)][flatpak]" msgstr "" #. type: Bullet: ' * ' #: content/_index.md +#, markdown-text msgid "[Linux Desktop Beta (packages)][repology]" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Report bugs or issues to [the issue tracker][issues] or [email us][email]." msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "[Discuss][ideas] ideas or propose feature requests." msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Subscribe to our [Telegram Channel][telegram] or to the [matrix space][matrix] for updates." msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Join our [Telegram Group][telegram_chat] to discuss with other users." msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Visit our [GitHub page][github]." msgstr "" #. type: Bullet: '- ' #: content/_index.md -msgid "Follow our updates in [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." -msgstr "" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Join (or create and let us know) local communities: [Hungarian translators Matrix room](https://matrix.to/#/#organicmapstranslate_hu:matrix.org)" -msgstr "" - -#. type: Link reference -#: content/_index.md -#, no-wrap -msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)" +#, markdown-text +msgid "Follow our updates in [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit]." msgstr "" #. type: Plain text -#: content/_index.md content/donate/index.md content/support-us/index.md -msgid "{{ references() }}" +#: content/_index.md +#, markdown-text, no-wrap +msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)\n" +msgstr "" + +#. type: Plain text +#: content/_index.md content/support-us/index.md +#, markdown-text +msgid "{{ references(lang='en') }}" msgstr "" #. type: Yaml Front Matter Hash Value: description @@ -407,180 +452,198 @@ msgstr "" #. type: Plain text #: content/donate/index.md -msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]** in **[EUR][stripe_eur], [USD][stripe_usd], [GBP][stripe_GBP], [CHF][stripe_chf], [UAH][stripe_uah], [PLN][stripe_pln]**:" +#, markdown-text +msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]**:" msgstr "" #. type: Bullet: '- ' #: content/donate/index.md +#, markdown-text msgid "No trackers" -msgstr "Không có dây nối" +msgstr "" #. type: Bullet: '- ' #: content/donate/index.md +#, markdown-text msgid "No registration" -msgstr "Đăng ký thuế" +msgstr "" #. type: Bullet: '- ' #: content/donate/index.md +#, markdown-text msgid "Open source" msgstr "Mã nguồn mở" -#. type: Plain text -#: content/donate/index.md -msgid "Click on your preferred payment method icon below:" -msgstr "" - #. type: Title ## #: content/donate/index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Why donate to Organic Maps?" msgstr "" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "Our goal is to provide a privacy-focused, fast and easy-to-use alternative to Google Maps and Apple Maps." +#, markdown-text +msgid "We rely on your donations to carry out our mission to keep Organic Maps open and free. And free from ads." msgstr "" #. type: Bullet: '2. ' #: content/donate/index.md -msgid "Improving public map data for the numerous websites, apps and platforms which use OpenStreetMap, and involving more people in contributing map info is our another goal." +#, markdown-text +msgid "We are a few enthusiasts contributing in our free time, and spending our families' money on the project. We love what we do, and we love our users ❤️." msgstr "" #. type: Bullet: '3. ' #: content/donate/index.md -msgid "We rely on your donations to keep Organic Maps open and free for everyone. And free from ads." -msgstr "" - -#. type: Bullet: '4. ' -#: content/donate/index.md -msgid "We love what we do, and we love our users ❤️." +#, markdown-text +msgid "With your support, we want to become a better, privacy-focused version of Google Maps." msgstr "" #. type: Title ## #: content/donate/index.md -#, no-wrap -msgid "Why a free project needs money?" +#, markdown-text, no-wrap +msgid "What will the money be used for?" msgstr "" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "In 2023, Organic Maps got its first million users. Our servers provide free, fast and frequent map updates all over the world." +#, markdown-text +msgid "We pay for fast servers, so anyone in the World can download free map data updates without delays. It's hundreds of terabytes monthly, and the amount is growing." msgstr "" #. type: Bullet: '2. ' #: content/donate/index.md -msgid "User support, bugfixing and publishing quality app updates are at the top of our priorities. There are [~2000 bug reports and feature requests on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." +#, markdown-text +msgid "User support, bugfixing, and improving the stability of the app are at the top of our priorities. There are [1800+ issues on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." msgstr "" #. type: Bullet: '3. ' #: content/donate/index.md -msgid "With enough money, new features can be developed. To name a few:" +#, markdown-text +msgid "With enough money, new features can be developed faster, for example:" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Backup and sync bookmarks and tracks" +#, markdown-text +msgid "Weekly and automated map data updates" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "GPS track recorder with GPX export" +#, markdown-text +msgid "Bookmarks backup and sync" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Satellite imagery" +#, markdown-text +msgid "Android Auto" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Public Transport" -msgstr "Public Transport" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Traffic and accident reporting" +#, markdown-text +msgid "GPS track recorder with GPX support" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Photos and Reviews" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Map styles for different activities" +#, markdown-text +msgid "Better map styles for different activities" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md +#, markdown-text msgid "Hill shading and 3D terrain" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "More advanced OpenStreetMap editor" +#, markdown-text +msgid "Improve the OpenStreetMap editor" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md +#, markdown-text msgid "Better offline address search, routing, and navigation" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md +#, markdown-text +msgid "Public Transport" +msgstr "Public Transport" + +#. type: Bullet: ' - ' +#: content/donate/index.md +#, markdown-text msgid "… and [many other][github issues] features you want and love" msgstr "" #. type: Title ## #: content/donate/index.md -#, no-wrap +#, markdown-text, no-wrap msgid "How to donate?" msgstr "" #. type: Plain text #: content/donate/index.md -msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. One-time donations are appreciated too." +#, markdown-text +msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. But you can also donate one time." msgstr "" #. type: Title ### #: content/donate/index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Bank Transfer" msgstr "" #. type: Plain text #: content/donate/index.md -msgid "{{ bank_transfer() }}" +#, markdown-text +msgid "{{ bank_transfer(lang='en') }}" msgstr "" #. type: Title ### #: content/donate/index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Crypto" msgstr "Tiền mã hoá" #. type: Plain text #: content/donate/index.md +#, markdown-text msgid "Please consider donating annually to reduce total fees." msgstr "" #. type: Plain text #: content/donate/index.md -msgid "{{ crypto_table() }}" +#, markdown-text +msgid "{{ crypto_table(lang='en') }}" msgstr "" #. type: Title ## #: content/donate/index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Can you help us in any other way?" msgstr "" #. type: Plain text #: content/donate/index.md +#, markdown-text msgid "Yes! There are many ways to support Organic Maps. Please see [Support Us](@/support-us/index.md) page for more details." msgstr "" +#. type: Plain text +#: content/donate/index.md +#, markdown-text, no-wrap +msgid "" +"[stripe]: https://donate.organicmaps.app/ \"Donate via Stripe\"\n" +"[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" +msgstr "" + #. type: Yaml Front Matter Hash Value: description #: content/news/_index.md #, no-wrap @@ -619,27 +682,31 @@ msgstr "" #. type: Plain text #: content/privacy/index.md +#, markdown-text msgid "Organic Maps respects your privacy and DOES NOT TRACK YOU." msgstr "" #. type: Plain text #: content/privacy/index.md +#, markdown-text msgid "Unlike most other applications, there is no tracking, no ads, no spyware, no data and statistics collection in Organic Maps." msgstr "" #. type: Plain text #: content/privacy/index.md +#, markdown-text msgid "Stay away from Big Tech's prying eyes!" msgstr "" #. type: Plain text #: content/privacy/index.md content/terms/index.md +#, markdown-text msgid "If you have any questions or suggestions, please contact us at [legal@organicmaps.app](mailto:legal@organicmaps.app)." msgstr "" #. type: Plain text #: content/privacy/index.md -#, no-wrap +#, markdown-text, no-wrap msgid "This policy is effective as of 2021-04-24.\n" msgstr "" @@ -663,76 +730,91 @@ msgstr "" #. type: Plain text #: content/support-us/index.md +#, markdown-text msgid "Organic Maps is a free, open-source app. It is free from ads, it does not collect your personal information, and it is developed by a few enthusiasts with the help of the community." msgstr "" #. type: Plain text #: content/support-us/index.md +#, markdown-text msgid "There are different ways to support the development:" msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "[Donate](@/donate/index.md)! Every dollar or euro counts and helps us to pay for servers and scale." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Report bugs and share ideas on our [GitHub][github] or via [email][email]." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Help us to [fix bugs][contributing] and do code reviews if you are a developer. Every fixed small issue makes someone happier." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "[Translate][translations] missing strings in the app's interface." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Translate [App Store][translations_appstore] and [Android][translations_googleplay] descriptions into your language." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "[Translate][translations_website] our web site into your language." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Join the [OpenStreetMap][openstreetmap] community and contribute to the maps data." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Fix red cities found by our [public transport validator][public_transport_validator], for subways and light rails to work in the app." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md -msgid "Support other users on [GitHub][issues], [Telegram][telegram_chat], [Matrix][matrix], [Twitter][twitter], [Facebook][facebook], [Instagram][instagram]." +#, markdown-text +msgid "Support other users on [GitHub][issues], [Telegram][telegram_chat], [matrix][matrix], [Twitter][twitter], [Facebook][facebook], [Instagram][instagram]." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Tell everyone about Organic Maps. A bigger community is a stronger community." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md -msgid "Rate us in [Google Play][googleplay_review], [Apple Store][appstore_review], [Huawei Appgallery][appgallery_review]." +#, markdown-text +msgid "Rate us in [Google Play][googleplay], [Apple Store][appstore], [Huawei Appgallery][appgallery]." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Any help is welcome!" msgstr "" #. type: Plain text #: content/support-us/index.md +#, markdown-text msgid "Our small team is very grateful for your feedback and support. Organic Maps would not be possible without our users ❤️." msgstr "" @@ -756,60 +838,59 @@ msgstr "" #. type: Plain text #: content/terms/index.md +#, markdown-text msgid "This app is licensed under the Apache License, Version 2.0 (the \"License\"); you may not use this application except in compliance with the License." msgstr "" #. type: Plain text #: content/terms/index.md +#, markdown-text msgid "You may obtain a copy of the License at [http://www.apache.org/licenses/LICENSE-2.0][license]" msgstr "" #. type: Plain text #: content/terms/index.md +#, markdown-text msgid "Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License." msgstr "" #. type: Plain text #: content/terms/index.md +#, markdown-text msgid "Most libraries in the following directories on [GitHub][github] made by other people and organizations and licensed in different ways:" msgstr "" #. type: Bullet: '- ' #: content/terms/index.md +#, markdown-text msgid "3party" msgstr "" #. type: Bullet: '- ' #: content/terms/index.md +#, markdown-text msgid "tools" msgstr "Công Cụ" #. type: Plain text #: content/terms/index.md +#, markdown-text msgid "Please refer to their LICENSE, COPYING or NOTICE files for terms of use." msgstr "" #. type: Plain text #: content/terms/index.md +#, markdown-text msgid "See also [data/copyright.html][copyright] file for a full list of copyright notices for Organic Maps application." msgstr "" -#. type: Link reference +#. type: Plain text #: content/terms/index.md -#, no-wrap -msgid "[github]: https://github.com/organicmaps/organicmaps" -msgstr "" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[license]: http://www.apache.org/licenses/LICENSE-2.0" -msgstr "" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html" +#, markdown-text, no-wrap +msgid "" +"[github]: https://github.com/organicmaps/organicmaps\n" +"[license]: http://www.apache.org/licenses/LICENSE-2.0\n" +"[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html\n" msgstr "" #. type: Hash Value: address @@ -830,18 +911,6 @@ msgstr "" msgid "Contact Us" msgstr "Liên hệ với chúng tôi" -#. type: Hash Value: engines -#: translations.yaml -#, no-wrap -msgid "Supported TTS Engines" -msgstr "" - -#. type: Hash Value: faq-menu-title -#: translations.yaml -#, no-wrap -msgid "F.A.Q." -msgstr "" - #. type: Hash Value: install-appgallery #: translations.yaml #, no-wrap @@ -870,13 +939,7 @@ msgstr "" #: translations.yaml #, no-wrap msgid "English" -msgstr "Tiếng Việt" - -#. type: Hash Value: language-word -#: translations.yaml -#, no-wrap -msgid "Language" -msgstr "Ngôn ngữ" +msgstr "Tiếng Anh" #. type: Hash Value: name #: translations.yaml diff --git a/po/content.zh-Hans.po b/po/content.zh-Hans.po index 908cd679..30e15307 100644 --- a/po/content.zh-Hans.po +++ b/po/content.zh-Hans.po @@ -4,7 +4,16 @@ # FIRST AUTHOR , YEAR. # msgid "" -msgstr "Project-Id-Version: Organic Maps Website 1.0\nPO-Revision-Date: 2024-04-02 19:54+0000\nLast-Translator: Weblate Translation Memory \nLanguage-Team: Chinese (Simplified) \nLanguage: zh-Hans\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-Forms: nplurals=1; plural=0;\nX-Generator: Weblate 5.5-dev\n" +msgstr "" +"Project-Id-Version: Organic Maps Website 1.0\n" +"Last-Translator: aerowolf \n" +"Language-Team: Chinese (Simplified) \n" +"Language: zh-Hans\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 4.18-dev\n" #. type: Yaml Front Matter Hash Value: description #: content/_index.md @@ -27,23 +36,15 @@ msgstr "Organic Maps:离线的远足、自行车、登山和导航地图" #. type: Plain text #: content/_index.md #, no-wrap -msgid "" -"**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, drivers and cyclists based on **[OpenStreetMap][openstreetmap]** data created by the community.\n" -"It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" +msgid "**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, and cyclists based on top of crowd-sourced **[OpenStreetMap][openstreetmap]** data. It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" msgstr "**Organic Maps** 是一个免费的安卓和iOS平台离线地图应用程序,为旅行者、游客、徒步旅行者和骑行者提供基于**[OpenStreetMap][openstreetmap]** 的众源数据。它是**Maps.me** 应用程序(以前称为[**MapsWithMe**][mapswithme],由2011年创建**MapsWithMe** 的同一个人维护)的一个开源且注重隐私的[分支][fork]。\n" #. type: Plain text #: content/_index.md #, no-wrap -msgid "**Organic Maps** is one of the few applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card, and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" +msgid "**Organic Maps** is one of the only applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card (by the way, your operator constantly tracks you), and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" msgstr "**Organic Maps** 是目前少数几个不需要持续互联网连接就能支持100%功能的应用程序之一。安装Organic Maps,下载地图,扔掉你的SIM卡(顺便说一下,你的运营商会不断地跟踪你),充一次电池就可以出去旅行一周而不需要通过网络发送哪怕一个字节。\n" -#. type: Plain text -#: content/_index.md -#, no-wrap -msgid "> In 2023, Organic Maps [got its first million](@/news/2023-12-23/281/index.md) users. [Help us](@/donate/index.md) to scale!\n" -msgstr "" - #. type: Title ### #: content/_index.md #, no-wrap @@ -103,8 +104,8 @@ msgstr "等高线、高程剖面、山峰和山坡" #. type: Bullet: '- ' #: content/_index.md -msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance and Android Auto" -msgstr "弯弯绕的步行、骑行和汽车导航都有语音向导,Android Auto 安卓汽车" +msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance" +msgstr "弯弯绕的步行、骑行和汽车导航都有语音向导" #. type: Bullet: '- ' #: content/_index.md @@ -113,8 +114,8 @@ msgstr "地图上的快速离线搜索" #. type: Bullet: '- ' #: content/_index.md -msgid "Export/import bookmarks in KML/KMZ, import GPX" -msgstr "以KML/KMZ格式导出和导入书签,GPX 导入" +msgid "Bookmarks and tracks in KML, KMZ, GPX formats" +msgstr "以KML/KMZ格式导出和导入书签(GPX已列入[计划][gpx_issue]中)" #. type: Bullet: '- ' #: content/_index.md @@ -224,11 +225,13 @@ msgstr "{{ exodus_screenshot() }}" #. type: Plain text #: content/_index.md +#, markdown-text msgid "The iOS application is verified by [TrackerControl for iOS][trackercontrol]:" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ trackercontrol_screenshot() }}" msgstr "" @@ -363,27 +366,23 @@ msgstr "加入我们的[Telegram组][telegram_chat],与其他用户讨论。" #. type: Bullet: '- ' #: content/_index.md +#, fuzzy msgid "Visit our [GitHub page][github]." msgstr "访问我们的[GitHub页面][github]。" #. type: Bullet: '- ' #: content/_index.md -msgid "Follow our updates in [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." -msgstr "在[FOSStodon][fosstodon]、[Mastodon][mastodon]、[Facebook][facebook]、[Twitter][twitter]、[Instagram][instagram]、[Reddit][reddit]、[LinkedIn][LinkedIn]关注我们的更新。" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Join (or create and let us know) local communities: [Hungarian translators Matrix room](https://matrix.to/#/#organicmapstranslate_hu:matrix.org)" -msgstr "" - -#. type: Link reference -#: content/_index.md -#, no-wrap -msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)" -msgstr "[fork]: https://zh.wikipedia.org/wiki/%E5%88%86%E5%8F%89_(%E8%BD%AF%E4%BB%B6%E5%BC%80%E5%8F%91)" +msgid "Follow our updates in [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." +msgstr "在[Mastodon][mastodon]、[Facebook][facebook]、[Twitter][twitter]、[Instagram][instagram]、[LinkedIn][LinkedIn]关注我们的更新。" #. type: Plain text -#: content/_index.md content/donate/index.md content/support-us/index.md +#: content/_index.md +#, no-wrap +msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)\n" +msgstr "[fork]: https://zh.wikipedia.org/wiki/%E5%88%86%E5%8F%89_(%E8%BD%AF%E4%BB%B6%E5%BC%80%E5%8F%91)\n" + +#. type: Plain text +#: content/_index.md content/support-us/index.md msgid "{{ references() }}" msgstr "{{ references() }}" @@ -407,8 +406,8 @@ msgstr "捐赠支持 Organic Maps 发展" #. type: Plain text #: content/donate/index.md -msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]** in **[EUR][stripe_eur], [USD][stripe_usd], [GBP][stripe_GBP], [CHF][stripe_chf], [UAH][stripe_uah], [PLN][stripe_pln]**:" -msgstr "" +msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]**:" +msgstr "Organic Maps 应用程序 _对每个人都是免费的_ ,感谢您的**[donations][stripe]** :" #. type: Bullet: '- ' #: content/donate/index.md @@ -438,78 +437,63 @@ msgstr "为何要捐赠给 Organic Maps ?" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "Our goal is to provide a privacy-focused, fast and easy-to-use alternative to Google Maps and Apple Maps." -msgstr "" +msgid "We rely on your donations to carry out our mission to keep Organic Maps open and free. And free from ads." +msgstr "您的捐赠助我们前行,保持Organic Maps的开放与和自由,远离广告。" #. type: Bullet: '2. ' #: content/donate/index.md -msgid "Improving public map data for the numerous websites, apps and platforms which use OpenStreetMap, and involving more people in contributing map info is our another goal." -msgstr "" +msgid "We are a few enthusiasts contributing in our free time, and spending our families' money on the project. We love what we do, and we love our users ❤️." +msgstr "我们是一小群爱好者,利用闲暇时间作贡献,并为项目花费家财。 我们爱工作,也爱用户❤️。" #. type: Bullet: '3. ' #: content/donate/index.md -msgid "We rely on your donations to keep Organic Maps open and free for everyone. And free from ads." -msgstr "您的捐赠助我们前行,保持Organic Maps的开放与和自由,远离广告。" - -#. type: Bullet: '4. ' -#: content/donate/index.md -msgid "We love what we do, and we love our users ❤️." -msgstr "" +msgid "With your support, we want to become a better, privacy-focused version of Google Maps." +msgstr "蒙您支持,我们希望成为更好、注重隐私的谷歌地图。" #. type: Title ## #: content/donate/index.md #, no-wrap -msgid "Why a free project needs money?" -msgstr "" +msgid "What will the money be used for?" +msgstr "捐款如何使用?" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "In 2023, Organic Maps got its first million users. Our servers provide free, fast and frequent map updates all over the world." -msgstr "" +msgid "We pay for fast servers, so anyone in the World can download free map data updates without delays. It's hundreds of terabytes monthly, and the amount is growing." +msgstr "我们为快速服务器付费,所以任何人都可以快速、免费更新地图数据,而不会有延迟。 每月有数百兆字节,而且数量不断增长。" #. type: Bullet: '2. ' #: content/donate/index.md -msgid "User support, bugfixing and publishing quality app updates are at the top of our priorities. There are [~2000 bug reports and feature requests on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." +msgid "User support, bugfixing, and improving the stability of the app are at the top of our priorities. There are [1800+ issues on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." msgstr "用户支持、修复问题和提高应用程序稳定性是我们的首要任务。 在GitHub上有[1800多个问题][github issues],而且这个数字每天都在增长。 AppStore、Google Play和支持邮件中满是评论和问题。我们希望提供高品质应用程序。" #. type: Bullet: '3. ' #: content/donate/index.md -msgid "With enough money, new features can be developed. To name a few:" +msgid "With enough money, new features can be developed faster, for example:" msgstr "有了充足的资金,我们就可以更快开发新功能,例如:" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Backup and sync bookmarks and tracks" -msgstr "" +msgid "Weekly and automated map data updates" +msgstr "每周和自动更新地图数据" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "GPS track recorder with GPX export" +msgid "Bookmarks backup and sync" +msgstr "书签备份和同步" + +#. type: Bullet: ' - ' +#: content/donate/index.md +msgid "Android Auto" +msgstr "Android Auto" + +#. type: Bullet: ' - ' +#: content/donate/index.md +msgid "GPS track recorder with GPX support" msgstr "支持GPX的GPS轨迹记录器" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Satellite imagery" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Public Transport" -msgstr "公共交通" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Traffic and accident reporting" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Photos and Reviews" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Map styles for different activities" +msgid "Better map styles for different activities" msgstr "为不同的活动提供更好的地图风格" #. type: Bullet: ' - ' @@ -519,7 +503,7 @@ msgstr "山体着色和三维地形" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "More advanced OpenStreetMap editor" +msgid "Improve the OpenStreetMap editor" msgstr "改进OpenStreetMap编辑器" #. type: Bullet: ' - ' @@ -527,6 +511,11 @@ msgstr "改进OpenStreetMap编辑器" msgid "Better offline address search, routing, and navigation" msgstr "更好的离线地址搜索、路线选择和导航" +#. type: Bullet: ' - ' +#: content/donate/index.md +msgid "Public Transport" +msgstr "公共交通" + #. type: Bullet: ' - ' #: content/donate/index.md msgid "… and [many other][github issues] features you want and love" @@ -540,7 +529,7 @@ msgstr "如何捐赠?" #. type: Plain text #: content/donate/index.md -msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. One-time donations are appreciated too." +msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. But you can also donate one time." msgstr "定期捐赠是确保项目有相对稳定收入的最好方式,并将激励我们完成长期任务和目标。但您也可以只捐赠一次。" #. type: Title ### @@ -581,6 +570,16 @@ msgstr "您能以任何其他方式帮助我们吗?" msgid "Yes! There are many ways to support Organic Maps. Please see [Support Us](@/support-us/index.md) page for more details." msgstr "是的!支持Organic Maps,方法很多。请参阅[支持我们](@/support-us/index.zh-Hans.md)页面了解更多详情。" +#. type: Plain text +#: content/donate/index.md +#, no-wrap +msgid "" +"[stripe]: https://donate.organicmaps.app/ \"Donate via Stripe\"\n" +"[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" +msgstr "" +"[stripe]: https://donate.organicmaps.app/ \"通过Stripe捐款\"\n" +"[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub论坛\"\n" + #. type: Yaml Front Matter Hash Value: description #: content/news/_index.md #, no-wrap @@ -794,23 +793,17 @@ msgstr "请参考其许可协议、版权信息和提示文件,了解使用条 msgid "See also [data/copyright.html][copyright] file for a full list of copyright notices for Organic Maps application." msgstr "参见[data/copyright.html][copyright]文件,了解Organic Maps应用程序的全部版权声明。" -#. type: Link reference +#. type: Plain text #: content/terms/index.md #, no-wrap -msgid "[github]: https://github.com/organicmaps/organicmaps" -msgstr "" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[license]: http://www.apache.org/licenses/LICENSE-2.0" -msgstr "[license]: http://www.apache.org/licenses/LICENSE-2.0" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html" +msgid "" +"[github]: https://github.com/organicmaps/organicmaps\n" +"[license]: http://www.apache.org/licenses/LICENSE-2.0\n" +"[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html\n" msgstr "" +"[Github]: https://github.com/organicmaps/organicmaps\n" +"[许可协议]: http://www.apache.org/licenses/LICENSE-2.0\n" +"[版权信息]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html\n" #. type: Hash Value: address #: translations.yaml @@ -830,18 +823,6 @@ msgstr "返回到新闻" msgid "Contact Us" msgstr "联系我们" -#. type: Hash Value: engines -#: translations.yaml -#, no-wrap -msgid "Supported TTS Engines" -msgstr "" - -#. type: Hash Value: faq-menu-title -#: translations.yaml -#, no-wrap -msgid "F.A.Q." -msgstr "" - #. type: Hash Value: install-appgallery #: translations.yaml #, no-wrap @@ -872,12 +853,6 @@ msgstr "从Google Play安装Organic Maps" msgid "English" msgstr "简体中文" -#. type: Hash Value: language-word -#: translations.yaml -#, no-wrap -msgid "Language" -msgstr "语言" - #. type: Hash Value: name #: translations.yaml #, no-wrap @@ -890,39 +865,6 @@ msgstr "名称" msgid "Token" msgstr "令牌" -#~ msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]**:" -#~ msgstr "Organic Maps 应用程序 _对每个人都是免费的_ ,感谢您的**[donations][stripe]** :" - -#~ msgid "We are a few enthusiasts contributing in our free time, and spending our families' money on the project. We love what we do, and we love our users ❤️." -#~ msgstr "我们是一小群爱好者,利用闲暇时间作贡献,并为项目花费家财。 我们爱工作,也爱用户❤️。" - -#~ msgid "With your support, we want to become a better, privacy-focused version of Google Maps." -#~ msgstr "蒙您支持,我们希望成为更好、注重隐私的谷歌地图。" - -#, no-wrap -#~ msgid "What will the money be used for?" -#~ msgstr "捐款如何使用?" - -#~ msgid "We pay for fast servers, so anyone in the World can download free map data updates without delays. It's hundreds of terabytes monthly, and the amount is growing." -#~ msgstr "我们为快速服务器付费,所以任何人都可以快速、免费更新地图数据,而不会有延迟。 每月有数百兆字节,而且数量不断增长。" - -#~ msgid "Weekly and automated map data updates" -#~ msgstr "每周和自动更新地图数据" - -#~ msgid "Bookmarks backup and sync" -#~ msgstr "书签备份和同步" - -#~ msgid "Android Auto" -#~ msgstr "Android Auto" - -#, no-wrap -#~ msgid "" -#~ "[stripe]: https://donate.organicmaps.app/ \"Donate via Stripe\"\n" -#~ "[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" -#~ msgstr "" -#~ "[stripe]: https://donate.organicmaps.app/ \"通过Stripe捐款\"\n" -#~ "[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub论坛\"\n" - #, no-wrap #~ msgid "There are different ways to donate:" #~ msgstr "多种捐赠方式:" diff --git a/po/content.zh-Hant.po b/po/content.zh-rTW.po similarity index 79% rename from po/content.zh-Hant.po rename to po/content.zh-rTW.po index e6141fd3..b8efa0f3 100644 --- a/po/content.zh-Hant.po +++ b/po/content.zh-rTW.po @@ -4,7 +4,7 @@ # FIRST AUTHOR , YEAR. # msgid "" -msgstr "Project-Id-Version: Organic Maps Website 1.0\nPO-Revision-Date: 2024-04-02 19:54+0000\nLast-Translator: Weblate Translation Memory \nLanguage-Team: Chinese (Traditional) \nLanguage: zh-Hant\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-Forms: nplurals=1; plural=0;\nX-Generator: Weblate 5.5-dev\n" +msgstr "Project-Id-Version: Organic Maps Website 1.0\nPO-Revision-Date: 2023-09-12 20:16+0000\nLast-Translator: Supaplex \nLanguage-Team: Chinese (Traditional) \nLanguage: zh-rTW\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-Forms: nplurals=1; plural=0;\nX-Generator: Weblate 5.0.1-dev\n" #. type: Yaml Front Matter Hash Value: description #: content/_index.md @@ -26,368 +26,409 @@ msgstr "Organic Maps: 離線登山、單車、健行與導航" #. type: Plain text #: content/_index.md -#, fuzzy, no-wrap -#| msgid "**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, and cyclists based on top of crowd-sourced **[OpenStreetMap][openstreetmap]** data. It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" -msgid "" -"**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, drivers and cyclists based on **[OpenStreetMap][openstreetmap]** data created by the community.\n" -"It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" +#, markdown-text, no-wrap +msgid "**Organic Maps** is a free Android & iOS offline maps app for travelers, tourists, hikers, and cyclists based on top of crowd-sourced **[OpenStreetMap][openstreetmap]** data. It is a privacy-focused, open-source [fork][fork] of **Maps.me** app (previously known as [**MapsWithMe**][mapswithme]), maintained by the same people who created **MapsWithMe** in 2011.\n" msgstr "**Organic Maps** 是為了旅行者、遊客、登山客與單車騎士,基於群眾外包的 **[OpenStreetMap][openstreetmap]** 資料,設計的自由的 Android & iOS 離線地圖 app。這款 app 注重隱私,為 **Maps.Me** (先前為人知的名稱為 [**MapsWithMe**][mapswithme]) app 的[分支][fork],為在2011年創建 MapsWithMe 的同批人。\n" #. type: Plain text #: content/_index.md -#, fuzzy, no-wrap -#| msgid "**Organic Maps** is one of the only applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card (by the way, your operator constantly tracks you), and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" -msgid "**Organic Maps** is one of the few applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card, and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" +#, markdown-text, no-wrap +msgid "**Organic Maps** is one of the only applications nowadays that supports 100% of features without an active Internet connection. Install Organic Maps, download maps, throw away your SIM card (by the way, your operator constantly tracks you), and go for a weeklong trip on a single battery charge without any byte sent to the network.\n" msgstr "**Organic Maps** 是現今少數 100% 功能不用連網就能運作的 app。安裝 Organic Maps,下載地圖之後,就能夠將SIM卡丟在一邊(順帶一提,你的營運商持續追蹤你),接著你可以靠著電池但不用一直傳送任何位元,前往一週以上的旅程。\n" -#. type: Plain text -#: content/_index.md -#, no-wrap -msgid "> In 2023, Organic Maps [got its first million](@/news/2023-12-23/281/index.md) users. [Help us](@/donate/index.md) to scale!\n" -msgstr "" - #. type: Title ### #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Download and install Organic Maps from [AppStore][appstore], [Google Play][googleplay], [FDroid][fdroid], [Huawei AppGallery][appgallery] {#install}" msgstr "從 [AppStore][appstore]、[Google Play][googleplay]、[FDroid][fdroid]、[華為 AppGallery][appgallery] {#install} 下載與安裝 Organic Maps" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ badges() }}" msgstr "{{ badges() }}" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ screenshot(src='/images/screenshots/hiking.jpg', alt='Hiking') }}" msgstr "{{ screenshot(src='/images/screenshots/hiking.jpg', alt='登山') }}" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ screenshot(src='/images/screenshots/prague.jpg', alt='Prague') }}" msgstr "{{ screenshot(src='/images/screenshots/prague.jpg', alt='布拉格') }}" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ screenshot(src='/images/screenshots/search.jpg', alt='Offline Search') }}" msgstr "{{ screenshot(src='/images/screenshots/search.jpg', alt='離線搜尋') }}" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ screenshot(src='/images/screenshots/dark.jpg', alt='Navigation in dark mode') }}" msgstr "{{ screenshot(src='/images/screenshots/dark.jpg', alt='夜間模式下導航') }}" #. type: Title ## #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Features" msgstr "功能" #. type: Plain text #: content/_index.md +#, markdown-text msgid "Organic Maps is the ultimate companion app for travelers, tourists, hikers, and cyclists:" msgstr "Organic Maps 是旅行者、遊客、登山客與單車騎士的最佳伴侶 app:" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Detailed offline maps with places that don't exist on other maps, thanks to [OpenStreetMap][openstreetmap]" msgstr "詳盡的離線地圖記載其他地圖還不存在的地方,感謝[開放街圖][openstreetmap]" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Cycling routes, hiking trails, and walking paths" msgstr "單車路線、登山路線與健行路線" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Contour lines, elevation profiles, peaks, and slopes" msgstr "等高線、海拔高度、山峰與斜坡" #. type: Bullet: '- ' #: content/_index.md -#, fuzzy -#| msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance" -msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance and Android Auto" +#, markdown-text +msgid "Turn-by-turn walking, cycling, and car navigation with voice guidance" msgstr "語音方式的點對點行走、單車與汽車導航" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Fast offline search on the map" msgstr "地圖上快速離線搜尋" #. type: Bullet: '- ' #: content/_index.md -msgid "Export/import bookmarks in KML/KMZ, import GPX" +#, markdown-text +msgid "Bookmarks and tracks in KML, KMZ, GPX formats" msgstr "書籤與軌跡以 KML、KMZ 或 GPX 格式輸出" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Dark Mode to protect your eyes" msgstr "保護眼睛的黑暗模式" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Countries and regions don't take a lot of space" msgstr "國家與地區不會佔太大的空間" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Free and open-source" msgstr "自由且開放原始碼" #. type: Title ## #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Why Organic?" msgstr "為什麼要使用 Organic Map?" #. type: Plain text #: content/_index.md +#, markdown-text msgid "Organic Maps is pure and organic, made with love:" msgstr "Organic Maps 既純粹而且有機,並且是用愛製作的:" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Respects your privacy" msgstr "尊重你的隱私" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Saves your battery" msgstr "省電" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No unexpected mobile data charges" msgstr "沒有非預期的行動數據費用" #. type: Plain text #: content/_index.md +#, markdown-text msgid "Organic Maps app is free from trackers and other bad stuff:" msgstr "" #. type: Bullet: '- ' #: content/_index.md content/donate/index.md +#, markdown-text msgid "No ads" msgstr "無廣告" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No tracking" msgstr "零追蹤" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No data collection" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No phoning home" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No annoying registration" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No mandatory tutorials" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No noisy email spam" msgstr "" #. type: Bullet: '- ' #: content/_index.md content/donate/index.md +#, markdown-text msgid "No push notifications" msgstr "推播通知" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "No crapware" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "~~No pesticides~~ Purely organic!" msgstr "~~無有毒物質~~純粹有機!" #. type: Plain text #: content/_index.md +#, markdown-text msgid "The application is verified by [Exodus Privacy Project][exodus]:" msgstr "本 app 已經由 [Exodus Privacy Project][exodus] 認證:" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ exodus_screenshot() }}" msgstr "{{ exodus_截圖() }}" #. type: Plain text #: content/_index.md +#, markdown-text msgid "The iOS application is verified by [TrackerControl for iOS][trackercontrol]:" msgstr "iOS app 已經由 [TrackerControl for iOS][trackercontrol] 認證:" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ trackercontrol_screenshot() }}" msgstr "{{ trackercontrol_截圖() }}" #. type: Plain text #: content/_index.md +#, markdown-text msgid "Organic Maps doesn't request excessive permissions to spy on you:" msgstr "Organic Maps 無需過多權限來監視你:" #. type: Plain text #: content/_index.md +#, markdown-text msgid "{{ privacy_screenshots() }}" msgstr "{{ privacy_截圖() }}" #. type: Plain text #: content/_index.md +#, markdown-text msgid "At Organic Maps, we believe that privacy is a fundamental human right:" msgstr "在 Organic Maps,我們相信隱私是基本人權:" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Organic Maps is an indie community-driven open-source project" msgstr "Organic Maps 是獨立由社群驅動的開源專案" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "We protect your privacy from Big Tech's prying eyes" msgstr "我們從大型科技公司的監視行動當中保護你的隱私" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Stay safe no matter wherever you are" msgstr "無論身在何處,請保護好自己" #. type: Plain text #: content/_index.md content/privacy/index.md +#, markdown-text msgid "Reject surveillance - embrace your freedom." msgstr "拒絕監視 - 擁抱自由。" #. type: Plain text #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap msgid "**[Give Organic Maps a try!](#install)**\n" msgstr "" #. type: Title ## #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Who is paying for the free app?" msgstr "" #. type: Plain text #: content/_index.md +#, markdown-text msgid "The app is free for everyone. Please [donate](@/donate/index.md) to support us!" msgstr "" -#. type: Plain text +#. type: Title ### #: content/_index.md -msgid "To donate conveniently, click on your preferred payment method icon below:" +#, markdown-text, no-wrap +msgid "There are different ways to donate:" msgstr "" #. type: Plain text #: content/_index.md content/donate/index.md +#, markdown-text msgid "{{ donate_buttons() }}" msgstr "" #. type: Title ### #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Our sponsors:" msgstr "我們的贊助商" #. type: Plain text #: content/_index.md +#, markdown-text msgid "[Mythic Beasts](https://www.mythic-beasts.com/) ISP [provides us][mythic_beasts_donation] two virtual servers with 400 TB/month of free bandwidth to help our users with maps downloads and updates." msgstr "" #. type: Title ## #: content/_index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Community" msgstr "社群" #. type: Plain text #: content/_index.md +#, markdown-text msgid "Organic Maps is an [open-source software][github] licensed under the Apache License 2.0." msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Please join our beta program, suggest your features, and report bugs:" msgstr "" #. type: Bullet: ' * ' #: content/_index.md +#, markdown-text msgid "[iOS Beta (TestFlight)][testflight]" msgstr "" #. type: Bullet: ' * ' #: content/_index.md +#, markdown-text msgid "[Android Beta (Firebase)][firebase]" msgstr "" #. type: Bullet: ' * ' #: content/_index.md +#, markdown-text msgid "[Linux Desktop Beta (Flatpak)][flatpak]" msgstr "" #. type: Bullet: ' * ' #: content/_index.md +#, markdown-text msgid "[Linux Desktop Beta (packages)][repology]" msgstr "" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Report bugs or issues to [the issue tracker][issues] or [email us][email]." msgstr "透過[問題追蹤器][issues]或是 [email 我們][email] 回報臭蟲或問題。" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "[Discuss][ideas] ideas or propose feature requests." msgstr "[討論][ideas]點子或提出新功能。" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Subscribe to our [Telegram Channel][telegram] or to the [matrix space][matrix] for updates." msgstr "訂閱我們的 [Telegram 頻道][telegram] 或是 [matrix 空間][matrix]獲得更新資訊。" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Join our [Telegram Group][telegram_chat] to discuss with other users." msgstr "加入我們的 [Telegram 群組][telegram_chat]與其他人討論。" #. type: Bullet: '- ' #: content/_index.md +#, markdown-text msgid "Visit our [GitHub page][github]." msgstr "造訪我們的 [GitHub 頁面][github]。" #. type: Bullet: '- ' #: content/_index.md -msgid "Follow our updates in [FOSStodon][fosstodon], [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]." -msgstr "" - -#. type: Bullet: '- ' -#: content/_index.md -msgid "Join (or create and let us know) local communities: [Hungarian translators Matrix room](https://matrix.to/#/#organicmapstranslate_hu:matrix.org)" -msgstr "" - -#. type: Link reference -#: content/_index.md -#, no-wrap -msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)" +#, markdown-text +msgid "Follow our updates in [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit]." msgstr "" #. type: Plain text -#: content/_index.md content/donate/index.md content/support-us/index.md +#: content/_index.md +#, markdown-text, no-wrap +msgid "[fork]: https://en.wikipedia.org/wiki/Fork_(software_development)\n" +msgstr "" + +#. type: Plain text +#: content/_index.md content/support-us/index.md +#, markdown-text msgid "{{ references() }}" msgstr "" @@ -411,180 +452,198 @@ msgstr "" #. type: Plain text #: content/donate/index.md -msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]** in **[EUR][stripe_eur], [USD][stripe_usd], [GBP][stripe_GBP], [CHF][stripe_chf], [UAH][stripe_uah], [PLN][stripe_pln]**:" +#, markdown-text +msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]**:" msgstr "Organic Maps app 對_每個人都免費_感謝您的**[捐獻][stripe]**:" #. type: Bullet: '- ' #: content/donate/index.md +#, markdown-text msgid "No trackers" msgstr "沒有追蹤器" #. type: Bullet: '- ' #: content/donate/index.md +#, markdown-text msgid "No registration" msgstr "不用註冊" #. type: Bullet: '- ' #: content/donate/index.md +#, markdown-text msgid "Open source" msgstr "開源" -#. type: Plain text -#: content/donate/index.md -msgid "Click on your preferred payment method icon below:" -msgstr "" - #. type: Title ## #: content/donate/index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Why donate to Organic Maps?" msgstr "為何要捐獻 Organic Maps?" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "Our goal is to provide a privacy-focused, fast and easy-to-use alternative to Google Maps and Apple Maps." +#, markdown-text +msgid "We rely on your donations to carry out our mission to keep Organic Maps open and free. And free from ads." msgstr "" #. type: Bullet: '2. ' #: content/donate/index.md -msgid "Improving public map data for the numerous websites, apps and platforms which use OpenStreetMap, and involving more people in contributing map info is our another goal." +#, markdown-text +msgid "We are a few enthusiasts contributing in our free time, and spending our families' money on the project. We love what we do, and we love our users ❤️." msgstr "" #. type: Bullet: '3. ' #: content/donate/index.md -msgid "We rely on your donations to keep Organic Maps open and free for everyone. And free from ads." -msgstr "" - -#. type: Bullet: '4. ' -#: content/donate/index.md -msgid "We love what we do, and we love our users ❤️." +#, markdown-text +msgid "With your support, we want to become a better, privacy-focused version of Google Maps." msgstr "" #. type: Title ## #: content/donate/index.md -#, no-wrap -msgid "Why a free project needs money?" +#, markdown-text, no-wrap +msgid "What will the money be used for?" msgstr "" #. type: Bullet: '1. ' #: content/donate/index.md -msgid "In 2023, Organic Maps got its first million users. Our servers provide free, fast and frequent map updates all over the world." +#, markdown-text +msgid "We pay for fast servers, so anyone in the World can download free map data updates without delays. It's hundreds of terabytes monthly, and the amount is growing." msgstr "" #. type: Bullet: '2. ' #: content/donate/index.md -msgid "User support, bugfixing and publishing quality app updates are at the top of our priorities. There are [~2000 bug reports and feature requests on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." +#, markdown-text +msgid "User support, bugfixing, and improving the stability of the app are at the top of our priorities. There are [1800+ issues on GitHub][github issues], and this number is growing every day. AppStore, Google Play, and support emails are overflooded with comments and bugs. We want to deliver a high-quality product." msgstr "" #. type: Bullet: '3. ' #: content/donate/index.md -msgid "With enough money, new features can be developed. To name a few:" +#, markdown-text +msgid "With enough money, new features can be developed faster, for example:" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Backup and sync bookmarks and tracks" +#, markdown-text +msgid "Weekly and automated map data updates" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "GPS track recorder with GPX export" +#, markdown-text +msgid "Bookmarks backup and sync" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Satellite imagery" +#, markdown-text +msgid "Android Auto" +msgstr "Android Auto" + +#. type: Bullet: ' - ' +#: content/donate/index.md +#, markdown-text +msgid "GPS track recorder with GPX support" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "Public Transport" -msgstr "Public Transport" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Traffic and accident reporting" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Photos and Reviews" -msgstr "" - -#. type: Bullet: ' - ' -#: content/donate/index.md -msgid "Map styles for different activities" +#, markdown-text +msgid "Better map styles for different activities" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md +#, markdown-text msgid "Hill shading and 3D terrain" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md -msgid "More advanced OpenStreetMap editor" +#, markdown-text +msgid "Improve the OpenStreetMap editor" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md +#, markdown-text msgid "Better offline address search, routing, and navigation" msgstr "" #. type: Bullet: ' - ' #: content/donate/index.md +#, markdown-text +msgid "Public Transport" +msgstr "Public Transport" + +#. type: Bullet: ' - ' +#: content/donate/index.md +#, markdown-text msgid "… and [many other][github issues] features you want and love" msgstr "" #. type: Title ## #: content/donate/index.md -#, no-wrap +#, markdown-text, no-wrap msgid "How to donate?" msgstr "" #. type: Plain text #: content/donate/index.md -msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. One-time donations are appreciated too." +#, markdown-text +msgid "Recurring donations are the best way to ensure a relatively stable income for the project and motivate us for long-term tasks and goals. But you can also donate one time." msgstr "" #. type: Title ### #: content/donate/index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Bank Transfer" msgstr "銀行轉帳" #. type: Plain text #: content/donate/index.md +#, markdown-text msgid "{{ bank_transfer() }}" msgstr "" #. type: Title ### #: content/donate/index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Crypto" msgstr "加密貨幣" #. type: Plain text #: content/donate/index.md +#, markdown-text msgid "Please consider donating annually to reduce total fees." msgstr "" #. type: Plain text #: content/donate/index.md +#, markdown-text msgid "{{ crypto_table() }}" msgstr "" #. type: Title ## #: content/donate/index.md -#, no-wrap +#, markdown-text, no-wrap msgid "Can you help us in any other way?" msgstr "" #. type: Plain text #: content/donate/index.md +#, markdown-text msgid "Yes! There are many ways to support Organic Maps. Please see [Support Us](@/support-us/index.md) page for more details." msgstr "" +#. type: Plain text +#: content/donate/index.md +#, markdown-text, no-wrap +msgid "" +"[stripe]: https://donate.organicmaps.app/ \"Donate via Stripe\"\n" +"[github issues]: https://github.com/organicmaps/organicmaps/issues \"GitHub Issues\"\n" +msgstr "" + #. type: Yaml Front Matter Hash Value: description #: content/news/_index.md #, no-wrap @@ -623,27 +682,31 @@ msgstr "" #. type: Plain text #: content/privacy/index.md +#, markdown-text msgid "Organic Maps respects your privacy and DOES NOT TRACK YOU." msgstr "" #. type: Plain text #: content/privacy/index.md +#, markdown-text msgid "Unlike most other applications, there is no tracking, no ads, no spyware, no data and statistics collection in Organic Maps." msgstr "" #. type: Plain text #: content/privacy/index.md +#, markdown-text msgid "Stay away from Big Tech's prying eyes!" msgstr "" #. type: Plain text #: content/privacy/index.md content/terms/index.md +#, markdown-text msgid "If you have any questions or suggestions, please contact us at [legal@organicmaps.app](mailto:legal@organicmaps.app)." msgstr "" #. type: Plain text #: content/privacy/index.md -#, no-wrap +#, markdown-text, no-wrap msgid "This policy is effective as of 2021-04-24.\n" msgstr "" @@ -667,76 +730,91 @@ msgstr "" #. type: Plain text #: content/support-us/index.md +#, markdown-text msgid "Organic Maps is a free, open-source app. It is free from ads, it does not collect your personal information, and it is developed by a few enthusiasts with the help of the community." msgstr "" #. type: Plain text #: content/support-us/index.md +#, markdown-text msgid "There are different ways to support the development:" msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "[Donate](@/donate/index.md)! Every dollar or euro counts and helps us to pay for servers and scale." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Report bugs and share ideas on our [GitHub][github] or via [email][email]." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Help us to [fix bugs][contributing] and do code reviews if you are a developer. Every fixed small issue makes someone happier." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "[Translate][translations] missing strings in the app's interface." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Translate [App Store][translations_appstore] and [Android][translations_googleplay] descriptions into your language." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "[Translate][translations_website] our web site into your language." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Join the [OpenStreetMap][openstreetmap] community and contribute to the maps data." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Fix red cities found by our [public transport validator][public_transport_validator], for subways and light rails to work in the app." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Support other users on [GitHub][issues], [Telegram][telegram_chat], [Matrix][matrix], [Twitter][twitter], [Facebook][facebook], [Instagram][instagram]." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Tell everyone about Organic Maps. A bigger community is a stronger community." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Rate us in [Google Play][googleplay_review], [Apple Store][appstore_review], [Huawei Appgallery][appgallery_review]." msgstr "" #. type: Bullet: '- ' #: content/support-us/index.md +#, markdown-text msgid "Any help is welcome!" msgstr "" #. type: Plain text #: content/support-us/index.md +#, markdown-text msgid "Our small team is very grateful for your feedback and support. Organic Maps would not be possible without our users ❤️." msgstr "" @@ -760,60 +838,59 @@ msgstr "" #. type: Plain text #: content/terms/index.md +#, markdown-text msgid "This app is licensed under the Apache License, Version 2.0 (the \"License\"); you may not use this application except in compliance with the License." msgstr "" #. type: Plain text #: content/terms/index.md +#, markdown-text msgid "You may obtain a copy of the License at [http://www.apache.org/licenses/LICENSE-2.0][license]" msgstr "" #. type: Plain text #: content/terms/index.md +#, markdown-text msgid "Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License." msgstr "" #. type: Plain text #: content/terms/index.md +#, markdown-text msgid "Most libraries in the following directories on [GitHub][github] made by other people and organizations and licensed in different ways:" msgstr "" #. type: Bullet: '- ' #: content/terms/index.md +#, markdown-text msgid "3party" msgstr "" #. type: Bullet: '- ' #: content/terms/index.md +#, markdown-text msgid "tools" msgstr "工具" #. type: Plain text #: content/terms/index.md +#, markdown-text msgid "Please refer to their LICENSE, COPYING or NOTICE files for terms of use." msgstr "" #. type: Plain text #: content/terms/index.md +#, markdown-text msgid "See also [data/copyright.html][copyright] file for a full list of copyright notices for Organic Maps application." msgstr "" -#. type: Link reference +#. type: Plain text #: content/terms/index.md -#, no-wrap -msgid "[github]: https://github.com/organicmaps/organicmaps" -msgstr "" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[license]: http://www.apache.org/licenses/LICENSE-2.0" -msgstr "" - -#. type: Link reference -#: content/terms/index.md -#, no-wrap -msgid "[copyright]: https://htmlpreview.github.io/?https://github.com/organicmaps/organicmaps/master/data/copyright.html" +#, markdown-text, no-wrap +msgid "" +"[github]: https://github.com/organicmaps/organicmaps\n" +"[license]: http://www.apache.org/licenses/LICENSE-2.0\n" +"[copyright]: https://github.com/organicmaps/organicmaps/blob/master/data/copyright.html\n" msgstr "" #. type: Hash Value: address @@ -834,18 +911,6 @@ msgstr "" msgid "Contact Us" msgstr "聯絡我們" -#. type: Hash Value: engines -#: translations.yaml -#, no-wrap -msgid "Supported TTS Engines" -msgstr "" - -#. type: Hash Value: faq-menu-title -#: translations.yaml -#, no-wrap -msgid "F.A.Q." -msgstr "" - #. type: Hash Value: install-appgallery #: translations.yaml #, no-wrap @@ -876,12 +941,6 @@ msgstr "" msgid "English" msgstr "英語" -#. type: Hash Value: language-word -#: translations.yaml -#, no-wrap -msgid "Language" -msgstr "語言" - #. type: Hash Value: name #: translations.yaml #, no-wrap @@ -893,9 +952,3 @@ msgstr "姓名" #, no-wrap msgid "Token" msgstr "令牌" - -#~ msgid "Organic Maps app is _free for everyone_ thanks to your **[donations][stripe]**:" -#~ msgstr "Organic Maps app 對_每個人都免費_感謝您的**[捐獻][stripe]**:" - -#~ msgid "Android Auto" -#~ msgstr "Android Auto" diff --git a/sass/main.scss b/sass/main.scss index 98015104..1cd3ee78 100644 --- a/sass/main.scss +++ b/sass/main.scss @@ -1,9 +1,6 @@ @import "./language_selector"; @import "./top_menu"; -$darkBackgroundColor: #121212; -$darkFontColor: #bbb; - body { margin: 1rem; padding: 0; @@ -22,36 +19,12 @@ body { word-wrap: break-word; } -code { - font-family: monospace; - font-size: smaller; -} - code, a { // Prevents horizontal scrolling in Safari on narrow screen for long links and code lines. word-wrap: anywhere; } -pre { - white-space: pre-wrap; - font-size: smaller; -} - -p > code, li > code, dd > code, td > code { - background: #ddd; - word-wrap: break-word; - box-decoration-break: clone; - padding: .1rem .3rem .2rem; - border-radius: .2rem; -} - -@media (prefers-color-scheme: dark) { - p > code, li > code, dd > code, td > code { - background: #333330; - } -} - header { text-align: center; } @@ -62,13 +35,8 @@ main { width: 100%; } -figure { - margin-left: 0; - margin-right: 0; -} - img { - max-width: 100%; + max-width: 90%; } img[alt="logo"] { @@ -103,11 +71,6 @@ strong { background-color: white; border-radius: 10px; } - - .donate_currency { - position: absolute; - color: black; - } } #screenshots img { @@ -141,10 +104,6 @@ p { margin: 0 0 16px; } -ul { - padding-left: 20px; -} - footer { padding-top: 1rem; border-top: 1px solid #eaecef; @@ -171,8 +130,8 @@ footer { @media (prefers-color-scheme: dark) { body { - background: $darkBackgroundColor; - color: $darkFontColor; + background: #121212; + color: #bbb; } h1, @@ -252,7 +211,7 @@ footer { justify-content: space-between; } -.news_image, .news_video { +.news_image { max-height: 520px; max-width: 300px; margin-left: 0.5rem; @@ -263,6 +222,8 @@ footer { .news_image_landscape { max-height: 520px; + max-width: 500px; + margin-left: 0.5rem; display: inline-block; vertical-align: top; width: auto; @@ -275,37 +236,3 @@ footer { .back_to_news { margin-top: 1rem; } - -blockquote { - display: block; - width: fit-content; - border-radius: 3px; - border-left: 2px solid rgb(109 115 74); - margin: 0.5rem 0; - background-color: #ececec; - padding: 0.3rem; - font-size: smaller; - - p { - margin: 0; - padding: 0; - } -} - -@media (prefers-color-scheme: dark) { - blockquote { - background-color: #202020; - color: $darkFontColor; - } -} - -img.edit-github-icon { - width: 20px; - height: 20px; - vertical-align: text-bottom; -} - -.edit-on-github { - display: block; - margin: 1rem; -} \ No newline at end of file diff --git a/static/_redirects b/static/_redirects index 6376515b..f32206a9 100644 --- a/static/_redirects +++ b/static/_redirects @@ -1,7 +1,7 @@ -/terms.html /terms/ 301 -/privacy.html /privacy/ 301 -/policy/ /privacy/ 301 /docs/screenshots/1.jpg /images/screenshots/hiking.jpg 301 /en / 302 /en/* /:splat 302 +/terms.html /terms/ 301 +/privacy.html /privacy/ 301 +/policy/ /privacy/ 301 /:lang/policy/ /:lang/privacy/ 301 diff --git a/static/images/donates/opencollective.svg b/static/images/donates/opencollective.svg deleted file mode 100644 index c8b3db1b..00000000 --- a/static/images/donates/opencollective.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/static/images/donates/visa_mc.svg b/static/images/donates/visa_mc.svg deleted file mode 100644 index 1a206314..00000000 --- a/static/images/donates/visa_mc.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/static/images/github.svg b/static/images/github.svg new file mode 100644 index 00000000..f8481b0b --- /dev/null +++ b/static/images/github.svg @@ -0,0 +1,3 @@ + diff --git a/static/images/privacy/mm.jpg b/static/images/privacy/mm.jpg index b59eb510..b6dcd678 100644 Binary files a/static/images/privacy/mm.jpg and b/static/images/privacy/mm.jpg differ diff --git a/static/images/privacy/om.jpg b/static/images/privacy/om.jpg index e6aa352c..375feada 100644 Binary files a/static/images/privacy/om.jpg and b/static/images/privacy/om.jpg differ diff --git a/static/images/screenshots/dark.jpg b/static/images/screenshots/dark.jpg index c59944eb..ed2f2475 100644 Binary files a/static/images/screenshots/dark.jpg and b/static/images/screenshots/dark.jpg differ diff --git a/static/images/screenshots/hiking.jpg b/static/images/screenshots/hiking.jpg index 9a5328fc..1912f817 100644 Binary files a/static/images/screenshots/hiking.jpg and b/static/images/screenshots/hiking.jpg differ diff --git a/static/images/screenshots/prague.jpg b/static/images/screenshots/prague.jpg index 0a2c15d5..22a479f6 100644 Binary files a/static/images/screenshots/prague.jpg and b/static/images/screenshots/prague.jpg differ diff --git a/static/images/screenshots/search.jpg b/static/images/screenshots/search.jpg index be26e40f..5b51d5a6 100644 Binary files a/static/images/screenshots/search.jpg and b/static/images/screenshots/search.jpg differ diff --git a/static/images/screenshots/tts_config_1.jpg b/static/images/screenshots/tts_config_1.jpg new file mode 100644 index 00000000..0cd45591 Binary files /dev/null and b/static/images/screenshots/tts_config_1.jpg differ diff --git a/static/images/screenshots/tts_config_2.jpg b/static/images/screenshots/tts_config_2.jpg new file mode 100644 index 00000000..1226f9e0 Binary files /dev/null and b/static/images/screenshots/tts_config_2.jpg differ diff --git a/static/images/screenshots/tts_config_3.jpg b/static/images/screenshots/tts_config_3.jpg new file mode 100644 index 00000000..219a2929 Binary files /dev/null and b/static/images/screenshots/tts_config_3.jpg differ diff --git a/templates/base.html b/templates/base.html index 5e644f6b..25b670a2 100644 --- a/templates/base.html +++ b/templates/base.html @@ -1,24 +1,7 @@ {%- if page %} {%- set resource = page %} -{%- set resource_title = resource.title %} -{%- set resource_path = resource.path %} {%- elif section %} {%- set resource = section %} -{%- set resource_title = resource.title %} -{%- set resource_path = resource.path %} -{%- elif term %} -{%- set resource = term %}{# taxonomy term has only 'name', 'slug' and 'path' properties #} -{%- set resource_path = resource.path %} -{%- set resource_title = resource.name %} -{%- elif taxonomy %}{# taxonomy has only 'name' and 'slug' properties #} -{% if lang == 'en' %} - {% set resource = taxonomy.name ~ "/_index.md" %} -{% else %} - {% set resource = taxonomy.name ~ "/_index." ~ lang ~ ".md" %} -{% endif %} -{% set resource = get_section(path=resource) %} -{%- set resource_title = resource.title %} -{%- set resource_path = resource.path %} {%- endif %} @@ -30,23 +13,13 @@ - {% block meta_description -%} - {%- if resource.description -%} - {% set description = resource.description %} - {% elif resource.content -%} - {% set description = resource.content | trim | striptags | linebreaksbr | safe | replace(from="
", to=" ") | replace(from=" ", to=" ") | replace(from=" ", to=" ") | replace(from=" ", to=" ") | truncate(length=160) %} - {% endif -%} - {%- if description -%} - - {% endif -%} + - {%- endblock -%} - - {% block rss -%} + {% block rss %} - {% endblock -%} + {% endblock %} - + {%- set preview_image = 'images/screenshots/prague.jpg' -%} {%- if resource.extra.preview_image -%} @@ -54,23 +27,22 @@ {%- elif resource.assets %} {%- set basename = resource.assets[0] | split(pat='/') | last %} {%- if basename is ending_with('.jpg') or basename is ending_with('.jpeg') or basename is ending_with('.png') or basename is ending_with('.webp') %} - {%- set preview_image = resource_path ~ basename -%} + {%- set preview_image = resource.path ~ basename -%} {%- endif %} {%- endif %} - {# TODO: Add og:video support #} - - {%- if description %} - + + {%- if resource.description -%} + {%- endif -%} - - {%- if description %} - - {%- endif %} + + {%- if resource.description -%} + + {%- endif -%} @@ -85,7 +57,7 @@ - {{ resource_title }} + {{ resource.title }} {%- if lang == config.default_language %} {% include 'language_redirect.html' %} @@ -98,21 +70,14 @@
- {% if page.taxonomies and page.taxonomies.faq %}{# Show FAQ breadcrumbs #} - {% include 'faq/faq-breadcrumbs.html' %} - {% endif %} {% block content %}{% endblock %}
- {% if page.taxonomies and page.taxonomies.faq %}{# Show FAQ editing link #} - {% include 'faq/github_edit_link.html' %} - {% endif %} - {% include 'bottom_menu.html' %}

- © 2024 Organic Maps OÜ, reg. code 16225385 - Harju maakond, Tallinn, Kesklinna linnaosa, Rävala pst 8-810, 10143, Estonia + © 2023 Organic Maps OÜ, reg. code 16225385 + Harju maakond, Tallinn, Kesklinna linnaosa, Rävala pst 8-810, 10143, Estonia

diff --git a/templates/bottom_menu.html b/templates/bottom_menu.html index c41bda64..07dbf73f 100644 --- a/templates/bottom_menu.html +++ b/templates/bottom_menu.html @@ -13,14 +13,11 @@ {% endif %} {% if page.extra.menu_title %} - {% if resource_path != page.path %}{% endif %} + {% if resource.path != page.path %}{% endif %} {{ page.extra.menu_title }} - {%- if resource_path != page.path %}{% endif %} + {%- if resource.path != page.path %}{% endif %}   {% endif %} {% endfor %} - - API -   {{ trans(key='contact', lang=lang) }} - \ No newline at end of file + diff --git a/templates/faq/embedded-faq.html b/templates/faq/embedded-faq.html deleted file mode 100644 index 38625162..00000000 --- a/templates/faq/embedded-faq.html +++ /dev/null @@ -1,212 +0,0 @@ -{#- List of questions -#} -{%- set faq_questions_en = [ - "map/how-to-create-a-route", - "editing/map-errors", - "map/can-not-find-position", - "map/cant-download-maps", - "map/search-cannot-find-a-place", - "app/crash", - "voice/cant-hear-instructions", - "bookmarks/how-to-export", - "bookmarks/how-to-import" - ] -%} -{%- set faq_languages = ["ru", "de", "es", "fr", "pl", "pt", "pt-BR", "tr", "uk", "zh-Hans"] %} {# Predefined list of - translation languages -#} - - - - - Organic Maps: Frequently Asked Questions - - - - - - - - - -
-

FAQ

-

Часто задаваемые вопросы (FAQ)

-

FAQ

-

FAQ

-

FAQ

-

Perguntas frequentes

-

Perguntas frequentes

-

FAQ

-

SSS

-

Часті питання

-

常见问题

- -
    - {% for faq_slug in faq_questions_en -%} - {% set faq_page_en = get_page(path = "faq/" ~ faq_slug ~ "/index.md") -%} - {% set faq_slug = faq_slug | replace(from="/", to="-") -%} - - {% endfor %} -
- - -

- {{ trans(key="more-info-om", lang="en") }} organicmaps.app -

- {% for lang in faq_languages %} -

- {{ trans(key="more-info-om", lang=lang) }} organicmaps.app -

- {%- endfor %} -
- - {% for faq_slug in faq_questions_en -%} - {% set faq_page_en = get_page(path = "faq/" ~ faq_slug ~ "/index.md") -%} -
-
-

{{ faq_page_en.title }}

- {# Add translations -#} - {% for lang in faq_languages -%} - {%- set translated_faq_page = faq_page_en.translations | filter(attribute="lang", value=lang) | first %} -

{{ translated_faq_page.title }}

- {%- endfor %} -
- -
- {{ faq_page_en.content | safe -}} -
- {# Add translations -#} - {% for lang in faq_languages -%} - {% set translated_faq_page = faq_page_en.translations | filter(attribute="lang", value=lang) | first -%} - {% set translated_faq_page = get_page(path=translated_faq_page.path) -%} -
- {{ translated_faq_page.content | safe }} -
- {%- endfor %} -
- {%- endfor %} - - {{ trans(key="go-to-top", lang="en") }} - {% for lang in faq_languages -%} - {{ trans(key="go-to-top", lang=lang) }} - {% endfor %} - - - - \ No newline at end of file diff --git a/templates/faq/faq-breadcrumbs.html b/templates/faq/faq-breadcrumbs.html deleted file mode 100644 index 569b40f4..00000000 --- a/templates/faq/faq-breadcrumbs.html +++ /dev/null @@ -1,18 +0,0 @@ -{# Build breadcrumbs in form: -F.A.Q. Android • Bookmarks • General • iOS • Map • Routing • TTS - -If we generate /faq/android/, or /faq/general, or etc page then `term` variable is -available with selected FAQ term. -#} -

- {{ trans(key='faq-menu-title', lang=lang) }} - {% set categories = get_taxonomy(kind='faq', lang=lang) | get(key="items") %} - {% for item in categories %} - • - {% if term and term.name == item.name %} {# Do not show link for current FAQ term #} - {{ item.name }} - {% else %} - {{ item.name }} - {% endif %} - {% endfor %} -

diff --git a/templates/faq/github_edit_link.html b/templates/faq/github_edit_link.html deleted file mode 100644 index 3d12cf88..00000000 --- a/templates/faq/github_edit_link.html +++ /dev/null @@ -1,4 +0,0 @@ - - GitHub Sponsors - {{ trans(key="edit-on-github", lang=lang) }} - diff --git a/templates/faq/list.html b/templates/faq/list.html deleted file mode 100644 index c96e43db..00000000 --- a/templates/faq/list.html +++ /dev/null @@ -1,13 +0,0 @@ -{% extends 'base.html' %} - -{% block content %} -

{{ trans(key='faq-menu-title', lang=lang) }}

- {%- for term in terms -%} -

{{term.name}}

-
    - {%- for faq_page in term.pages | sort(attribute="extra.order") -%} -
  • {{ faq_page.title }}
  • - {%- endfor -%} -
- {%- endfor -%} -{% endblock content %} diff --git a/templates/faq/single.html b/templates/faq/single.html deleted file mode 100644 index e3bac2c8..00000000 --- a/templates/faq/single.html +++ /dev/null @@ -1,9 +0,0 @@ -{% extends 'base.html' %} - -{% block content %} - {% include 'faq/faq-breadcrumbs.html' %} -

{{ term.name }}

- {%- for faq_page in term.pages | sort(attribute="extra.order") -%} -

{{ faq_page.title }}

- {%- endfor -%} -{% endblock %} diff --git a/templates/faq/translation_status.html b/templates/faq/translation_status.html deleted file mode 100644 index e43aa4e1..00000000 --- a/templates/faq/translation_status.html +++ /dev/null @@ -1,96 +0,0 @@ - - - - - - - F.A.Q. translation status - - - - -{% set all_categories = get_taxonomy(kind='faq', lang = 'en') %} {# Use English as list of all FAQ categories and questions #} -{% set faq_languages = ["ru", "de", "es", "fr", "it", "pl", "pt", "pt-BR", "tr", "uk", "zh-Hans"] %} {# Predefined list of translation languages #} - - - - - {% for lang in faq_languages %} - - {%- endfor -%} - - {% for faq_category in all_categories | get(key="items") %} - - - - {%- for faq_page in faq_category.pages | sort(attribute="extra.order") -%} - {% set eng_page_updated = faq_page | get(key="updated", defaut="") %} - {% if eng_page_updated %} - {% set eng_page_updated_int = eng_page_updated | date(format="%s") | int %} - {% endif %} - - - {% for lang in faq_languages %} - {% set page_trans = faq_page.translations | filter(attribute="lang", value=lang) %} - {% if page_trans | length == 0 %} - - {% else %} - {% set translated_page = page_trans | first %} - {% set translated_page = get_page(path = translated_page.path) %} - {% set page_updated = translated_page | get(key = "updated") %} - {# Compare translated page date with English page date #} - {% set cell_class = "" %} - {% if page_updated and eng_page_updated %} - {% set page_updated_int = page_updated | date(format="%s") | int %} - {% if page_updated_int < eng_page_updated_int %} - {% set cell_class = "faq-outdated" %} - {% endif %} - {% elif eng_page_updated %} - {% set cell_class = "faq-no-date" %} - {% endif %} - - - {% endif %} - {% endfor %} - - {%- endfor -%} - {% endfor %} -
Category / page{{ lang }}
{{ faq_category.name }}
- {{ faq_page.title }} - Update: {{ faq_page.updated | default(value="[Unknown]") }} - - {{ translated_page.title }} - Update: {% if page_updated %}{{page_updated}}{% else %}[Unknown]{% endif %} -
- - diff --git a/templates/language_redirect.html b/templates/language_redirect.html index 8200c591..cc898001 100644 --- a/templates/language_redirect.html +++ b/templates/language_redirect.html @@ -4,7 +4,7 @@ // there were no previous redirects or explicit language selections before (see language_seletor.html) if (null === window.localStorage.getItem('lang')) { // ["en", "ru", ...] - var pageTranslations = {{ resource | get(key="translations", default=[]) | map(attribute="lang") | sort | json_encode() | safe }}; + var pageTranslations = {{ resource.translations | map(attribute="lang") | sort | json_encode() | safe }}; var userPreferredLanguages = navigator.languages ? navigator.languages : [navigator.language]; outerLoop: for (var i = 0; i < userPreferredLanguages.length; i++) { diff --git a/templates/language_selector.html b/templates/language_selector.html index 14b8db49..9f10816a 100644 --- a/templates/language_selector.html +++ b/templates/language_selector.html @@ -6,8 +6,7 @@ } - {% set translations = resource | get(key="translations", default=[]) %} - {% if translations | length > 1 %} + {% if resource.translations | length > 1 %} {% endif %}