diff --git a/.gitignore b/.gitignore index 011303c5a..f07519b6d 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ node_modules public translations.yaml +.idea/* diff --git a/README.md b/README.md index 995d8f0c4..15e24360c 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,48 @@ 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. +## Taxonomy and F.A.Q. architecture + +Each MD page in `/faq/` has one or more taxonomy defined in header. E.g.: + +```yaml +taxonomies: + faq: ["Android"] +``` + +Zola collects all such taxonomies: + +| File | Taxonomy key | Taxonomy value | +| -------------------- | ------------ | -------------- | +| android-lags.md | `faq` | `Android` | +| android-logs.md | `faq` | `Android` | +| general-team.md | `faq` | `General` | +| general-bugreport.md | `faq` | `General` | +| ios-versions.md | `faq` | `iOS` | +| map-longtap.md | `faq` | `Map` | +| ... | ... | ... | + +After that Zola gets all values for `faq` taxonomy: `[General, Android, iOS, Map, ...]`. And generates pages: + +* For key `/faq/` with the list of values (see `templates/faq/list.html`) +* For each value `/faq/general`, `/faq/android`, etc. with the list of questions (see `templates/faq/single.html`) + +If you want to add new question then create .md file with header: + +```yaml +taxonomies: + faq: ["iOS"] +``` + +Zola will add your question to specific F.A.Q. sub-page. + +**Limitation**: List of taxonomies at `/faq/` page is always alphabetical. So 'Android' is always the first, 'Bookmarks' is the second, 'General' is the third and so on. + +**Limitation**: You can't sort questions at any F.A.Q. sub-page. So questions at `/faq/general` are always sorted by filename. We can create additional extra field like `extra.order` and sort questions by this field. But reordering would be hard. + +**Limitation**: Each F.A.Q. sub-page has only a name. No description, no icon. Only name 'Android', or 'iOS', or 'Routing', etc. + + ## 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 f09b9398b..4bd1d1190 100644 --- a/config.toml +++ b/config.toml @@ -15,6 +15,10 @@ build_search_index = false ignored_content = [".DS_Store"] +taxonomies = [ + {name = "faq", feed = false}, +] + [markdown] external_links_target_blank = true @@ -30,6 +34,7 @@ stripe = "https://donate.organicmaps.app/" address = "Address" back = "Back to News" contact = "Contact Us" +engines = "Supported TTS Engines" install-appgallery = "Install Organic Maps from Huawei AppGallery" install-appstore = "Install Organic Maps from the AppStore" install-googleplay = "Install Organic Maps from Google Play" @@ -37,6 +42,7 @@ install-fdroid="Install Organic Maps from F-Droid" language = "English" name = "Name" token = "Token" +faq-menu-title = "F.A.Q" # Please sort all other translation sections and values in alphabetical order. [languages.de] @@ -88,10 +94,14 @@ language = "Polski" name = "Nazwa" token = "Token" [languages.ru] +taxonomies = [ + {name = "faq", feed = false}, +] [languages.ru.translations] address = "Адрес" back = "Назад к новостям" contact = "Связаться с нами" +engines = "Поддерживаемые TTS движки" install-appgallery = "Установите Organic Maps из Huawei AppGallery" install-appstore = "Установите Organic Maps из AppStore" install-googleplay = "Установите Organic Maps из Google Play" @@ -99,6 +109,8 @@ install-fdroid = "Установите Organic Maps из F-Droid" language = "Русский" name = "Название" token = "Токен" +faq-menu-title = "Справка" + [languages.tr] [languages.tr.translations] address = "Adres" diff --git a/content/_index.md b/content/_index.md index 496f69fcd..3e91447e4 100644 --- a/content/_index.md +++ b/content/_index.md @@ -110,4 +110,4 @@ Organic Maps is an [open-source software][github] licensed under the Apache Lice [fork]: https://en.wikipedia.org/wiki/Fork_(software_development) -{{ references() }} +{{ references() }} \ No newline at end of file diff --git a/content/faq/android/_index.md b/content/faq/android/_index.md new file mode 100644 index 000000000..2392734c3 --- /dev/null +++ b/content/faq/android/_index.md @@ -0,0 +1,9 @@ +--- +title: Android FAQ + +taxonomies: + faq: ["Android"] + +extra: + order: 30 +--- \ No newline at end of file diff --git a/content/faq/android/_index.ru.md b/content/faq/android/_index.ru.md new file mode 100644 index 000000000..95d8e4996 --- /dev/null +++ b/content/faq/android/_index.ru.md @@ -0,0 +1,9 @@ +--- +title: Android ЧАВО + +taxonomies: + faq: ["Android"] + +extra: + order: 30 +--- \ No newline at end of file diff --git a/content/faq/android/how-to-enable-logs/about-report-a-bug.png b/content/faq/android/how-to-enable-logs/about-report-a-bug.png new file mode 100644 index 000000000..a32e9d783 Binary files /dev/null and b/content/faq/android/how-to-enable-logs/about-report-a-bug.png differ diff --git a/content/faq/android/how-to-enable-logs/index.md b/content/faq/android/how-to-enable-logs/index.md new file mode 100644 index 000000000..c1afb8773 --- /dev/null +++ b/content/faq/android/how-to-enable-logs/index.md @@ -0,0 +1,20 @@ +--- +title: How to enable logs? +description: "Frequently asked questions for Organic Maps application" + +taxonomies: + faq: ["Android"] + +extra: + order: 40 +--- + +If you want to report a bug then additional app logs could help locate a problem. +To get useful logs go to "Settings → Enable logging". After that, do the action that reproduces the problem. + + + +Finally, tap on the button with Organic Maps icon on main screen and press "Report a bug" button. +Don't forget to disable logging after reporting. + + diff --git a/content/faq/android/how-to-enable-logs/index.ru.md b/content/faq/android/how-to-enable-logs/index.ru.md new file mode 100644 index 000000000..051ac7430 --- /dev/null +++ b/content/faq/android/how-to-enable-logs/index.ru.md @@ -0,0 +1,20 @@ +--- +title: Как включить логи? +description: "Часто задаваемые вопросы по Organic Maps" + +taxonomies: + faq: ["Android"] + +extra: + order: 40 +--- + +Если вы хотите сообщить об ошибке, включение логов в приложении поможет быстрее найти проблему. +Чтобы включить запись лог файлов, перейдите в раздел "Настройки → Включить логи". После этого выполните действие, которое воспроизводит ошибку. + + + +Наконец, нажмите на кнопку со значком Organic Maps на главном экране и нажмите кнопку "Сообщить об ошибке". +Не забудьте отключить ведение журнала после отправки сообщения. + + diff --git a/content/faq/android/how-to-enable-logs/settings-enable-logging.png b/content/faq/android/how-to-enable-logs/settings-enable-logging.png new file mode 100644 index 000000000..5775da938 Binary files /dev/null and b/content/faq/android/how-to-enable-logs/settings-enable-logging.png differ diff --git a/content/faq/android/what-android-version-can-run-organic-maps/index.md b/content/faq/android/what-android-version-can-run-organic-maps/index.md new file mode 100644 index 000000000..117bcb93f --- /dev/null +++ b/content/faq/android/what-android-version-can-run-organic-maps/index.md @@ -0,0 +1,15 @@ +--- +title: What Android version can run Organic Maps? +description: "Frequently asked questions for Organic Maps application" + +taxonomies: + faq: ["Android"] + +extra: + order: 10 +--- + +You need at least Android 5 to run the app. Devices with later Android versions can run Organic Maps. + +Organic Maps can work on devices with Google Services installed and without Google support. + diff --git a/content/faq/android/what-android-version-can-run-organic-maps/index.ru.md b/content/faq/android/what-android-version-can-run-organic-maps/index.ru.md new file mode 100644 index 000000000..92373c647 --- /dev/null +++ b/content/faq/android/what-android-version-can-run-organic-maps/index.ru.md @@ -0,0 +1,14 @@ +--- +title: Какие версии Android поддерживает Organic Maps? +description: "Frequently asked questions for Organic Maps application" + +taxonomies: + faq: ["Андроид"] + +extra: + order: 10 +--- + +Для работы Organic Maps достаточно устройства с Android 5 или выше. Если у вас самая свежая версия Android, значит Organic Maps точно заработает. + +Карта может работать как при наличии Google сервисов, так и без них. diff --git a/content/faq/android/what-if-app-crashes-on-start/index.md b/content/faq/android/what-if-app-crashes-on-start/index.md new file mode 100644 index 000000000..4161fb9f0 --- /dev/null +++ b/content/faq/android/what-if-app-crashes-on-start/index.md @@ -0,0 +1,12 @@ +--- +title: What if app crashes on start? +description: "Frequently asked questions for Organic Maps application" + +taxonomies: + faq: ["Android"] + +extra: + order: 50 +--- + +You need to enable Android WebView component. diff --git a/content/faq/android/whats-the-difference-between-f-droid-and-google-play/index.md b/content/faq/android/whats-the-difference-between-f-droid-and-google-play/index.md new file mode 100644 index 000000000..e75e8ff72 --- /dev/null +++ b/content/faq/android/whats-the-difference-between-f-droid-and-google-play/index.md @@ -0,0 +1,14 @@ +--- +title: What's the difference between F-Droid and Google Play versions of the app? +description: "Frequently asked questions for Organic Maps application" + +taxonomies: + faq: ["Android"] + +extra: + order: 20 +--- + +[F-Droid](https://f-droid.org/) version comes without [Google Play Services](https://en.wikipedia.org/wiki/Google_Play_Services). These Services improve location accuracy using nearest cell towers and wifi hotspots if internet connection is available. F-Droid version uses only device GPS sensor. + +With Organic Maps from Google Play you can disable Google Play Services for location search in app settings. diff --git a/content/faq/android/why-organic-maps-is-slow-on-my-device/index.md b/content/faq/android/why-organic-maps-is-slow-on-my-device/index.md new file mode 100644 index 000000000..02ce310e3 --- /dev/null +++ b/content/faq/android/why-organic-maps-is-slow-on-my-device/index.md @@ -0,0 +1,19 @@ +--- +title: Why Organic Maps is slow on my device, UI is laggy, and it crashes randomly? +description: "Frequently asked questions for Organic Maps application" + +taxonomies: + faq: ["Android"] + +extra: + order: 30 +--- + +Most likely you configured to store maps data on SD card. Usually switchable SD cards in Android phones are slow and unreliable. + +Change Organic Maps config to store maps data in internal storage. Open Settings → Save maps to → Internal private storage. + + + +Or you can replace SD card with faster one to improve map performance. + diff --git a/content/faq/android/why-organic-maps-is-slow-on-my-device/settings-save-map-to.png b/content/faq/android/why-organic-maps-is-slow-on-my-device/settings-save-map-to.png new file mode 100644 index 000000000..b00d98ee4 Binary files /dev/null and b/content/faq/android/why-organic-maps-is-slow-on-my-device/settings-save-map-to.png differ diff --git a/content/faq/bookmarks/how-to-edit-or-move-bookmarks/android-edit-bookmark.jpg b/content/faq/bookmarks/how-to-edit-or-move-bookmarks/android-edit-bookmark.jpg new file mode 100644 index 000000000..d849ef0cd Binary files /dev/null and b/content/faq/bookmarks/how-to-edit-or-move-bookmarks/android-edit-bookmark.jpg differ diff --git a/content/faq/bookmarks/how-to-edit-or-move-bookmarks/android-selected-bookmark.jpg b/content/faq/bookmarks/how-to-edit-or-move-bookmarks/android-selected-bookmark.jpg new file mode 100644 index 000000000..6f263304b Binary files /dev/null and b/content/faq/bookmarks/how-to-edit-or-move-bookmarks/android-selected-bookmark.jpg differ diff --git a/content/faq/bookmarks/how-to-edit-or-move-bookmarks/index.md b/content/faq/bookmarks/how-to-edit-or-move-bookmarks/index.md new file mode 100644 index 000000000..a3f07bc94 --- /dev/null +++ b/content/faq/bookmarks/how-to-edit-or-move-bookmarks/index.md @@ -0,0 +1,18 @@ +--- +title: How to edit or move bookmarks? +description: "Frequently asked questions for Organic Maps application" + +taxonomies: + faq: ["Bookmarks"] + +extra: + order: 10 +--- + +To edit a bookmark use longtap menu or hit "Edit bookmark" when bookmark is selected on map. + + + +You can change bookmark name, description, color, and folder. Don't forget to tap "Save". + + diff --git a/content/faq/bookmarks/how-to-find-bookmarks-and-tracks-files/index.md b/content/faq/bookmarks/how-to-find-bookmarks-and-tracks-files/index.md new file mode 100644 index 000000000..72cbe0c7c --- /dev/null +++ b/content/faq/bookmarks/how-to-find-bookmarks-and-tracks-files/index.md @@ -0,0 +1,16 @@ +--- +title: How to find bookmarks and tracks files on phone? +description: "Frequently asked questions for Organic Maps application" + +taxonomies: + faq: ["Bookmarks"] + +extra: + order: 70 +--- + +Bookmarks and tracks are stored in private app folder and are not accessible from 3rd party apps. + +On iOS, you can access these files on iPhone/iPad from desktop using iTunes app. + +On Android device with Root enabled you can find bookmarks in `/data/data/app.organicmaps`. diff --git a/content/faq/bookmarks/how-to-import-gpx-track/android-share-1.jpg b/content/faq/bookmarks/how-to-import-gpx-track/android-share-1.jpg new file mode 100644 index 000000000..a3cd9a5e5 Binary files /dev/null and b/content/faq/bookmarks/how-to-import-gpx-track/android-share-1.jpg differ diff --git a/content/faq/bookmarks/how-to-import-gpx-track/android-share-2.jpg b/content/faq/bookmarks/how-to-import-gpx-track/android-share-2.jpg new file mode 100644 index 000000000..5b81c9427 Binary files /dev/null and b/content/faq/bookmarks/how-to-import-gpx-track/android-share-2.jpg differ diff --git a/content/faq/bookmarks/how-to-import-gpx-track/index.md b/content/faq/bookmarks/how-to-import-gpx-track/index.md new file mode 100644 index 000000000..2081e33b2 --- /dev/null +++ b/content/faq/bookmarks/how-to-import-gpx-track/index.md @@ -0,0 +1,18 @@ +--- +title: How to import GPX track on Android and iOS? +description: "Frequently asked questions for Organic Maps application" + +taxonomies: + faq: ["Bookmarks"] + +extra: + order: 40 +--- + +If you received GPX file in email, messenger, or cloud drive you can import it directly to Organic Maps app. + +On iOS tap on GPX file and press Share button: . Then select Organic Maps to open the file. + +On Android tap on received GPX file to see Share menu. Select Organic Maps to import the file. + + diff --git a/content/faq/bookmarks/how-to-import-gpx-track/ios-share.png b/content/faq/bookmarks/how-to-import-gpx-track/ios-share.png new file mode 100644 index 000000000..81446949c Binary files /dev/null and b/content/faq/bookmarks/how-to-import-gpx-track/ios-share.png differ diff --git a/content/faq/bookmarks/how-to-import-multiple-bookmarks-on-android/android-import-bookmarks.jpg b/content/faq/bookmarks/how-to-import-multiple-bookmarks-on-android/android-import-bookmarks.jpg new file mode 100644 index 000000000..5daf55669 Binary files /dev/null and b/content/faq/bookmarks/how-to-import-multiple-bookmarks-on-android/android-import-bookmarks.jpg differ diff --git a/content/faq/bookmarks/how-to-import-multiple-bookmarks-on-android/index.md b/content/faq/bookmarks/how-to-import-multiple-bookmarks-on-android/index.md new file mode 100644 index 000000000..ebca5aa03 --- /dev/null +++ b/content/faq/bookmarks/how-to-import-multiple-bookmarks-on-android/index.md @@ -0,0 +1,14 @@ +--- +title: How to import multiple bookmarks on Android? +description: "Frequently asked questions for Organic Maps application" + +taxonomies: + faq: ["Bookmarks"] + +extra: + order: 30 +--- + + + +Push "Import Bookmarks and tracks" button. Choose folder on your phone with KML/KMZ/GPX files. Organic Maps will scan picked folder and import all bookmarks and tracks. diff --git a/content/faq/bookmarks/how-to-move-imported-track-to-another-folder/index.md b/content/faq/bookmarks/how-to-move-imported-track-to-another-folder/index.md new file mode 100644 index 000000000..f655ae199 --- /dev/null +++ b/content/faq/bookmarks/how-to-move-imported-track-to-another-folder/index.md @@ -0,0 +1,14 @@ +--- +title: How to move imported track to another folder? +description: "Frequently asked questions for Organic Maps application" + +taxonomies: + faq: ["Bookmarks"] + +extra: + order: 50 +--- + +On Android : ??? + +On iOS : ??? diff --git a/content/faq/bookmarks/how-to-remove-bookmark-or-track/index.md b/content/faq/bookmarks/how-to-remove-bookmark-or-track/index.md new file mode 100644 index 000000000..cc9d0ee1f --- /dev/null +++ b/content/faq/bookmarks/how-to-remove-bookmark-or-track/index.md @@ -0,0 +1,14 @@ +--- +title: How to remove bookmark or track? +description: "Frequently asked questions for Organic Maps application" + +taxonomies: + faq: ["Bookmarks"] + +extra: + order: 20 +--- + +On Android you can remove bookmark from the bookmarks list using longtap menu. + +On iOS: ??? diff --git a/content/faq/bookmarks/what-would-happen-after-uninstalling-app/index.md b/content/faq/bookmarks/what-would-happen-after-uninstalling-app/index.md new file mode 100644 index 000000000..099393bb9 --- /dev/null +++ b/content/faq/bookmarks/what-would-happen-after-uninstalling-app/index.md @@ -0,0 +1,14 @@ +--- +title: What would happen with my bookmarks and tracks after uninstalling app? +description: "Frequently asked questions for Organic Maps application" + +taxonomies: + faq: ["Bookmarks"] + +extra: + order: 60 +--- + +All you tracks and bookmarks are removed from device when Organic Maps is uninstalled. Please backup your bookmarks and tracks using export button. + +Cloud bookmarks backup and sync is planned in future releases. diff --git a/content/faq/general/how-to-send-a-bugreport/index.md b/content/faq/general/how-to-send-a-bugreport/index.md new file mode 100644 index 000000000..7432f489e --- /dev/null +++ b/content/faq/general/how-to-send-a-bugreport/index.md @@ -0,0 +1,15 @@ +--- +title: How to send up a bugreport? +description: "Frequently asked questions for Organic Maps application" + +taxonomies: + faq: ["General"] + +extra: + order: 60 +--- + +Report bugs or issues to [the issue tracker][issues] or [email us][email]. You can submit feedback directly from app. +Just click icon with "?" on iOS or with green Organic Maps icon on Android. You'll find "Report a bug" button there. + +{{ references() }} \ No newline at end of file diff --git a/content/faq/general/project-history/index.md b/content/faq/general/project-history/index.md new file mode 100644 index 000000000..7508c2299 --- /dev/null +++ b/content/faq/general/project-history/index.md @@ -0,0 +1,12 @@ +--- +title: Project history +description: "Frequently asked questions for Organic Maps application" + +taxonomies: + faq: ["General"] + +extra: + order: 10 +--- + +??? diff --git a/content/faq/general/what-are-advantages-of-OM-compared-to-other-maps/index.md b/content/faq/general/what-are-advantages-of-OM-compared-to-other-maps/index.md new file mode 100644 index 000000000..d3c230f04 --- /dev/null +++ b/content/faq/general/what-are-advantages-of-OM-compared-to-other-maps/index.md @@ -0,0 +1,14 @@ +--- +title: What are the advantages of OM compared to other maps? +description: "Frequently asked questions for Organic Maps application" + +taxonomies: + faq: ["General"] + +extra: + order: 30 +--- + +Organic Maps is focused on speed, privacy, battery efficiency and minimization of network utilization. +You can use offline map for navigation in places far from civilization or in cities with complex traffic network. +Also compare our [privacy policy](/privacy) with other maps apps. Tell your friends about the difference. diff --git a/content/faq/general/what-is-your-product-roadmap/index.md b/content/faq/general/what-is-your-product-roadmap/index.md new file mode 100644 index 000000000..1a36536ef --- /dev/null +++ b/content/faq/general/what-is-your-product-roadmap/index.md @@ -0,0 +1,12 @@ +--- +title: What is your product roadmap? +description: "Frequently asked questions for Organic Maps application" + +taxonomies: + faq: ["General"] + +extra: + order: 50 +--- + +Crunch till the end of our days!! diff --git a/content/faq/general/where-to-read-latest-news-updates/index.md b/content/faq/general/where-to-read-latest-news-updates/index.md new file mode 100644 index 000000000..b55a63ea5 --- /dev/null +++ b/content/faq/general/where-to-read-latest-news-updates/index.md @@ -0,0 +1,17 @@ +--- +title: Where to read latest news updates? +description: "Frequently asked questions for Organic Maps application" + +taxonomies: + faq: ["General"] + +extra: + order: 70 +--- + +- 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 [Mastodon][mastodon], [Facebook][facebook], [Twitter][twitter], [Instagram][instagram], [Reddit][reddit], [LinkedIn][LinkedIn]. + +{{ references() }} \ No newline at end of file diff --git a/content/faq/general/who-is-working-on-the-project/index.md b/content/faq/general/who-is-working-on-the-project/index.md new file mode 100644 index 000000000..9cdba2742 --- /dev/null +++ b/content/faq/general/who-is-working-on-the-project/index.md @@ -0,0 +1,19 @@ +--- +title: Who is working on the project? +description: "Frequently asked questions for Organic Maps application" + +taxonomies: + faq: ["General"] + +extra: + order: 20 +--- + +Core team consists of: +* Alexander Borsuk +* Konstantin Pastbin +* Viktor Govako +* Roman Tsisyk + +Also contributors from around the world help with new features, bugfixing, testing, graphical design and translations. + diff --git a/content/faq/general/why-you-should-always-update-app-to-the-latest-version/index.md b/content/faq/general/why-you-should-always-update-app-to-the-latest-version/index.md new file mode 100644 index 000000000..9b8acad16 --- /dev/null +++ b/content/faq/general/why-you-should-always-update-app-to-the-latest-version/index.md @@ -0,0 +1,12 @@ +--- +title: Why you should always update app to the latest version? +description: "Frequently asked questions for Organic Maps application" + +taxonomies: + faq: ["General"] + +extra: + order: 40 +--- + +We constantly work on improvements and fixing bugs. New map data is distributed only with regular application updates. diff --git a/content/faq/index.md b/content/faq/index.md new file mode 100644 index 000000000..167ac6d89 --- /dev/null +++ b/content/faq/index.md @@ -0,0 +1,13 @@ +--- +title: "F.A.Q." +description: "Frequently asked questions for Organic Maps application" +weight: 1000 + +extra: + menu_title: F.A.Q. + +sort_by: weight +--- + +### 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. \ No newline at end of file diff --git a/content/faq/index.ru.md b/content/faq/index.ru.md new file mode 100644 index 000000000..5cd970b2e --- /dev/null +++ b/content/faq/index.ru.md @@ -0,0 +1,13 @@ +--- +title: Справка +description: Справка и часто задаваемые вопросы по Organic Maps +weight: 1000 + +extra: + menu_title: Справка + +sort_by: weight +--- + +### 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. \ No newline at end of file diff --git a/content/faq/ios/what-ios-version-can-run-organic-maps/index.md b/content/faq/ios/what-ios-version-can-run-organic-maps/index.md new file mode 100644 index 000000000..bd389f016 --- /dev/null +++ b/content/faq/ios/what-ios-version-can-run-organic-maps/index.md @@ -0,0 +1,12 @@ +--- +title: What iOS version can run Organic Maps? +description: "Frequently asked questions for Organic Maps application" + +taxonomies: + faq: ["iOS"] + +extra: + order: 10 +--- + +Organic Maps runs on devices with iOS/iPadOS 12+. diff --git a/content/faq/ios/why-carplay-is-always-dark/index.md b/content/faq/ios/why-carplay-is-always-dark/index.md new file mode 100644 index 000000000..eede82b4b --- /dev/null +++ b/content/faq/ios/why-carplay-is-always-dark/index.md @@ -0,0 +1,12 @@ +--- +title: Why CarPlay is always dark? +description: "Frequently asked questions for Organic Maps application" + +taxonomies: + faq: ["iOS"] + +extra: + order: 20 +--- + +Check your CarPlay settings (NOT Organic Maps settings) when the device is connected, and select "auto" instead of "always dark". diff --git a/content/faq/map/how-edits-are-uploaded-on-openstreetmap-org/index.md b/content/faq/map/how-edits-are-uploaded-on-openstreetmap-org/index.md new file mode 100644 index 000000000..7b3b44741 --- /dev/null +++ b/content/faq/map/how-edits-are-uploaded-on-openstreetmap-org/index.md @@ -0,0 +1,15 @@ +--- +title: How edits are uploaded on OpenStreetMap.org, how conflicts are resolved? +description: "Frequently asked questions for Organic Maps application" + +taxonomies: + faq: ["Map"] + +extra: + order: 150 +--- + +Organic Maps application stores POI changes locally till internet connection is available. +You can make changes while offline. Edits are uploaded to [OpenStreetMap.org](https://osm.org) in background. + +If there are edit conflicts ??? diff --git a/content/faq/map/how-to-catch-gps-signal-from-satelites/index.md b/content/faq/map/how-to-catch-gps-signal-from-satelites/index.md new file mode 100644 index 000000000..c4b8df396 --- /dev/null +++ b/content/faq/map/how-to-catch-gps-signal-from-satelites/index.md @@ -0,0 +1,12 @@ +--- +title: How to catch GPS signal from satelites? How to tell if device got precise or rough position? +description: "Frequently asked questions for Organic Maps application" + +taxonomies: + faq: ["Map"] + +extra: + order: 100 +--- + +??? diff --git a/content/faq/map/how-to-deal-with-maps-download-errors/index.md b/content/faq/map/how-to-deal-with-maps-download-errors/index.md new file mode 100644 index 000000000..4d9075147 --- /dev/null +++ b/content/faq/map/how-to-deal-with-maps-download-errors/index.md @@ -0,0 +1,12 @@ +--- +title: How to deal with maps download errors? +description: "Frequently asked questions for Organic Maps application" + +taxonomies: + faq: ["Map"] + +extra: + order: 130 +--- + +??? diff --git a/content/faq/map/how-to-get-map-legend/index.md b/content/faq/map/how-to-get-map-legend/index.md new file mode 100644 index 000000000..cfc4e60bd --- /dev/null +++ b/content/faq/map/how-to-get-map-legend/index.md @@ -0,0 +1,16 @@ +--- +title: How to get map legend? +description: "Frequently asked questions for Organic Maps application" + +taxonomies: + faq: ["Map"] + +extra: + order: 20 +--- + + + +Use long tap on any object to get it's type and name. +You can find road type or forest kind in the bottom panel. +By the way you search objects by type also. diff --git a/content/faq/map/how-to-get-map-legend/legend.jpg b/content/faq/map/how-to-get-map-legend/legend.jpg new file mode 100644 index 000000000..3e8bbe22c Binary files /dev/null and b/content/faq/map/how-to-get-map-legend/legend.jpg differ diff --git a/content/faq/map/how-to-get-my-coordinates-speed-and-altitude/index.md b/content/faq/map/how-to-get-my-coordinates-speed-and-altitude/index.md new file mode 100644 index 000000000..06bf58bb6 --- /dev/null +++ b/content/faq/map/how-to-get-my-coordinates-speed-and-altitude/index.md @@ -0,0 +1,15 @@ +--- +title: How to get my coordinates, speed, and altitude? +description: "Frequently asked questions for Organic Maps application" + +taxonomies: + faq: ["Map"] + +extra: + order: 60 +--- + + + +Tap on blue arrow indicating your position to see GPS coordinates, speed, and height above mean sea level. +Push share button to give you coordinates to friends. diff --git a/content/faq/map/how-to-get-my-coordinates-speed-and-altitude/my-position.jpg b/content/faq/map/how-to-get-my-coordinates-speed-and-altitude/my-position.jpg new file mode 100644 index 000000000..b36a6f603 Binary files /dev/null and b/content/faq/map/how-to-get-my-coordinates-speed-and-altitude/my-position.jpg differ diff --git a/content/faq/map/how-to-make-changes-to-the-map/edit-button.jpg b/content/faq/map/how-to-make-changes-to-the-map/edit-button.jpg new file mode 100644 index 000000000..0c35ddf94 Binary files /dev/null and b/content/faq/map/how-to-make-changes-to-the-map/edit-button.jpg differ diff --git a/content/faq/map/how-to-make-changes-to-the-map/index.md b/content/faq/map/how-to-make-changes-to-the-map/index.md new file mode 100644 index 000000000..35d9304f0 --- /dev/null +++ b/content/faq/map/how-to-make-changes-to-the-map/index.md @@ -0,0 +1,14 @@ +--- +title: How to make changes to the map? +description: "Frequently asked questions for Organic Maps application" + +taxonomies: + faq: ["Map"] + +extra: + order: 140 +--- + + + +Organic Maps works with map data from [OpenStreetMap.org](https://osm.org) project. You can improve place details using "Edit Place" button. To make your changes publicly available you need an account on [OpenStreetMap.org](https://osm.org). If you want to change POI position, or clarify footway, or add buildings and bridges, please use [OpenStreetMap.org](https://osm.org) site with powerful editing tools. diff --git a/content/faq/map/how-to-make-sure-i-have-latest-app/index.md b/content/faq/map/how-to-make-sure-i-have-latest-app/index.md new file mode 100644 index 000000000..e27a61051 --- /dev/null +++ b/content/faq/map/how-to-make-sure-i-have-latest-app/index.md @@ -0,0 +1,16 @@ +--- +title: How to make sure I have latest application installed and up-to-date maps? +description: "Frequently asked questions for Organic Maps application" + +taxonomies: + faq: ["Map"] + +extra: + order: 120 +--- + +First make sure you installed updated app from [AppStore][appstore], [Google Play][googleplay], [FDroid][fdroid], or [Huawei AppGallery][appgallery]. If maps data is outdated you will see red dot. Please download latest maps from menu. + + + +{{ references() }} \ No newline at end of file diff --git a/content/faq/map/how-to-make-sure-i-have-latest-app/ios-data-updates.png b/content/faq/map/how-to-make-sure-i-have-latest-app/ios-data-updates.png new file mode 100644 index 000000000..58f2c708d Binary files /dev/null and b/content/faq/map/how-to-make-sure-i-have-latest-app/ios-data-updates.png differ diff --git a/content/faq/map/how-to-maximize-map/index.md b/content/faq/map/how-to-maximize-map/index.md new file mode 100644 index 000000000..00d815433 --- /dev/null +++ b/content/faq/map/how-to-maximize-map/index.md @@ -0,0 +1,13 @@ +--- +title: How to maximize map? +description: "Frequently asked questions for Organic Maps application" + +taxonomies: + faq: ["Map"] + +extra: + order: 30 +--- + +Perform single tap on empty space to hide app interface and get fullscreen map. +Tap on the map again to get UI back. diff --git a/content/faq/map/how-to-use-long-tap/index.md b/content/faq/map/how-to-use-long-tap/index.md new file mode 100644 index 000000000..0917139dc --- /dev/null +++ b/content/faq/map/how-to-use-long-tap/index.md @@ -0,0 +1,18 @@ +--- +title: How to use Long Tap? +description: "Frequently asked questions for Organic Maps application" + +taxonomies: + faq: ["Map"] + +extra: + order: 10 +--- + +You can do a lot of things in the app using long tap: + +- Add markers +- Copy place details such as name, address, links, coordinates, etc +- Add route points + +Try long tap in Organic Maps to discover hidden features. diff --git a/content/faq/map/how-to-use-search/index.md b/content/faq/map/how-to-use-search/index.md new file mode 100644 index 000000000..5b93b4489 --- /dev/null +++ b/content/faq/map/how-to-use-search/index.md @@ -0,0 +1,14 @@ +--- +title: How to use search? +description: "Frequently asked questions for Organic Maps application" + +taxonomies: + faq: ["Map"] + +extra: + order: 180 +--- + +You can search places, addresses, cities, sites and many other interests. Organic Maps looks not only by name but by type. You can find nearest drinking water, bicycle parking, bookstore or cave from search field. + +Organic Maps can search by coordinates in many formats: `41.9142, 12.4849`, `N 41° 54' 51.12" E 12° 29' 5.639"`, `33T 291418 4643309` (UTM). diff --git a/content/faq/map/how-to-zoom-in-zoom-out-with-one-hand/index.md b/content/faq/map/how-to-zoom-in-zoom-out-with-one-hand/index.md new file mode 100644 index 000000000..4cb28585f --- /dev/null +++ b/content/faq/map/how-to-zoom-in-zoom-out-with-one-hand/index.md @@ -0,0 +1,19 @@ +--- +title: How to zoom in/zoom out with one hand? +description: "Frequently asked questions for Organic Maps application" + +taxonomies: + faq: ["Map"] + +extra: + order: 50 +--- + + + +Tap twice on map and on the second tap just slide your finger up and down to zoom in and zoom out respectively. + +This gesture works on Android and iOS and not only in Organic Maps. diff --git a/content/faq/map/how-to-zoom-in-zoom-out-with-one-hand/one-finger-zoom-Mauritius.mp4 b/content/faq/map/how-to-zoom-in-zoom-out-with-one-hand/one-finger-zoom-Mauritius.mp4 new file mode 100644 index 000000000..e6c9e5919 Binary files /dev/null and b/content/faq/map/how-to-zoom-in-zoom-out-with-one-hand/one-finger-zoom-Mauritius.mp4 differ diff --git a/content/faq/map/what-are-secret-search-queries/index.md b/content/faq/map/what-are-secret-search-queries/index.md new file mode 100644 index 000000000..df43ab97f --- /dev/null +++ b/content/faq/map/what-are-secret-search-queries/index.md @@ -0,0 +1,16 @@ +--- +title: What are secret search queries? +description: "Frequently asked questions for Organic Maps application" + +taxonomies: + faq: ["Map"] + +extra: + order: 190 +--- + +`?vulkan`, `?gl` - ??? + +`?edits` - will show changes you made lately and its status. You can see if changes are already uploaded to [OpenStreetMap.org](https://osm.org) or there were any problems? + +See [documentation](https://github.com/organicmaps/organicmaps/blob/master/docs/DEBUG_COMMANDS.md) for the full list of commands. diff --git a/content/faq/map/what-does-gray-circle-around-my-position-mean/grey-circle.jpg b/content/faq/map/what-does-gray-circle-around-my-position-mean/grey-circle.jpg new file mode 100644 index 000000000..6e75022aa Binary files /dev/null and b/content/faq/map/what-does-gray-circle-around-my-position-mean/grey-circle.jpg differ diff --git a/content/faq/map/what-does-gray-circle-around-my-position-mean/index.md b/content/faq/map/what-does-gray-circle-around-my-position-mean/index.md new file mode 100644 index 000000000..60fbb4f35 --- /dev/null +++ b/content/faq/map/what-does-gray-circle-around-my-position-mean/index.md @@ -0,0 +1,17 @@ +--- +title: What does gray circle around my position mean? +description: "Frequently asked questions for Organic Maps application" + +taxonomies: + faq: ["Map"] + +extra: + order: 70 +--- + + + +GPS sensors have accuracy rate. Gray circle indicates this accuracy. Your actual position is somewhere inside this circle. +Accuracy degrade inside buildings, near steal constructions or radiation sources. +To improve GPS precision go outside to be under clear sky. +Enabling [Google Location Accuracy](https://support.google.com/maps/answer/2839911?co=GENIE.Platform%3DAndroid) on Android improves precision significantly. diff --git a/content/faq/map/what-does-icon-bellow-zoom-buttons-mean/index.md b/content/faq/map/what-does-icon-bellow-zoom-buttons-mean/index.md new file mode 100644 index 000000000..8e33af701 --- /dev/null +++ b/content/faq/map/what-does-icon-bellow-zoom-buttons-mean/index.md @@ -0,0 +1,18 @@ +--- +title: What does icon bellow zoom buttons mean? +description: "Frequently asked questions for Organic Maps application" + +taxonomies: + faq: ["Map"] + +extra: + order: 90 +--- + +| Icon | Meaning | +|------------------------------------------------------------------------------------------------| ------- | +| | Location search is not initiated | +| | App is looking for location | +| | Current position is found. Map is centered on current position and oriented to North. | +| | Map is centered on current position and rotates according to device compass. | + diff --git a/content/faq/map/what-does-icon-bellow-zoom-buttons-mean/location-icon-1.png b/content/faq/map/what-does-icon-bellow-zoom-buttons-mean/location-icon-1.png new file mode 100644 index 000000000..e47f318fb Binary files /dev/null and b/content/faq/map/what-does-icon-bellow-zoom-buttons-mean/location-icon-1.png differ diff --git a/content/faq/map/what-does-icon-bellow-zoom-buttons-mean/location-icon-2.png b/content/faq/map/what-does-icon-bellow-zoom-buttons-mean/location-icon-2.png new file mode 100644 index 000000000..a26e43a8d Binary files /dev/null and b/content/faq/map/what-does-icon-bellow-zoom-buttons-mean/location-icon-2.png differ diff --git a/content/faq/map/what-does-icon-bellow-zoom-buttons-mean/location-icon-3.png b/content/faq/map/what-does-icon-bellow-zoom-buttons-mean/location-icon-3.png new file mode 100644 index 000000000..b8540c3a2 Binary files /dev/null and b/content/faq/map/what-does-icon-bellow-zoom-buttons-mean/location-icon-3.png differ diff --git a/content/faq/map/what-does-icon-bellow-zoom-buttons-mean/location-icon-4.png b/content/faq/map/what-does-icon-bellow-zoom-buttons-mean/location-icon-4.png new file mode 100644 index 000000000..a38abbcdd Binary files /dev/null and b/content/faq/map/what-does-icon-bellow-zoom-buttons-mean/location-icon-4.png differ diff --git a/content/faq/map/what-gestures-does-organic-maps-support/index.md b/content/faq/map/what-gestures-does-organic-maps-support/index.md new file mode 100644 index 000000000..3b9686133 --- /dev/null +++ b/content/faq/map/what-gestures-does-organic-maps-support/index.md @@ -0,0 +1,16 @@ +--- +title: What gestures does Organic Maps support? +description: "Frequently asked questions for Organic Maps application" + +taxonomies: + faq: ["Map"] + +extra: + order: 40 +--- + +(On iOS and iPadOS) Tap and hold on zoom buttons then drag up or down to zoom. + +Use double tap to zoom in. + +You can rotate, pan and zoom map with two fingers gestures. diff --git a/content/faq/map/what-is-the-purpose-of-little-blue-arrow/blue-arrow.jpg b/content/faq/map/what-is-the-purpose-of-little-blue-arrow/blue-arrow.jpg new file mode 100644 index 000000000..e269367b0 Binary files /dev/null and b/content/faq/map/what-is-the-purpose-of-little-blue-arrow/blue-arrow.jpg differ diff --git a/content/faq/map/what-is-the-purpose-of-little-blue-arrow/index.md b/content/faq/map/what-is-the-purpose-of-little-blue-arrow/index.md new file mode 100644 index 000000000..3fbb3b199 --- /dev/null +++ b/content/faq/map/what-is-the-purpose-of-little-blue-arrow/index.md @@ -0,0 +1,16 @@ +--- +title: What is the purpose of little blue arrow? +description: "Frequently asked questions for Organic Maps application" + +taxonomies: + faq: ["Map"] + +extra: + order: 80 +--- + + + +This arrow shows direction and distance from your location to selected POI. You should enable location to see it. +Pressing this button gets fullscreen indicator of orientation and distance. +You can use it for azimuth navigation if step-by-step routing is not possible for some reason. diff --git a/content/faq/map/who-moderates-changes/index.md b/content/faq/map/who-moderates-changes/index.md new file mode 100644 index 000000000..6bed326e2 --- /dev/null +++ b/content/faq/map/who-moderates-changes/index.md @@ -0,0 +1,12 @@ +--- +title: Who moderates changes? +description: "Frequently asked questions for Organic Maps application" + +taxonomies: + faq: ["Map"] + +extra: + order: 160 +--- + +??? diff --git a/content/faq/map/why-do-i-see-blue-circle-instead-of-an-arrow/index.md b/content/faq/map/why-do-i-see-blue-circle-instead-of-an-arrow/index.md new file mode 100644 index 000000000..a78bc21de --- /dev/null +++ b/content/faq/map/why-do-i-see-blue-circle-instead-of-an-arrow/index.md @@ -0,0 +1,13 @@ +--- +title: Why do I see blue circle instead of an arrow indicating my position? +description: "Frequently asked questions for Organic Maps application" + +taxonomies: + faq: ["Map"] + +extra: + order: 110 +--- + +Tablets don't have compass sensor that's why circle is drawn instead of directed arrow. +You can find your model on [gsmarena.com](https://www.gsmarena.com) to see if compass is present. diff --git a/content/faq/map/why-edit-place-button-is-disabled-or-hidden/index.md b/content/faq/map/why-edit-place-button-is-disabled-or-hidden/index.md new file mode 100644 index 000000000..c0ef31a6b --- /dev/null +++ b/content/faq/map/why-edit-place-button-is-disabled-or-hidden/index.md @@ -0,0 +1,13 @@ +--- +title: Why "Edit place" button is disabled or hidden? +description: "Frequently asked questions for Organic Maps application" + +taxonomies: + faq: ["Map"] + +extra: + order: 170 +--- + +If your maps data is more than 2 month then edit button is unavailable. +Please install latest app and download up-to-date maps to enable editting. diff --git a/content/faq/routing/how-to-add-intermediate-points/index.md b/content/faq/routing/how-to-add-intermediate-points/index.md new file mode 100644 index 000000000..01d2a88f4 --- /dev/null +++ b/content/faq/routing/how-to-add-intermediate-points/index.md @@ -0,0 +1,12 @@ +--- +title: Добавить промежуточные точки для обхода/объезда (как?) +description: "Frequently asked questions for Organic Maps application" + +taxonomies: + faq: ["Routing"] + +extra: + order: 60 +--- + +??? diff --git a/content/faq/routing/how-to-add-intermediate-route-points/add-stop.jpg b/content/faq/routing/how-to-add-intermediate-route-points/add-stop.jpg new file mode 100644 index 000000000..6ef7fb229 Binary files /dev/null and b/content/faq/routing/how-to-add-intermediate-route-points/add-stop.jpg differ diff --git a/content/faq/routing/how-to-add-intermediate-route-points/index.md b/content/faq/routing/how-to-add-intermediate-route-points/index.md new file mode 100644 index 000000000..3af5746eb --- /dev/null +++ b/content/faq/routing/how-to-add-intermediate-route-points/index.md @@ -0,0 +1,18 @@ +--- +title: How to add intermediate route points? +description: "Frequently asked questions for Organic Maps application" + +taxonomies: + faq: ["Routing"] + +extra: + order: 20 +--- + +In route planning or routing mode pick a point on map and tap "Add Stop" button. New intermediate point would be added to the route. + + + +In routing mode you can search for gas stations, parking, food, stores and ATMs with search button + + diff --git a/content/faq/routing/how-to-add-intermediate-route-points/route-search.jpg b/content/faq/routing/how-to-add-intermediate-route-points/route-search.jpg new file mode 100644 index 000000000..49d1e4933 Binary files /dev/null and b/content/faq/routing/how-to-add-intermediate-route-points/route-search.jpg differ diff --git a/content/faq/routing/how-to-build-a-route/index.md b/content/faq/routing/how-to-build-a-route/index.md new file mode 100644 index 000000000..4e12ce7b9 --- /dev/null +++ b/content/faq/routing/how-to-build-a-route/index.md @@ -0,0 +1,28 @@ +--- +title: How to build a route? +description: "Frequently asked questions for Organic Maps application" + +taxonomies: + faq: ["Routing"] + +extra: + order: 10 +--- + +Organic Maps can build a route for car trip, bycicle ride or foot walk. + +Pick destination point with tap on a POI or by long tap on any place. Use "Route to" button to start route planning. + + + + +You can change route type from top menu: +* Car +* By foot +* Metro +* Bycicle +* Ruller + + + +Push "Start" to begin step-by-step routing. diff --git a/content/faq/routing/how-to-build-a-route/route-to-button.jpg b/content/faq/routing/how-to-build-a-route/route-to-button.jpg new file mode 100644 index 000000000..db796c7b3 Binary files /dev/null and b/content/faq/routing/how-to-build-a-route/route-to-button.jpg differ diff --git a/content/faq/routing/how-to-build-a-route/routing-types.jpg b/content/faq/routing/how-to-build-a-route/routing-types.jpg new file mode 100644 index 000000000..3a1502a72 Binary files /dev/null and b/content/faq/routing/how-to-build-a-route/routing-types.jpg differ diff --git a/content/faq/routing/how-to-enable-north-up-in-navigation-mode/index.md b/content/faq/routing/how-to-enable-north-up-in-navigation-mode/index.md new file mode 100644 index 000000000..ccb60b3fe --- /dev/null +++ b/content/faq/routing/how-to-enable-north-up-in-navigation-mode/index.md @@ -0,0 +1,14 @@ +--- +title: How to enable north up in navigation mode? +description: "Frequently asked questions for Organic Maps application" + +taxonomies: + faq: ["Routing"] + +extra: + order: 80 +--- + + + +Press triangle icon to rotate map north up. Press again to get perspective view. diff --git a/content/faq/routing/how-to-enable-route-aviodance-rules/avoidance.jpg b/content/faq/routing/how-to-enable-route-aviodance-rules/avoidance.jpg new file mode 100644 index 000000000..67bdc06ef Binary files /dev/null and b/content/faq/routing/how-to-enable-route-aviodance-rules/avoidance.jpg differ diff --git a/content/faq/routing/how-to-enable-route-aviodance-rules/define-roads.jpg b/content/faq/routing/how-to-enable-route-aviodance-rules/define-roads.jpg new file mode 100644 index 000000000..d4c5053da Binary files /dev/null and b/content/faq/routing/how-to-enable-route-aviodance-rules/define-roads.jpg differ diff --git a/content/faq/routing/how-to-enable-route-aviodance-rules/index.md b/content/faq/routing/how-to-enable-route-aviodance-rules/index.md new file mode 100644 index 000000000..e27ec5d59 --- /dev/null +++ b/content/faq/routing/how-to-enable-route-aviodance-rules/index.md @@ -0,0 +1,20 @@ +--- +title: How to enable route aviodance rules? +description: "Frequently asked questions for Organic Maps application" + +taxonomies: + faq: ["Routing"] + +extra: + order: 50 +--- + +Go to Settings → Routing options and select types of road you want to avoid: + + + +If you want to avoid unpaved roads pick selector near "Unpaved roads" as on screenshot. + +If Organic Maps builds a route with some avoidable roads you will see button "Define roads to avoid" for quick setup. + + diff --git a/content/faq/routing/how-to-measure-distances-with-organic-maps/index.md b/content/faq/routing/how-to-measure-distances-with-organic-maps/index.md new file mode 100644 index 000000000..b12d3ed70 --- /dev/null +++ b/content/faq/routing/how-to-measure-distances-with-organic-maps/index.md @@ -0,0 +1,20 @@ +--- +title: How to measure distances with Organic Maps? Is there a ruler? +description: "Frequently asked questions for Organic Maps application" + +taxonomies: + faq: ["Routing"] + +extra: + order: 70 +--- + +To measure distance from your current position to some object pick that object on map, tap "Route to" button, and select Ruler route type: + + + +With ruler enabled tap anywhere on map to continue polyline. + + + +You can choose any start point with "Route from" button. diff --git a/content/faq/routing/how-to-measure-distances-with-organic-maps/ruler-line.jpg b/content/faq/routing/how-to-measure-distances-with-organic-maps/ruler-line.jpg new file mode 100644 index 000000000..d87ca54c4 Binary files /dev/null and b/content/faq/routing/how-to-measure-distances-with-organic-maps/ruler-line.jpg differ diff --git a/content/faq/routing/how-to-measure-distances-with-organic-maps/ruler-type.jpg b/content/faq/routing/how-to-measure-distances-with-organic-maps/ruler-type.jpg new file mode 100644 index 000000000..67871a70a Binary files /dev/null and b/content/faq/routing/how-to-measure-distances-with-organic-maps/ruler-type.jpg differ diff --git a/content/faq/routing/location-arrow-points-to-wrong-direction/index.md b/content/faq/routing/location-arrow-points-to-wrong-direction/index.md new file mode 100644 index 000000000..edacb554b --- /dev/null +++ b/content/faq/routing/location-arrow-points-to-wrong-direction/index.md @@ -0,0 +1,14 @@ +--- +title: Location arrow points to wrong direction. How to fix? +description: "Frequently asked questions for Organic Maps application" + +taxonomies: + faq: ["Routing"] + +extra: + order: 100 +--- + +Probably you have problem with compass sensor. + +To improve compass use callibration moves according to [instruction](https://www.youtube.com/watch?v=-Uq7AmSAjt8). diff --git a/content/faq/routing/why-map-rotates-around-my-position/index.md b/content/faq/routing/why-map-rotates-around-my-position/index.md new file mode 100644 index 000000000..9b93c59da --- /dev/null +++ b/content/faq/routing/why-map-rotates-around-my-position/index.md @@ -0,0 +1,14 @@ +--- +title: Why map rotates around my position? +description: "Frequently asked questions for Organic Maps application" + +taxonomies: + faq: ["Routing"] + +extra: + order: 90 +--- + +The reason could be magnet on your phone case or radiation source near the phone. It could interfere compass sensor. + +To improve compass use callibration moves according to [instruction](https://www.youtube.com/watch?v=-Uq7AmSAjt8). diff --git a/content/faq/routing/why-organic-maps-builds-crooked-route/index.md b/content/faq/routing/why-organic-maps-builds-crooked-route/index.md new file mode 100644 index 000000000..1f1122253 --- /dev/null +++ b/content/faq/routing/why-organic-maps-builds-crooked-route/index.md @@ -0,0 +1,14 @@ +--- +title: Why Organic Maps builds crooked route? +description: "Frequently asked questions for Organic Maps application" + +taxonomies: + faq: ["Routing"] + +extra: + order: 40 +--- + +This could happen if map is outdated. We work on routing constantly. Please update the app regularly. + +Sometimes near country or region borders route could be unoptimal. This is known issue. diff --git a/content/faq/routing/why-osm-route-are-truthful/index.md b/content/faq/routing/why-osm-route-are-truthful/index.md new file mode 100644 index 000000000..9711481d3 --- /dev/null +++ b/content/faq/routing/why-osm-route-are-truthful/index.md @@ -0,0 +1,12 @@ +--- +title: Почему маршруты в ОМ честные и отличаются от других приложений? +description: "Frequently asked questions for Organic Maps application" + +taxonomies: + faq: ["Routing"] + +extra: + order: 30 +--- + +??? diff --git a/content/faq/tts/tts.md b/content/faq/tts/tts.md new file mode 100644 index 000000000..83b6d096e --- /dev/null +++ b/content/faq/tts/tts.md @@ -0,0 +1,83 @@ +--- +title: Text-to-Speech on Android +description: Guide on how to make TTS work on Android + +taxonomies: + faq: ["TTS"] + +extra: + order: 10 +--- + +## Summary + +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. + +If you cannot find the relevant setting, open the settings app and search for Text-to-speech. + +P.S: Do note that these steps will vary based on the phone brand you are using. + +Said options may not appear if you don't have a TTS already installed on your device. Please refer to the table below to install any one of them that supports your native language. + +## Screenshots + +| | | | +| ----------- | ----------- | ----------- | +| Screenshot 1 | Screenshot 2 | Screenshot 3 | + +## 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: + +- 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. + +- 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 + +- Set **RHVoice** as preferred engine (see step 2) + +- Now, you should be able to use RHVoice without any problems + +## Testing + +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. + +Screenshot TTS Test diff --git a/content/faq/tts/tts.ru.md b/content/faq/tts/tts.ru.md new file mode 100644 index 000000000..e3de8f6b7 --- /dev/null +++ b/content/faq/tts/tts.ru.md @@ -0,0 +1,83 @@ +--- +title: Синтез речи (Text-to-Speech, TTS) на Android +description: Как настроить озвучку навигатора в Organic Maps на Android + +taxonomies: + faq: ["Голосовые подсказки"] + +extra: + order: 10 +--- + +## Общая информация + +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. + +If you cannot find the relevant setting, open the settings app and search for Text-to-speech. + +P.S: Do note that these steps will vary based on the phone brand you are using. + +Said options may not appear if you don't have a TTS already installed on your device. Please refer to the table below to install any one of them that supports your native language. + +## Screenshots + +| | | | +| ----------- | ----------- | ----------- | +| Screenshot 1 | Screenshot 2 | Screenshot 3 | + +## 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: + +- 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. + +- 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 + +- Set **RHVoice** as preferred engine (see step 2) + +- Now, you should be able to use RHVoice without any problems + +## Testing + +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. + +Screenshot TTS Test diff --git a/content/news/2021-05-06/_index.md b/content/news/2021-05-06/_index.md index b9938fe4d..966f90284 100644 --- a/content/news/2021-05-06/_index.md +++ b/content/news/2021-05-06/_index.md @@ -1,4 +1,5 @@ --- 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/_index.md b/content/news/2021-05-09/_index.md index a22e7d9c7..01ff2d2af 100644 --- a/content/news/2021-05-09/_index.md +++ b/content/news/2021-05-09/_index.md @@ -1,4 +1,5 @@ --- 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/_index.md b/content/news/2021-05-24/_index.md index bff8bb621..1def648d3 100644 --- a/content/news/2021-05-24/_index.md +++ b/content/news/2021-05-24/_index.md @@ -1,4 +1,5 @@ --- 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/_index.md b/content/news/2021-05-25/_index.md index 7d7469eca..5076325b2 100644 --- a/content/news/2021-05-25/_index.md +++ b/content/news/2021-05-25/_index.md @@ -1,4 +1,5 @@ --- 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 35cfdd7cc..3a7ac1cf5 100644 --- a/content/news/2021-06-06/_index.md +++ b/content/news/2021-06-06/_index.md @@ -1,4 +1,5 @@ --- 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/_index.md b/content/news/2021-06-17/_index.md index 800bfcd7e..812bb812c 100644 --- a/content/news/2021-06-17/_index.md +++ b/content/news/2021-06-17/_index.md @@ -1,4 +1,5 @@ --- 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/_index.md b/content/news/2021-06-20/_index.md index 9b4a6d669..b22fd7ca6 100644 --- a/content/news/2021-06-20/_index.md +++ b/content/news/2021-06-20/_index.md @@ -1,4 +1,5 @@ --- 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/_index.md b/content/news/2021-06-23/_index.md index b4dbb5949..483e6717a 100644 --- a/content/news/2021-06-23/_index.md +++ b/content/news/2021-06-23/_index.md @@ -1,4 +1,5 @@ --- 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 158f6c66f..66bfa83c8 100644 --- a/content/news/2021-06-24/_index.md +++ b/content/news/2021-06-24/_index.md @@ -1,4 +1,5 @@ --- 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 1589f934e..6808375ed 100644 --- a/content/news/2021-06-28/_index.md +++ b/content/news/2021-06-28/_index.md @@ -1,4 +1,5 @@ --- 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/_index.md b/content/news/2021-07-10/_index.md index d6137ea96..264129373 100644 --- a/content/news/2021-07-10/_index.md +++ b/content/news/2021-07-10/_index.md @@ -1,4 +1,5 @@ --- 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/_index.md b/content/news/2021-08-07/_index.md index 728e1652e..e3f815176 100644 --- a/content/news/2021-08-07/_index.md +++ b/content/news/2021-08-07/_index.md @@ -1,4 +1,5 @@ --- 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 8c47a8aa7..1d6f16e3e 100644 --- a/content/news/2021-08-13/_index.md +++ b/content/news/2021-08-13/_index.md @@ -1,4 +1,5 @@ --- 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/_index.md b/content/news/2021-08-15/_index.md index 5140b5bf0..5966d99e0 100644 --- a/content/news/2021-08-15/_index.md +++ b/content/news/2021-08-15/_index.md @@ -1,4 +1,5 @@ --- 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/_index.md b/content/news/2021-08-16/_index.md index 5d1e1ce3e..2bf59a88c 100644 --- a/content/news/2021-08-16/_index.md +++ b/content/news/2021-08-16/_index.md @@ -1,4 +1,5 @@ --- 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/_index.md b/content/news/2021-08-21/_index.md index b1460bf40..f9ba5e8d8 100644 --- a/content/news/2021-08-21/_index.md +++ b/content/news/2021-08-21/_index.md @@ -1,4 +1,5 @@ --- 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 29c4cdb70..4987725ad 100644 --- a/content/news/2021-08-23/_index.md +++ b/content/news/2021-08-23/_index.md @@ -1,4 +1,5 @@ --- 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/_index.md b/content/news/2021-08-27/_index.md index 4cae18485..8ea2a89e7 100644 --- a/content/news/2021-08-27/_index.md +++ b/content/news/2021-08-27/_index.md @@ -1,4 +1,5 @@ --- 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/_index.md b/content/news/2021-08-30/_index.md index 2ff0d95e0..3d2fe6fe0 100644 --- a/content/news/2021-08-30/_index.md +++ b/content/news/2021-08-30/_index.md @@ -1,4 +1,5 @@ --- 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/_index.md b/content/news/2021-09-05/_index.md index 7225b5e80..cf715c0a9 100644 --- a/content/news/2021-09-05/_index.md +++ b/content/news/2021-09-05/_index.md @@ -1,4 +1,5 @@ --- 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/_index.md b/content/news/2021-09-15/_index.md index 14b0f9f8f..d1b3ea472 100644 --- a/content/news/2021-09-15/_index.md +++ b/content/news/2021-09-15/_index.md @@ -1,4 +1,5 @@ --- 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 3b988d6a4..213275f0f 100644 --- a/content/news/2021-09-26/_index.md +++ b/content/news/2021-09-26/_index.md @@ -1,4 +1,5 @@ --- 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/_index.md b/content/news/2021-10-09/_index.md index 195e9b6d6..774c108bf 100644 --- a/content/news/2021-10-09/_index.md +++ b/content/news/2021-10-09/_index.md @@ -1,4 +1,5 @@ --- 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/_index.md b/content/news/2021-10-14/_index.md index e3daadaf2..915b19cfb 100644 --- a/content/news/2021-10-14/_index.md +++ b/content/news/2021-10-14/_index.md @@ -1,4 +1,5 @@ --- 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/_index.md b/content/news/2021-10-21/_index.md index 5052fb9c6..fc7ff0c59 100644 --- a/content/news/2021-10-21/_index.md +++ b/content/news/2021-10-21/_index.md @@ -1,4 +1,5 @@ --- 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 4905e8fd9..0bf4ef2b6 100644 --- a/content/news/2021-11-01/_index.md +++ b/content/news/2021-11-01/_index.md @@ -1,4 +1,5 @@ --- 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/_index.md b/content/news/2021-11-09/_index.md index 3fa258325..cb5e40d69 100644 --- a/content/news/2021-11-09/_index.md +++ b/content/news/2021-11-09/_index.md @@ -1,4 +1,5 @@ --- 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 026894ffc..1c507f7ac 100644 --- a/content/news/2021-11-21/_index.md +++ b/content/news/2021-11-21/_index.md @@ -1,4 +1,5 @@ --- 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/_index.md b/content/news/2021-12-03/_index.md index b8668850c..20a951225 100644 --- a/content/news/2021-12-03/_index.md +++ b/content/news/2021-12-03/_index.md @@ -1,4 +1,5 @@ --- 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/_index.md b/content/news/2022-01-14/_index.md index 9f375f35e..1d40a2bc5 100644 --- a/content/news/2022-01-14/_index.md +++ b/content/news/2022-01-14/_index.md @@ -1,4 +1,5 @@ --- 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/_index.md b/content/news/2022-01-15/_index.md index 317dad1c0..f3a12377d 100644 --- a/content/news/2022-01-15/_index.md +++ b/content/news/2022-01-15/_index.md @@ -1,4 +1,5 @@ --- 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/_index.md b/content/news/2022-01-18/_index.md index 44c9624c5..f81173f29 100644 --- a/content/news/2022-01-18/_index.md +++ b/content/news/2022-01-18/_index.md @@ -1,4 +1,5 @@ --- 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 dcb83545b..72becfe7c 100644 --- a/content/news/2022-01-23/_index.md +++ b/content/news/2022-01-23/_index.md @@ -1,4 +1,5 @@ --- 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/_index.md b/content/news/2022-02-02/_index.md index 3285809ce..ecb7dd942 100644 --- a/content/news/2022-02-02/_index.md +++ b/content/news/2022-02-02/_index.md @@ -1,4 +1,5 @@ --- 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 f5fa5199a..a2c9c6489 100644 --- a/content/news/2022-02-12/_index.md +++ b/content/news/2022-02-12/_index.md @@ -1,4 +1,5 @@ --- 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/_index.md b/content/news/2022-02-14/_index.md index fcbcda17a..f27a6085b 100644 --- a/content/news/2022-02-14/_index.md +++ b/content/news/2022-02-14/_index.md @@ -1,4 +1,5 @@ --- 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/_index.md b/content/news/2022-02-21/_index.md index 31d9bfab0..1a98db151 100644 --- a/content/news/2022-02-21/_index.md +++ b/content/news/2022-02-21/_index.md @@ -1,4 +1,5 @@ --- 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/_index.md b/content/news/2022-02-22/_index.md index 9524dadae..dfbae1288 100644 --- a/content/news/2022-02-22/_index.md +++ b/content/news/2022-02-22/_index.md @@ -1,4 +1,5 @@ --- 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 13d631dfa..e6628d644 100644 --- a/content/news/2022-03-11/_index.md +++ b/content/news/2022-03-11/_index.md @@ -1,4 +1,5 @@ --- 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 b4f9690a7..a7ed62304 100644 --- a/content/news/2022-03-16/_index.md +++ b/content/news/2022-03-16/_index.md @@ -1,4 +1,5 @@ --- 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/_index.md b/content/news/2022-03-25/_index.md index 591f50050..b978e08f2 100644 --- a/content/news/2022-03-25/_index.md +++ b/content/news/2022-03-25/_index.md @@ -1,4 +1,5 @@ --- 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 0130f17a0..96108f7cc 100644 --- a/content/news/2022-04-11/_index.md +++ b/content/news/2022-04-11/_index.md @@ -1,4 +1,5 @@ --- 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 51ebb606e..6ac7c5fb8 100644 --- a/content/news/2022-04-18/_index.md +++ b/content/news/2022-04-18/_index.md @@ -1,4 +1,5 @@ --- 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/_index.md b/content/news/2022-05-02/_index.md index bcfabe123..b0cb95e0e 100644 --- a/content/news/2022-05-02/_index.md +++ b/content/news/2022-05-02/_index.md @@ -1,4 +1,5 @@ --- 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/_index.md b/content/news/2022-05-24/_index.md index 100245d96..95edbb35c 100644 --- a/content/news/2022-05-24/_index.md +++ b/content/news/2022-05-24/_index.md @@ -1,4 +1,5 @@ --- 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/_index.md b/content/news/2022-06-05/_index.md index a0cb45def..904a2cf00 100644 --- a/content/news/2022-06-05/_index.md +++ b/content/news/2022-06-05/_index.md @@ -1,4 +1,5 @@ --- 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 d82bd9a66..b53c1e7b6 100644 --- a/content/news/2022-06-20/_index.md +++ b/content/news/2022-06-20/_index.md @@ -1,4 +1,5 @@ --- 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/_index.md b/content/news/2022-06-28/_index.md index b1f409d3d..ff54afb18 100644 --- a/content/news/2022-06-28/_index.md +++ b/content/news/2022-06-28/_index.md @@ -1,4 +1,5 @@ --- 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/_index.md b/content/news/2022-06-29/_index.md index 91621a3b5..7ab6865fd 100644 --- a/content/news/2022-06-29/_index.md +++ b/content/news/2022-06-29/_index.md @@ -1,4 +1,5 @@ --- 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/_index.md b/content/news/2022-07-02/_index.md index 56360b575..7a74e0722 100644 --- a/content/news/2022-07-02/_index.md +++ b/content/news/2022-07-02/_index.md @@ -1,4 +1,5 @@ --- 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/_index.md b/content/news/2022-07-04/_index.md index dec3e154e..935467f49 100644 --- a/content/news/2022-07-04/_index.md +++ b/content/news/2022-07-04/_index.md @@ -1,4 +1,5 @@ --- date: 2022-07-04 sort_by: date +template: news/date_section.html --- diff --git a/content/news/2022-07-12/_index.md b/content/news/2022-07-12/_index.md index e1d3cc48b..ec47ba024 100644 --- a/content/news/2022-07-12/_index.md +++ b/content/news/2022-07-12/_index.md @@ -1,4 +1,5 @@ --- 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/_index.md b/content/news/2022-07-28/_index.md index 155b07324..668ed2e02 100644 --- a/content/news/2022-07-28/_index.md +++ b/content/news/2022-07-28/_index.md @@ -1,4 +1,5 @@ --- 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/_index.md b/content/news/2022-08-01/_index.md index e88cc2827..b38c6d314 100644 --- a/content/news/2022-08-01/_index.md +++ b/content/news/2022-08-01/_index.md @@ -1,4 +1,5 @@ --- 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/_index.md b/content/news/2022-08-03/_index.md index 2cfa84d3c..a4fb8ebe7 100644 --- a/content/news/2022-08-03/_index.md +++ b/content/news/2022-08-03/_index.md @@ -1,4 +1,5 @@ --- 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/_index.md b/content/news/2022-08-24/_index.md index 13047a6e6..58abe8fd9 100644 --- a/content/news/2022-08-24/_index.md +++ b/content/news/2022-08-24/_index.md @@ -1,4 +1,5 @@ --- 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/_index.md b/content/news/2022-08-31/_index.md index f159b61c0..3f0225921 100644 --- a/content/news/2022-08-31/_index.md +++ b/content/news/2022-08-31/_index.md @@ -1,4 +1,5 @@ --- 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 6e114acef..a0b9e46e3 100644 --- a/content/news/2022-09-17/_index.md +++ b/content/news/2022-09-17/_index.md @@ -1,4 +1,5 @@ --- 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/_index.md b/content/news/2022-09-22/_index.md index ec38af106..75990190e 100644 --- a/content/news/2022-09-22/_index.md +++ b/content/news/2022-09-22/_index.md @@ -1,4 +1,5 @@ --- 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 04f109694..c5d238a57 100644 --- a/content/news/2022-10-07/_index.it.md +++ b/content/news/2022-10-07/_index.it.md @@ -1,4 +1,5 @@ --- 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 04f109694..c5d238a57 100644 --- a/content/news/2022-10-07/_index.md +++ b/content/news/2022-10-07/_index.md @@ -1,4 +1,5 @@ --- 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 04f109694..c5d238a57 100644 --- a/content/news/2022-10-07/_index.ru.md +++ b/content/news/2022-10-07/_index.ru.md @@ -1,4 +1,5 @@ --- 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 04f109694..c5d238a57 100644 --- a/content/news/2022-10-07/_index.tr.md +++ b/content/news/2022-10-07/_index.tr.md @@ -1,4 +1,5 @@ --- 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/_index.md b/content/news/2022-10-10/_index.md index c6fc8d3b9..1154f0341 100644 --- a/content/news/2022-10-10/_index.md +++ b/content/news/2022-10-10/_index.md @@ -1,4 +1,5 @@ --- 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/_index.md b/content/news/2022-11-03/_index.md index e0dc46fc7..2180f1424 100644 --- a/content/news/2022-11-03/_index.md +++ b/content/news/2022-11-03/_index.md @@ -1,4 +1,5 @@ --- 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/_index.md b/content/news/2022-11-07/_index.md index 17395a40f..40c425d68 100644 --- a/content/news/2022-11-07/_index.md +++ b/content/news/2022-11-07/_index.md @@ -1,4 +1,5 @@ --- 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/_index.md b/content/news/2022-11-09/_index.md index 7ad59b00b..c170c5f6d 100644 --- a/content/news/2022-11-09/_index.md +++ b/content/news/2022-11-09/_index.md @@ -1,4 +1,5 @@ --- 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 53fb613d9..c36ebd98a 100644 --- a/content/news/2022-11-21/_index.md +++ b/content/news/2022-11-21/_index.md @@ -1,4 +1,5 @@ --- 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 53fb613d9..c36ebd98a 100644 --- a/content/news/2022-11-21/_index.tr.md +++ b/content/news/2022-11-21/_index.tr.md @@ -1,4 +1,5 @@ --- 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/_index.md b/content/news/2022-11-30/_index.md index 02e562479..b25c976b8 100644 --- a/content/news/2022-11-30/_index.md +++ b/content/news/2022-11-30/_index.md @@ -1,4 +1,5 @@ --- 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 02e562479..b25c976b8 100644 --- a/content/news/2022-11-30/_index.tr.md +++ b/content/news/2022-11-30/_index.tr.md @@ -1,4 +1,5 @@ --- 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/_index.md b/content/news/2022-12-02/_index.md index aa7d2eefd..27caed456 100644 --- a/content/news/2022-12-02/_index.md +++ b/content/news/2022-12-02/_index.md @@ -1,4 +1,5 @@ --- 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 aa7d2eefd..27caed456 100644 --- a/content/news/2022-12-02/_index.ru.md +++ b/content/news/2022-12-02/_index.ru.md @@ -1,4 +1,5 @@ --- 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 aa7d2eefd..27caed456 100644 --- a/content/news/2022-12-02/_index.tr.md +++ b/content/news/2022-12-02/_index.tr.md @@ -1,4 +1,5 @@ --- 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/_index.cs.md b/content/news/2022-12-23/_index.cs.md index 484a553cc..7348a214f 100644 --- a/content/news/2022-12-23/_index.cs.md +++ b/content/news/2022-12-23/_index.cs.md @@ -1,4 +1,5 @@ --- 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 484a553cc..7348a214f 100644 --- a/content/news/2022-12-23/_index.it.md +++ b/content/news/2022-12-23/_index.it.md @@ -1,4 +1,5 @@ --- 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 484a553cc..7348a214f 100644 --- a/content/news/2022-12-23/_index.md +++ b/content/news/2022-12-23/_index.md @@ -1,4 +1,5 @@ --- 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 484a553cc..7348a214f 100644 --- a/content/news/2022-12-23/_index.ru.md +++ b/content/news/2022-12-23/_index.ru.md @@ -1,4 +1,5 @@ --- 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 484a553cc..7348a214f 100644 --- a/content/news/2022-12-23/_index.tr.md +++ b/content/news/2022-12-23/_index.tr.md @@ -1,4 +1,5 @@ --- 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 8ce057867..e3658c636 100644 --- a/content/news/2023-01-01/_index.it.md +++ b/content/news/2023-01-01/_index.it.md @@ -1,4 +1,5 @@ --- 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 8ce057867..e3658c636 100644 --- a/content/news/2023-01-01/_index.md +++ b/content/news/2023-01-01/_index.md @@ -1,4 +1,5 @@ --- 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 326464491..5c0172047 100644 --- a/content/news/2023-01-15/_index.it.md +++ b/content/news/2023-01-15/_index.it.md @@ -1,4 +1,5 @@ --- 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 326464491..5c0172047 100644 --- a/content/news/2023-01-15/_index.md +++ b/content/news/2023-01-15/_index.md @@ -1,4 +1,5 @@ --- 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 be32b9b72..2d8318105 100644 --- a/content/news/2023-01-20/_index.it.md +++ b/content/news/2023-01-20/_index.it.md @@ -1,4 +1,5 @@ --- 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 be32b9b72..2d8318105 100644 --- a/content/news/2023-01-20/_index.md +++ b/content/news/2023-01-20/_index.md @@ -1,4 +1,5 @@ --- 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 e8f85ab4e..6397354b7 100644 --- a/content/news/2023-01-24/_index.it.md +++ b/content/news/2023-01-24/_index.it.md @@ -1,4 +1,5 @@ --- 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 e8f85ab4e..6397354b7 100644 --- a/content/news/2023-01-24/_index.md +++ b/content/news/2023-01-24/_index.md @@ -1,4 +1,5 @@ --- 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/_index.cs.md b/content/news/2023-01-27/_index.cs.md index 4a6ebd355..0f27d73e4 100644 --- a/content/news/2023-01-27/_index.cs.md +++ b/content/news/2023-01-27/_index.cs.md @@ -1,4 +1,5 @@ --- 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 4a6ebd355..0f27d73e4 100644 --- a/content/news/2023-01-27/_index.es.md +++ b/content/news/2023-01-27/_index.es.md @@ -1,4 +1,5 @@ --- 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 4a6ebd355..0f27d73e4 100644 --- a/content/news/2023-01-27/_index.it.md +++ b/content/news/2023-01-27/_index.it.md @@ -1,4 +1,5 @@ --- 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 4a6ebd355..0f27d73e4 100644 --- a/content/news/2023-01-27/_index.md +++ b/content/news/2023-01-27/_index.md @@ -1,4 +1,5 @@ --- 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 4a6ebd355..0f27d73e4 100644 --- a/content/news/2023-01-27/_index.nl.md +++ b/content/news/2023-01-27/_index.nl.md @@ -1,4 +1,5 @@ --- 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 4a6ebd355..0f27d73e4 100644 --- a/content/news/2023-01-27/_index.pt-BR.md +++ b/content/news/2023-01-27/_index.pt-BR.md @@ -1,4 +1,5 @@ --- 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 4a6ebd355..0f27d73e4 100644 --- a/content/news/2023-01-27/_index.ru.md +++ b/content/news/2023-01-27/_index.ru.md @@ -1,4 +1,5 @@ --- 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 4a6ebd355..0f27d73e4 100644 --- a/content/news/2023-01-27/_index.tr.md +++ b/content/news/2023-01-27/_index.tr.md @@ -1,4 +1,5 @@ --- 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/_index.fr.md b/content/news/2023-02-14/_index.fr.md index e797121d1..b68e39889 100644 --- a/content/news/2023-02-14/_index.fr.md +++ b/content/news/2023-02-14/_index.fr.md @@ -1,4 +1,5 @@ --- 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 e797121d1..b68e39889 100644 --- a/content/news/2023-02-14/_index.it.md +++ b/content/news/2023-02-14/_index.it.md @@ -1,4 +1,5 @@ --- 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 e797121d1..b68e39889 100644 --- a/content/news/2023-02-14/_index.md +++ b/content/news/2023-02-14/_index.md @@ -1,4 +1,5 @@ --- 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 e797121d1..b68e39889 100644 --- a/content/news/2023-02-14/_index.nl.md +++ b/content/news/2023-02-14/_index.nl.md @@ -1,4 +1,5 @@ --- 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 e797121d1..b68e39889 100644 --- a/content/news/2023-02-14/_index.pt-BR.md +++ b/content/news/2023-02-14/_index.pt-BR.md @@ -1,4 +1,5 @@ --- 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 e797121d1..b68e39889 100644 --- a/content/news/2023-02-14/_index.ru.md +++ b/content/news/2023-02-14/_index.ru.md @@ -1,4 +1,5 @@ --- 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 e797121d1..b68e39889 100644 --- a/content/news/2023-02-14/_index.tr.md +++ b/content/news/2023-02-14/_index.tr.md @@ -1,4 +1,5 @@ --- 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 e797121d1..b68e39889 100644 --- a/content/news/2023-02-14/_index.zh-CN.md +++ b/content/news/2023-02-14/_index.zh-CN.md @@ -1,4 +1,5 @@ --- 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-17/_index.it.md b/content/news/2023-02-17/_index.it.md index eddc1d39f..4b4b81de0 100644 --- a/content/news/2023-02-17/_index.it.md +++ b/content/news/2023-02-17/_index.it.md @@ -1,4 +1,5 @@ --- 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 eddc1d39f..4b4b81de0 100644 --- a/content/news/2023-02-17/_index.md +++ b/content/news/2023-02-17/_index.md @@ -1,4 +1,5 @@ --- 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 787405235..e5139d2fc 100644 --- a/content/news/2023-02-28/_index.it.md +++ b/content/news/2023-02-28/_index.it.md @@ -1,4 +1,5 @@ --- 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 787405235..e5139d2fc 100644 --- a/content/news/2023-02-28/_index.md +++ b/content/news/2023-02-28/_index.md @@ -1,4 +1,5 @@ --- 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 782096ea5..15742582e 100644 --- a/content/news/2023-02-28/_index.tr.md +++ b/content/news/2023-02-28/_index.tr.md @@ -1,4 +1,5 @@ --- date: 2023-02-28 sort_by: date +template: news/date_section.html --- diff --git a/content/news/2023-03-09/_index.md b/content/news/2023-03-09/_index.md index ed09056b0..6fdaadef4 100644 --- a/content/news/2023-03-09/_index.md +++ b/content/news/2023-03-09/_index.md @@ -1,4 +1,5 @@ --- 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 8843183ba..1733d5c8f 100644 --- a/content/news/2023-03-09/_index.tr.md +++ b/content/news/2023-03-09/_index.tr.md @@ -1,4 +1,5 @@ --- date: 2023-03-09 sort_by: date +template: news/date_section.html --- diff --git a/content/news/2023-04-06/_index.md b/content/news/2023-04-06/_index.md index 683b42a32..00d43128d 100644 --- a/content/news/2023-04-06/_index.md +++ b/content/news/2023-04-06/_index.md @@ -1,4 +1,5 @@ --- 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 153a2111d..7b4de93d8 100644 --- a/content/news/2023-04-06/_index.tr.md +++ b/content/news/2023-04-06/_index.tr.md @@ -1,4 +1,5 @@ --- date: 2023-04-06 sort_by: date +template: news/date_section.html --- diff --git a/content/news/2023-05-12/_index.md b/content/news/2023-05-12/_index.md index 983e7e545..8719a04fa 100644 --- a/content/news/2023-05-12/_index.md +++ b/content/news/2023-05-12/_index.md @@ -1,4 +1,5 @@ --- 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 983e7e545..8719a04fa 100644 --- a/content/news/2023-05-12/_index.ru.md +++ b/content/news/2023-05-12/_index.ru.md @@ -1,4 +1,5 @@ --- 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 e503f30cd..b0985a8e2 100644 --- a/content/news/2023-05-12/_index.tr.md +++ b/content/news/2023-05-12/_index.tr.md @@ -1,4 +1,5 @@ --- date: 2023-05-12 sort_by: date +template: news/date_section.html --- diff --git a/content/news/2023-06-01/_index.md b/content/news/2023-06-01/_index.md index ed51fa5fd..5a145ac90 100644 --- a/content/news/2023-06-01/_index.md +++ b/content/news/2023-06-01/_index.md @@ -1,4 +1,5 @@ --- 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 72819a350..18ea3c1a1 100644 --- a/content/news/2023-06-01/_index.tr.md +++ b/content/news/2023-06-01/_index.tr.md @@ -1,4 +1,5 @@ --- date: 2023-06-01 sort_by: date +template: news/date_section.html --- diff --git a/content/news/2023-06-07/_index.md b/content/news/2023-06-07/_index.md index 7417dc070..9f9269d12 100644 --- a/content/news/2023-06-07/_index.md +++ b/content/news/2023-06-07/_index.md @@ -1,4 +1,5 @@ --- 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 094b4ab69..1f03a6d3b 100644 --- a/content/news/2023-06-07/_index.tr.md +++ b/content/news/2023-06-07/_index.tr.md @@ -1,4 +1,5 @@ --- date: 2023-06-07 sort_by: date +template: news/date_section.html --- diff --git a/content/news/2023-07-17/_index.md b/content/news/2023-07-17/_index.md index a6a8170e7..67c44d4b4 100644 --- a/content/news/2023-07-17/_index.md +++ b/content/news/2023-07-17/_index.md @@ -1,4 +1,5 @@ --- 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/_index.de.md b/content/news/2023-07-18/_index.de.md index 527882b72..724b7efde 100644 --- a/content/news/2023-07-18/_index.de.md +++ b/content/news/2023-07-18/_index.de.md @@ -1,4 +1,5 @@ --- 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 527882b72..724b7efde 100644 --- a/content/news/2023-07-18/_index.md +++ b/content/news/2023-07-18/_index.md @@ -1,4 +1,5 @@ --- 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 c2fdb083e..cbf709a16 100644 --- a/content/news/2023-07-23/_index.md +++ b/content/news/2023-07-23/_index.md @@ -1,4 +1,5 @@ --- 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/_index.md b/content/news/2023-08-21/_index.md index 463fc734e..10f2315f1 100644 --- a/content/news/2023-08-21/_index.md +++ b/content/news/2023-08-21/_index.md @@ -1,4 +1,5 @@ --- 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 9531ce3fe..3ce945591 100644 --- a/content/news/2023-09-15/_index.md +++ b/content/news/2023-09-15/_index.md @@ -1,4 +1,5 @@ --- 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/_index.md b/content/news/2023-09-21/_index.md index ec9999a75..99d8e1c6a 100644 --- a/content/news/2023-09-21/_index.md +++ b/content/news/2023-09-21/_index.md @@ -1,4 +1,5 @@ --- date: 2023-09-21 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 a7b815983..a36f3e41e 100644 --- a/content/news/_index.af.md +++ b/content/news/_index.af.md @@ -4,6 +4,6 @@ extra: menu_title: Nuus page_template: news_post.html sort_by: date -template: news.html +template: news/root_section.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 ff449b6a0..737b0139f 100644 --- a/content/news/_index.ar.md +++ b/content/news/_index.ar.md @@ -4,6 +4,6 @@ extra: menu_title: الأخبار page_template: news_post.html sort_by: date -template: news.html +template: news/root_section.html title: "Organic Maps: آخر الأخبار والتحديثات من فريقنا" --- diff --git a/content/news/_index.ca.md b/content/news/_index.ca.md index e5237c2a4..564496f4c 100644 --- a/content/news/_index.ca.md +++ b/content/news/_index.ca.md @@ -4,6 +4,6 @@ extra: menu_title: Notícies page_template: news_post.html sort_by: date -template: news.html +template: news/root_section.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 133966b6a..28f3ea54b 100644 --- a/content/news/_index.cs.md +++ b/content/news/_index.cs.md @@ -4,6 +4,6 @@ extra: menu_title: Novinky page_template: news_post.html sort_by: date -template: news.html +template: news/root_section.html title: "Organic Maps: Nejnovější zprávy a aktualizace od našeho týmu" --- diff --git a/content/news/_index.de.md b/content/news/_index.de.md index 6f8a32d16..c8a0c4dd0 100644 --- a/content/news/_index.de.md +++ b/content/news/_index.de.md @@ -4,6 +4,6 @@ extra: menu_title: Neuigkeiten page_template: news_post.html sort_by: date -template: news.html +template: news/root_section.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 a3f7d2b73..7ce531e00 100644 --- a/content/news/_index.es.md +++ b/content/news/_index.es.md @@ -4,6 +4,6 @@ extra: menu_title: Noticias page_template: news_post.html sort_by: date -template: news.html +template: news/root_section.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 c7d1ada82..3452bf04a 100644 --- a/content/news/_index.eu.md +++ b/content/news/_index.eu.md @@ -4,6 +4,6 @@ extra: menu_title: Berriak page_template: news_post.html sort_by: date -template: news.html +template: news/root_section.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 9f1e2cff8..47c4b4f1d 100644 --- a/content/news/_index.fr.md +++ b/content/news/_index.fr.md @@ -1,7 +1,7 @@ --- 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.html +template: news/root_section.html page_template: news_post.html sort_by: date extra: diff --git a/content/news/_index.hi.md b/content/news/_index.hi.md index 349a2e807..a5ca535aa 100644 --- a/content/news/_index.hi.md +++ b/content/news/_index.hi.md @@ -4,6 +4,6 @@ extra: menu_title: समाचार page_template: news_post.html sort_by: date -template: news.html +template: news/root_section.html title: "ऑर्गेनिक मैप्स: हमारी टीम से नवीनतम समाचार और अपडेट" --- diff --git a/content/news/_index.hu.md b/content/news/_index.hu.md index a01240458..b0c8baa61 100644 --- a/content/news/_index.hu.md +++ b/content/news/_index.hu.md @@ -4,6 +4,6 @@ extra: menu_title: Hírek page_template: news_post.html sort_by: date -template: news.html +template: news/root_section.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 3ae7d8b0b..733239607 100644 --- a/content/news/_index.id.md +++ b/content/news/_index.id.md @@ -4,6 +4,6 @@ extra: menu_title: Berita page_template: news_post.html sort_by: date -template: news.html +template: news/root_section.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 6f365bf4c..db935ac1c 100644 --- a/content/news/_index.it.md +++ b/content/news/_index.it.md @@ -1,7 +1,7 @@ --- 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.html +template: news/root_section.html page_template: news_post.html sort_by: date extra: diff --git a/content/news/_index.md b/content/news/_index.md index 726dcee75..421318f91 100644 --- a/content/news/_index.md +++ b/content/news/_index.md @@ -1,7 +1,7 @@ --- 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.html +template: news/root_section.html page_template: news_post.html sort_by: date extra: diff --git a/content/news/_index.nl.md b/content/news/_index.nl.md index 2d6a9525b..03f7c3ae0 100644 --- a/content/news/_index.nl.md +++ b/content/news/_index.nl.md @@ -4,6 +4,6 @@ extra: menu_title: Nieuws page_template: news_post.html sort_by: date -template: news.html +template: news/root_section.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 5ea8851db..ab3998dde 100644 --- a/content/news/_index.pl.md +++ b/content/news/_index.pl.md @@ -4,6 +4,6 @@ extra: menu_title: Nowości page_template: news_post.html sort_by: date -template: news.html +template: news/root_section.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 3be081bc8..2a11e82f7 100644 --- a/content/news/_index.pt-BR.md +++ b/content/news/_index.pt-BR.md @@ -4,6 +4,6 @@ extra: menu_title: Notícias page_template: news_post.html sort_by: date -template: news.html +template: news/root_section.html title: "Organic Maps: Últimas notícias e atualizações de nossa equipe" --- diff --git a/content/news/_index.ru.md b/content/news/_index.ru.md index 6c88d297d..b0876bf7e 100644 --- a/content/news/_index.ru.md +++ b/content/news/_index.ru.md @@ -1,7 +1,7 @@ --- title: "Organic Maps: Свежие новости и обновления от нашей команды" description: Оставайтесь в курсе последних обновлений и новостей от нашей команды -template: news.html +template: news/root_section.html page_template: news_post.html sort_by: date extra: diff --git a/content/news/_index.sv.md b/content/news/_index.sv.md index a6f24188d..ae2fa1ac0 100644 --- a/content/news/_index.sv.md +++ b/content/news/_index.sv.md @@ -4,6 +4,6 @@ extra: menu_title: Nyheter page_template: news_post.html sort_by: date -template: news.html +template: news/root_section.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 31e9ee498..d765c227f 100644 --- a/content/news/_index.tr.md +++ b/content/news/_index.tr.md @@ -1,7 +1,7 @@ --- 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.html +template: news/root_section.html page_template: news_post.html sort_by: date extra: diff --git a/content/news/_index.uk.md b/content/news/_index.uk.md index f2e549e8d..9a11e0e46 100644 --- a/content/news/_index.uk.md +++ b/content/news/_index.uk.md @@ -4,6 +4,6 @@ extra: menu_title: Новини page_template: news_post.html sort_by: date -template: news.html +template: news/root_section.html title: "Organic Maps: Останні новини та оновлення від нашої команди" --- diff --git a/content/news/_index.zh-CN.md b/content/news/_index.zh-CN.md index 1d5dc9f41..1969a66c6 100644 --- a/content/news/_index.zh-CN.md +++ b/content/news/_index.zh-CN.md @@ -1,7 +1,7 @@ --- title: "有机地图:我们团队的最新消息和更新" description: 与我们团队的最新有机地图发布、新闻和更新保持联系 -template: news.html +template: news/root_section.html page_template: news_post.html sort_by: date extra: diff --git a/content/news/_index.zh-Hans.md b/content/news/_index.zh-Hans.md index b11708462..5bcf948b5 100644 --- a/content/news/_index.zh-Hans.md +++ b/content/news/_index.zh-Hans.md @@ -4,6 +4,6 @@ extra: menu_title: 新闻 page_template: news_post.html sort_by: date -template: news.html +template: news/root_section.html title: "Organic Maps:近期新闻和更新" --- diff --git a/static/images/screenshots/tts_config_1.jpg b/static/images/screenshots/tts_config_1.jpg new file mode 100644 index 000000000..0cd455911 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 000000000..1226f9e03 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 000000000..219a2929a Binary files /dev/null and b/static/images/screenshots/tts_config_3.jpg differ diff --git a/static/images/screenshots/tts_test.png b/static/images/screenshots/tts_test.png new file mode 100644 index 000000000..8ff80cdcc Binary files /dev/null and b/static/images/screenshots/tts_test.png differ diff --git a/templates/base.html b/templates/base.html index 25b670a20..6d16ce6ce 100644 --- a/templates/base.html +++ b/templates/base.html @@ -1,7 +1,19 @@ {%- 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 %} +{%- set resource = taxonomy %}{# taxonomy has only 'name' and 'slug' properties #} +{%- set resource_path = '/' ~ resource.name ~ '/' %} +{%- set resource_title = resource.name %} {%- endif %} @@ -13,13 +25,15 @@ + {% block meta_description %} + {% endblock %} {% block rss %} {% endblock %} - + {%- set preview_image = 'images/screenshots/prague.jpg' -%} {%- if resource.extra.preview_image -%} @@ -27,19 +41,19 @@ {%- 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 %} - + {%- if resource.description -%} {%- endif -%} - + {%- if resource.description -%} {%- endif -%} @@ -57,7 +71,7 @@ - {{ resource.title }} + {{ resource_title }} {%- if lang == config.default_language %} {% include 'language_redirect.html' %} @@ -70,6 +84,9 @@
+ {% if page.taxonomies and page.taxonomies.faq %}{# Show FAQ breadcrumbs #} + {% include 'faq/faq-breadcrumbs.html' %} + {% endif %} {% block content %}{% endblock %}
diff --git a/templates/bottom_menu.html b/templates/bottom_menu.html index 07dbf73f3..8f635aa72 100644 --- a/templates/bottom_menu.html +++ b/templates/bottom_menu.html @@ -13,11 +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 %} {{ trans(key='contact', lang=lang) }} - + \ No newline at end of file diff --git a/templates/faq/faq-breadcrumbs.html b/templates/faq/faq-breadcrumbs.html new file mode 100644 index 000000000..569b40f48 --- /dev/null +++ b/templates/faq/faq-breadcrumbs.html @@ -0,0 +1,18 @@ +{# 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/list.html b/templates/faq/list.html new file mode 100644 index 000000000..cf1b13cd1 --- /dev/null +++ b/templates/faq/list.html @@ -0,0 +1,17 @@ +{% extends 'base.html' %} + +{% block meta_description %} + +{% endblock %} + +{% block content %} +

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

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

{{term.name}}

+ + {%- endfor -%} +{% endblock content %} diff --git a/templates/faq/single.html b/templates/faq/single.html new file mode 100644 index 000000000..a0c09267f --- /dev/null +++ b/templates/faq/single.html @@ -0,0 +1,13 @@ +{% extends 'base.html' %} + +{% block meta_description %} + +{% endblock %} + +{% 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/language_redirect.html b/templates/language_redirect.html index cc8980017..8200c5919 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.translations | map(attribute="lang") | sort | json_encode() | safe }}; + var pageTranslations = {{ resource | get(key="translations", default=[]) | 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 9f10816a2..14b8db49c 100644 --- a/templates/language_selector.html +++ b/templates/language_selector.html @@ -6,7 +6,8 @@ } - {% if resource.translations | length > 1 %} + {% set translations = resource | get(key="translations", default=[]) %} + {% if translations | length > 1 %} {% endif %}