diff --git a/.gitignore b/.gitignore
index 011303c5..f07519b6 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,3 +3,4 @@
node_modules
public
translations.yaml
+.idea/*
diff --git a/README.md b/README.md
index 995d8f0c..01565667 100644
--- a/README.md
+++ b/README.md
@@ -25,6 +25,64 @@ 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
+title: A full question that is the title of the page
+description: More detailed info with necessary keywords for better SEO
+slug: the-url-of-the-page-that-can-be-localized-for-better-seo
+taxonomies:
+ faq: ["General"]
+extra:
+ order: 40
+```
+
+Zola will add your question to specific F.A.Q. sub-page.
+
+If you need to translate the FAQ to a new language please add next lines to config.toml:
+
+```toml
+[languages.XX]
+taxonomies = [
+ {name = "faq", feed = false},
+]
+[languages.XX.translations]
+faq-menu-title = "{Translation of 'F.A.Q.' to a new language}"
+```
+
+**Limitation**: 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**: Questions at any F.A.Q. sub-page are sorted by file name. An `extra.order` variable in .md content files is used for sorting articles.
+
+**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 382c6e26..b97fd68f 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
@@ -31,6 +35,7 @@ stripe_usd = "https://donate-usd.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"
@@ -38,6 +43,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]
@@ -89,10 +95,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"
@@ -100,6 +110,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 34391fe9..818b9685 100644
--- a/content/_index.md
+++ b/content/_index.md
@@ -114,4 +114,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/_index.md b/content/faq/_index.md
new file mode 100644
index 00000000..2728f35c
--- /dev/null
+++ b/content/faq/_index.md
@@ -0,0 +1,9 @@
+---
+title: Frequently Asked Questions
+description: This FAQ has answers to many questions about Organic Maps app, our contributors, and our project
+extra:
+ menu_title: F.A.Q.
+---
+
+### This page is replaced with taxonomy "faq" from templates/faq/list.html template
+This file is needed for top_menu.html and bottom_menu.html templates to show F.A.Q.
\ 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 00000000..28cb39a6
--- /dev/null
+++ b/content/faq/_index.ru.md
@@ -0,0 +1,9 @@
+---
+title: Справка и часто задаваемые вопросы
+description: Ответы на вопросы о приложении Organic Maps и о нашем проекте
+extra:
+ menu_title: Справка
+---
+
+### This page is replaced with taxonomy "faq" from templates/faq/list.html template
+This file is needed for top_menu.html and bottom_menu.html templates to show F.A.Q.
\ No newline at end of file
diff --git a/content/faq/text-to-speech-android-tts/index.md b/content/faq/text-to-speech-android-tts/index.md
new file mode 100644
index 00000000..701de407
--- /dev/null
+++ b/content/faq/text-to-speech-android-tts/index.md
@@ -0,0 +1,62 @@
+---
+title: Text-to-Speech on Android
+description: Guide on how to make TTS work on Android
+
+taxonomies:
+ faq: ["Voice Directions"]
+
+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
+
+| | | |
+| ----------- | ----------- | ----------- |
+ | |
+
+## Engines {#engines}
+
+Below is a comprehensive list showing several engines and the languages they support (download links can be found after the table):
+
+{{ tts_table() }}
+
+## Workarounds
+
+If you’re having trouble initializing the RHVoice TTS engine on LineageOS or other custom ROMs, try this workaround. RHVoice may not initialize properly and the app may crash, especially if you haven’t used any TTS engine on your phone before (e.g., new installation, factory reset, etc.). If you’re using a custom ROM like LineageOS without Google Play services and Speech Services by Google, and you want to use RHVoice as your preferred TTS engine, follow the instructions below as a workaround:
+
+1. Install the [eSpeak TTS engine](https://f-droid.org/en/packages/com.reecedunn.espeak) available on F-Droid
+2. Set it as the preferred system engine
+ - Go to LineageOS main **Settings**.
+ - Scroll down to **Accessibility**.
+ - Select **text-to-speech output** and **Preferred engine** (left side) and make sure **eSpeak** is selected.
+3. Go back and press **play** to see if it is working
+4. Install [RHVoice](https://f-droid.org/en/packages/com.github.olga_yakovleva.rhvoice.android/) available on F-droid.
+ - Open it, select the language you want to use, tap on the cloud icon (far left) to download voices.
+ - Press play button to verify if it is working
+5. Set **RHVoice** as preferred engine (see step 2)
+6. Now, you should be able to use RHVoice without any problems
+
+## 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.
+
+
diff --git a/content/faq/text-to-speech-android-tts/index.ru.md b/content/faq/text-to-speech-android-tts/index.ru.md
new file mode 100644
index 00000000..f64b7452
--- /dev/null
+++ b/content/faq/text-to-speech-android-tts/index.ru.md
@@ -0,0 +1,63 @@
+---
+title: Синтез речи (Text-to-Speech, TTS) на Android
+description: Как настроить озвучку навигатора в Organic Maps на Android
+slug: синтез-речи-tts-на-android
+
+taxonomies:
+ faq: ["Голосовые подсказки"]
+
+extra:
+ order: 10
+---
+
+## Общая информация
+
+Organic Maps использует системные службы (движки) и настройки преобразования текста в речь (TTS) для голосовых инструкций. На разных устройствах используются разные движки по умолчанию. Можно выбрать Google Text-to Speech, движок производителя устройства (например, Samsung) или сторонний движок.
+
+Если системные движки вас не устраивают, можете попробовать установить [RHVoice](https://rhvoice.org/), это бесплатный речевой движок с открытым исходным кодом, который можно загрузить из [Google Play](https://play.google.com/store/apps/details?id=com.github.olga_yakovleva.rhvoice.android) и [F-Droid](https://f-droid.org/en/packages/com.github.olga_yakovleva.rhvoice.android/).
+
+## Инструкции
+
+- Откройте приложение "Настройки" на устройстве Android.
+- Выберите Дополнительные настройки, а затем выберите Доступность.
+- Выберите предпочтительный движок, скорость речи и высоту тона.
+
+Если вы не можете найти нужный параметр, откройте приложение "Настройки" и найдите "Текст в речь".
+
+P.S.: Обратите внимание, что эти шаги зависят от марки используемого телефона.
+
+Указанные опции могут не отображаться, если на вашем устройстве еще не установлен TTS. Обратитесь к таблице ниже, чтобы установить любой из них, поддерживающий ваш родной язык.
+
+## Скриншоты
+
+| | | |
+| ----------- | ----------- | ----------- |
+| |
|
|
+
+## Движки синтеза речи
+
+Ниже приведен полный список с указанием нескольких движков и поддерживаемых ими языков (ссылки на скачивание находятся после таблицы):
+
+{{ tts_table() }}
+
+## Проблемы с RHVoice
+
+Если у вас возникли проблемы с инициализацией механизма RHVoice TTS в LineageOS или других кастомных прошивках, попробуйте следующее. RHVoice может инициализироваться неправильно, и приложение может крешнуться, особенно если вы раньше не использовали какой-либо движок TTS на своем телефоне (например, новая установка, сброс настроек к заводским настройкам и т. д.). Если вы используете пользовательскую прошивку, например, LineageOS *без сервисов Google Play и речевых сервисов Google*, и вы хотите использовать RHVoice в качестве предпочтительного движка TTS, следуйте приведенным ниже инструкциям:
+
+1. Установите [eSpeak TTS engine](https://f-droid.org/en/packages/com.reecedunn.espeak), доступный на F-Droid.
+2. Установите его в качестве предпочтительного системного движка
+ - Перейдите в главный раздел LineageOS **Настройки**.
+ - Прокрутите вниз до **Доступность**.
+ - Выберите **Вывод текста в речь** и **Предпочитаемый движок** (слева) и убедитесь, что выбран **eSpeak**.
+3. Вернитесь назад и нажмите **play**, чтобы проверить, работает ли он.
+4. Установите программу [RHVoice](https://f-droid.org/en/packages/com.github.olga_yakovleva.rhvoice.android/), доступную на F-droid.
+ - Откройте его, выберите язык, который хотите использовать, нажмите на значок облака (крайний слева), чтобы загрузить голоса.
+ - Нажмите кнопку воспроизведения, чтобы проверить, работает ли он.
+5. Установите **RHVoice** в качестве предпочтительного движка (см. шаг 2).
+6. Теперь вы сможете использовать RHVoice без каких-либо проблем
+
+## Проверка синтеза речи
+
+Чтобы проверить голосовые инструкции, вы можете нажать на "Проверить голосовые подсказки (TTS, Text-To-Speech)" в меню OM "Настройки → Голосовые инструкции" или начать навигацию, чтобы услышать голосовые инструкции. Пока вы стоите на месте, голосовых инструкций не будет.
+
+
diff --git a/content/faq/text-to-speech-android-tts/tts_config_1.jpg b/content/faq/text-to-speech-android-tts/tts_config_1.jpg
new file mode 100644
index 00000000..0cd45591
Binary files /dev/null and b/content/faq/text-to-speech-android-tts/tts_config_1.jpg differ
diff --git a/content/faq/text-to-speech-android-tts/tts_config_2.jpg b/content/faq/text-to-speech-android-tts/tts_config_2.jpg
new file mode 100644
index 00000000..1226f9e0
Binary files /dev/null and b/content/faq/text-to-speech-android-tts/tts_config_2.jpg differ
diff --git a/content/faq/text-to-speech-android-tts/tts_config_3.jpg b/content/faq/text-to-speech-android-tts/tts_config_3.jpg
new file mode 100644
index 00000000..219a2929
Binary files /dev/null and b/content/faq/text-to-speech-android-tts/tts_config_3.jpg differ
diff --git a/content/faq/text-to-speech-android-tts/tts_test.png b/content/faq/text-to-speech-android-tts/tts_test.png
new file mode 100644
index 00000000..8ff80cdc
Binary files /dev/null and b/content/faq/text-to-speech-android-tts/tts_test.png differ
diff --git a/templates/base.html b/templates/base.html
index 5269f45f..eebd0af5 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -1,7 +1,20 @@
{%- if page %}
{%- set resource = page %}
+{%- set resource_title = resource.title %}
+{%- set resource_path = resource.path %}
{%- elif section %}
{%- set resource = section %}
+{%- set resource_title = resource.title %}
+{%- set resource_path = resource.path %}
+{%- elif term %}
+{%- set resource = term %}{# taxonomy term has only 'name', 'slug' and 'path' properties #}
+{%- set resource_path = resource.path %}
+{%- set resource_title = resource.name %}
+{%- elif taxonomy %}{# taxonomy has only 'name' and 'slug' properties #}
+{% set resource = taxonomy.name ~ "/_index.md" %}
+{% set resource = get_section(path=resource) %}
+{%- set resource_title = resource.title %}
+{%- set resource_path = resource.path %}
{%- endif %}
@@ -13,13 +26,17 @@
+ {% block meta_description %}
+ {%- if resource.description -%}
+ {% endif %}
+ {% endblock %}
{% block rss %}
{% endblock %}
-
+
{%- set preview_image = 'images/screenshots/prague.jpg' -%}
{%- if resource.extra.preview_image -%}
@@ -27,19 +44,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 +74,7 @@
-