diff --git a/readme_generator/README.md b/readme_generator/README.md
index 1f3aadd7..e50f43ba 100644
--- a/readme_generator/README.md
+++ b/readme_generator/README.md
@@ -44,26 +44,3 @@ Add the webhook.service to systemd config, then start it:
```bash
systemctl start the_webhook_service
```
-
-## Translation
-
-It's based on Babel integrated into jinja2 :
-
-```bash
-source venv/bin/activate
-
-# Extract the english sentences from the code, needed if you modified it
-pybabel extract --ignore-dirs venv -F babel.cfg -o messages.pot .
-
-# If working on a new locale: initialize it: (in this example: fr)
-pybabel init -i messages.pot -d translations -l fr
-# Otherwise, update the existing .po:
-pybabel update -i messages.pot -d translations
-# To update only a specific language: (in this example: fr)
-pybabel update -i messages.pot -d translations -l fr
-
-# ... translate stuff in translations//LC_MESSAGES/messages.po
-# re-run the 'update' command to let Babel properly format the text
-# then compile:
-pybabel compile -d translations
-```
diff --git a/readme_generator/README.md.j2 b/readme_generator/README.md.j2
new file mode 100644
index 00000000..f03bacdc
--- /dev/null
+++ b/readme_generator/README.md.j2
@@ -0,0 +1,56 @@
+{% if manifest.id == "example" -%}
+# Packaging an app, starting from this example
+
+- (Alternatively to this small tutorial, consider checking out !)
+- Copy this app before working on it, using the ['Use this template'](https://github.com/new?template_name=example_ynh&template_owner=YunoHost) button on the Github repo
+- Edit the `manifest.toml` with app specific info
+- Edit the `install`, `upgrade`, `remove`, `backup` and `restore` scripts, and any relevant conf files in `conf/`
+ - Using the [script helpers documentation](https://yunohost.org/packaging_apps_helpers)
+- Edit the `change_url` and `config` scripts too, or remove them if you have no use of them
+- Add a `LICENSE` file for the package.
+ - NB: this `LICENSE` file is not meant to necessarily be the same LICENSE as the upstream app - it is only the LICENSE you want this package's code to published with and you can choose it freely! (If you don't know which to choose, we recommend [the AGPL-3](https://www.gnu.org/licenses/agpl-3.0.txt))
+- Edit files under the `doc/` directory ([see the page about documenting packages](https://yunohost.org/packaging_app_doc))
+- The `README.md` files are to be automatically generated by
+
+---
+{% endif -%}
+
+
+
+
+
+ {{ manifest.name }}, packaged for YunoHost
+
+
+{{ manifest.description['en'] }}
+
+{% if manifest.upstream.website %}[]({{manifest.upstream.website}})
+{% endif %}{% if manifest.upstream.demo %}[]({{manifest.upstream.demo}})
+{% endif %}}}-rgba(0,150,0,1)?style=for-the-badge)
+
+
+

+

+
+
+## 📦 Developer info
+
+🛠️ Upstream {{manifest.name}} repository: <{{manifest.upstream.code}}>
+
+Pull request are welcome and should target the [`testing` branch](https://github.com/YunoHost-Apps/{{manifest.id}}_ynh/tree/testing).
+
+The `testing` branch can be tested using:
+```
+# fresh install:
+sudo yunohost app install https://github.com/YunoHost-Apps/{{manifest.id}}_ynh/tree/testing
+
+# upgrade an existing install:
+sudo yunohost app upgrade {{manifest.id}} -u https://github.com/YunoHost-Apps/{{manifest.id}}_ynh/tree/testing
+```
+
+### 📚 App packaging documentation
+
+Please see for more information.
diff --git a/readme_generator/babel.cfg b/readme_generator/babel.cfg
deleted file mode 100644
index bc949349..00000000
--- a/readme_generator/babel.cfg
+++ /dev/null
@@ -1 +0,0 @@
-[jinja2: ./templates/*.j2]
diff --git a/readme_generator/make_readme.py b/readme_generator/make_readme.py
index 0c20a343..b11b6036 100755
--- a/readme_generator/make_readme.py
+++ b/readme_generator/make_readme.py
@@ -1,195 +1,37 @@
#! /usr/bin/env python3
import sys
-import os
import argparse
-import json
from pathlib import Path
-from copy import deepcopy
-
-from typing import Dict, Optional, List, Tuple
import toml
from jinja2 import Environment, FileSystemLoader
-from babel.support import Translations
-from babel.messages.pofile import PoFileParser
-from langcodes import Language
# add apps/tools to sys.path
sys.path.insert(0, str(Path(__file__).parent.parent))
-from appslib import get_apps_repo
-
README_GEN_DIR = Path(__file__).resolve().parent
-TRANSLATIONS_DIR = README_GEN_DIR / "translations"
-
-
-def value_for_lang(values: Dict, lang: str):
- if not isinstance(values, dict):
- return values
- if lang in values:
- return values[lang]
- elif "en" in values:
- return values["en"]
- else:
- return list(values.values())[0]
-
-def generate_READMEs(app_path: Path, apps_repo_path: Path):
+def generate_READMEs(app_path: Path):
if not app_path.exists():
raise Exception("App path provided doesn't exists ?!")
- if (app_path / "manifest.json").exists():
- manifest = json.load(open(app_path / "manifest.json"))
- else:
- manifest = toml.load(open(app_path / "manifest.toml"))
-
- upstream = manifest.get("upstream", {})
-
- catalog = toml.load((apps_repo_path / "apps.toml").open(encoding="utf-8"))
- from_catalog = catalog.get(manifest["id"], {})
-
- antifeatures_list = toml.load(
- (apps_repo_path / "antifeatures.toml").open(encoding="utf-8")
- )
-
- if not upstream and not (app_path / "doc" / "DISCLAIMER.md").exists():
- print(
- "There's no 'upstream' key in the manifest, and doc/DISCLAIMER.md doesn't exists - therefore assuming that we shall not auto-update the README.md for this app yet."
- )
- return
-
- poparser = PoFileParser({})
- poparser.parse((README_GEN_DIR / "messages.pot").open(encoding="utf-8"))
-
- # we only want to translate a README if all strings are translatables so we
- # do this loop to detect which language provides a full translation
- fully_translated_langs: List[str] = []
- for available_translations in os.listdir(TRANSLATIONS_DIR):
- translations = Translations.load(TRANSLATIONS_DIR, available_translations)
-
- is_fully_translated = True
- for sentence in poparser.catalog:
- # ignore empty strings
- if not sentence.strip():
- continue
-
- if sentence not in translations._catalog:
- print(f"The sentence: {repr(sentence)} is not in the target catalog")
- is_fully_translated = False
- break
+ manifest = toml.load(open(app_path / "manifest.toml"))
- if not translations._catalog[sentence]:
- print(f"The sentence: '{repr(sentence)}' is not translated")
- is_fully_translated = False
- break
-
- if is_fully_translated:
- fully_translated_langs.append(available_translations)
- else:
- print(
- "WARNING: skip generating translated README for "
- f"{Language(available_translations).language_name()} ({available_translations}) "
- "because it is not fully translated yet."
- )
-
- fully_translated_langs.sort()
- print(
- f"Available languages for translation: {', '.join(fully_translated_langs) if fully_translated_langs else []}"
+ env = Environment(
+ loader=FileSystemLoader(README_GEN_DIR),
)
+ template = env.get_template("README.md.j2")
- screenshots: List[str] = []
-
- screenshots_dir = app_path / "doc" / "screenshots"
- if screenshots_dir.exists():
- for entry in sorted(screenshots_dir.iterdir()):
- # only pick files (no folder) on the root of 'screenshots'
- if not entry.is_file():
- continue
- # ignore '.gitkeep' or any file whose name begins with a dot
- if entry.name.startswith("."):
- continue
- screenshots.append(str(entry.relative_to(app_path)))
-
- def generate_single_README(lang_suffix: str, lang: str):
- env = Environment(
- loader=FileSystemLoader(README_GEN_DIR / "templates"),
- extensions=["jinja2.ext.i18n"],
- )
- translations = Translations.load(TRANSLATIONS_DIR, [lang])
- env.install_gettext_translations(translations)
-
- template = env.get_template("README.md.j2")
-
- if (app_path / "doc" / f"DESCRIPTION{lang_suffix}.md").exists():
- description = (
- app_path / "doc" / f"DESCRIPTION{lang_suffix}.md"
- ).read_text()
- # Fallback to english if maintainer too lazy to translate the description
- elif (app_path / "doc" / "DESCRIPTION.md").exists():
- description = (app_path / "doc" / "DESCRIPTION.md").read_text()
- else:
- description = None
-
- disclaimer: Optional[str]
- if (app_path / "doc" / f"DISCLAIMER{lang_suffix}.md").exists():
- disclaimer = (app_path / "doc" / f"DISCLAIMER{lang_suffix}.md").read_text()
- # Fallback to english if maintainer too lazy to translate the disclaimer idk
- elif (app_path / "doc" / "DISCLAIMER.md").exists():
- disclaimer = (app_path / "doc" / "DISCLAIMER.md").read_text()
- else:
- disclaimer = None
+ out: str = template.render(manifest=manifest)
+ (app_path / "README.md").write_text(out)
- # TODO: Add url to the documentation... and actually create that documentation :D
- antifeatures = {
- a: deepcopy(antifeatures_list[a])
- for a in from_catalog.get("antifeatures", [])
- }
- for k, v in antifeatures.items():
- antifeatures[k]["title"] = value_for_lang(v["title"], lang)
- if manifest.get("antifeatures", {}).get(k, None):
- antifeatures[k]["description"] = value_for_lang(
- manifest.get("antifeatures", {}).get(k, None), lang
- )
- else:
- antifeatures[k]["description"] = value_for_lang(
- antifeatures[k]["description"], lang
- )
-
- out: str = template.render(
- lang=lang,
- upstream=upstream,
- description=description,
- screenshots=screenshots,
- disclaimer=disclaimer,
- antifeatures=antifeatures,
- manifest=manifest,
- )
- (app_path / f"README{lang_suffix}.md").write_text(out)
-
- generate_single_README("", "en")
-
- for lang in fully_translated_langs:
- generate_single_README("_" + lang, lang)
-
- links_to_other_READMEs = []
- for language in fully_translated_langs:
- translations = Translations.load(TRANSLATIONS_DIR, [language])
- language_name_in_itself = Language.get(language).autonym()
- links_to_other_READMEs.append(
- (
- f"README_{language}.md",
- translations.gettext("Read the README in %(language)s")
- % {"language": language_name_in_itself},
- )
- )
-
- env = Environment(loader=FileSystemLoader(README_GEN_DIR / "templates"))
- out: str = env.get_template("ALL_README.md.j2").render(
- links_to_other_READMEs=links_to_other_READMEs
- )
- (app_path / "ALL_README.md").write_text(out)
+ # Delete legacy READMEs
+ for legacy_README in app_path.glob("README_*.md"):
+ legacy_README.unlink()
+ if (app_path / "ALL_README.md").exists():
+ (app_path / "ALL_README.md").unlink()
def main():
@@ -199,12 +41,9 @@ def main():
parser.add_argument(
"app_path", type=Path, help="Path to the app to generate/update READMEs for"
)
- get_apps_repo.add_args(parser)
args = parser.parse_args()
- apps_path = get_apps_repo.from_args(args)
-
- generate_READMEs(args.app_path, apps_path)
+ generate_READMEs(args.app_path)
if __name__ == "__main__":
diff --git a/readme_generator/messages.pot b/readme_generator/messages.pot
deleted file mode 100644
index 539dd2f7..00000000
--- a/readme_generator/messages.pot
+++ /dev/null
@@ -1,208 +0,0 @@
-# Translations template for PROJECT.
-# Copyright (C) 2024 ORGANIZATION
-# This file is distributed under the same license as the PROJECT project.
-# FIRST AUTHOR , 2024.
-#
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: PROJECT VERSION\n"
-"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2024-03-31 19:33+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME \n"
-"Language-Team: LANGUAGE \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.14.0\n"
-
-#: templates/ALL_README.md.j2:11
-#, python-format
-msgid "Read the README in %(language)s"
-msgstr ""
-
-#: templates/README.md.j2:2
-msgid "Packaging an app, starting from this example"
-msgstr ""
-
-#: templates/README.md.j2:4
-msgid ""
-"Copy this app before working on it, using the ['Use this "
-"template'](https://github.com/new?template_name=example_ynh&template_owner=YunoHost)"
-" button on the Github repo"
-msgstr ""
-
-#: templates/README.md.j2:5
-msgid "Edit the `manifest.toml` with app specific info"
-msgstr ""
-
-#: templates/README.md.j2:6
-msgid ""
-"Edit the `install`, `upgrade`, `remove`, `backup` and `restore` scripts, "
-"and any relevant conf files in `conf/`"
-msgstr ""
-
-#: templates/README.md.j2:7
-msgid ""
-"Using the [script helpers "
-"documentation](https://yunohost.org/packaging_apps_helpers)"
-msgstr ""
-
-#: templates/README.md.j2:8
-msgid ""
-"Edit the `change_url` and `config` scripts too, or remove them if you "
-"have no use of them"
-msgstr ""
-
-#: templates/README.md.j2:9
-msgid "Add a `LICENSE` file for the package."
-msgstr ""
-
-#: templates/README.md.j2:10
-msgid ""
-"NB: this `LICENSE` file is not meant to necessarily be the same LICENSE "
-"as the upstream app - it is only the LICENSE you want this package's code"
-" to published with and you can choose it freely! (If you don't know which"
-" to choose, we recommend [the "
-"AGPL-3](https://www.gnu.org/licenses/agpl-3.0.txt))"
-msgstr ""
-
-#: templates/README.md.j2:11
-msgid ""
-"Edit files under the `doc/` directory ([see the page about documenting "
-"packages](https://yunohost.org/packaging_app_doc))"
-msgstr ""
-
-#: templates/README.md.j2:12
-msgid ""
-"The `README.md` files are to be automatically generated by "
-""
-msgstr ""
-
-#: templates/README.md.j2:18
-msgid ""
-"N.B.: This README was automatically generated by "
-"\n"
-"It shall NOT be edited by hand."
-msgstr ""
-
-#: templates/README.md.j2:22
-#, python-format
-msgid "%(application_name)s for YunoHost"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Integration level"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Working status"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Maintenance status"
-msgstr ""
-
-#: templates/README.md.j2:26
-#, python-format
-msgid "Install %(application_name)s with YunoHost"
-msgstr ""
-
-#: templates/README.md.j2:28
-msgid "Read this README in other languages."
-msgstr ""
-
-#: templates/README.md.j2:30
-#, python-format
-msgid ""
-"This package allows you to install %(application_name)s quickly and "
-"simply on a YunoHost server."
-msgstr ""
-
-#: templates/README.md.j2:31
-msgid ""
-"If you don't have YunoHost, please consult [the "
-"guide](https://yunohost.org/install) to learn how to install it."
-msgstr ""
-
-#: templates/README.md.j2:33
-msgid "Overview"
-msgstr ""
-
-#: templates/README.md.j2:37
-msgid "Shipped version:"
-msgstr ""
-
-#: templates/README.md.j2:41
-msgid "Demo:"
-msgstr ""
-
-#: templates/README.md.j2:45
-msgid "Screenshots"
-msgstr ""
-
-#: templates/README.md.j2:48
-#, python-format
-msgid "Screenshot of %(application_name)s"
-msgstr ""
-
-#: templates/README.md.j2:53
-msgid "Disclaimers / important information"
-msgstr ""
-
-#: templates/README.md.j2:59
-msgid "Antifeatures"
-msgstr ""
-
-#: templates/README.md.j2:66
-msgid "Documentation and resources"
-msgstr ""
-
-#: templates/README.md.j2:68
-msgid "Official app website:"
-msgstr ""
-
-#: templates/README.md.j2:70
-msgid "Official user documentation:"
-msgstr ""
-
-#: templates/README.md.j2:72
-msgid "Official admin documentation:"
-msgstr ""
-
-#: templates/README.md.j2:74
-msgid "Upstream app code repository:"
-msgstr ""
-
-#: templates/README.md.j2:76
-msgid "YunoHost Store:"
-msgstr ""
-
-#: templates/README.md.j2:77
-msgid "Report a bug:"
-msgstr ""
-
-#: templates/README.md.j2:79
-msgid "Developer info"
-msgstr ""
-
-#: templates/README.md.j2:81
-#, python-format
-msgid ""
-"Please send your pull request to the [`testing` "
-"branch](%(testing_branch_url)s)."
-msgstr ""
-
-#: templates/README.md.j2:83
-msgid "To try the `testing` branch, please proceed like that:"
-msgstr ""
-
-#: templates/README.md.j2:87
-msgid "or"
-msgstr ""
-
-#: templates/README.md.j2:91
-msgid "More info regarding app packaging:"
-msgstr ""
-
diff --git a/readme_generator/templates/ALL_README.md.j2 b/readme_generator/templates/ALL_README.md.j2
deleted file mode 100644
index 2bdcfe2d..00000000
--- a/readme_generator/templates/ALL_README.md.j2
+++ /dev/null
@@ -1,13 +0,0 @@
-# All available README files by language
-
-- [Read the README in English](README.md)
-{% for filename, translated_sentence in links_to_other_READMEs -%}
-- [{{ translated_sentence }}]({{ filename }})
-{% endfor -%}
-
-{% if False -%}
-Yes this is a hack to add the translatable string to messages.pot
-
-{{- _("Read the README in %(language)s") }}
-{% endif -%}
-
diff --git a/readme_generator/templates/README.md.j2 b/readme_generator/templates/README.md.j2
deleted file mode 100644
index d3fd1f16..00000000
--- a/readme_generator/templates/README.md.j2
+++ /dev/null
@@ -1,94 +0,0 @@
-{% if manifest.id == "example" -%}
-# {{ _('Packaging an app, starting from this example') }}
-
-- {{ _("Copy this app before working on it, using the ['Use this template'](https://github.com/new?template_name=example_ynh&template_owner=YunoHost) button on the Github repo") }}
-- {{ _("Edit the `manifest.toml` with app specific info") }}
-- {{ _("Edit the `install`, `upgrade`, `remove`, `backup` and `restore` scripts, and any relevant conf files in `conf/`") }}
- - {{ _("Using the [script helpers documentation](https://yunohost.org/packaging_apps_helpers)") }}
-- {{ _("Edit the `change_url` and `config` scripts too, or remove them if you have no use of them") }}
-- {{ _("Add a `LICENSE` file for the package.") }}
- - {{ _("NB: this `LICENSE` file is not meant to necessarily be the same LICENSE as the upstream app - it is only the LICENSE you want this package's code to published with and you can choose it freely! (If you don't know which to choose, we recommend [the AGPL-3](https://www.gnu.org/licenses/agpl-3.0.txt))") }}
-- {{ _("Edit files under the `doc/` directory ([see the page about documenting packages](https://yunohost.org/packaging_app_doc))") }}
-- {{ _("The `README.md` files are to be automatically generated by ") }}
-
----
-{% endif -%}
-
-
-
-# {{ _("%(application_name)s for YunoHost")|format(application_name=manifest.name) }}
-
-[](https://ci-apps.yunohost.org/ci/apps/{{manifest.id}}/)
-
-
-
-[](https://install-app.yunohost.org/?app={{manifest.id}})
-
-*[{{ _("Read this README in other languages.") }}](./ALL_README.md)*
-
-> *{{ _("This package allows you to install %(application_name)s quickly and simply on a YunoHost server.")|format(application_name=manifest.name) }}*
-> *{{ _("If you don't have YunoHost, please consult [the guide](https://yunohost.org/install) to learn how to install it.") }}*
-
-## {{ _("Overview") }}
-
-{% if description %}{{description}}{% else %}{{manifest.description[lang]}}{% endif %}
-
-**{{ _("Shipped version:") }}** {% if upstream.version %}{{upstream.version}}{% else %}{{manifest.version}}
-{% endif -%}
-
-{% if upstream.demo %}
-**{{ _("Demo:") }}** <{{upstream.demo}}>
-{% endif -%}
-
-{% if screenshots %}
-## {{ _("Screenshots") }}
-
-{% for screenshot in screenshots -%}
- 
-{% endfor %}
-{% endif -%}
-
-{% if disclaimer -%}
-## {{ _("Disclaimers / important information") }}
-
-{{ disclaimer }}
-{% endif -%}
-
-{% if antifeatures -%}
-## :red_circle: {{ _("Antifeatures") }}
-
-{% for antifeature in antifeatures.values() -%}
- - **{{ antifeature.title }}**: {{ antifeature.description }}
-{% endfor %}
-{% endif -%}
-
-## {{ _("Documentation and resources") }}
-
-{% if upstream.website -%}- {{ _("Official app website:") }} <{{ upstream.website }}>
-{% endif -%}
-{% if upstream.userdoc -%}- {{ _("Official user documentation:") }} <{{ upstream.userdoc }}>
-{% endif -%}
-{% if upstream.admindoc -%}- {{ _("Official admin documentation:") }} <{{ upstream.admindoc }}>
-{% endif -%}
-{% if upstream.code -%}- {{ _("Upstream app code repository:") }} <{{ upstream.code }}>
-{% endif -%}
-- {{ _("YunoHost Store:") }}
-- {{ _("Report a bug:") }}
-
-## {{ _("Developer info") }}
-
-{{ _("Please send your pull request to the [`testing` branch](%(testing_branch_url)s).")|format(testing_branch_url="https://github.com/YunoHost-Apps/" + manifest.id + "_ynh/tree/testing") }}
-
-{{ _("To try the `testing` branch, please proceed like that:") }}
-
-```bash
-sudo yunohost app install https://github.com/YunoHost-Apps/{{manifest.id}}_ynh/tree/testing --debug
-{{ _("or") }}
-sudo yunohost app upgrade {{manifest.id}} -u https://github.com/YunoHost-Apps/{{manifest.id}}_ynh/tree/testing --debug
-```
-
-**{{ _("More info regarding app packaging:") }}**
-
diff --git a/readme_generator/tests/README.md b/readme_generator/tests/README.md
index 7fa0dc58..0435fc17 100644
--- a/readme_generator/tests/README.md
+++ b/readme_generator/tests/README.md
@@ -1,62 +1,38 @@
-# GoToSocial for YunoHost
+
+
+ GoToSocial, packaged for YunoHost
+
-[](https://ci-apps.yunohost.org/ci/apps/gotosocial/)
-
-
+Fast ActivityPub social network server written in Go
-[](https://install-app.yunohost.org/?app=gotosocial)
+[](https://gotosocial.org/)
+?style=for-the-badge)
-*[Read this README in other languages.](./ALL_README.md)*
+
+

+

+
-> *This package allows you to install GoToSocial quickly and simply on a YunoHost server.*
-> *If you don't have YunoHost, please consult [the guide](https://yunohost.org/install) to learn how to install it.*
+## 📦 Developer info
-## Overview
+🛠️ Upstream GoToSocial repository:
-GoToSocial is a fast [ActivityPub](https://activitypub.rocks/) social network server, written in Golang.
+Pull request are welcome and should target the [`testing` branch](https://github.com/YunoHost-Apps/gotosocial_ynh/tree/testing).
-With GoToSocial, you can keep in touch with your friends, post, read, and share images and articles. All without being tracked or advertised to!
-
-The official documentation is at [docs.gotosocial.org](https://docs.gotosocial.org).
-The documentation for this YunoHost package [can be read here](./doc/DOCS.md) and the admin is **strongly encouraged to read it**!
-
-Please note that this package uses the ["i'm so tired" software license 1.0](https://github.com/YunoHost-Apps/gotosocial_ynh/blob/master/LICENSE), please read it and accept it before proceeding with installation.
-
-
-**Shipped version:** 0.13.3~ynh1
-
-## Screenshots
-
-
-
-## :red_circle: Antifeatures
-
-- **Not totally free package**: The YunoHost package of this app is under an overall free license, but with clauses that may restrict its use.
-
-## Documentation and resources
-
-- Official app website:
-- Official user documentation:
-- Official admin documentation:
-- Upstream app code repository:
-- YunoHost Store:
-- Report a bug:
-
-## Developer info
-
-Please send your pull request to the [`testing` branch](https://github.com/YunoHost-Apps/gotosocial_ynh/tree/testing).
-
-To try the `testing` branch, please proceed like that:
+The `testing` branch can be tested using:
+```
+# fresh install:
+sudo yunohost app install https://github.com/YunoHost-Apps/gotosocial_ynh/tree/testing
-```bash
-sudo yunohost app install https://github.com/YunoHost-Apps/gotosocial_ynh/tree/testing --debug
-or
-sudo yunohost app upgrade gotosocial -u https://github.com/YunoHost-Apps/gotosocial_ynh/tree/testing --debug
+# upgrade an existing install:
+sudo yunohost app upgrade gotosocial -u https://github.com/YunoHost-Apps/gotosocial_ynh/tree/testing
```
-**More info regarding app packaging:**
+### 📚 App packaging documentation
+
+Please see for more information.
\ No newline at end of file
diff --git a/readme_generator/tests/test_make_readme.py b/readme_generator/tests/test_make_readme.py
index 669dc3c3..7d632bf4 100755
--- a/readme_generator/tests/test_make_readme.py
+++ b/readme_generator/tests/test_make_readme.py
@@ -31,7 +31,7 @@ def test_running_make_readme():
result_content = (test_app_dir / "README.md").read_text()
if test_content != result_content:
shutil.copyfile(
- TEST_DIRECTORY / "README.md", TEST_DIRECTORY / "README_failed.md"
+ test_app_dir / "README.md", TEST_DIRECTORY / "README_failed.md"
)
assert (
diff --git a/readme_generator/translations/ar/LC_MESSAGES/messages.mo b/readme_generator/translations/ar/LC_MESSAGES/messages.mo
deleted file mode 100644
index 1678ff55..00000000
Binary files a/readme_generator/translations/ar/LC_MESSAGES/messages.mo and /dev/null differ
diff --git a/readme_generator/translations/ar/LC_MESSAGES/messages.po b/readme_generator/translations/ar/LC_MESSAGES/messages.po
deleted file mode 100644
index dc04d94e..00000000
--- a/readme_generator/translations/ar/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,212 +0,0 @@
-# Translations template for PROJECT.
-# Copyright (C) 2024 ORGANIZATION
-# This file is distributed under the same license as the PROJECT project.
-# FIRST AUTHOR , 2024.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PROJECT VERSION\n"
-"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2024-03-31 19:33+0200\n"
-"PO-Revision-Date: 2024-03-29 17:24+0000\n"
-"Last-Translator: ButterflyOfFire \n"
-"Language-Team: Arabic \n"
-"Language: ar\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
-"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
-"X-Generator: Weblate 5.3.1\n"
-"Generated-By: Babel 2.14.0\n"
-
-#: templates/ALL_README.md.j2:11
-#, python-format
-msgid "Read the README in %(language)s"
-msgstr "قراءة README باللغة %(language)s"
-
-#: templates/README.md.j2:2
-msgid "Packaging an app, starting from this example"
-msgstr "أنشاء حزمة تطبيقية بمتابعة هذا المثال"
-
-#: templates/README.md.j2:4
-msgid ""
-"Copy this app before working on it, using the ['Use this template'](https://"
-"github.com/new?template_name=example_ynh&template_owner=YunoHost) button on "
-"the Github repo"
-msgstr ""
-
-#: templates/README.md.j2:5
-msgid "Edit the `manifest.toml` with app specific info"
-msgstr ""
-
-#: templates/README.md.j2:6
-msgid ""
-"Edit the `install`, `upgrade`, `remove`, `backup` and `restore` scripts, and "
-"any relevant conf files in `conf/`"
-msgstr ""
-
-#: templates/README.md.j2:7
-msgid ""
-"Using the [script helpers documentation](https://yunohost.org/"
-"packaging_apps_helpers)"
-msgstr ""
-
-#: templates/README.md.j2:8
-msgid ""
-"Edit the `change_url` and `config` scripts too, or remove them if you have "
-"no use of them"
-msgstr ""
-
-#: templates/README.md.j2:9
-msgid "Add a `LICENSE` file for the package."
-msgstr ""
-
-#: templates/README.md.j2:10
-msgid ""
-"NB: this `LICENSE` file is not meant to necessarily be the same LICENSE as "
-"the upstream app - it is only the LICENSE you want this package's code to "
-"published with and you can choose it freely! (If you don't know which to "
-"choose, we recommend [the AGPL-3](https://www.gnu.org/licenses/agpl-3.0.txt))"
-msgstr ""
-
-#: templates/README.md.j2:11
-msgid ""
-"Edit files under the `doc/` directory ([see the page about documenting "
-"packages](https://yunohost.org/packaging_app_doc))"
-msgstr ""
-
-#: templates/README.md.j2:12
-msgid ""
-"The `README.md` files are to be automatically generated by "
-msgstr ""
-
-#: templates/README.md.j2:18
-msgid ""
-"N.B.: This README was automatically generated by \n"
-"It shall NOT be edited by hand."
-msgstr ""
-
-#: templates/README.md.j2:22
-#, python-format
-msgid "%(application_name)s for YunoHost"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Integration level"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Working status"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Maintenance status"
-msgstr ""
-
-#: templates/README.md.j2:26
-#, python-format
-msgid "Install %(application_name)s with YunoHost"
-msgstr ""
-
-#: templates/README.md.j2:28
-#, fuzzy
-#| msgid "Read the README in %(language)s"
-msgid "Read this README in other languages."
-msgstr "قراءة README باللغة %(language)s"
-
-#: templates/README.md.j2:30
-#, python-format
-msgid ""
-"This package allows you to install %(application_name)s quickly and simply "
-"on a YunoHost server."
-msgstr ""
-
-#: templates/README.md.j2:31
-msgid ""
-"If you don't have YunoHost, please consult [the guide](https://yunohost.org/"
-"install) to learn how to install it."
-msgstr ""
-
-#: templates/README.md.j2:33
-msgid "Overview"
-msgstr ""
-
-#: templates/README.md.j2:37
-msgid "Shipped version:"
-msgstr ""
-
-#: templates/README.md.j2:41
-msgid "Demo:"
-msgstr ""
-
-#: templates/README.md.j2:45
-msgid "Screenshots"
-msgstr ""
-
-#: templates/README.md.j2:48
-#, python-format
-msgid "Screenshot of %(application_name)s"
-msgstr ""
-
-#: templates/README.md.j2:53
-msgid "Disclaimers / important information"
-msgstr ""
-
-#: templates/README.md.j2:59
-msgid "Antifeatures"
-msgstr ""
-
-#: templates/README.md.j2:66
-msgid "Documentation and resources"
-msgstr ""
-
-#: templates/README.md.j2:68
-msgid "Official app website:"
-msgstr ""
-
-#: templates/README.md.j2:70
-msgid "Official user documentation:"
-msgstr ""
-
-#: templates/README.md.j2:72
-msgid "Official admin documentation:"
-msgstr ""
-
-#: templates/README.md.j2:74
-msgid "Upstream app code repository:"
-msgstr ""
-
-#: templates/README.md.j2:76
-msgid "YunoHost Store:"
-msgstr ""
-
-#: templates/README.md.j2:77
-msgid "Report a bug:"
-msgstr ""
-
-#: templates/README.md.j2:79
-msgid "Developer info"
-msgstr ""
-
-#: templates/README.md.j2:81
-#, python-format
-msgid ""
-"Please send your pull request to the [`testing` branch]"
-"(%(testing_branch_url)s)."
-msgstr ""
-
-#: templates/README.md.j2:83
-msgid "To try the `testing` branch, please proceed like that:"
-msgstr ""
-
-#: templates/README.md.j2:87
-msgid "or"
-msgstr ""
-
-#: templates/README.md.j2:91
-msgid "More info regarding app packaging:"
-msgstr ""
diff --git a/readme_generator/translations/bn_BD/LC_MESSAGES/messages.mo b/readme_generator/translations/bn_BD/LC_MESSAGES/messages.mo
deleted file mode 100644
index 85a0b3d9..00000000
Binary files a/readme_generator/translations/bn_BD/LC_MESSAGES/messages.mo and /dev/null differ
diff --git a/readme_generator/translations/bn_BD/LC_MESSAGES/messages.po b/readme_generator/translations/bn_BD/LC_MESSAGES/messages.po
deleted file mode 100644
index 2c17f458..00000000
--- a/readme_generator/translations/bn_BD/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,206 +0,0 @@
-# Translations template for PROJECT.
-# Copyright (C) 2024 ORGANIZATION
-# This file is distributed under the same license as the PROJECT project.
-# FIRST AUTHOR , 2024.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PROJECT VERSION\n"
-"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2024-03-31 19:33+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: bn_BD\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.14.0\n"
-
-#: templates/ALL_README.md.j2:11
-#, python-format
-msgid "Read the README in %(language)s"
-msgstr ""
-
-#: templates/README.md.j2:2
-msgid "Packaging an app, starting from this example"
-msgstr ""
-
-#: templates/README.md.j2:4
-msgid ""
-"Copy this app before working on it, using the ['Use this template'](https://"
-"github.com/new?template_name=example_ynh&template_owner=YunoHost) button on "
-"the Github repo"
-msgstr ""
-
-#: templates/README.md.j2:5
-msgid "Edit the `manifest.toml` with app specific info"
-msgstr ""
-
-#: templates/README.md.j2:6
-msgid ""
-"Edit the `install`, `upgrade`, `remove`, `backup` and `restore` scripts, and "
-"any relevant conf files in `conf/`"
-msgstr ""
-
-#: templates/README.md.j2:7
-msgid ""
-"Using the [script helpers documentation](https://yunohost.org/"
-"packaging_apps_helpers)"
-msgstr ""
-
-#: templates/README.md.j2:8
-msgid ""
-"Edit the `change_url` and `config` scripts too, or remove them if you have "
-"no use of them"
-msgstr ""
-
-#: templates/README.md.j2:9
-msgid "Add a `LICENSE` file for the package."
-msgstr ""
-
-#: templates/README.md.j2:10
-msgid ""
-"NB: this `LICENSE` file is not meant to necessarily be the same LICENSE as "
-"the upstream app - it is only the LICENSE you want this package's code to "
-"published with and you can choose it freely! (If you don't know which to "
-"choose, we recommend [the AGPL-3](https://www.gnu.org/licenses/agpl-3.0.txt))"
-msgstr ""
-
-#: templates/README.md.j2:11
-msgid ""
-"Edit files under the `doc/` directory ([see the page about documenting "
-"packages](https://yunohost.org/packaging_app_doc))"
-msgstr ""
-
-#: templates/README.md.j2:12
-msgid ""
-"The `README.md` files are to be automatically generated by "
-msgstr ""
-
-#: templates/README.md.j2:18
-msgid ""
-"N.B.: This README was automatically generated by \n"
-"It shall NOT be edited by hand."
-msgstr ""
-
-#: templates/README.md.j2:22
-#, python-format
-msgid "%(application_name)s for YunoHost"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Integration level"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Working status"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Maintenance status"
-msgstr ""
-
-#: templates/README.md.j2:26
-#, python-format
-msgid "Install %(application_name)s with YunoHost"
-msgstr ""
-
-#: templates/README.md.j2:28
-msgid "Read this README in other languages."
-msgstr ""
-
-#: templates/README.md.j2:30
-#, python-format
-msgid ""
-"This package allows you to install %(application_name)s quickly and simply "
-"on a YunoHost server."
-msgstr ""
-
-#: templates/README.md.j2:31
-msgid ""
-"If you don't have YunoHost, please consult [the guide](https://yunohost.org/"
-"install) to learn how to install it."
-msgstr ""
-
-#: templates/README.md.j2:33
-msgid "Overview"
-msgstr ""
-
-#: templates/README.md.j2:37
-msgid "Shipped version:"
-msgstr ""
-
-#: templates/README.md.j2:41
-msgid "Demo:"
-msgstr ""
-
-#: templates/README.md.j2:45
-msgid "Screenshots"
-msgstr ""
-
-#: templates/README.md.j2:48
-#, python-format
-msgid "Screenshot of %(application_name)s"
-msgstr ""
-
-#: templates/README.md.j2:53
-msgid "Disclaimers / important information"
-msgstr ""
-
-#: templates/README.md.j2:59
-msgid "Antifeatures"
-msgstr ""
-
-#: templates/README.md.j2:66
-msgid "Documentation and resources"
-msgstr ""
-
-#: templates/README.md.j2:68
-msgid "Official app website:"
-msgstr ""
-
-#: templates/README.md.j2:70
-msgid "Official user documentation:"
-msgstr ""
-
-#: templates/README.md.j2:72
-msgid "Official admin documentation:"
-msgstr ""
-
-#: templates/README.md.j2:74
-msgid "Upstream app code repository:"
-msgstr ""
-
-#: templates/README.md.j2:76
-msgid "YunoHost Store:"
-msgstr ""
-
-#: templates/README.md.j2:77
-msgid "Report a bug:"
-msgstr ""
-
-#: templates/README.md.j2:79
-msgid "Developer info"
-msgstr ""
-
-#: templates/README.md.j2:81
-#, python-format
-msgid ""
-"Please send your pull request to the [`testing` branch]"
-"(%(testing_branch_url)s)."
-msgstr ""
-
-#: templates/README.md.j2:83
-msgid "To try the `testing` branch, please proceed like that:"
-msgstr ""
-
-#: templates/README.md.j2:87
-msgid "or"
-msgstr ""
-
-#: templates/README.md.j2:91
-msgid "More info regarding app packaging:"
-msgstr ""
diff --git a/readme_generator/translations/br/LC_MESSAGES/messages.mo b/readme_generator/translations/br/LC_MESSAGES/messages.mo
deleted file mode 100644
index dd8426cd..00000000
Binary files a/readme_generator/translations/br/LC_MESSAGES/messages.mo and /dev/null differ
diff --git a/readme_generator/translations/br/LC_MESSAGES/messages.po b/readme_generator/translations/br/LC_MESSAGES/messages.po
deleted file mode 100644
index 6c40c623..00000000
--- a/readme_generator/translations/br/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,206 +0,0 @@
-# Translations template for PROJECT.
-# Copyright (C) 2024 ORGANIZATION
-# This file is distributed under the same license as the PROJECT project.
-# FIRST AUTHOR , 2024.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PROJECT VERSION\n"
-"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2024-03-31 19:33+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: br\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.14.0\n"
-
-#: templates/ALL_README.md.j2:11
-#, python-format
-msgid "Read the README in %(language)s"
-msgstr ""
-
-#: templates/README.md.j2:2
-msgid "Packaging an app, starting from this example"
-msgstr ""
-
-#: templates/README.md.j2:4
-msgid ""
-"Copy this app before working on it, using the ['Use this template'](https://"
-"github.com/new?template_name=example_ynh&template_owner=YunoHost) button on "
-"the Github repo"
-msgstr ""
-
-#: templates/README.md.j2:5
-msgid "Edit the `manifest.toml` with app specific info"
-msgstr ""
-
-#: templates/README.md.j2:6
-msgid ""
-"Edit the `install`, `upgrade`, `remove`, `backup` and `restore` scripts, and "
-"any relevant conf files in `conf/`"
-msgstr ""
-
-#: templates/README.md.j2:7
-msgid ""
-"Using the [script helpers documentation](https://yunohost.org/"
-"packaging_apps_helpers)"
-msgstr ""
-
-#: templates/README.md.j2:8
-msgid ""
-"Edit the `change_url` and `config` scripts too, or remove them if you have "
-"no use of them"
-msgstr ""
-
-#: templates/README.md.j2:9
-msgid "Add a `LICENSE` file for the package."
-msgstr ""
-
-#: templates/README.md.j2:10
-msgid ""
-"NB: this `LICENSE` file is not meant to necessarily be the same LICENSE as "
-"the upstream app - it is only the LICENSE you want this package's code to "
-"published with and you can choose it freely! (If you don't know which to "
-"choose, we recommend [the AGPL-3](https://www.gnu.org/licenses/agpl-3.0.txt))"
-msgstr ""
-
-#: templates/README.md.j2:11
-msgid ""
-"Edit files under the `doc/` directory ([see the page about documenting "
-"packages](https://yunohost.org/packaging_app_doc))"
-msgstr ""
-
-#: templates/README.md.j2:12
-msgid ""
-"The `README.md` files are to be automatically generated by "
-msgstr ""
-
-#: templates/README.md.j2:18
-msgid ""
-"N.B.: This README was automatically generated by \n"
-"It shall NOT be edited by hand."
-msgstr ""
-
-#: templates/README.md.j2:22
-#, python-format
-msgid "%(application_name)s for YunoHost"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Integration level"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Working status"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Maintenance status"
-msgstr ""
-
-#: templates/README.md.j2:26
-#, python-format
-msgid "Install %(application_name)s with YunoHost"
-msgstr ""
-
-#: templates/README.md.j2:28
-msgid "Read this README in other languages."
-msgstr ""
-
-#: templates/README.md.j2:30
-#, python-format
-msgid ""
-"This package allows you to install %(application_name)s quickly and simply "
-"on a YunoHost server."
-msgstr ""
-
-#: templates/README.md.j2:31
-msgid ""
-"If you don't have YunoHost, please consult [the guide](https://yunohost.org/"
-"install) to learn how to install it."
-msgstr ""
-
-#: templates/README.md.j2:33
-msgid "Overview"
-msgstr ""
-
-#: templates/README.md.j2:37
-msgid "Shipped version:"
-msgstr ""
-
-#: templates/README.md.j2:41
-msgid "Demo:"
-msgstr ""
-
-#: templates/README.md.j2:45
-msgid "Screenshots"
-msgstr ""
-
-#: templates/README.md.j2:48
-#, python-format
-msgid "Screenshot of %(application_name)s"
-msgstr ""
-
-#: templates/README.md.j2:53
-msgid "Disclaimers / important information"
-msgstr ""
-
-#: templates/README.md.j2:59
-msgid "Antifeatures"
-msgstr ""
-
-#: templates/README.md.j2:66
-msgid "Documentation and resources"
-msgstr ""
-
-#: templates/README.md.j2:68
-msgid "Official app website:"
-msgstr ""
-
-#: templates/README.md.j2:70
-msgid "Official user documentation:"
-msgstr ""
-
-#: templates/README.md.j2:72
-msgid "Official admin documentation:"
-msgstr ""
-
-#: templates/README.md.j2:74
-msgid "Upstream app code repository:"
-msgstr ""
-
-#: templates/README.md.j2:76
-msgid "YunoHost Store:"
-msgstr ""
-
-#: templates/README.md.j2:77
-msgid "Report a bug:"
-msgstr ""
-
-#: templates/README.md.j2:79
-msgid "Developer info"
-msgstr ""
-
-#: templates/README.md.j2:81
-#, python-format
-msgid ""
-"Please send your pull request to the [`testing` branch]"
-"(%(testing_branch_url)s)."
-msgstr ""
-
-#: templates/README.md.j2:83
-msgid "To try the `testing` branch, please proceed like that:"
-msgstr ""
-
-#: templates/README.md.j2:87
-msgid "or"
-msgstr ""
-
-#: templates/README.md.j2:91
-msgid "More info regarding app packaging:"
-msgstr ""
diff --git a/readme_generator/translations/ca/LC_MESSAGES/messages.mo b/readme_generator/translations/ca/LC_MESSAGES/messages.mo
deleted file mode 100644
index 4326d52e..00000000
Binary files a/readme_generator/translations/ca/LC_MESSAGES/messages.mo and /dev/null differ
diff --git a/readme_generator/translations/ca/LC_MESSAGES/messages.po b/readme_generator/translations/ca/LC_MESSAGES/messages.po
deleted file mode 100644
index b9d075ca..00000000
--- a/readme_generator/translations/ca/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,238 +0,0 @@
-# Translations template for PROJECT.
-# Copyright (C) 2024 ORGANIZATION
-# This file is distributed under the same license as the PROJECT project.
-# FIRST AUTHOR , 2024.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PROJECT VERSION\n"
-"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2024-03-31 19:33+0200\n"
-"PO-Revision-Date: 2024-11-29 03:50+0000\n"
-"Last-Translator: Francescc \n"
-"Language-Team: Catalan \n"
-"Language: ca\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 5.4.3\n"
-"Generated-By: Babel 2.14.0\n"
-
-#: templates/ALL_README.md.j2:11
-#, python-format
-msgid "Read the README in %(language)s"
-msgstr "Llegir el README en %(language)s"
-
-#: templates/README.md.j2:2
-msgid "Packaging an app, starting from this example"
-msgstr "Empaquetar una aplicació, comença amb aquest exemple"
-
-#: templates/README.md.j2:4
-msgid ""
-"Copy this app before working on it, using the ['Use this template'](https://"
-"github.com/new?template_name=example_ynh&template_owner=YunoHost) button on "
-"the Github repo"
-msgstr ""
-"Copia aquesta aplicació abans de treballar-hi, utilitza el botó [«Utilitza "
-"aquesta plantilla»](https://github.com/new?"
-"template_name=example_ynh&template_owner=YunoHost) al repositori de Github"
-
-#: templates/README.md.j2:5
-msgid "Edit the `manifest.toml` with app specific info"
-msgstr "Edita el `manifest.toml`amb la informació específica de l'aplicació"
-
-#: templates/README.md.j2:6
-msgid ""
-"Edit the `install`, `upgrade`, `remove`, `backup` and `restore` scripts, and "
-"any relevant conf files in `conf/`"
-msgstr ""
-"Edita els scripts `install`, `upgrade`, `remove`, `backup` i `restore`, i "
-"tots els arxius rellevants de `conf/`"
-
-#: templates/README.md.j2:7
-msgid ""
-"Using the [script helpers documentation](https://yunohost.org/"
-"packaging_apps_helpers)"
-msgstr ""
-"Utilitza la [documentació dels script helpers](https://yunohost.org/"
-"packaging_apps_helpers)"
-
-#: templates/README.md.j2:8
-msgid ""
-"Edit the `change_url` and `config` scripts too, or remove them if you have "
-"no use of them"
-msgstr ""
-"Editeu també els scripts `change_url` i `config`, o elimineu-los si no en "
-"feu servir"
-
-#: templates/README.md.j2:9
-msgid "Add a `LICENSE` file for the package."
-msgstr "Afegeix un fitxer `LICENSE` per al paquet."
-
-#: templates/README.md.j2:10
-msgid ""
-"NB: this `LICENSE` file is not meant to necessarily be the same LICENSE as "
-"the upstream app - it is only the LICENSE you want this package's code to "
-"published with and you can choose it freely! (If you don't know which to "
-"choose, we recommend [the AGPL-3](https://www.gnu.org/licenses/agpl-3.0.txt))"
-msgstr ""
-"NB: aquest fitxer `LLICÈNCIA` no cal que siga necessàriament la mateixa "
-"LLICÈNCIA que l'aplicació original - només és la LLICÈNCIA amb la qual voleu "
-"que es publiqui el codi d'aquest paquet i podeu triar-la lliurement! (Si no "
-"sabeu quina triar, us recomanem [l'AGPL-3](https://www.gnu.org/licenses/"
-"agpl-3.0.txt))"
-
-#: templates/README.md.j2:11
-msgid ""
-"Edit files under the `doc/` directory ([see the page about documenting "
-"packages](https://yunohost.org/packaging_app_doc))"
-msgstr ""
-"Editeu fitxers al directori `doc/` ([vegeu la pàgina sobre la documentació "
-"de paquets](https://yunohost.org/packaging_app_doc))"
-
-#: templates/README.md.j2:12
-msgid ""
-"The `README.md` files are to be automatically generated by "
-msgstr ""
-"Els fitxers `README.md` estan generats automàticament per "
-
-#: templates/README.md.j2:18
-msgid ""
-"N.B.: This README was automatically generated by \n"
-"It shall NOT be edited by hand."
-msgstr ""
-"N.B.: Aquest README ha estat generat automàticament per \n"
-"NO s'ha de modificar manualment."
-
-#: templates/README.md.j2:22
-#, python-format
-msgid "%(application_name)s for YunoHost"
-msgstr "%(application_name)s per YunoHost"
-
-#: templates/README.md.j2:24
-msgid "Integration level"
-msgstr "Nivell d'integració"
-
-#: templates/README.md.j2:24
-msgid "Working status"
-msgstr "Estat de funcionament"
-
-#: templates/README.md.j2:24
-msgid "Maintenance status"
-msgstr "Estat de manteniment"
-
-#: templates/README.md.j2:26
-#, python-format
-msgid "Install %(application_name)s with YunoHost"
-msgstr "Instal·la %(application_name)s amb YunoHosth"
-
-#: templates/README.md.j2:28
-msgid "Read this README in other languages."
-msgstr "Llegeix aquest README en altres idiomes."
-
-#: templates/README.md.j2:30
-#, python-format
-msgid ""
-"This package allows you to install %(application_name)s quickly and simply "
-"on a YunoHost server."
-msgstr ""
-"Aquest paquet et permet instal·lar %(application_name)s de forma ràpida i "
-"senzilla en un servidor YunoHost."
-
-#: templates/README.md.j2:31
-msgid ""
-"If you don't have YunoHost, please consult [the guide](https://yunohost.org/"
-"install) to learn how to install it."
-msgstr ""
-"Si no tens YunoHost, consulta [la guia](https://yunohost.org/install) per "
-"saber com instal·lar-lo."
-
-#: templates/README.md.j2:33
-msgid "Overview"
-msgstr "Visió general"
-
-#: templates/README.md.j2:37
-msgid "Shipped version:"
-msgstr "Versió inclosa:"
-
-#: templates/README.md.j2:41
-msgid "Demo:"
-msgstr "Demo:"
-
-#: templates/README.md.j2:45
-msgid "Screenshots"
-msgstr "Captures de pantalla"
-
-#: templates/README.md.j2:48
-#, python-format
-msgid "Screenshot of %(application_name)s"
-msgstr "Captures de pantalla de %(application_name)s"
-
-#: templates/README.md.j2:53
-msgid "Disclaimers / important information"
-msgstr "Avís / informació important"
-
-#: templates/README.md.j2:59
-msgid "Antifeatures"
-msgstr "Anticaracterístiques"
-
-#: templates/README.md.j2:66
-msgid "Documentation and resources"
-msgstr "Documentació i recursos"
-
-#: templates/README.md.j2:68
-msgid "Official app website:"
-msgstr "Lloc web oficial de l'aplicació:"
-
-#: templates/README.md.j2:70
-msgid "Official user documentation:"
-msgstr "Documentació oficial per l'usuari:"
-
-#: templates/README.md.j2:72
-msgid "Official admin documentation:"
-msgstr "Documentació oficial per l'administrador:"
-
-#: templates/README.md.j2:74
-msgid "Upstream app code repository:"
-msgstr "Repositori oficial del codi de l'aplicació:"
-
-#: templates/README.md.j2:76
-msgid "YunoHost Store:"
-msgstr "Botiga YunoHost:"
-
-#: templates/README.md.j2:77
-msgid "Report a bug:"
-msgstr "Reportar un error:"
-
-#: templates/README.md.j2:79
-msgid "Developer info"
-msgstr "Informació per a desenvolupadors"
-
-#: templates/README.md.j2:81
-#, python-format
-msgid ""
-"Please send your pull request to the [`testing` branch]"
-"(%(testing_branch_url)s)."
-msgstr ""
-"Envieu les pull request a la [branca `testing`](%(testing_branch_url)s)."
-
-#: templates/README.md.j2:83
-msgid "To try the `testing` branch, please proceed like that:"
-msgstr "Per provar la branca `testing`, procedir com descrit a continuació:"
-
-#: templates/README.md.j2:87
-msgid "or"
-msgstr "o"
-
-#: templates/README.md.j2:91
-msgid "More info regarding app packaging:"
-msgstr "Més informació sobre l'empaquetatge d'aplicacions:"
-
-#~ msgid "Edit `doc/DISCLAIMER*.md`"
-#~ msgstr "Edita `doc/DISCLAIMER*.md`"
diff --git a/readme_generator/translations/ckb/LC_MESSAGES/messages.mo b/readme_generator/translations/ckb/LC_MESSAGES/messages.mo
deleted file mode 100644
index 27edcd26..00000000
Binary files a/readme_generator/translations/ckb/LC_MESSAGES/messages.mo and /dev/null differ
diff --git a/readme_generator/translations/ckb/LC_MESSAGES/messages.po b/readme_generator/translations/ckb/LC_MESSAGES/messages.po
deleted file mode 100644
index 542c5046..00000000
--- a/readme_generator/translations/ckb/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,206 +0,0 @@
-# Translations template for PROJECT.
-# Copyright (C) 2024 ORGANIZATION
-# This file is distributed under the same license as the PROJECT project.
-# FIRST AUTHOR , 2024.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PROJECT VERSION\n"
-"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2024-03-31 19:33+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ckb\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.14.0\n"
-
-#: templates/ALL_README.md.j2:11
-#, python-format
-msgid "Read the README in %(language)s"
-msgstr ""
-
-#: templates/README.md.j2:2
-msgid "Packaging an app, starting from this example"
-msgstr ""
-
-#: templates/README.md.j2:4
-msgid ""
-"Copy this app before working on it, using the ['Use this template'](https://"
-"github.com/new?template_name=example_ynh&template_owner=YunoHost) button on "
-"the Github repo"
-msgstr ""
-
-#: templates/README.md.j2:5
-msgid "Edit the `manifest.toml` with app specific info"
-msgstr ""
-
-#: templates/README.md.j2:6
-msgid ""
-"Edit the `install`, `upgrade`, `remove`, `backup` and `restore` scripts, and "
-"any relevant conf files in `conf/`"
-msgstr ""
-
-#: templates/README.md.j2:7
-msgid ""
-"Using the [script helpers documentation](https://yunohost.org/"
-"packaging_apps_helpers)"
-msgstr ""
-
-#: templates/README.md.j2:8
-msgid ""
-"Edit the `change_url` and `config` scripts too, or remove them if you have "
-"no use of them"
-msgstr ""
-
-#: templates/README.md.j2:9
-msgid "Add a `LICENSE` file for the package."
-msgstr ""
-
-#: templates/README.md.j2:10
-msgid ""
-"NB: this `LICENSE` file is not meant to necessarily be the same LICENSE as "
-"the upstream app - it is only the LICENSE you want this package's code to "
-"published with and you can choose it freely! (If you don't know which to "
-"choose, we recommend [the AGPL-3](https://www.gnu.org/licenses/agpl-3.0.txt))"
-msgstr ""
-
-#: templates/README.md.j2:11
-msgid ""
-"Edit files under the `doc/` directory ([see the page about documenting "
-"packages](https://yunohost.org/packaging_app_doc))"
-msgstr ""
-
-#: templates/README.md.j2:12
-msgid ""
-"The `README.md` files are to be automatically generated by "
-msgstr ""
-
-#: templates/README.md.j2:18
-msgid ""
-"N.B.: This README was automatically generated by \n"
-"It shall NOT be edited by hand."
-msgstr ""
-
-#: templates/README.md.j2:22
-#, python-format
-msgid "%(application_name)s for YunoHost"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Integration level"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Working status"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Maintenance status"
-msgstr ""
-
-#: templates/README.md.j2:26
-#, python-format
-msgid "Install %(application_name)s with YunoHost"
-msgstr ""
-
-#: templates/README.md.j2:28
-msgid "Read this README in other languages."
-msgstr ""
-
-#: templates/README.md.j2:30
-#, python-format
-msgid ""
-"This package allows you to install %(application_name)s quickly and simply "
-"on a YunoHost server."
-msgstr ""
-
-#: templates/README.md.j2:31
-msgid ""
-"If you don't have YunoHost, please consult [the guide](https://yunohost.org/"
-"install) to learn how to install it."
-msgstr ""
-
-#: templates/README.md.j2:33
-msgid "Overview"
-msgstr ""
-
-#: templates/README.md.j2:37
-msgid "Shipped version:"
-msgstr ""
-
-#: templates/README.md.j2:41
-msgid "Demo:"
-msgstr ""
-
-#: templates/README.md.j2:45
-msgid "Screenshots"
-msgstr ""
-
-#: templates/README.md.j2:48
-#, python-format
-msgid "Screenshot of %(application_name)s"
-msgstr ""
-
-#: templates/README.md.j2:53
-msgid "Disclaimers / important information"
-msgstr ""
-
-#: templates/README.md.j2:59
-msgid "Antifeatures"
-msgstr ""
-
-#: templates/README.md.j2:66
-msgid "Documentation and resources"
-msgstr ""
-
-#: templates/README.md.j2:68
-msgid "Official app website:"
-msgstr ""
-
-#: templates/README.md.j2:70
-msgid "Official user documentation:"
-msgstr ""
-
-#: templates/README.md.j2:72
-msgid "Official admin documentation:"
-msgstr ""
-
-#: templates/README.md.j2:74
-msgid "Upstream app code repository:"
-msgstr ""
-
-#: templates/README.md.j2:76
-msgid "YunoHost Store:"
-msgstr ""
-
-#: templates/README.md.j2:77
-msgid "Report a bug:"
-msgstr ""
-
-#: templates/README.md.j2:79
-msgid "Developer info"
-msgstr ""
-
-#: templates/README.md.j2:81
-#, python-format
-msgid ""
-"Please send your pull request to the [`testing` branch]"
-"(%(testing_branch_url)s)."
-msgstr ""
-
-#: templates/README.md.j2:83
-msgid "To try the `testing` branch, please proceed like that:"
-msgstr ""
-
-#: templates/README.md.j2:87
-msgid "or"
-msgstr ""
-
-#: templates/README.md.j2:91
-msgid "More info regarding app packaging:"
-msgstr ""
diff --git a/readme_generator/translations/cs/LC_MESSAGES/messages.mo b/readme_generator/translations/cs/LC_MESSAGES/messages.mo
deleted file mode 100644
index d7442dbe..00000000
Binary files a/readme_generator/translations/cs/LC_MESSAGES/messages.mo and /dev/null differ
diff --git a/readme_generator/translations/cs/LC_MESSAGES/messages.po b/readme_generator/translations/cs/LC_MESSAGES/messages.po
deleted file mode 100644
index b328655f..00000000
--- a/readme_generator/translations/cs/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,235 +0,0 @@
-# Translations template for PROJECT.
-# Copyright (C) 2024 ORGANIZATION
-# This file is distributed under the same license as the PROJECT project.
-# FIRST AUTHOR , 2024.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PROJECT VERSION\n"
-"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2024-03-31 19:33+0200\n"
-"PO-Revision-Date: 2024-03-25 07:12+0000\n"
-"Last-Translator: OniriCorpe \n"
-"Language-Team: Czech \n"
-"Language: cs\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-"X-Generator: Weblate 5.3.1\n"
-"Generated-By: Babel 2.14.0\n"
-
-#: templates/ALL_README.md.j2:11
-#, fuzzy, python-format
-msgid "Read the README in %(language)s"
-msgstr "Přečíst README v %(language)s"
-
-#: templates/README.md.j2:2
-msgid "Packaging an app, starting from this example"
-msgstr "Připravuji aplikaci, začínám od tohoto příkladu"
-
-#: templates/README.md.j2:4
-msgid ""
-"Copy this app before working on it, using the ['Use this template'](https://"
-"github.com/new?template_name=example_ynh&template_owner=YunoHost) button on "
-"the Github repo"
-msgstr ""
-"Před úpravami proveďte kopii této aplikace, použijte ['Použít tuto šablonu']"
-"(https://github.com/new?template_name=example_ynh&template_owner=YunoHost) "
-"odpovídající možnosti na Github repositáři"
-
-#: templates/README.md.j2:5
-msgid "Edit the `manifest.toml` with app specific info"
-msgstr "Pro úpravu specifických inforamací o aplikaci upravte `manifest.toml`"
-
-#: templates/README.md.j2:6
-msgid ""
-"Edit the `install`, `upgrade`, `remove`, `backup` and `restore` scripts, and "
-"any relevant conf files in `conf/`"
-msgstr ""
-"Upravte skripty `install`, `upgrade`, `remove`, `backup`, a `restore`, a "
-"další relevantní konfigurační soubory v `conf/`"
-
-#: templates/README.md.j2:7
-msgid ""
-"Using the [script helpers documentation](https://yunohost.org/"
-"packaging_apps_helpers)"
-msgstr ""
-"Použít [dokumentaci pro pomocníky skriptů](https://yunohost.org/"
-"packaging_apps_helpers)"
-
-#: templates/README.md.j2:8
-msgid ""
-"Edit the `change_url` and `config` scripts too, or remove them if you have "
-"no use of them"
-msgstr ""
-
-#: templates/README.md.j2:9
-msgid "Add a `LICENSE` file for the package."
-msgstr "Přidat `LICENSE` soubor pro balíček."
-
-#: templates/README.md.j2:10
-msgid ""
-"NB: this `LICENSE` file is not meant to necessarily be the same LICENSE as "
-"the upstream app - it is only the LICENSE you want this package's code to "
-"published with and you can choose it freely! (If you don't know which to "
-"choose, we recommend [the AGPL-3](https://www.gnu.org/licenses/agpl-3.0.txt))"
-msgstr ""
-
-#: templates/README.md.j2:11
-#, fuzzy
-#| msgid ""
-#| "Using the [script helpers documentation.](https://yunohost.org/"
-#| "packaging_apps_helpers)"
-msgid ""
-"Edit files under the `doc/` directory ([see the page about documenting "
-"packages](https://yunohost.org/packaging_app_doc))"
-msgstr ""
-"Použít [dokumentaci pro pomocníky skriptů.](https://yunohost.org/"
-"packaging_apps_helpers)"
-
-#: templates/README.md.j2:12
-msgid ""
-"The `README.md` files are to be automatically generated by "
-msgstr ""
-"Soubory `README.md` jsou automaticky generovány pomocí "
-
-#: templates/README.md.j2:18
-#, fuzzy
-#| msgid ""
-#| "The `README.md` files are to be automatically generated by https://github."
-#| "com/YunoHost/apps/tree/master/tools/readme_generator"
-msgid ""
-"N.B.: This README was automatically generated by \n"
-"It shall NOT be edited by hand."
-msgstr ""
-"Soubory `README.md` jsou automaticky generovány pomocí "
-
-#: templates/README.md.j2:22
-#, python-format
-msgid "%(application_name)s for YunoHost"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Integration level"
-msgstr "Úroveň integrace"
-
-#: templates/README.md.j2:24
-msgid "Working status"
-msgstr "Stav funkčnosti"
-
-#: templates/README.md.j2:24
-msgid "Maintenance status"
-msgstr "Stav údržby"
-
-#: templates/README.md.j2:26
-#, fuzzy, python-format
-msgid "Install %(application_name)s with YunoHost"
-msgstr "Instalovat %(application_name)s do YunoHost"
-
-#: templates/README.md.j2:28
-#, fuzzy
-#| msgid "Read this README is other languages."
-msgid "Read this README in other languages."
-msgstr "Přečíst toto README v jiných jazycích."
-
-#: templates/README.md.j2:30
-#, python-format
-msgid ""
-"This package allows you to install %(application_name)s quickly and simply "
-"on a YunoHost server."
-msgstr ""
-
-#: templates/README.md.j2:31
-msgid ""
-"If you don't have YunoHost, please consult [the guide](https://yunohost.org/"
-"install) to learn how to install it."
-msgstr ""
-
-#: templates/README.md.j2:33
-msgid "Overview"
-msgstr ""
-
-#: templates/README.md.j2:37
-msgid "Shipped version:"
-msgstr ""
-
-#: templates/README.md.j2:41
-msgid "Demo:"
-msgstr ""
-
-#: templates/README.md.j2:45
-msgid "Screenshots"
-msgstr ""
-
-#: templates/README.md.j2:48
-#, python-format
-msgid "Screenshot of %(application_name)s"
-msgstr ""
-
-#: templates/README.md.j2:53
-msgid "Disclaimers / important information"
-msgstr ""
-
-#: templates/README.md.j2:59
-msgid "Antifeatures"
-msgstr ""
-
-#: templates/README.md.j2:66
-msgid "Documentation and resources"
-msgstr ""
-
-#: templates/README.md.j2:68
-msgid "Official app website:"
-msgstr ""
-
-#: templates/README.md.j2:70
-msgid "Official user documentation:"
-msgstr ""
-
-#: templates/README.md.j2:72
-msgid "Official admin documentation:"
-msgstr ""
-
-#: templates/README.md.j2:74
-msgid "Upstream app code repository:"
-msgstr ""
-
-#: templates/README.md.j2:76
-msgid "YunoHost Store:"
-msgstr ""
-
-#: templates/README.md.j2:77
-msgid "Report a bug:"
-msgstr ""
-
-#: templates/README.md.j2:79
-msgid "Developer info"
-msgstr ""
-
-#: templates/README.md.j2:81
-#, python-format
-msgid ""
-"Please send your pull request to the [`testing` branch]"
-"(%(testing_branch_url)s)."
-msgstr ""
-
-#: templates/README.md.j2:83
-msgid "To try the `testing` branch, please proceed like that:"
-msgstr ""
-
-#: templates/README.md.j2:87
-msgid "or"
-msgstr ""
-
-#: templates/README.md.j2:91
-msgid "More info regarding app packaging:"
-msgstr ""
-
-#~ msgid "Edit `doc/DISCLAIMER*.md`"
-#~ msgstr "Upravit `doc/DISCLAIMER*.md`"
diff --git a/readme_generator/translations/da/LC_MESSAGES/messages.mo b/readme_generator/translations/da/LC_MESSAGES/messages.mo
deleted file mode 100644
index 0ba70296..00000000
Binary files a/readme_generator/translations/da/LC_MESSAGES/messages.mo and /dev/null differ
diff --git a/readme_generator/translations/da/LC_MESSAGES/messages.po b/readme_generator/translations/da/LC_MESSAGES/messages.po
deleted file mode 100644
index 4df780f9..00000000
--- a/readme_generator/translations/da/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,209 +0,0 @@
-# Translations template for PROJECT.
-# Copyright (C) 2024 ORGANIZATION
-# This file is distributed under the same license as the PROJECT project.
-# FIRST AUTHOR , 2024.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PROJECT VERSION\n"
-"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2024-03-31 19:33+0200\n"
-"PO-Revision-Date: 2024-04-24 00:11+0000\n"
-"Last-Translator: Øjvind Fritjof Arnfred \n"
-"Language-Team: Danish \n"
-"Language: da\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 5.3.1\n"
-"Generated-By: Babel 2.14.0\n"
-
-#: templates/ALL_README.md.j2:11
-#, python-format
-msgid "Read the README in %(language)s"
-msgstr "Læs vores README på %(language)s"
-
-#: templates/README.md.j2:2
-msgid "Packaging an app, starting from this example"
-msgstr ""
-
-#: templates/README.md.j2:4
-msgid ""
-"Copy this app before working on it, using the ['Use this template'](https://"
-"github.com/new?template_name=example_ynh&template_owner=YunoHost) button on "
-"the Github repo"
-msgstr ""
-
-#: templates/README.md.j2:5
-msgid "Edit the `manifest.toml` with app specific info"
-msgstr ""
-
-#: templates/README.md.j2:6
-msgid ""
-"Edit the `install`, `upgrade`, `remove`, `backup` and `restore` scripts, and "
-"any relevant conf files in `conf/`"
-msgstr ""
-
-#: templates/README.md.j2:7
-msgid ""
-"Using the [script helpers documentation](https://yunohost.org/"
-"packaging_apps_helpers)"
-msgstr ""
-
-#: templates/README.md.j2:8
-msgid ""
-"Edit the `change_url` and `config` scripts too, or remove them if you have "
-"no use of them"
-msgstr ""
-
-#: templates/README.md.j2:9
-msgid "Add a `LICENSE` file for the package."
-msgstr ""
-
-#: templates/README.md.j2:10
-msgid ""
-"NB: this `LICENSE` file is not meant to necessarily be the same LICENSE as "
-"the upstream app - it is only the LICENSE you want this package's code to "
-"published with and you can choose it freely! (If you don't know which to "
-"choose, we recommend [the AGPL-3](https://www.gnu.org/licenses/agpl-3.0.txt))"
-msgstr ""
-
-#: templates/README.md.j2:11
-msgid ""
-"Edit files under the `doc/` directory ([see the page about documenting "
-"packages](https://yunohost.org/packaging_app_doc))"
-msgstr ""
-
-#: templates/README.md.j2:12
-msgid ""
-"The `README.md` files are to be automatically generated by "
-msgstr ""
-
-#: templates/README.md.j2:18
-msgid ""
-"N.B.: This README was automatically generated by \n"
-"It shall NOT be edited by hand."
-msgstr ""
-
-#: templates/README.md.j2:22
-#, python-format
-msgid "%(application_name)s for YunoHost"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Integration level"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Working status"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Maintenance status"
-msgstr ""
-
-#: templates/README.md.j2:26
-#, python-format
-msgid "Install %(application_name)s with YunoHost"
-msgstr ""
-
-#: templates/README.md.j2:28
-msgid "Read this README in other languages."
-msgstr ""
-
-#: templates/README.md.j2:30
-#, python-format
-msgid ""
-"This package allows you to install %(application_name)s quickly and simply "
-"on a YunoHost server."
-msgstr ""
-
-#: templates/README.md.j2:31
-msgid ""
-"If you don't have YunoHost, please consult [the guide](https://yunohost.org/"
-"install) to learn how to install it."
-msgstr ""
-
-#: templates/README.md.j2:33
-msgid "Overview"
-msgstr ""
-
-#: templates/README.md.j2:37
-msgid "Shipped version:"
-msgstr ""
-
-#: templates/README.md.j2:41
-msgid "Demo:"
-msgstr ""
-
-#: templates/README.md.j2:45
-msgid "Screenshots"
-msgstr ""
-
-#: templates/README.md.j2:48
-#, python-format
-msgid "Screenshot of %(application_name)s"
-msgstr ""
-
-#: templates/README.md.j2:53
-msgid "Disclaimers / important information"
-msgstr ""
-
-#: templates/README.md.j2:59
-msgid "Antifeatures"
-msgstr ""
-
-#: templates/README.md.j2:66
-msgid "Documentation and resources"
-msgstr ""
-
-#: templates/README.md.j2:68
-msgid "Official app website:"
-msgstr ""
-
-#: templates/README.md.j2:70
-msgid "Official user documentation:"
-msgstr ""
-
-#: templates/README.md.j2:72
-msgid "Official admin documentation:"
-msgstr ""
-
-#: templates/README.md.j2:74
-msgid "Upstream app code repository:"
-msgstr ""
-
-#: templates/README.md.j2:76
-msgid "YunoHost Store:"
-msgstr ""
-
-#: templates/README.md.j2:77
-msgid "Report a bug:"
-msgstr ""
-
-#: templates/README.md.j2:79
-msgid "Developer info"
-msgstr ""
-
-#: templates/README.md.j2:81
-#, python-format
-msgid ""
-"Please send your pull request to the [`testing` branch]"
-"(%(testing_branch_url)s)."
-msgstr ""
-
-#: templates/README.md.j2:83
-msgid "To try the `testing` branch, please proceed like that:"
-msgstr ""
-
-#: templates/README.md.j2:87
-msgid "or"
-msgstr ""
-
-#: templates/README.md.j2:91
-msgid "More info regarding app packaging:"
-msgstr ""
diff --git a/readme_generator/translations/de/LC_MESSAGES/messages.mo b/readme_generator/translations/de/LC_MESSAGES/messages.mo
deleted file mode 100644
index a830f8cd..00000000
Binary files a/readme_generator/translations/de/LC_MESSAGES/messages.mo and /dev/null differ
diff --git a/readme_generator/translations/de/LC_MESSAGES/messages.po b/readme_generator/translations/de/LC_MESSAGES/messages.po
deleted file mode 100644
index 48d259ab..00000000
--- a/readme_generator/translations/de/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,243 +0,0 @@
-# Translations template for PROJECT.
-# Copyright (C) 2024 ORGANIZATION
-# This file is distributed under the same license as the PROJECT project.
-# FIRST AUTHOR , 2024.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PROJECT VERSION\n"
-"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2024-03-31 19:33+0200\n"
-"PO-Revision-Date: 2024-11-27 08:54+0000\n"
-"Last-Translator: Éric Gaspar \n"
-"Language-Team: German \n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 5.4.3\n"
-"Generated-By: Babel 2.14.0\n"
-
-#: templates/ALL_README.md.j2:11
-#, python-format
-msgid "Read the README in %(language)s"
-msgstr "Die README in %(language)s lesen"
-
-#: templates/README.md.j2:2
-msgid "Packaging an app, starting from this example"
-msgstr "Paketierung einer Applikation, ausgehend von diesem Beispiel"
-
-#: templates/README.md.j2:4
-msgid ""
-"Copy this app before working on it, using the ['Use this template'](https://"
-"github.com/new?template_name=example_ynh&template_owner=YunoHost) button on "
-"the Github repo"
-msgstr ""
-"Kopieren Sie diese Appikation, bevor Sie diese bearbeiten, indem Sie die "
-"Schaltfläche ['Diese Vorlage verwenden'](https://github.com/new?"
-"template_name=example_ynh&template_owner=YunoHost) im Git-Repository "
-"verwenden"
-
-#: templates/README.md.j2:5
-msgid "Edit the `manifest.toml` with app specific info"
-msgstr "Die `manifest.toml`mit App-spezifischen Informationen bearbeiten"
-
-#: templates/README.md.j2:6
-msgid ""
-"Edit the `install`, `upgrade`, `remove`, `backup` and `restore` scripts, and "
-"any relevant conf files in `conf/`"
-msgstr ""
-"Die Skripte `install`, `upgrade`, `remove`, `backup` und `restore` sowie "
-"alle relevanten Konfigurations-Dateien in `conf/` bearbeiten"
-
-#: templates/README.md.j2:7
-msgid ""
-"Using the [script helpers documentation](https://yunohost.org/"
-"packaging_apps_helpers)"
-msgstr ""
-"Die [Skript-Helper-Dokumentation](https://yunohost.org/"
-"packaging_apps_helpers) verwenden"
-
-#: templates/README.md.j2:8
-msgid ""
-"Edit the `change_url` and `config` scripts too, or remove them if you have "
-"no use of them"
-msgstr ""
-"Bearbeiten Sie auch die Skripte `change_url` und `config` oder entfernen Sie "
-"diese, wenn Sie keine Verwendung dafür haben"
-
-#: templates/README.md.j2:9
-msgid "Add a `LICENSE` file for the package."
-msgstr "Fügen Sie eine `LICENSE`-Datei für das Paket hinzu."
-
-#: templates/README.md.j2:10
-msgid ""
-"NB: this `LICENSE` file is not meant to necessarily be the same LICENSE as "
-"the upstream app - it is only the LICENSE you want this package's code to "
-"published with and you can choose it freely! (If you don't know which to "
-"choose, we recommend [the AGPL-3](https://www.gnu.org/licenses/agpl-3.0.txt))"
-msgstr ""
-"NB: Diese `LICENSE`-Datei muss nicht unbedingt dieselbe LICENSE wie die "
-"Upstream-App sein - es ist nur die LICENSE, mit der Code dieses Pakets "
-"veröffentlicht werden soll, und Sie können sie frei wählen! (Wenn Sie nicht "
-"wissen, welche Sie wählen sollen, empfehlen wir [die AGPL-3](https://www.gnu."
-"org/licenses/agpl-3.0.txt))"
-
-#: templates/README.md.j2:11
-msgid ""
-"Edit files under the `doc/` directory ([see the page about documenting "
-"packages](https://yunohost.org/packaging_app_doc))"
-msgstr ""
-"Bearbeiten Sie Dateien im Verzeichnis `doc/` ([siehe Seite zum Dokumentieren "
-"von Paketen](https://yunohost.org/packaging_app_doc))"
-
-#: templates/README.md.j2:12
-msgid ""
-"The `README.md` files are to be automatically generated by "
-msgstr ""
-"Die `README.md`-Dateien werden automatisch generiert durch "
-
-#: templates/README.md.j2:18
-msgid ""
-"N.B.: This README was automatically generated by \n"
-"It shall NOT be edited by hand."
-msgstr ""
-"N.B.: Diese README wurde automatisch von generiert.\n"
-"Sie darf NICHT von Hand bearbeitet werden."
-
-#: templates/README.md.j2:22
-#, python-format
-msgid "%(application_name)s for YunoHost"
-msgstr "%(application_name)s für YunoHost"
-
-#: templates/README.md.j2:24
-msgid "Integration level"
-msgstr "Integrations-Level"
-
-#: templates/README.md.j2:24
-msgid "Working status"
-msgstr "Funktionsstatus"
-
-#: templates/README.md.j2:24
-msgid "Maintenance status"
-msgstr "Wartungsstatus"
-
-#: templates/README.md.j2:26
-#, python-format
-msgid "Install %(application_name)s with YunoHost"
-msgstr "%(application_name)s mit YunoHost installieren"
-
-#: templates/README.md.j2:28
-msgid "Read this README in other languages."
-msgstr "Dieses README in anderen Sprachen lesen."
-
-#: templates/README.md.j2:30
-#, python-format
-msgid ""
-"This package allows you to install %(application_name)s quickly and simply "
-"on a YunoHost server."
-msgstr ""
-"Mit diesem Paket können Sie %(application_name)s schnell und einfach auf "
-"einem YunoHost-Server installieren."
-
-#: templates/README.md.j2:31
-msgid ""
-"If you don't have YunoHost, please consult [the guide](https://yunohost.org/"
-"install) to learn how to install it."
-msgstr ""
-"Wenn Sie YunoHost nicht haben, lesen Sie bitte [die Anleitung](https://"
-"yunohost.org/install), um zu erfahren, wie Sie es installieren."
-
-#: templates/README.md.j2:33
-msgid "Overview"
-msgstr "Übersicht"
-
-#: templates/README.md.j2:37
-msgid "Shipped version:"
-msgstr "Ausgelieferte Version:"
-
-#: templates/README.md.j2:41
-msgid "Demo:"
-msgstr "Demo:"
-
-#: templates/README.md.j2:45
-msgid "Screenshots"
-msgstr "Bildschirmfotos"
-
-#: templates/README.md.j2:48
-#, python-format
-msgid "Screenshot of %(application_name)s"
-msgstr "Bildschirmfotos von %(application_name)s"
-
-#: templates/README.md.j2:53
-msgid "Disclaimers / important information"
-msgstr "Haftungsausschlüsse / wichtige Informationen"
-
-#: templates/README.md.j2:59
-msgid "Antifeatures"
-msgstr "Anti-Eigenschaften"
-
-#: templates/README.md.j2:66
-msgid "Documentation and resources"
-msgstr "Dokumentation und Ressourcen"
-
-#: templates/README.md.j2:68
-msgid "Official app website:"
-msgstr "Offizielle Website der App:"
-
-#: templates/README.md.j2:70
-msgid "Official user documentation:"
-msgstr "Offizielle Benutzerdokumentation:"
-
-#: templates/README.md.j2:72
-msgid "Official admin documentation:"
-msgstr "Offizielle Verwaltungsdokumentation:"
-
-#: templates/README.md.j2:74
-msgid "Upstream app code repository:"
-msgstr "Upstream App Repository:"
-
-#: templates/README.md.j2:76
-msgid "YunoHost Store:"
-msgstr "YunoHost-Shop:"
-
-#: templates/README.md.j2:77
-msgid "Report a bug:"
-msgstr "Einen Fehler melden:"
-
-#: templates/README.md.j2:79
-msgid "Developer info"
-msgstr "Entwicklerinformationen"
-
-#: templates/README.md.j2:81
-#, python-format
-msgid ""
-"Please send your pull request to the [`testing` branch]"
-"(%(testing_branch_url)s)."
-msgstr ""
-"Bitte senden Sie Ihren Pull-Request an den [`testing` branch]"
-"(%(testing_branch_url)s)."
-
-#: templates/README.md.j2:83
-msgid "To try the `testing` branch, please proceed like that:"
-msgstr "Um den `testing` Branch auszuprobieren, gehen Sie bitte wie folgt vor:"
-
-#: templates/README.md.j2:87
-msgid "or"
-msgstr "oder"
-
-#: templates/README.md.j2:91
-msgid "More info regarding app packaging:"
-msgstr "Weitere Informationen zur App-Paketierung:"
-
-#~ msgid "Edit files under the `doc/` directory"
-#~ msgstr "Dateien unter dem Verzeichnis `doc/` bearbeiten"
-
-#~ msgid "Edit `doc/DISCLAIMER*.md`"
-#~ msgstr "Bearbeite `doc/DISCLAIMER*.md`"
diff --git a/readme_generator/translations/el/LC_MESSAGES/messages.mo b/readme_generator/translations/el/LC_MESSAGES/messages.mo
deleted file mode 100644
index 119f55fc..00000000
Binary files a/readme_generator/translations/el/LC_MESSAGES/messages.mo and /dev/null differ
diff --git a/readme_generator/translations/el/LC_MESSAGES/messages.po b/readme_generator/translations/el/LC_MESSAGES/messages.po
deleted file mode 100644
index a736f13a..00000000
--- a/readme_generator/translations/el/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,206 +0,0 @@
-# Translations template for PROJECT.
-# Copyright (C) 2024 ORGANIZATION
-# This file is distributed under the same license as the PROJECT project.
-# FIRST AUTHOR , 2024.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PROJECT VERSION\n"
-"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2024-03-31 19:33+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: el\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.14.0\n"
-
-#: templates/ALL_README.md.j2:11
-#, python-format
-msgid "Read the README in %(language)s"
-msgstr ""
-
-#: templates/README.md.j2:2
-msgid "Packaging an app, starting from this example"
-msgstr ""
-
-#: templates/README.md.j2:4
-msgid ""
-"Copy this app before working on it, using the ['Use this template'](https://"
-"github.com/new?template_name=example_ynh&template_owner=YunoHost) button on "
-"the Github repo"
-msgstr ""
-
-#: templates/README.md.j2:5
-msgid "Edit the `manifest.toml` with app specific info"
-msgstr ""
-
-#: templates/README.md.j2:6
-msgid ""
-"Edit the `install`, `upgrade`, `remove`, `backup` and `restore` scripts, and "
-"any relevant conf files in `conf/`"
-msgstr ""
-
-#: templates/README.md.j2:7
-msgid ""
-"Using the [script helpers documentation](https://yunohost.org/"
-"packaging_apps_helpers)"
-msgstr ""
-
-#: templates/README.md.j2:8
-msgid ""
-"Edit the `change_url` and `config` scripts too, or remove them if you have "
-"no use of them"
-msgstr ""
-
-#: templates/README.md.j2:9
-msgid "Add a `LICENSE` file for the package."
-msgstr ""
-
-#: templates/README.md.j2:10
-msgid ""
-"NB: this `LICENSE` file is not meant to necessarily be the same LICENSE as "
-"the upstream app - it is only the LICENSE you want this package's code to "
-"published with and you can choose it freely! (If you don't know which to "
-"choose, we recommend [the AGPL-3](https://www.gnu.org/licenses/agpl-3.0.txt))"
-msgstr ""
-
-#: templates/README.md.j2:11
-msgid ""
-"Edit files under the `doc/` directory ([see the page about documenting "
-"packages](https://yunohost.org/packaging_app_doc))"
-msgstr ""
-
-#: templates/README.md.j2:12
-msgid ""
-"The `README.md` files are to be automatically generated by "
-msgstr ""
-
-#: templates/README.md.j2:18
-msgid ""
-"N.B.: This README was automatically generated by \n"
-"It shall NOT be edited by hand."
-msgstr ""
-
-#: templates/README.md.j2:22
-#, python-format
-msgid "%(application_name)s for YunoHost"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Integration level"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Working status"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Maintenance status"
-msgstr ""
-
-#: templates/README.md.j2:26
-#, python-format
-msgid "Install %(application_name)s with YunoHost"
-msgstr ""
-
-#: templates/README.md.j2:28
-msgid "Read this README in other languages."
-msgstr ""
-
-#: templates/README.md.j2:30
-#, python-format
-msgid ""
-"This package allows you to install %(application_name)s quickly and simply "
-"on a YunoHost server."
-msgstr ""
-
-#: templates/README.md.j2:31
-msgid ""
-"If you don't have YunoHost, please consult [the guide](https://yunohost.org/"
-"install) to learn how to install it."
-msgstr ""
-
-#: templates/README.md.j2:33
-msgid "Overview"
-msgstr ""
-
-#: templates/README.md.j2:37
-msgid "Shipped version:"
-msgstr ""
-
-#: templates/README.md.j2:41
-msgid "Demo:"
-msgstr ""
-
-#: templates/README.md.j2:45
-msgid "Screenshots"
-msgstr ""
-
-#: templates/README.md.j2:48
-#, python-format
-msgid "Screenshot of %(application_name)s"
-msgstr ""
-
-#: templates/README.md.j2:53
-msgid "Disclaimers / important information"
-msgstr ""
-
-#: templates/README.md.j2:59
-msgid "Antifeatures"
-msgstr ""
-
-#: templates/README.md.j2:66
-msgid "Documentation and resources"
-msgstr ""
-
-#: templates/README.md.j2:68
-msgid "Official app website:"
-msgstr ""
-
-#: templates/README.md.j2:70
-msgid "Official user documentation:"
-msgstr ""
-
-#: templates/README.md.j2:72
-msgid "Official admin documentation:"
-msgstr ""
-
-#: templates/README.md.j2:74
-msgid "Upstream app code repository:"
-msgstr ""
-
-#: templates/README.md.j2:76
-msgid "YunoHost Store:"
-msgstr ""
-
-#: templates/README.md.j2:77
-msgid "Report a bug:"
-msgstr ""
-
-#: templates/README.md.j2:79
-msgid "Developer info"
-msgstr ""
-
-#: templates/README.md.j2:81
-#, python-format
-msgid ""
-"Please send your pull request to the [`testing` branch]"
-"(%(testing_branch_url)s)."
-msgstr ""
-
-#: templates/README.md.j2:83
-msgid "To try the `testing` branch, please proceed like that:"
-msgstr ""
-
-#: templates/README.md.j2:87
-msgid "or"
-msgstr ""
-
-#: templates/README.md.j2:91
-msgid "More info regarding app packaging:"
-msgstr ""
diff --git a/readme_generator/translations/eo/LC_MESSAGES/messages.po b/readme_generator/translations/eo/LC_MESSAGES/messages.po
deleted file mode 100644
index ae40fe20..00000000
--- a/readme_generator/translations/eo/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,206 +0,0 @@
-# Translations template for PROJECT.
-# Copyright (C) 2024 ORGANIZATION
-# This file is distributed under the same license as the PROJECT project.
-# FIRST AUTHOR , 2024.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PROJECT VERSION\n"
-"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2024-03-31 19:33+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: eo\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.14.0\n"
-
-#: templates/ALL_README.md.j2:11
-#, python-format
-msgid "Read the README in %(language)s"
-msgstr ""
-
-#: templates/README.md.j2:2
-msgid "Packaging an app, starting from this example"
-msgstr ""
-
-#: templates/README.md.j2:4
-msgid ""
-"Copy this app before working on it, using the ['Use this template'](https://"
-"github.com/new?template_name=example_ynh&template_owner=YunoHost) button on "
-"the Github repo"
-msgstr ""
-
-#: templates/README.md.j2:5
-msgid "Edit the `manifest.toml` with app specific info"
-msgstr ""
-
-#: templates/README.md.j2:6
-msgid ""
-"Edit the `install`, `upgrade`, `remove`, `backup` and `restore` scripts, and "
-"any relevant conf files in `conf/`"
-msgstr ""
-
-#: templates/README.md.j2:7
-msgid ""
-"Using the [script helpers documentation](https://yunohost.org/"
-"packaging_apps_helpers)"
-msgstr ""
-
-#: templates/README.md.j2:8
-msgid ""
-"Edit the `change_url` and `config` scripts too, or remove them if you have "
-"no use of them"
-msgstr ""
-
-#: templates/README.md.j2:9
-msgid "Add a `LICENSE` file for the package."
-msgstr ""
-
-#: templates/README.md.j2:10
-msgid ""
-"NB: this `LICENSE` file is not meant to necessarily be the same LICENSE as "
-"the upstream app - it is only the LICENSE you want this package's code to "
-"published with and you can choose it freely! (If you don't know which to "
-"choose, we recommend [the AGPL-3](https://www.gnu.org/licenses/agpl-3.0.txt))"
-msgstr ""
-
-#: templates/README.md.j2:11
-msgid ""
-"Edit files under the `doc/` directory ([see the page about documenting "
-"packages](https://yunohost.org/packaging_app_doc))"
-msgstr ""
-
-#: templates/README.md.j2:12
-msgid ""
-"The `README.md` files are to be automatically generated by "
-msgstr ""
-
-#: templates/README.md.j2:18
-msgid ""
-"N.B.: This README was automatically generated by \n"
-"It shall NOT be edited by hand."
-msgstr ""
-
-#: templates/README.md.j2:22
-#, python-format
-msgid "%(application_name)s for YunoHost"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Integration level"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Working status"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Maintenance status"
-msgstr ""
-
-#: templates/README.md.j2:26
-#, python-format
-msgid "Install %(application_name)s with YunoHost"
-msgstr ""
-
-#: templates/README.md.j2:28
-msgid "Read this README in other languages."
-msgstr ""
-
-#: templates/README.md.j2:30
-#, python-format
-msgid ""
-"This package allows you to install %(application_name)s quickly and simply "
-"on a YunoHost server."
-msgstr ""
-
-#: templates/README.md.j2:31
-msgid ""
-"If you don't have YunoHost, please consult [the guide](https://yunohost.org/"
-"install) to learn how to install it."
-msgstr ""
-
-#: templates/README.md.j2:33
-msgid "Overview"
-msgstr ""
-
-#: templates/README.md.j2:37
-msgid "Shipped version:"
-msgstr ""
-
-#: templates/README.md.j2:41
-msgid "Demo:"
-msgstr ""
-
-#: templates/README.md.j2:45
-msgid "Screenshots"
-msgstr ""
-
-#: templates/README.md.j2:48
-#, python-format
-msgid "Screenshot of %(application_name)s"
-msgstr ""
-
-#: templates/README.md.j2:53
-msgid "Disclaimers / important information"
-msgstr ""
-
-#: templates/README.md.j2:59
-msgid "Antifeatures"
-msgstr ""
-
-#: templates/README.md.j2:66
-msgid "Documentation and resources"
-msgstr ""
-
-#: templates/README.md.j2:68
-msgid "Official app website:"
-msgstr ""
-
-#: templates/README.md.j2:70
-msgid "Official user documentation:"
-msgstr ""
-
-#: templates/README.md.j2:72
-msgid "Official admin documentation:"
-msgstr ""
-
-#: templates/README.md.j2:74
-msgid "Upstream app code repository:"
-msgstr ""
-
-#: templates/README.md.j2:76
-msgid "YunoHost Store:"
-msgstr ""
-
-#: templates/README.md.j2:77
-msgid "Report a bug:"
-msgstr ""
-
-#: templates/README.md.j2:79
-msgid "Developer info"
-msgstr ""
-
-#: templates/README.md.j2:81
-#, python-format
-msgid ""
-"Please send your pull request to the [`testing` branch]"
-"(%(testing_branch_url)s)."
-msgstr ""
-
-#: templates/README.md.j2:83
-msgid "To try the `testing` branch, please proceed like that:"
-msgstr ""
-
-#: templates/README.md.j2:87
-msgid "or"
-msgstr ""
-
-#: templates/README.md.j2:91
-msgid "More info regarding app packaging:"
-msgstr ""
diff --git a/readme_generator/translations/es/LC_MESSAGES/messages.mo b/readme_generator/translations/es/LC_MESSAGES/messages.mo
deleted file mode 100644
index ae56478e..00000000
Binary files a/readme_generator/translations/es/LC_MESSAGES/messages.mo and /dev/null differ
diff --git a/readme_generator/translations/es/LC_MESSAGES/messages.po b/readme_generator/translations/es/LC_MESSAGES/messages.po
deleted file mode 100644
index 454e7634..00000000
--- a/readme_generator/translations/es/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,237 +0,0 @@
-# Translations template for PROJECT.
-# Copyright (C) 2024 ORGANIZATION
-# This file is distributed under the same license as the PROJECT project.
-# FIRST AUTHOR , 2024.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PROJECT VERSION\n"
-"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2024-03-31 19:33+0200\n"
-"PO-Revision-Date: 2024-11-27 08:54+0000\n"
-"Last-Translator: Éric Gaspar \n"
-"Language-Team: Spanish \n"
-"Language: es\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 5.4.3\n"
-"Generated-By: Babel 2.14.0\n"
-
-#: templates/ALL_README.md.j2:11
-#, python-format
-msgid "Read the README in %(language)s"
-msgstr "Lea el README en %(language)s"
-
-#: templates/README.md.j2:2
-msgid "Packaging an app, starting from this example"
-msgstr "Armar una aplicación empezando por este ejemplo"
-
-#: templates/README.md.j2:4
-msgid ""
-"Copy this app before working on it, using the ['Use this template'](https://"
-"github.com/new?template_name=example_ynh&template_owner=YunoHost) button on "
-"the Github repo"
-msgstr ""
-"Copia esta aplicación antes se trabajar en ella,utilizando el botón ['use "
-"esta plantilla'](https://github.com/new?"
-"template_name=example_ynh&template_owner=YunoHost) en el repositorio de "
-"Github"
-
-#: templates/README.md.j2:5
-msgid "Edit the `manifest.toml` with app specific info"
-msgstr ""
-"Edita el archivo `manifest.toml` con las informaciones especifica de la "
-"aplicación"
-
-#: templates/README.md.j2:6
-msgid ""
-"Edit the `install`, `upgrade`, `remove`, `backup` and `restore` scripts, and "
-"any relevant conf files in `conf/`"
-msgstr ""
-"Edita los archivos de scripts `install`, `upgrade`, `remove`, `backup`, "
-"`restore` y los archivos de configuraciones ubicados en `conf/`"
-
-#: templates/README.md.j2:7
-msgid ""
-"Using the [script helpers documentation](https://yunohost.org/"
-"packaging_apps_helpers)"
-msgstr ""
-"Usando la [documentación des los scripts helpers](https://yunohost.org/"
-"packaging_apps_helpers)"
-
-#: templates/README.md.j2:8
-msgid ""
-"Edit the `change_url` and `config` scripts too, or remove them if you have "
-"no use of them"
-msgstr ""
-"Edita el archivo de script `change_url` and `config` o borra los si no les "
-"son utiles"
-
-#: templates/README.md.j2:9
-msgid "Add a `LICENSE` file for the package."
-msgstr "Agrega un archivo `LICENSE` para el paquete."
-
-#: templates/README.md.j2:10
-msgid ""
-"NB: this `LICENSE` file is not meant to necessarily be the same LICENSE as "
-"the upstream app - it is only the LICENSE you want this package's code to "
-"published with and you can choose it freely! (If you don't know which to "
-"choose, we recommend [the AGPL-3](https://www.gnu.org/licenses/agpl-3.0.txt))"
-msgstr ""
-"No es necesario que la `LICENSE` de los script de gestion de aplicacion sea "
-"la misma que la LICENSE de la aplicacion gestionada. Recomendamos usar [the "
-"AGPL-3](https://www.gnu.org/licenses/agpl-3.0.txt)"
-
-#: templates/README.md.j2:11
-msgid ""
-"Edit files under the `doc/` directory ([see the page about documenting "
-"packages](https://yunohost.org/packaging_app_doc))"
-msgstr ""
-"Edita los archivos en el directorio`doc/` ([más informaciones](https://"
-"yunohost.org/packaging_app_doc))"
-
-#: templates/README.md.j2:12
-msgid ""
-"The `README.md` files are to be automatically generated by "
-msgstr ""
-"Los archivos`README.md`estan generados automáticamente "
-
-#: templates/README.md.j2:18
-msgid ""
-"N.B.: This README was automatically generated by \n"
-"It shall NOT be edited by hand."
-msgstr ""
-"Este archivo README esta generado automaticamente\n"
-"No se debe editar a mano."
-
-#: templates/README.md.j2:22
-#, python-format
-msgid "%(application_name)s for YunoHost"
-msgstr "%(application_name)s para YunoHost"
-
-#: templates/README.md.j2:24
-msgid "Integration level"
-msgstr "Nivel de integración"
-
-#: templates/README.md.j2:24
-msgid "Working status"
-msgstr "Estado funcional"
-
-#: templates/README.md.j2:24
-msgid "Maintenance status"
-msgstr "Estado En Mantención"
-
-#: templates/README.md.j2:26
-#, python-format
-msgid "Install %(application_name)s with YunoHost"
-msgstr "Instalar %(application_name)s con Yunhost"
-
-#: templates/README.md.j2:28
-msgid "Read this README in other languages."
-msgstr "Leer este README en otros idiomas."
-
-#: templates/README.md.j2:30
-#, python-format
-msgid ""
-"This package allows you to install %(application_name)s quickly and simply "
-"on a YunoHost server."
-msgstr ""
-"Este paquete le permite instalar%(application_name)s rapidamente y "
-"simplement en un servidor YunoHost."
-
-#: templates/README.md.j2:31
-msgid ""
-"If you don't have YunoHost, please consult [the guide](https://yunohost.org/"
-"install) to learn how to install it."
-msgstr ""
-"Si no tiene YunoHost, visita [the guide](https://yunohost.org/install) para "
-"aprender como instalarla."
-
-#: templates/README.md.j2:33
-msgid "Overview"
-msgstr "Descripción general"
-
-#: templates/README.md.j2:37
-msgid "Shipped version:"
-msgstr "Versión actual:"
-
-#: templates/README.md.j2:41
-msgid "Demo:"
-msgstr "Demo:"
-
-#: templates/README.md.j2:45
-msgid "Screenshots"
-msgstr "Capturas"
-
-#: templates/README.md.j2:48
-#, python-format
-msgid "Screenshot of %(application_name)s"
-msgstr "Captura de %(application_name)s"
-
-#: templates/README.md.j2:53
-msgid "Disclaimers / important information"
-msgstr "informaciones importantes"
-
-#: templates/README.md.j2:59
-msgid "Antifeatures"
-msgstr "Características no deseables"
-
-#: templates/README.md.j2:66
-msgid "Documentation and resources"
-msgstr "Documentaciones y recursos"
-
-#: templates/README.md.j2:68
-msgid "Official app website:"
-msgstr "Sitio web oficial:"
-
-#: templates/README.md.j2:70
-msgid "Official user documentation:"
-msgstr "Documentación usuario oficial:"
-
-#: templates/README.md.j2:72
-msgid "Official admin documentation:"
-msgstr "Documentación administrador oficial:"
-
-#: templates/README.md.j2:74
-msgid "Upstream app code repository:"
-msgstr "Repositorio del código fuente oficial de la aplicación :"
-
-#: templates/README.md.j2:76
-msgid "YunoHost Store:"
-msgstr "Catálogo YunoHost:"
-
-#: templates/README.md.j2:77
-msgid "Report a bug:"
-msgstr "Reportar un error:"
-
-#: templates/README.md.j2:79
-msgid "Developer info"
-msgstr "Información para desarrolladores"
-
-#: templates/README.md.j2:81
-#, python-format
-msgid ""
-"Please send your pull request to the [`testing` branch]"
-"(%(testing_branch_url)s)."
-msgstr ""
-"Por favor enviar sus correcciones a la [rama `testing`]"
-"(%(testing_branch_url)s)."
-
-#: templates/README.md.j2:83
-msgid "To try the `testing` branch, please proceed like that:"
-msgstr "Para probar la rama `testing`, sigue asÍ:"
-
-#: templates/README.md.j2:87
-msgid "or"
-msgstr "o"
-
-#: templates/README.md.j2:91
-msgid "More info regarding app packaging:"
-msgstr "Mas informaciones sobre el empaquetado de aplicaciones:"
diff --git a/readme_generator/translations/eu/LC_MESSAGES/messages.mo b/readme_generator/translations/eu/LC_MESSAGES/messages.mo
deleted file mode 100644
index 013f4fcc..00000000
Binary files a/readme_generator/translations/eu/LC_MESSAGES/messages.mo and /dev/null differ
diff --git a/readme_generator/translations/eu/LC_MESSAGES/messages.po b/readme_generator/translations/eu/LC_MESSAGES/messages.po
deleted file mode 100644
index c8e163fb..00000000
--- a/readme_generator/translations/eu/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,233 +0,0 @@
-# Translations template for PROJECT.
-# Copyright (C) 2024 ORGANIZATION
-# This file is distributed under the same license as the PROJECT project.
-# FIRST AUTHOR , 2024.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PROJECT VERSION\n"
-"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2024-03-31 19:33+0200\n"
-"PO-Revision-Date: 2025-02-13 19:54+0000\n"
-"Last-Translator: xabirequejo \n"
-"Language-Team: Basque \n"
-"Language: eu\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 5.4.3\n"
-"Generated-By: Babel 2.14.0\n"
-
-#: templates/ALL_README.md.j2:11
-#, python-format
-msgid "Read the README in %(language)s"
-msgstr "Irakurri README %(language)sz"
-
-#: templates/README.md.j2:2
-msgid "Packaging an app, starting from this example"
-msgstr "Aplikazio bat paketatzen, honako adibidea oinarritzat hartuz"
-
-#: templates/README.md.j2:4
-msgid ""
-"Copy this app before working on it, using the ['Use this template'](https://"
-"github.com/new?template_name=example_ynh&template_owner=YunoHost) button on "
-"the Github repo"
-msgstr ""
-"Kopiatu aplikazio hau aldaketak egin baino lehen, Github gordailuko "
-"['Erabili txantiloi hau'](https://github.com/new?"
-"template_name=example_ynh&template_owner=YunoHost) botoia erabiliz"
-
-#: templates/README.md.j2:5
-msgid "Edit the `manifest.toml` with app specific info"
-msgstr "Editatu `manifest.toml` aplikazioaren informazio zehatzarekin"
-
-#: templates/README.md.j2:6
-msgid ""
-"Edit the `install`, `upgrade`, `remove`, `backup` and `restore` scripts, and "
-"any relevant conf files in `conf/`"
-msgstr ""
-"Editatu `install`, `upgrade`, `remove`, `backup` eta `restore` scriptak, eta "
-"konfigurazio fitxategiak `conf/` direktorioan, beharrezkoak badira"
-
-#: templates/README.md.j2:7
-msgid ""
-"Using the [script helpers documentation](https://yunohost.org/"
-"packaging_apps_helpers)"
-msgstr ""
-"Erabili [scripten laguntza-dokumentazioa](https://yunohost.org/"
-"packaging_apps_helpers)"
-
-#: templates/README.md.j2:8
-msgid ""
-"Edit the `change_url` and `config` scripts too, or remove them if you have "
-"no use of them"
-msgstr ""
-"Editatu `change_url` eta `config` scriptak ere, edo kendu ez badute inolako "
-"betekizunik"
-
-#: templates/README.md.j2:9
-msgid "Add a `LICENSE` file for the package."
-msgstr "Gehitu `LICENSE` fitxategia paketerako."
-
-#: templates/README.md.j2:10
-msgid ""
-"NB: this `LICENSE` file is not meant to necessarily be the same LICENSE as "
-"the upstream app - it is only the LICENSE you want this package's code to "
-"published with and you can choose it freely! (If you don't know which to "
-"choose, we recommend [the AGPL-3](https://www.gnu.org/licenses/agpl-3.0.txt))"
-msgstr ""
-"Ohart ongi: `LICENSE` fitxategiak ez du zertan jatorrizko aplikazioaren "
-"lizentzia bera izan: pakete honen kodeak izatea nahi duzun lizentzia baino "
-"ez da eta aske zara berau aukeratzeko! (Ez badakizu zein aukeratu, guk "
-"[AGPL-3](https://www.gnu.org/licenses/agpl-3.0.txt) gomendatzen dugu)"
-
-#: templates/README.md.j2:11
-msgid ""
-"Edit files under the `doc/` directory ([see the page about documenting "
-"packages](https://yunohost.org/packaging_app_doc))"
-msgstr ""
-"Editatu `doc/` direktorioko fitxategiak ([ikus paketeak dokumentatzeari "
-"buruzko orria](https://yunohost.org/packaging_app_doc))"
-
-#: templates/README.md.j2:12
-msgid ""
-"The `README.md` files are to be automatically generated by "
-msgstr ""
-"`README.md` fitxategiak automatikoki sortuko dira ri esker"
-
-#: templates/README.md.j2:18
-msgid ""
-"N.B.: This README was automatically generated by \n"
-"It shall NOT be edited by hand."
-msgstr ""
-"Ohart ongi: README hau automatikoki sortu da ri esker\n"
-"EZ editatu eskuz."
-
-#: templates/README.md.j2:22
-#, python-format
-msgid "%(application_name)s for YunoHost"
-msgstr "%(application_name)s YunoHost-erako"
-
-#: templates/README.md.j2:24
-msgid "Integration level"
-msgstr "Integrazio maila"
-
-#: templates/README.md.j2:24
-msgid "Working status"
-msgstr "Funtzionamendu egoera"
-
-#: templates/README.md.j2:24
-msgid "Maintenance status"
-msgstr "Mantentze egoera"
-
-#: templates/README.md.j2:26
-#, python-format
-msgid "Install %(application_name)s with YunoHost"
-msgstr "Instalatu %(application_name)s YunoHost-ekin"
-
-#: templates/README.md.j2:28
-msgid "Read this README in other languages."
-msgstr "Irakurri README hau beste hizkuntzatan."
-
-#: templates/README.md.j2:30
-#, python-format
-msgid ""
-"This package allows you to install %(application_name)s quickly and simply "
-"on a YunoHost server."
-msgstr ""
-"Pakete honek %(application_name)s YunoHost zerbitzari batean azkar eta "
-"zailtasunik gabe instalatzea ahalbidetzen dizu."
-
-#: templates/README.md.j2:31
-msgid ""
-"If you don't have YunoHost, please consult [the guide](https://yunohost.org/"
-"install) to learn how to install it."
-msgstr ""
-"YunoHost ez baduzu, kontsultatu [gida](https://yunohost.org/install) nola "
-"instalatu ikasteko."
-
-#: templates/README.md.j2:33
-msgid "Overview"
-msgstr "Aurreikuspena"
-
-#: templates/README.md.j2:37
-msgid "Shipped version:"
-msgstr "Paketatutako bertsioa:"
-
-#: templates/README.md.j2:41
-msgid "Demo:"
-msgstr "Demoa:"
-
-#: templates/README.md.j2:45
-msgid "Screenshots"
-msgstr "Pantaila-argazkiak"
-
-#: templates/README.md.j2:48
-#, python-format
-msgid "Screenshot of %(application_name)s"
-msgstr "%(application_name)s(r)en pantaila-argazkia"
-
-#: templates/README.md.j2:53
-msgid "Disclaimers / important information"
-msgstr "Ezespena / informazio garrantzitsua"
-
-#: templates/README.md.j2:59
-msgid "Antifeatures"
-msgstr "Ezaugarri zalantzagarriak"
-
-#: templates/README.md.j2:66
-msgid "Documentation and resources"
-msgstr "Dokumentazioa eta baliabideak"
-
-#: templates/README.md.j2:68
-msgid "Official app website:"
-msgstr "Aplikazioaren webgune ofiziala:"
-
-#: templates/README.md.j2:70
-msgid "Official user documentation:"
-msgstr "Erabiltzaileen dokumentazio ofiziala:"
-
-#: templates/README.md.j2:72
-msgid "Official admin documentation:"
-msgstr "Administratzaileen dokumentazio ofiziala:"
-
-#: templates/README.md.j2:74
-msgid "Upstream app code repository:"
-msgstr "Jatorrizko aplikazioaren kode-gordailua:"
-
-#: templates/README.md.j2:76
-msgid "YunoHost Store:"
-msgstr "YunoHost Denda:"
-
-#: templates/README.md.j2:77
-msgid "Report a bug:"
-msgstr "Eman errore baten berri:"
-
-#: templates/README.md.j2:79
-msgid "Developer info"
-msgstr "Garatzaileentzako informazioa"
-
-#: templates/README.md.j2:81
-#, python-format
-msgid ""
-"Please send your pull request to the [`testing` branch]"
-"(%(testing_branch_url)s)."
-msgstr "Bidali `pull request`a [`testing` abarrera](%(testing_branch_url)s)."
-
-#: templates/README.md.j2:83
-msgid "To try the `testing` branch, please proceed like that:"
-msgstr "`testing` abarra probatzeko, honakoa egin:"
-
-#: templates/README.md.j2:87
-msgid "or"
-msgstr "edo"
-
-#: templates/README.md.j2:91
-msgid "More info regarding app packaging:"
-msgstr "Informazio gehiago aplikazioaren paketatzeari buruz:"
diff --git a/readme_generator/translations/fa/LC_MESSAGES/messages.po b/readme_generator/translations/fa/LC_MESSAGES/messages.po
deleted file mode 100644
index a39112a7..00000000
--- a/readme_generator/translations/fa/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,206 +0,0 @@
-# Translations template for PROJECT.
-# Copyright (C) 2024 ORGANIZATION
-# This file is distributed under the same license as the PROJECT project.
-# FIRST AUTHOR , 2024.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PROJECT VERSION\n"
-"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2024-03-31 19:33+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: fa\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.14.0\n"
-
-#: templates/ALL_README.md.j2:11
-#, python-format
-msgid "Read the README in %(language)s"
-msgstr ""
-
-#: templates/README.md.j2:2
-msgid "Packaging an app, starting from this example"
-msgstr ""
-
-#: templates/README.md.j2:4
-msgid ""
-"Copy this app before working on it, using the ['Use this template'](https://"
-"github.com/new?template_name=example_ynh&template_owner=YunoHost) button on "
-"the Github repo"
-msgstr ""
-
-#: templates/README.md.j2:5
-msgid "Edit the `manifest.toml` with app specific info"
-msgstr ""
-
-#: templates/README.md.j2:6
-msgid ""
-"Edit the `install`, `upgrade`, `remove`, `backup` and `restore` scripts, and "
-"any relevant conf files in `conf/`"
-msgstr ""
-
-#: templates/README.md.j2:7
-msgid ""
-"Using the [script helpers documentation](https://yunohost.org/"
-"packaging_apps_helpers)"
-msgstr ""
-
-#: templates/README.md.j2:8
-msgid ""
-"Edit the `change_url` and `config` scripts too, or remove them if you have "
-"no use of them"
-msgstr ""
-
-#: templates/README.md.j2:9
-msgid "Add a `LICENSE` file for the package."
-msgstr ""
-
-#: templates/README.md.j2:10
-msgid ""
-"NB: this `LICENSE` file is not meant to necessarily be the same LICENSE as "
-"the upstream app - it is only the LICENSE you want this package's code to "
-"published with and you can choose it freely! (If you don't know which to "
-"choose, we recommend [the AGPL-3](https://www.gnu.org/licenses/agpl-3.0.txt))"
-msgstr ""
-
-#: templates/README.md.j2:11
-msgid ""
-"Edit files under the `doc/` directory ([see the page about documenting "
-"packages](https://yunohost.org/packaging_app_doc))"
-msgstr ""
-
-#: templates/README.md.j2:12
-msgid ""
-"The `README.md` files are to be automatically generated by "
-msgstr ""
-
-#: templates/README.md.j2:18
-msgid ""
-"N.B.: This README was automatically generated by \n"
-"It shall NOT be edited by hand."
-msgstr ""
-
-#: templates/README.md.j2:22
-#, python-format
-msgid "%(application_name)s for YunoHost"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Integration level"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Working status"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Maintenance status"
-msgstr ""
-
-#: templates/README.md.j2:26
-#, python-format
-msgid "Install %(application_name)s with YunoHost"
-msgstr ""
-
-#: templates/README.md.j2:28
-msgid "Read this README in other languages."
-msgstr ""
-
-#: templates/README.md.j2:30
-#, python-format
-msgid ""
-"This package allows you to install %(application_name)s quickly and simply "
-"on a YunoHost server."
-msgstr ""
-
-#: templates/README.md.j2:31
-msgid ""
-"If you don't have YunoHost, please consult [the guide](https://yunohost.org/"
-"install) to learn how to install it."
-msgstr ""
-
-#: templates/README.md.j2:33
-msgid "Overview"
-msgstr ""
-
-#: templates/README.md.j2:37
-msgid "Shipped version:"
-msgstr ""
-
-#: templates/README.md.j2:41
-msgid "Demo:"
-msgstr ""
-
-#: templates/README.md.j2:45
-msgid "Screenshots"
-msgstr ""
-
-#: templates/README.md.j2:48
-#, python-format
-msgid "Screenshot of %(application_name)s"
-msgstr ""
-
-#: templates/README.md.j2:53
-msgid "Disclaimers / important information"
-msgstr ""
-
-#: templates/README.md.j2:59
-msgid "Antifeatures"
-msgstr ""
-
-#: templates/README.md.j2:66
-msgid "Documentation and resources"
-msgstr ""
-
-#: templates/README.md.j2:68
-msgid "Official app website:"
-msgstr ""
-
-#: templates/README.md.j2:70
-msgid "Official user documentation:"
-msgstr ""
-
-#: templates/README.md.j2:72
-msgid "Official admin documentation:"
-msgstr ""
-
-#: templates/README.md.j2:74
-msgid "Upstream app code repository:"
-msgstr ""
-
-#: templates/README.md.j2:76
-msgid "YunoHost Store:"
-msgstr ""
-
-#: templates/README.md.j2:77
-msgid "Report a bug:"
-msgstr ""
-
-#: templates/README.md.j2:79
-msgid "Developer info"
-msgstr ""
-
-#: templates/README.md.j2:81
-#, python-format
-msgid ""
-"Please send your pull request to the [`testing` branch]"
-"(%(testing_branch_url)s)."
-msgstr ""
-
-#: templates/README.md.j2:83
-msgid "To try the `testing` branch, please proceed like that:"
-msgstr ""
-
-#: templates/README.md.j2:87
-msgid "or"
-msgstr ""
-
-#: templates/README.md.j2:91
-msgid "More info regarding app packaging:"
-msgstr ""
diff --git a/readme_generator/translations/fi/LC_MESSAGES/messages.mo b/readme_generator/translations/fi/LC_MESSAGES/messages.mo
deleted file mode 100644
index ebb7065e..00000000
Binary files a/readme_generator/translations/fi/LC_MESSAGES/messages.mo and /dev/null differ
diff --git a/readme_generator/translations/fi/LC_MESSAGES/messages.po b/readme_generator/translations/fi/LC_MESSAGES/messages.po
deleted file mode 100644
index 499b67cc..00000000
--- a/readme_generator/translations/fi/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,206 +0,0 @@
-# Translations template for PROJECT.
-# Copyright (C) 2024 ORGANIZATION
-# This file is distributed under the same license as the PROJECT project.
-# FIRST AUTHOR , 2024.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PROJECT VERSION\n"
-"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2024-03-31 19:33+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: fi\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.14.0\n"
-
-#: templates/ALL_README.md.j2:11
-#, python-format
-msgid "Read the README in %(language)s"
-msgstr ""
-
-#: templates/README.md.j2:2
-msgid "Packaging an app, starting from this example"
-msgstr ""
-
-#: templates/README.md.j2:4
-msgid ""
-"Copy this app before working on it, using the ['Use this template'](https://"
-"github.com/new?template_name=example_ynh&template_owner=YunoHost) button on "
-"the Github repo"
-msgstr ""
-
-#: templates/README.md.j2:5
-msgid "Edit the `manifest.toml` with app specific info"
-msgstr ""
-
-#: templates/README.md.j2:6
-msgid ""
-"Edit the `install`, `upgrade`, `remove`, `backup` and `restore` scripts, and "
-"any relevant conf files in `conf/`"
-msgstr ""
-
-#: templates/README.md.j2:7
-msgid ""
-"Using the [script helpers documentation](https://yunohost.org/"
-"packaging_apps_helpers)"
-msgstr ""
-
-#: templates/README.md.j2:8
-msgid ""
-"Edit the `change_url` and `config` scripts too, or remove them if you have "
-"no use of them"
-msgstr ""
-
-#: templates/README.md.j2:9
-msgid "Add a `LICENSE` file for the package."
-msgstr ""
-
-#: templates/README.md.j2:10
-msgid ""
-"NB: this `LICENSE` file is not meant to necessarily be the same LICENSE as "
-"the upstream app - it is only the LICENSE you want this package's code to "
-"published with and you can choose it freely! (If you don't know which to "
-"choose, we recommend [the AGPL-3](https://www.gnu.org/licenses/agpl-3.0.txt))"
-msgstr ""
-
-#: templates/README.md.j2:11
-msgid ""
-"Edit files under the `doc/` directory ([see the page about documenting "
-"packages](https://yunohost.org/packaging_app_doc))"
-msgstr ""
-
-#: templates/README.md.j2:12
-msgid ""
-"The `README.md` files are to be automatically generated by "
-msgstr ""
-
-#: templates/README.md.j2:18
-msgid ""
-"N.B.: This README was automatically generated by \n"
-"It shall NOT be edited by hand."
-msgstr ""
-
-#: templates/README.md.j2:22
-#, python-format
-msgid "%(application_name)s for YunoHost"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Integration level"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Working status"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Maintenance status"
-msgstr ""
-
-#: templates/README.md.j2:26
-#, python-format
-msgid "Install %(application_name)s with YunoHost"
-msgstr ""
-
-#: templates/README.md.j2:28
-msgid "Read this README in other languages."
-msgstr ""
-
-#: templates/README.md.j2:30
-#, python-format
-msgid ""
-"This package allows you to install %(application_name)s quickly and simply "
-"on a YunoHost server."
-msgstr ""
-
-#: templates/README.md.j2:31
-msgid ""
-"If you don't have YunoHost, please consult [the guide](https://yunohost.org/"
-"install) to learn how to install it."
-msgstr ""
-
-#: templates/README.md.j2:33
-msgid "Overview"
-msgstr ""
-
-#: templates/README.md.j2:37
-msgid "Shipped version:"
-msgstr ""
-
-#: templates/README.md.j2:41
-msgid "Demo:"
-msgstr ""
-
-#: templates/README.md.j2:45
-msgid "Screenshots"
-msgstr ""
-
-#: templates/README.md.j2:48
-#, python-format
-msgid "Screenshot of %(application_name)s"
-msgstr ""
-
-#: templates/README.md.j2:53
-msgid "Disclaimers / important information"
-msgstr ""
-
-#: templates/README.md.j2:59
-msgid "Antifeatures"
-msgstr ""
-
-#: templates/README.md.j2:66
-msgid "Documentation and resources"
-msgstr ""
-
-#: templates/README.md.j2:68
-msgid "Official app website:"
-msgstr ""
-
-#: templates/README.md.j2:70
-msgid "Official user documentation:"
-msgstr ""
-
-#: templates/README.md.j2:72
-msgid "Official admin documentation:"
-msgstr ""
-
-#: templates/README.md.j2:74
-msgid "Upstream app code repository:"
-msgstr ""
-
-#: templates/README.md.j2:76
-msgid "YunoHost Store:"
-msgstr ""
-
-#: templates/README.md.j2:77
-msgid "Report a bug:"
-msgstr ""
-
-#: templates/README.md.j2:79
-msgid "Developer info"
-msgstr ""
-
-#: templates/README.md.j2:81
-#, python-format
-msgid ""
-"Please send your pull request to the [`testing` branch]"
-"(%(testing_branch_url)s)."
-msgstr ""
-
-#: templates/README.md.j2:83
-msgid "To try the `testing` branch, please proceed like that:"
-msgstr ""
-
-#: templates/README.md.j2:87
-msgid "or"
-msgstr ""
-
-#: templates/README.md.j2:91
-msgid "More info regarding app packaging:"
-msgstr ""
diff --git a/readme_generator/translations/fr/LC_MESSAGES/messages.mo b/readme_generator/translations/fr/LC_MESSAGES/messages.mo
deleted file mode 100644
index bd15d94f..00000000
Binary files a/readme_generator/translations/fr/LC_MESSAGES/messages.mo and /dev/null differ
diff --git a/readme_generator/translations/fr/LC_MESSAGES/messages.po b/readme_generator/translations/fr/LC_MESSAGES/messages.po
deleted file mode 100644
index f2425c87..00000000
--- a/readme_generator/translations/fr/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,244 +0,0 @@
-# French translations for PROJECT.
-# Copyright (C) 2024 ORGANIZATION
-# This file is distributed under the same license as the PROJECT project.
-# FIRST AUTHOR , 2024.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PROJECT VERSION\n"
-"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2024-03-31 19:33+0200\n"
-"PO-Revision-Date: 2024-03-31 19:17+0000\n"
-"Last-Translator: OniriCorpe \n"
-"Language-Team: French \n"
-"Language: fr\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: Weblate 5.3.1\n"
-"Generated-By: Babel 2.14.0\n"
-
-#: templates/ALL_README.md.j2:11
-#, python-format
-msgid "Read the README in %(language)s"
-msgstr "Lire le README en %(language)s"
-
-#: templates/README.md.j2:2
-msgid "Packaging an app, starting from this example"
-msgstr "Packager une application, à partir de cet exemple"
-
-#: templates/README.md.j2:4
-msgid ""
-"Copy this app before working on it, using the ['Use this template'](https://"
-"github.com/new?template_name=example_ynh&template_owner=YunoHost) button on "
-"the Github repo"
-msgstr ""
-"Copiez cette application avant de travailler dessus, en utilisant le bouton "
-"['Utilisez ce template'](https://github.com/new?"
-"template_name=example_ynh&template_owner=YunoHost) sur ce dépôt Github"
-
-#: templates/README.md.j2:5
-msgid "Edit the `manifest.toml` with app specific info"
-msgstr ""
-"Éditez le `manifest.toml` avec les informations spécifiques à cette "
-"application"
-
-#: templates/README.md.j2:6
-msgid ""
-"Edit the `install`, `upgrade`, `remove`, `backup` and `restore` scripts, and "
-"any relevant conf files in `conf/`"
-msgstr ""
-"Éditez les scripts `install`, `upgrade`, `remove`, `backup` et `restore` "
-"ainsi que tous les fichiers de configurations pertinents dans `conf/`"
-
-#: templates/README.md.j2:7
-msgid ""
-"Using the [script helpers documentation](https://yunohost.org/"
-"packaging_apps_helpers)"
-msgstr ""
-"Utilisez la [documentation des helpers](https://yunohost.org/"
-"packaging_apps_helpers)"
-
-#: templates/README.md.j2:8
-msgid ""
-"Edit the `change_url` and `config` scripts too, or remove them if you have "
-"no use of them"
-msgstr ""
-"Modifiez également les scripts `change_url` et `config`, ou supprimez-les si "
-"vous n'en avez pas l'utilité"
-
-#: templates/README.md.j2:9
-msgid "Add a `LICENSE` file for the package."
-msgstr "Ajoutez un fichier `LICENCE` for le paquet."
-
-#: templates/README.md.j2:10
-msgid ""
-"NB: this `LICENSE` file is not meant to necessarily be the same LICENSE as "
-"the upstream app - it is only the LICENSE you want this package's code to "
-"published with and you can choose it freely! (If you don't know which to "
-"choose, we recommend [the AGPL-3](https://www.gnu.org/licenses/agpl-3.0.txt))"
-msgstr ""
-"NB : ce fichier `LICENSE` ne doit pas nécessairement être identique à la "
-"LICENCE de l'application packagée ; c'est seulement la LICENCE avec laquelle "
-"vous voulez que le code de ce paquet soit publié et vos pouvez librement la "
-"choisir ! (Si vous ne savez pas laquelle choisir, nous recommandons "
-"[l'AGPL-3](https://www.gnu.org/licenses/agpl-3.0.txt))"
-
-#: templates/README.md.j2:11
-msgid ""
-"Edit files under the `doc/` directory ([see the page about documenting "
-"packages](https://yunohost.org/packaging_app_doc))"
-msgstr ""
-"Modifiez les fichiers du dossier `doc/` ([voir la page concernant la "
-"documentation des packages](https://yunohost.org/packaging_app_doc))"
-
-#: templates/README.md.j2:12
-msgid ""
-"The `README.md` files are to be automatically generated by "
-msgstr ""
-"Les fichiers `README.md` sont automatiquement généré par "
-
-#: templates/README.md.j2:18
-msgid ""
-"N.B.: This README was automatically generated by \n"
-"It shall NOT be edited by hand."
-msgstr ""
-"Nota bene : ce README est automatiquement généré par \n"
-"Il NE doit PAS être modifié à la main."
-
-#: templates/README.md.j2:22
-#, python-format
-msgid "%(application_name)s for YunoHost"
-msgstr "%(application_name)s pour YunoHost"
-
-#: templates/README.md.j2:24
-msgid "Integration level"
-msgstr "Niveau d’intégration"
-
-#: templates/README.md.j2:24
-msgid "Working status"
-msgstr "Statut du fonctionnement"
-
-#: templates/README.md.j2:24
-msgid "Maintenance status"
-msgstr "Statut de maintenance"
-
-#: templates/README.md.j2:26
-#, python-format
-msgid "Install %(application_name)s with YunoHost"
-msgstr "Installer %(application_name)s avec YunoHost"
-
-#: templates/README.md.j2:28
-msgid "Read this README in other languages."
-msgstr "Lire le README dans d'autres langues."
-
-#: templates/README.md.j2:30
-#, python-format
-msgid ""
-"This package allows you to install %(application_name)s quickly and simply "
-"on a YunoHost server."
-msgstr ""
-"Ce package vous permet d’installer %(application_name)s rapidement et "
-"simplement sur un serveur YunoHost."
-
-#: templates/README.md.j2:31
-msgid ""
-"If you don't have YunoHost, please consult [the guide](https://yunohost.org/"
-"install) to learn how to install it."
-msgstr ""
-"Si vous n’avez pas YunoHost, consultez [ce guide](https://yunohost.org/"
-"install) pour savoir comment l’installer et en profiter."
-
-#: templates/README.md.j2:33
-msgid "Overview"
-msgstr "Vue d’ensemble"
-
-#: templates/README.md.j2:37
-msgid "Shipped version:"
-msgstr "Version incluse :"
-
-#: templates/README.md.j2:41
-msgid "Demo:"
-msgstr "Démo :"
-
-#: templates/README.md.j2:45
-msgid "Screenshots"
-msgstr "Captures d’écran"
-
-#: templates/README.md.j2:48
-#, python-format
-msgid "Screenshot of %(application_name)s"
-msgstr "Capture d’écran de %(application_name)s"
-
-#: templates/README.md.j2:53
-msgid "Disclaimers / important information"
-msgstr "Avertissements / informations importantes"
-
-#: templates/README.md.j2:59
-msgid "Antifeatures"
-msgstr "Anti-fonctionnalités"
-
-#: templates/README.md.j2:66
-msgid "Documentation and resources"
-msgstr "Documentations et ressources"
-
-#: templates/README.md.j2:68
-msgid "Official app website:"
-msgstr "Site officiel de l’app :"
-
-#: templates/README.md.j2:70
-msgid "Official user documentation:"
-msgstr "Documentation officielle utilisateur :"
-
-#: templates/README.md.j2:72
-msgid "Official admin documentation:"
-msgstr "Documentation officielle de l’admin :"
-
-#: templates/README.md.j2:74
-msgid "Upstream app code repository:"
-msgstr "Dépôt de code officiel de l’app :"
-
-#: templates/README.md.j2:76
-msgid "YunoHost Store:"
-msgstr "YunoHost Store :"
-
-#: templates/README.md.j2:77
-msgid "Report a bug:"
-msgstr "Signaler un bug :"
-
-#: templates/README.md.j2:79
-msgid "Developer info"
-msgstr "Informations pour les développeurs"
-
-#: templates/README.md.j2:81
-#, python-format
-msgid ""
-"Please send your pull request to the [`testing` branch]"
-"(%(testing_branch_url)s)."
-msgstr ""
-"Merci de faire vos pull request sur la [branche `testing`]"
-"(%(testing_branch_url)s)."
-
-#: templates/README.md.j2:83
-msgid "To try the `testing` branch, please proceed like that:"
-msgstr "Pour essayer la branche `testing`, procédez comme suit :"
-
-#: templates/README.md.j2:87
-msgid "or"
-msgstr "ou"
-
-#: templates/README.md.j2:91
-msgid "More info regarding app packaging:"
-msgstr "Plus d’infos sur le packaging d’applications :"
-
-#~ msgid "Edit files under the `doc/` directory"
-#~ msgstr "Modifier des fichiers dans le dossier `doc/`"
-
-#~ msgid "Edit `doc/DISCLAIMER*.md`"
-#~ msgstr "Éditez `doc/DISCLAIMER*.md`"
diff --git a/readme_generator/translations/gl/LC_MESSAGES/messages.mo b/readme_generator/translations/gl/LC_MESSAGES/messages.mo
deleted file mode 100644
index a10229ca..00000000
Binary files a/readme_generator/translations/gl/LC_MESSAGES/messages.mo and /dev/null differ
diff --git a/readme_generator/translations/gl/LC_MESSAGES/messages.po b/readme_generator/translations/gl/LC_MESSAGES/messages.po
deleted file mode 100644
index 6b80b0a3..00000000
--- a/readme_generator/translations/gl/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,239 +0,0 @@
-# Translations template for PROJECT.
-# Copyright (C) 2024 ORGANIZATION
-# This file is distributed under the same license as the PROJECT project.
-# FIRST AUTHOR , 2024.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PROJECT VERSION\n"
-"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2024-03-31 19:33+0200\n"
-"PO-Revision-Date: 2024-08-22 04:54+0000\n"
-"Last-Translator: \"José M.\" \n"
-"Language-Team: Galician \n"
-"Language: gl\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 5.4.3\n"
-"Generated-By: Babel 2.14.0\n"
-
-#: templates/ALL_README.md.j2:11
-#, python-format
-msgid "Read the README in %(language)s"
-msgstr "Le o README en %(language)s"
-
-#: templates/README.md.j2:2
-msgid "Packaging an app, starting from this example"
-msgstr "A empaquetar unha app, mira este exemplo"
-
-#: templates/README.md.j2:4
-msgid ""
-"Copy this app before working on it, using the ['Use this template'](https://"
-"github.com/new?template_name=example_ynh&template_owner=YunoHost) button on "
-"the Github repo"
-msgstr ""
-"Copia esta app antes de traballar nela, usando o botón ['Usa este modelo']"
-"(https://github.com/new?template_name=example_ynh&template_owner=YunoHost) "
-"no repo en Github"
-
-#: templates/README.md.j2:5
-msgid "Edit the `manifest.toml` with app specific info"
-msgstr "Edita o `manifest.toml` con información específica da app"
-
-#: templates/README.md.j2:6
-msgid ""
-"Edit the `install`, `upgrade`, `remove`, `backup` and `restore` scripts, and "
-"any relevant conf files in `conf/`"
-msgstr ""
-"Edita os scripts `install`, `upgrade`, `remove`, `backup` e `restore`, así "
-"como os ficheiros conf necesarios en `conf/`"
-
-#: templates/README.md.j2:7
-msgid ""
-"Using the [script helpers documentation](https://yunohost.org/"
-"packaging_apps_helpers)"
-msgstr ""
-"Usar a [documentación dos asistentes para scripts](https://yunohost.org/"
-"packaging_apps_helpers)"
-
-#: templates/README.md.j2:8
-msgid ""
-"Edit the `change_url` and `config` scripts too, or remove them if you have "
-"no use of them"
-msgstr ""
-"Editar tamén os scripts `change_url` e `config` , ou eliminalos se non os "
-"usaches"
-
-#: templates/README.md.j2:9
-msgid "Add a `LICENSE` file for the package."
-msgstr "Engade un ficheiro `LICENSE` para o paquete."
-
-#: templates/README.md.j2:10
-msgid ""
-"NB: this `LICENSE` file is not meant to necessarily be the same LICENSE as "
-"the upstream app - it is only the LICENSE you want this package's code to "
-"published with and you can choose it freely! (If you don't know which to "
-"choose, we recommend [the AGPL-3](https://www.gnu.org/licenses/agpl-3.0.txt))"
-msgstr ""
-"Nota: este ficheiro `LICENSE` non ten que ser necesariamente o LICENSE da "
-"app da que procede - só é a LICENZA coa que queres publicar o código deste "
-"paquete. Podes elixir libremente! (Se non o tes claro, recomendamos usar a "
-"licenza [AGPL-3](https://www.gnu.org/licenses/agpl-3.0.txt))"
-
-#: templates/README.md.j2:11
-msgid ""
-"Edit files under the `doc/` directory ([see the page about documenting "
-"packages](https://yunohost.org/packaging_app_doc))"
-msgstr ""
-"Editar os ficheiros dentro do directorio `doc/` ([le a páxina acerca de "
-"documentar os paquetes](https://yunohost.org/packaging_app_doc))"
-
-#: templates/README.md.j2:12
-msgid ""
-"The `README.md` files are to be automatically generated by "
-msgstr ""
-"Os ficheiros `README.md` créanse automáticamente con "
-
-#: templates/README.md.j2:18
-msgid ""
-"N.B.: This README was automatically generated by \n"
-"It shall NOT be edited by hand."
-msgstr ""
-"NOTA: Este README foi creado automáticamente por \n"
-"NON debe editarse manualmente."
-
-#: templates/README.md.j2:22
-#, python-format
-msgid "%(application_name)s for YunoHost"
-msgstr "%(application_name)s para YunoHost"
-
-#: templates/README.md.j2:24
-msgid "Integration level"
-msgstr "Nivel de integración"
-
-#: templates/README.md.j2:24
-msgid "Working status"
-msgstr "Estado de funcionamento"
-
-#: templates/README.md.j2:24
-msgid "Maintenance status"
-msgstr "Estado de mantemento"
-
-#: templates/README.md.j2:26
-#, python-format
-msgid "Install %(application_name)s with YunoHost"
-msgstr "Instalar %(application_name)s con YunoHost"
-
-#: templates/README.md.j2:28
-msgid "Read this README in other languages."
-msgstr "Le este README en outros idiomas."
-
-#: templates/README.md.j2:30
-#, python-format
-msgid ""
-"This package allows you to install %(application_name)s quickly and simply "
-"on a YunoHost server."
-msgstr ""
-"Este paquete permíteche instalar %(application_name)s de xeito rápido e "
-"doado nun servidor YunoHost."
-
-#: templates/README.md.j2:31
-msgid ""
-"If you don't have YunoHost, please consult [the guide](https://yunohost.org/"
-"install) to learn how to install it."
-msgstr ""
-"Se non usas YunoHost, le a [documentación](https://yunohost.org/install) "
-"para saber como instalalo."
-
-#: templates/README.md.j2:33
-msgid "Overview"
-msgstr "Vista xeral"
-
-#: templates/README.md.j2:37
-msgid "Shipped version:"
-msgstr "Versión proporcionada:"
-
-#: templates/README.md.j2:41
-msgid "Demo:"
-msgstr "Demo:"
-
-#: templates/README.md.j2:45
-msgid "Screenshots"
-msgstr "Capturas de pantalla"
-
-#: templates/README.md.j2:48
-#, python-format
-msgid "Screenshot of %(application_name)s"
-msgstr "Captura de pantalla de %(application_name)s"
-
-#: templates/README.md.j2:53
-msgid "Disclaimers / important information"
-msgstr "Avisos / información importante"
-
-#: templates/README.md.j2:59
-msgid "Antifeatures"
-msgstr "Debes considerar"
-
-#: templates/README.md.j2:66
-msgid "Documentation and resources"
-msgstr "Documentación e recursos"
-
-#: templates/README.md.j2:68
-msgid "Official app website:"
-msgstr "Web oficial da app:"
-
-#: templates/README.md.j2:70
-msgid "Official user documentation:"
-msgstr "Documentación oficial para usuarias:"
-
-#: templates/README.md.j2:72
-msgid "Official admin documentation:"
-msgstr "Documentación oficial para admin:"
-
-#: templates/README.md.j2:74
-msgid "Upstream app code repository:"
-msgstr "Repositorio de orixe do código:"
-
-#: templates/README.md.j2:76
-msgid "YunoHost Store:"
-msgstr "Tenda YunoHost:"
-
-#: templates/README.md.j2:77
-msgid "Report a bug:"
-msgstr "Informar dun problema:"
-
-#: templates/README.md.j2:79
-msgid "Developer info"
-msgstr "Info de desenvolvemento"
-
-#: templates/README.md.j2:81
-#, python-format
-msgid ""
-"Please send your pull request to the [`testing` branch]"
-"(%(testing_branch_url)s)."
-msgstr "Envía a túa colaboración á [rama `testing`](%(testing_branch_url)s)."
-
-#: templates/README.md.j2:83
-msgid "To try the `testing` branch, please proceed like that:"
-msgstr "Para probar a rama `testing`, procede deste xeito:"
-
-#: templates/README.md.j2:87
-msgid "or"
-msgstr "ou"
-
-#: templates/README.md.j2:91
-msgid "More info regarding app packaging:"
-msgstr "Máis info sobre o empaquetado da app:"
-
-#~ msgid "Edit files under the `doc/` directory"
-#~ msgstr "Editar os ficheiros dentro do directorio `doc/`"
-
-#~ msgid "Edit `doc/DISCLAIMER*.md`"
-#~ msgstr "Edita `doc/DISCLAIMER*.md`"
diff --git a/readme_generator/translations/he/LC_MESSAGES/messages.mo b/readme_generator/translations/he/LC_MESSAGES/messages.mo
deleted file mode 100644
index 9866e477..00000000
Binary files a/readme_generator/translations/he/LC_MESSAGES/messages.mo and /dev/null differ
diff --git a/readme_generator/translations/he/LC_MESSAGES/messages.po b/readme_generator/translations/he/LC_MESSAGES/messages.po
deleted file mode 100644
index 16078acc..00000000
--- a/readme_generator/translations/he/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,206 +0,0 @@
-# Translations template for PROJECT.
-# Copyright (C) 2024 ORGANIZATION
-# This file is distributed under the same license as the PROJECT project.
-# FIRST AUTHOR , 2024.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PROJECT VERSION\n"
-"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2024-03-31 19:33+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: he\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.14.0\n"
-
-#: templates/ALL_README.md.j2:11
-#, python-format
-msgid "Read the README in %(language)s"
-msgstr ""
-
-#: templates/README.md.j2:2
-msgid "Packaging an app, starting from this example"
-msgstr ""
-
-#: templates/README.md.j2:4
-msgid ""
-"Copy this app before working on it, using the ['Use this template'](https://"
-"github.com/new?template_name=example_ynh&template_owner=YunoHost) button on "
-"the Github repo"
-msgstr ""
-
-#: templates/README.md.j2:5
-msgid "Edit the `manifest.toml` with app specific info"
-msgstr ""
-
-#: templates/README.md.j2:6
-msgid ""
-"Edit the `install`, `upgrade`, `remove`, `backup` and `restore` scripts, and "
-"any relevant conf files in `conf/`"
-msgstr ""
-
-#: templates/README.md.j2:7
-msgid ""
-"Using the [script helpers documentation](https://yunohost.org/"
-"packaging_apps_helpers)"
-msgstr ""
-
-#: templates/README.md.j2:8
-msgid ""
-"Edit the `change_url` and `config` scripts too, or remove them if you have "
-"no use of them"
-msgstr ""
-
-#: templates/README.md.j2:9
-msgid "Add a `LICENSE` file for the package."
-msgstr ""
-
-#: templates/README.md.j2:10
-msgid ""
-"NB: this `LICENSE` file is not meant to necessarily be the same LICENSE as "
-"the upstream app - it is only the LICENSE you want this package's code to "
-"published with and you can choose it freely! (If you don't know which to "
-"choose, we recommend [the AGPL-3](https://www.gnu.org/licenses/agpl-3.0.txt))"
-msgstr ""
-
-#: templates/README.md.j2:11
-msgid ""
-"Edit files under the `doc/` directory ([see the page about documenting "
-"packages](https://yunohost.org/packaging_app_doc))"
-msgstr ""
-
-#: templates/README.md.j2:12
-msgid ""
-"The `README.md` files are to be automatically generated by "
-msgstr ""
-
-#: templates/README.md.j2:18
-msgid ""
-"N.B.: This README was automatically generated by \n"
-"It shall NOT be edited by hand."
-msgstr ""
-
-#: templates/README.md.j2:22
-#, python-format
-msgid "%(application_name)s for YunoHost"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Integration level"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Working status"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Maintenance status"
-msgstr ""
-
-#: templates/README.md.j2:26
-#, python-format
-msgid "Install %(application_name)s with YunoHost"
-msgstr ""
-
-#: templates/README.md.j2:28
-msgid "Read this README in other languages."
-msgstr ""
-
-#: templates/README.md.j2:30
-#, python-format
-msgid ""
-"This package allows you to install %(application_name)s quickly and simply "
-"on a YunoHost server."
-msgstr ""
-
-#: templates/README.md.j2:31
-msgid ""
-"If you don't have YunoHost, please consult [the guide](https://yunohost.org/"
-"install) to learn how to install it."
-msgstr ""
-
-#: templates/README.md.j2:33
-msgid "Overview"
-msgstr ""
-
-#: templates/README.md.j2:37
-msgid "Shipped version:"
-msgstr ""
-
-#: templates/README.md.j2:41
-msgid "Demo:"
-msgstr ""
-
-#: templates/README.md.j2:45
-msgid "Screenshots"
-msgstr ""
-
-#: templates/README.md.j2:48
-#, python-format
-msgid "Screenshot of %(application_name)s"
-msgstr ""
-
-#: templates/README.md.j2:53
-msgid "Disclaimers / important information"
-msgstr ""
-
-#: templates/README.md.j2:59
-msgid "Antifeatures"
-msgstr ""
-
-#: templates/README.md.j2:66
-msgid "Documentation and resources"
-msgstr ""
-
-#: templates/README.md.j2:68
-msgid "Official app website:"
-msgstr ""
-
-#: templates/README.md.j2:70
-msgid "Official user documentation:"
-msgstr ""
-
-#: templates/README.md.j2:72
-msgid "Official admin documentation:"
-msgstr ""
-
-#: templates/README.md.j2:74
-msgid "Upstream app code repository:"
-msgstr ""
-
-#: templates/README.md.j2:76
-msgid "YunoHost Store:"
-msgstr ""
-
-#: templates/README.md.j2:77
-msgid "Report a bug:"
-msgstr ""
-
-#: templates/README.md.j2:79
-msgid "Developer info"
-msgstr ""
-
-#: templates/README.md.j2:81
-#, python-format
-msgid ""
-"Please send your pull request to the [`testing` branch]"
-"(%(testing_branch_url)s)."
-msgstr ""
-
-#: templates/README.md.j2:83
-msgid "To try the `testing` branch, please proceed like that:"
-msgstr ""
-
-#: templates/README.md.j2:87
-msgid "or"
-msgstr ""
-
-#: templates/README.md.j2:91
-msgid "More info regarding app packaging:"
-msgstr ""
diff --git a/readme_generator/translations/hi/LC_MESSAGES/messages.mo b/readme_generator/translations/hi/LC_MESSAGES/messages.mo
deleted file mode 100644
index ce65ef01..00000000
Binary files a/readme_generator/translations/hi/LC_MESSAGES/messages.mo and /dev/null differ
diff --git a/readme_generator/translations/hi/LC_MESSAGES/messages.po b/readme_generator/translations/hi/LC_MESSAGES/messages.po
deleted file mode 100644
index 5a582c24..00000000
--- a/readme_generator/translations/hi/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,206 +0,0 @@
-# Translations template for PROJECT.
-# Copyright (C) 2024 ORGANIZATION
-# This file is distributed under the same license as the PROJECT project.
-# FIRST AUTHOR , 2024.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PROJECT VERSION\n"
-"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2024-03-31 19:33+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: hi\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.14.0\n"
-
-#: templates/ALL_README.md.j2:11
-#, python-format
-msgid "Read the README in %(language)s"
-msgstr ""
-
-#: templates/README.md.j2:2
-msgid "Packaging an app, starting from this example"
-msgstr ""
-
-#: templates/README.md.j2:4
-msgid ""
-"Copy this app before working on it, using the ['Use this template'](https://"
-"github.com/new?template_name=example_ynh&template_owner=YunoHost) button on "
-"the Github repo"
-msgstr ""
-
-#: templates/README.md.j2:5
-msgid "Edit the `manifest.toml` with app specific info"
-msgstr ""
-
-#: templates/README.md.j2:6
-msgid ""
-"Edit the `install`, `upgrade`, `remove`, `backup` and `restore` scripts, and "
-"any relevant conf files in `conf/`"
-msgstr ""
-
-#: templates/README.md.j2:7
-msgid ""
-"Using the [script helpers documentation](https://yunohost.org/"
-"packaging_apps_helpers)"
-msgstr ""
-
-#: templates/README.md.j2:8
-msgid ""
-"Edit the `change_url` and `config` scripts too, or remove them if you have "
-"no use of them"
-msgstr ""
-
-#: templates/README.md.j2:9
-msgid "Add a `LICENSE` file for the package."
-msgstr ""
-
-#: templates/README.md.j2:10
-msgid ""
-"NB: this `LICENSE` file is not meant to necessarily be the same LICENSE as "
-"the upstream app - it is only the LICENSE you want this package's code to "
-"published with and you can choose it freely! (If you don't know which to "
-"choose, we recommend [the AGPL-3](https://www.gnu.org/licenses/agpl-3.0.txt))"
-msgstr ""
-
-#: templates/README.md.j2:11
-msgid ""
-"Edit files under the `doc/` directory ([see the page about documenting "
-"packages](https://yunohost.org/packaging_app_doc))"
-msgstr ""
-
-#: templates/README.md.j2:12
-msgid ""
-"The `README.md` files are to be automatically generated by "
-msgstr ""
-
-#: templates/README.md.j2:18
-msgid ""
-"N.B.: This README was automatically generated by \n"
-"It shall NOT be edited by hand."
-msgstr ""
-
-#: templates/README.md.j2:22
-#, python-format
-msgid "%(application_name)s for YunoHost"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Integration level"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Working status"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Maintenance status"
-msgstr ""
-
-#: templates/README.md.j2:26
-#, python-format
-msgid "Install %(application_name)s with YunoHost"
-msgstr ""
-
-#: templates/README.md.j2:28
-msgid "Read this README in other languages."
-msgstr ""
-
-#: templates/README.md.j2:30
-#, python-format
-msgid ""
-"This package allows you to install %(application_name)s quickly and simply "
-"on a YunoHost server."
-msgstr ""
-
-#: templates/README.md.j2:31
-msgid ""
-"If you don't have YunoHost, please consult [the guide](https://yunohost.org/"
-"install) to learn how to install it."
-msgstr ""
-
-#: templates/README.md.j2:33
-msgid "Overview"
-msgstr ""
-
-#: templates/README.md.j2:37
-msgid "Shipped version:"
-msgstr ""
-
-#: templates/README.md.j2:41
-msgid "Demo:"
-msgstr ""
-
-#: templates/README.md.j2:45
-msgid "Screenshots"
-msgstr ""
-
-#: templates/README.md.j2:48
-#, python-format
-msgid "Screenshot of %(application_name)s"
-msgstr ""
-
-#: templates/README.md.j2:53
-msgid "Disclaimers / important information"
-msgstr ""
-
-#: templates/README.md.j2:59
-msgid "Antifeatures"
-msgstr ""
-
-#: templates/README.md.j2:66
-msgid "Documentation and resources"
-msgstr ""
-
-#: templates/README.md.j2:68
-msgid "Official app website:"
-msgstr ""
-
-#: templates/README.md.j2:70
-msgid "Official user documentation:"
-msgstr ""
-
-#: templates/README.md.j2:72
-msgid "Official admin documentation:"
-msgstr ""
-
-#: templates/README.md.j2:74
-msgid "Upstream app code repository:"
-msgstr ""
-
-#: templates/README.md.j2:76
-msgid "YunoHost Store:"
-msgstr ""
-
-#: templates/README.md.j2:77
-msgid "Report a bug:"
-msgstr ""
-
-#: templates/README.md.j2:79
-msgid "Developer info"
-msgstr ""
-
-#: templates/README.md.j2:81
-#, python-format
-msgid ""
-"Please send your pull request to the [`testing` branch]"
-"(%(testing_branch_url)s)."
-msgstr ""
-
-#: templates/README.md.j2:83
-msgid "To try the `testing` branch, please proceed like that:"
-msgstr ""
-
-#: templates/README.md.j2:87
-msgid "or"
-msgstr ""
-
-#: templates/README.md.j2:91
-msgid "More info regarding app packaging:"
-msgstr ""
diff --git a/readme_generator/translations/hu/LC_MESSAGES/messages.mo b/readme_generator/translations/hu/LC_MESSAGES/messages.mo
deleted file mode 100644
index f9d7f548..00000000
Binary files a/readme_generator/translations/hu/LC_MESSAGES/messages.mo and /dev/null differ
diff --git a/readme_generator/translations/hu/LC_MESSAGES/messages.po b/readme_generator/translations/hu/LC_MESSAGES/messages.po
deleted file mode 100644
index 0f5bcd06..00000000
--- a/readme_generator/translations/hu/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,206 +0,0 @@
-# Translations template for PROJECT.
-# Copyright (C) 2024 ORGANIZATION
-# This file is distributed under the same license as the PROJECT project.
-# FIRST AUTHOR , 2024.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PROJECT VERSION\n"
-"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2024-03-31 19:33+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: hu\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.14.0\n"
-
-#: templates/ALL_README.md.j2:11
-#, python-format
-msgid "Read the README in %(language)s"
-msgstr ""
-
-#: templates/README.md.j2:2
-msgid "Packaging an app, starting from this example"
-msgstr ""
-
-#: templates/README.md.j2:4
-msgid ""
-"Copy this app before working on it, using the ['Use this template'](https://"
-"github.com/new?template_name=example_ynh&template_owner=YunoHost) button on "
-"the Github repo"
-msgstr ""
-
-#: templates/README.md.j2:5
-msgid "Edit the `manifest.toml` with app specific info"
-msgstr ""
-
-#: templates/README.md.j2:6
-msgid ""
-"Edit the `install`, `upgrade`, `remove`, `backup` and `restore` scripts, and "
-"any relevant conf files in `conf/`"
-msgstr ""
-
-#: templates/README.md.j2:7
-msgid ""
-"Using the [script helpers documentation](https://yunohost.org/"
-"packaging_apps_helpers)"
-msgstr ""
-
-#: templates/README.md.j2:8
-msgid ""
-"Edit the `change_url` and `config` scripts too, or remove them if you have "
-"no use of them"
-msgstr ""
-
-#: templates/README.md.j2:9
-msgid "Add a `LICENSE` file for the package."
-msgstr ""
-
-#: templates/README.md.j2:10
-msgid ""
-"NB: this `LICENSE` file is not meant to necessarily be the same LICENSE as "
-"the upstream app - it is only the LICENSE you want this package's code to "
-"published with and you can choose it freely! (If you don't know which to "
-"choose, we recommend [the AGPL-3](https://www.gnu.org/licenses/agpl-3.0.txt))"
-msgstr ""
-
-#: templates/README.md.j2:11
-msgid ""
-"Edit files under the `doc/` directory ([see the page about documenting "
-"packages](https://yunohost.org/packaging_app_doc))"
-msgstr ""
-
-#: templates/README.md.j2:12
-msgid ""
-"The `README.md` files are to be automatically generated by "
-msgstr ""
-
-#: templates/README.md.j2:18
-msgid ""
-"N.B.: This README was automatically generated by \n"
-"It shall NOT be edited by hand."
-msgstr ""
-
-#: templates/README.md.j2:22
-#, python-format
-msgid "%(application_name)s for YunoHost"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Integration level"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Working status"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Maintenance status"
-msgstr ""
-
-#: templates/README.md.j2:26
-#, python-format
-msgid "Install %(application_name)s with YunoHost"
-msgstr ""
-
-#: templates/README.md.j2:28
-msgid "Read this README in other languages."
-msgstr ""
-
-#: templates/README.md.j2:30
-#, python-format
-msgid ""
-"This package allows you to install %(application_name)s quickly and simply "
-"on a YunoHost server."
-msgstr ""
-
-#: templates/README.md.j2:31
-msgid ""
-"If you don't have YunoHost, please consult [the guide](https://yunohost.org/"
-"install) to learn how to install it."
-msgstr ""
-
-#: templates/README.md.j2:33
-msgid "Overview"
-msgstr ""
-
-#: templates/README.md.j2:37
-msgid "Shipped version:"
-msgstr ""
-
-#: templates/README.md.j2:41
-msgid "Demo:"
-msgstr ""
-
-#: templates/README.md.j2:45
-msgid "Screenshots"
-msgstr ""
-
-#: templates/README.md.j2:48
-#, python-format
-msgid "Screenshot of %(application_name)s"
-msgstr ""
-
-#: templates/README.md.j2:53
-msgid "Disclaimers / important information"
-msgstr ""
-
-#: templates/README.md.j2:59
-msgid "Antifeatures"
-msgstr ""
-
-#: templates/README.md.j2:66
-msgid "Documentation and resources"
-msgstr ""
-
-#: templates/README.md.j2:68
-msgid "Official app website:"
-msgstr ""
-
-#: templates/README.md.j2:70
-msgid "Official user documentation:"
-msgstr ""
-
-#: templates/README.md.j2:72
-msgid "Official admin documentation:"
-msgstr ""
-
-#: templates/README.md.j2:74
-msgid "Upstream app code repository:"
-msgstr ""
-
-#: templates/README.md.j2:76
-msgid "YunoHost Store:"
-msgstr ""
-
-#: templates/README.md.j2:77
-msgid "Report a bug:"
-msgstr ""
-
-#: templates/README.md.j2:79
-msgid "Developer info"
-msgstr ""
-
-#: templates/README.md.j2:81
-#, python-format
-msgid ""
-"Please send your pull request to the [`testing` branch]"
-"(%(testing_branch_url)s)."
-msgstr ""
-
-#: templates/README.md.j2:83
-msgid "To try the `testing` branch, please proceed like that:"
-msgstr ""
-
-#: templates/README.md.j2:87
-msgid "or"
-msgstr ""
-
-#: templates/README.md.j2:91
-msgid "More info regarding app packaging:"
-msgstr ""
diff --git a/readme_generator/translations/id/LC_MESSAGES/messages.mo b/readme_generator/translations/id/LC_MESSAGES/messages.mo
deleted file mode 100644
index b840eaf3..00000000
Binary files a/readme_generator/translations/id/LC_MESSAGES/messages.mo and /dev/null differ
diff --git a/readme_generator/translations/id/LC_MESSAGES/messages.po b/readme_generator/translations/id/LC_MESSAGES/messages.po
deleted file mode 100644
index 546f4d75..00000000
--- a/readme_generator/translations/id/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,234 +0,0 @@
-# Translations template for PROJECT.
-# Copyright (C) 2024 ORGANIZATION
-# This file is distributed under the same license as the PROJECT project.
-# FIRST AUTHOR , 2024.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PROJECT VERSION\n"
-"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2024-03-31 19:33+0200\n"
-"PO-Revision-Date: 2024-07-27 02:54+0000\n"
-"Last-Translator: cjdw \n"
-"Language-Team: Indonesian \n"
-"Language: id\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Weblate 5.4.3\n"
-"Generated-By: Babel 2.14.0\n"
-
-#: templates/ALL_README.md.j2:11
-#, python-format
-msgid "Read the README in %(language)s"
-msgstr "Baca README dalam bahasa %(language)s"
-
-#: templates/README.md.j2:2
-msgid "Packaging an app, starting from this example"
-msgstr "Memaket satu aplikasi, dimulai dari contoh ini"
-
-#: templates/README.md.j2:4
-msgid ""
-"Copy this app before working on it, using the ['Use this template'](https://"
-"github.com/new?template_name=example_ynh&template_owner=YunoHost) button on "
-"the Github repo"
-msgstr ""
-"Salin aplikasi ini sebelum mengerjakannya, menggunakan tombol ['Gunakan "
-"templat ini'](https://github.com/new?"
-"template_name=example_ynh&template_owner=YunoHost) di repo Github"
-
-#: templates/README.md.j2:5
-msgid "Edit the `manifest.toml` with app specific info"
-msgstr "Edit `manifest.toml` dengan info khas aplikasi"
-
-#: templates/README.md.j2:6
-msgid ""
-"Edit the `install`, `upgrade`, `remove`, `backup` and `restore` scripts, and "
-"any relevant conf files in `conf/`"
-msgstr ""
-"Edit skrip `install`, `upgrade`, `remove`, `backup` and `restore`, dan "
-"setiap berkas conf yang relevan dalam `conf/`"
-
-#: templates/README.md.j2:7
-msgid ""
-"Using the [script helpers documentation](https://yunohost.org/"
-"packaging_apps_helpers)"
-msgstr ""
-"Menggunakan [dokumentasi pembantu skrip](https://yunohost.org/"
-"packaging_apps_helpers)"
-
-#: templates/README.md.j2:8
-msgid ""
-"Edit the `change_url` and `config` scripts too, or remove them if you have "
-"no use of them"
-msgstr ""
-"Juga edit skrip `change_url` dan `config`, atau singkirkan mereka bila Anda "
-"sudah tidak memerlukannya"
-
-#: templates/README.md.j2:9
-msgid "Add a `LICENSE` file for the package."
-msgstr "Tambah berkas `LICENSE` pada paket."
-
-#: templates/README.md.j2:10
-msgid ""
-"NB: this `LICENSE` file is not meant to necessarily be the same LICENSE as "
-"the upstream app - it is only the LICENSE you want this package's code to "
-"published with and you can choose it freely! (If you don't know which to "
-"choose, we recommend [the AGPL-3](https://www.gnu.org/licenses/agpl-3.0.txt))"
-msgstr ""
-"NB: berkas `LICENSE` ini tidak dimaksudkan untuk selalu sama dengan aplikasi "
-"hulu - hanya LICENSE yang Anda inginkan untuk menerbitkan kode paket ini dan "
-"Anda bisa bebas memilihnya! (Bila Anda tidak tahu mana yang harus dipilih, "
-"kami sarankan [the AGPL-3](https://www.gnu.org/licenses/agpl-3.0.txt))"
-
-#: templates/README.md.j2:11
-msgid ""
-"Edit files under the `doc/` directory ([see the page about documenting "
-"packages](https://yunohost.org/packaging_app_doc))"
-msgstr ""
-"Edit berkas di bawah direktori `doc/` ([lihat halaman mengenai "
-"mendokumentasikan paket](https://yunohost.org/packaging_app_doc))"
-
-#: templates/README.md.j2:12
-msgid ""
-"The `README.md` files are to be automatically generated by "
-msgstr ""
-"Berkas `README.md` akan dibuat secara otomatis oleh "
-
-#: templates/README.md.j2:18
-msgid ""
-"N.B.: This README was automatically generated by \n"
-"It shall NOT be edited by hand."
-msgstr ""
-"N.B.: README ini dibuat secara otomatis oleh \n"
-"Ini TIDAK boleh diedit dengan tangan."
-
-#: templates/README.md.j2:22
-#, python-format
-msgid "%(application_name)s for YunoHost"
-msgstr "%(application_name)s untuk YunoHost"
-
-#: templates/README.md.j2:24
-msgid "Integration level"
-msgstr "Tingkat integrasi"
-
-#: templates/README.md.j2:24
-msgid "Working status"
-msgstr "Status kerja"
-
-#: templates/README.md.j2:24
-msgid "Maintenance status"
-msgstr "Status pemeliharaan"
-
-#: templates/README.md.j2:26
-#, python-format
-msgid "Install %(application_name)s with YunoHost"
-msgstr "Pasang %(application_name)s dengan YunoHost"
-
-#: templates/README.md.j2:28
-msgid "Read this README in other languages."
-msgstr "Baca README ini dengan bahasa yang lain."
-
-#: templates/README.md.j2:30
-#, python-format
-msgid ""
-"This package allows you to install %(application_name)s quickly and simply "
-"on a YunoHost server."
-msgstr ""
-"Paket ini memperbolehkan Anda untuk memasang %(application_name)s secara "
-"cepat dan mudah pada server YunoHost."
-
-#: templates/README.md.j2:31
-msgid ""
-"If you don't have YunoHost, please consult [the guide](https://yunohost.org/"
-"install) to learn how to install it."
-msgstr ""
-"Bila Anda tidak mempunyai YunoHost, silakan berkonsultasi dengan [panduan]"
-"(https://yunohost.org/install) untuk mempelajari bagaimana untuk memasangnya."
-
-#: templates/README.md.j2:33
-msgid "Overview"
-msgstr "Ringkasan"
-
-#: templates/README.md.j2:37
-msgid "Shipped version:"
-msgstr "Versi terkirim:"
-
-#: templates/README.md.j2:41
-msgid "Demo:"
-msgstr "Demo:"
-
-#: templates/README.md.j2:45
-msgid "Screenshots"
-msgstr "Tangkapan Layar"
-
-#: templates/README.md.j2:48
-#, python-format
-msgid "Screenshot of %(application_name)s"
-msgstr "Tangkapan Layar pada %(application_name)s"
-
-#: templates/README.md.j2:53
-msgid "Disclaimers / important information"
-msgstr "Sangkalan / informasi penting"
-
-#: templates/README.md.j2:59
-msgid "Antifeatures"
-msgstr "Antifitur"
-
-#: templates/README.md.j2:66
-msgid "Documentation and resources"
-msgstr "Dokumentasi dan sumber daya"
-
-#: templates/README.md.j2:68
-msgid "Official app website:"
-msgstr "Website aplikasi resmi:"
-
-#: templates/README.md.j2:70
-msgid "Official user documentation:"
-msgstr "Dokumentasi pengguna resmi:"
-
-#: templates/README.md.j2:72
-msgid "Official admin documentation:"
-msgstr "Dokumentasi admin resmi:"
-
-#: templates/README.md.j2:74
-msgid "Upstream app code repository:"
-msgstr "Depot kode aplikasi hulu:"
-
-#: templates/README.md.j2:76
-msgid "YunoHost Store:"
-msgstr "Gudang YunoHost:"
-
-#: templates/README.md.j2:77
-msgid "Report a bug:"
-msgstr "Laporkan bug:"
-
-#: templates/README.md.j2:79
-msgid "Developer info"
-msgstr "Info developer"
-
-#: templates/README.md.j2:81
-#, python-format
-msgid ""
-"Please send your pull request to the [`testing` branch]"
-"(%(testing_branch_url)s)."
-msgstr ""
-"Silakan kirim pull request ke [`testing` branch](%(testing_branch_url)s)."
-
-#: templates/README.md.j2:83
-msgid "To try the `testing` branch, please proceed like that:"
-msgstr "Untuk mencoba branch `testing`, silakan dilanjutkan seperti:"
-
-#: templates/README.md.j2:87
-msgid "or"
-msgstr "atau"
-
-#: templates/README.md.j2:91
-msgid "More info regarding app packaging:"
-msgstr "Info lebih lanjut mengenai pemaketan aplikasi:"
diff --git a/readme_generator/translations/it/LC_MESSAGES/messages.mo b/readme_generator/translations/it/LC_MESSAGES/messages.mo
deleted file mode 100644
index fac9659e..00000000
Binary files a/readme_generator/translations/it/LC_MESSAGES/messages.mo and /dev/null differ
diff --git a/readme_generator/translations/it/LC_MESSAGES/messages.po b/readme_generator/translations/it/LC_MESSAGES/messages.po
deleted file mode 100644
index a6f292be..00000000
--- a/readme_generator/translations/it/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,238 +0,0 @@
-# Translations template for PROJECT.
-# Copyright (C) 2024 ORGANIZATION
-# This file is distributed under the same license as the PROJECT project.
-# FIRST AUTHOR , 2024.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PROJECT VERSION\n"
-"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2024-03-31 19:33+0200\n"
-"PO-Revision-Date: 2024-11-18 15:54+0000\n"
-"Last-Translator: Tommi \n"
-"Language-Team: Italian \n"
-"Language: it\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 5.4.3\n"
-"Generated-By: Babel 2.14.0\n"
-
-#: templates/ALL_README.md.j2:11
-#, python-format
-msgid "Read the README in %(language)s"
-msgstr "Leggi il “README” in %(language)s"
-
-#: templates/README.md.j2:2
-msgid "Packaging an app, starting from this example"
-msgstr "Creare il pacchetto di un’app, partendo da questo esempio"
-
-#: templates/README.md.j2:4
-msgid ""
-"Copy this app before working on it, using the ['Use this template'](https://"
-"github.com/new?template_name=example_ynh&template_owner=YunoHost) button on "
-"the Github repo"
-msgstr ""
-"Prima di lavorarci, copia quest’app usando [il bottone “Use this template” "
-"nella repository su GitHub](https://github.com/new?"
-"template_name=example_ynh&template_owner=YunoHost)"
-
-#: templates/README.md.j2:5
-msgid "Edit the `manifest.toml` with app specific info"
-msgstr ""
-"Modifica il file `manifest.toml` con le informazioni specifiche dell’app"
-
-#: templates/README.md.j2:6
-msgid ""
-"Edit the `install`, `upgrade`, `remove`, `backup` and `restore` scripts, and "
-"any relevant conf files in `conf/`"
-msgstr ""
-"Modifica gli script `install`, `upgrade`, `remove`, `backup` e `restore`, "
-"oltre a i possibili file di configurazione in `conf/`"
-
-#: templates/README.md.j2:7
-msgid ""
-"Using the [script helpers documentation](https://yunohost.org/"
-"packaging_apps_helpers)"
-msgstr ""
-"Usa [la documentazione per “script helpers”](https://yunohost.org/"
-"packaging_apps_helpers)"
-
-#: templates/README.md.j2:8
-msgid ""
-"Edit the `change_url` and `config` scripts too, or remove them if you have "
-"no use of them"
-msgstr ""
-"Modifica anche gli script `change_url` and `config`, oppure rimuovili se non "
-"servono"
-
-#: templates/README.md.j2:9
-msgid "Add a `LICENSE` file for the package."
-msgstr "Aggiungi un file `LICENSE` per il pacchetto."
-
-#: templates/README.md.j2:10
-msgid ""
-"NB: this `LICENSE` file is not meant to necessarily be the same LICENSE as "
-"the upstream app - it is only the LICENSE you want this package's code to "
-"published with and you can choose it freely! (If you don't know which to "
-"choose, we recommend [the AGPL-3](https://www.gnu.org/licenses/agpl-3.0.txt))"
-msgstr ""
-"NB: questo file `LICENSE` non deve necessariamente essere la stessa licenza "
-"dell’app upstream, è unicamente la licenza con cui vuoi sia pubblicato il "
-"codice di questo pacchetto e puoi sceglierla liberamente! (Se non sai quale "
-"scegliere, ti raccomandiamo la licenza [AGPL-3](https://www.gnu.org/licenses/"
-"agpl-3.0.txt))"
-
-#: templates/README.md.j2:11
-msgid ""
-"Edit files under the `doc/` directory ([see the page about documenting "
-"packages](https://yunohost.org/packaging_app_doc))"
-msgstr ""
-"Modifica i file nella cartella `doc` ([vedi la pagina riguardo la "
-"documentazione dei pacchetti](https://yunohost.org/packaging_app_doc))"
-
-#: templates/README.md.j2:12
-msgid ""
-"The `README.md` files are to be automatically generated by "
-msgstr ""
-"I file `README.md` sono generati automaticamente da "
-
-#: templates/README.md.j2:18
-msgid ""
-"N.B.: This README was automatically generated by \n"
-"It shall NOT be edited by hand."
-msgstr ""
-"N.B.: Questo README è stato automaticamente generato da \n"
-"NON DEVE essere modificato manualmente."
-
-#: templates/README.md.j2:22
-#, python-format
-msgid "%(application_name)s for YunoHost"
-msgstr "%(application_name)s per YunoHost"
-
-#: templates/README.md.j2:24
-msgid "Integration level"
-msgstr "Livello di integrazione"
-
-#: templates/README.md.j2:24
-msgid "Working status"
-msgstr "Stato di funzionamento"
-
-#: templates/README.md.j2:24
-msgid "Maintenance status"
-msgstr "Stato di manutenzione"
-
-#: templates/README.md.j2:26
-#, python-format
-msgid "Install %(application_name)s with YunoHost"
-msgstr "Installa %(application_name)s con YunoHost"
-
-#: templates/README.md.j2:28
-msgid "Read this README in other languages."
-msgstr "Leggi questo README in altre lingue."
-
-#: templates/README.md.j2:30
-#, python-format
-msgid ""
-"This package allows you to install %(application_name)s quickly and simply "
-"on a YunoHost server."
-msgstr ""
-"Questo pacchetto ti permette di installare %(application_name)s su un server "
-"YunoHost in modo semplice e veloce."
-
-#: templates/README.md.j2:31
-msgid ""
-"If you don't have YunoHost, please consult [the guide](https://yunohost.org/"
-"install) to learn how to install it."
-msgstr ""
-"Se non hai YunoHost, consulta [la guida](https://yunohost.org/install) per "
-"imparare a installarlo."
-
-#: templates/README.md.j2:33
-msgid "Overview"
-msgstr "Panoramica"
-
-#: templates/README.md.j2:37
-msgid "Shipped version:"
-msgstr "Versione pubblicata:"
-
-#: templates/README.md.j2:41
-msgid "Demo:"
-msgstr "Prova:"
-
-#: templates/README.md.j2:45
-msgid "Screenshots"
-msgstr "Screenshot"
-
-#: templates/README.md.j2:48
-#, python-format
-msgid "Screenshot of %(application_name)s"
-msgstr "Screenshot di %(application_name)s"
-
-#: templates/README.md.j2:53
-msgid "Disclaimers / important information"
-msgstr "Attenzione/informazioni importanti"
-
-#: templates/README.md.j2:59
-msgid "Antifeatures"
-msgstr ""
-
-#: templates/README.md.j2:66
-msgid "Documentation and resources"
-msgstr "Documentazione e risorse"
-
-#: templates/README.md.j2:68
-msgid "Official app website:"
-msgstr "Sito web ufficiale dell’app:"
-
-#: templates/README.md.j2:70
-msgid "Official user documentation:"
-msgstr "Documentazione ufficiale per gli utenti:"
-
-#: templates/README.md.j2:72
-msgid "Official admin documentation:"
-msgstr "Documentazione ufficiale per gli amministratori:"
-
-#: templates/README.md.j2:74
-msgid "Upstream app code repository:"
-msgstr "Repository upstream del codice dell’app:"
-
-#: templates/README.md.j2:76
-msgid "YunoHost Store:"
-msgstr "Store di YunoHost:"
-
-#: templates/README.md.j2:77
-msgid "Report a bug:"
-msgstr "Segnala un problema:"
-
-#: templates/README.md.j2:79
-msgid "Developer info"
-msgstr "Informazioni per sviluppatori"
-
-#: templates/README.md.j2:81
-#, python-format
-msgid ""
-"Please send your pull request to the [`testing` branch]"
-"(%(testing_branch_url)s)."
-msgstr ""
-"Si prega di inviare la tua pull request alla [branch di `testing`]"
-"(%(testing_branch_url)s)."
-
-#: templates/README.md.j2:83
-msgid "To try the `testing` branch, please proceed like that:"
-msgstr ""
-"Per provare la branch di `testing`, si prega di procedere in questo modo:"
-
-#: templates/README.md.j2:87
-msgid "or"
-msgstr "o"
-
-#: templates/README.md.j2:91
-msgid "More info regarding app packaging:"
-msgstr "Maggiori informazioni riguardo il pacchetto di quest’app:"
diff --git a/readme_generator/translations/ja/LC_MESSAGES/messages.po b/readme_generator/translations/ja/LC_MESSAGES/messages.po
deleted file mode 100644
index 066b3f9b..00000000
--- a/readme_generator/translations/ja/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,206 +0,0 @@
-# Translations template for PROJECT.
-# Copyright (C) 2024 ORGANIZATION
-# This file is distributed under the same license as the PROJECT project.
-# FIRST AUTHOR , 2024.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PROJECT VERSION\n"
-"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2024-03-31 19:33+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ja\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.14.0\n"
-
-#: templates/ALL_README.md.j2:11
-#, python-format
-msgid "Read the README in %(language)s"
-msgstr ""
-
-#: templates/README.md.j2:2
-msgid "Packaging an app, starting from this example"
-msgstr ""
-
-#: templates/README.md.j2:4
-msgid ""
-"Copy this app before working on it, using the ['Use this template'](https://"
-"github.com/new?template_name=example_ynh&template_owner=YunoHost) button on "
-"the Github repo"
-msgstr ""
-
-#: templates/README.md.j2:5
-msgid "Edit the `manifest.toml` with app specific info"
-msgstr ""
-
-#: templates/README.md.j2:6
-msgid ""
-"Edit the `install`, `upgrade`, `remove`, `backup` and `restore` scripts, and "
-"any relevant conf files in `conf/`"
-msgstr ""
-
-#: templates/README.md.j2:7
-msgid ""
-"Using the [script helpers documentation](https://yunohost.org/"
-"packaging_apps_helpers)"
-msgstr ""
-
-#: templates/README.md.j2:8
-msgid ""
-"Edit the `change_url` and `config` scripts too, or remove them if you have "
-"no use of them"
-msgstr ""
-
-#: templates/README.md.j2:9
-msgid "Add a `LICENSE` file for the package."
-msgstr ""
-
-#: templates/README.md.j2:10
-msgid ""
-"NB: this `LICENSE` file is not meant to necessarily be the same LICENSE as "
-"the upstream app - it is only the LICENSE you want this package's code to "
-"published with and you can choose it freely! (If you don't know which to "
-"choose, we recommend [the AGPL-3](https://www.gnu.org/licenses/agpl-3.0.txt))"
-msgstr ""
-
-#: templates/README.md.j2:11
-msgid ""
-"Edit files under the `doc/` directory ([see the page about documenting "
-"packages](https://yunohost.org/packaging_app_doc))"
-msgstr ""
-
-#: templates/README.md.j2:12
-msgid ""
-"The `README.md` files are to be automatically generated by "
-msgstr ""
-
-#: templates/README.md.j2:18
-msgid ""
-"N.B.: This README was automatically generated by \n"
-"It shall NOT be edited by hand."
-msgstr ""
-
-#: templates/README.md.j2:22
-#, python-format
-msgid "%(application_name)s for YunoHost"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Integration level"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Working status"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Maintenance status"
-msgstr ""
-
-#: templates/README.md.j2:26
-#, python-format
-msgid "Install %(application_name)s with YunoHost"
-msgstr ""
-
-#: templates/README.md.j2:28
-msgid "Read this README in other languages."
-msgstr ""
-
-#: templates/README.md.j2:30
-#, python-format
-msgid ""
-"This package allows you to install %(application_name)s quickly and simply "
-"on a YunoHost server."
-msgstr ""
-
-#: templates/README.md.j2:31
-msgid ""
-"If you don't have YunoHost, please consult [the guide](https://yunohost.org/"
-"install) to learn how to install it."
-msgstr ""
-
-#: templates/README.md.j2:33
-msgid "Overview"
-msgstr ""
-
-#: templates/README.md.j2:37
-msgid "Shipped version:"
-msgstr ""
-
-#: templates/README.md.j2:41
-msgid "Demo:"
-msgstr ""
-
-#: templates/README.md.j2:45
-msgid "Screenshots"
-msgstr ""
-
-#: templates/README.md.j2:48
-#, python-format
-msgid "Screenshot of %(application_name)s"
-msgstr ""
-
-#: templates/README.md.j2:53
-msgid "Disclaimers / important information"
-msgstr ""
-
-#: templates/README.md.j2:59
-msgid "Antifeatures"
-msgstr ""
-
-#: templates/README.md.j2:66
-msgid "Documentation and resources"
-msgstr ""
-
-#: templates/README.md.j2:68
-msgid "Official app website:"
-msgstr ""
-
-#: templates/README.md.j2:70
-msgid "Official user documentation:"
-msgstr ""
-
-#: templates/README.md.j2:72
-msgid "Official admin documentation:"
-msgstr ""
-
-#: templates/README.md.j2:74
-msgid "Upstream app code repository:"
-msgstr ""
-
-#: templates/README.md.j2:76
-msgid "YunoHost Store:"
-msgstr ""
-
-#: templates/README.md.j2:77
-msgid "Report a bug:"
-msgstr ""
-
-#: templates/README.md.j2:79
-msgid "Developer info"
-msgstr ""
-
-#: templates/README.md.j2:81
-#, python-format
-msgid ""
-"Please send your pull request to the [`testing` branch]"
-"(%(testing_branch_url)s)."
-msgstr ""
-
-#: templates/README.md.j2:83
-msgid "To try the `testing` branch, please proceed like that:"
-msgstr ""
-
-#: templates/README.md.j2:87
-msgid "or"
-msgstr ""
-
-#: templates/README.md.j2:91
-msgid "More info regarding app packaging:"
-msgstr ""
diff --git a/readme_generator/translations/kab/LC_MESSAGES/messages.mo b/readme_generator/translations/kab/LC_MESSAGES/messages.mo
deleted file mode 100644
index ffa65213..00000000
Binary files a/readme_generator/translations/kab/LC_MESSAGES/messages.mo and /dev/null differ
diff --git a/readme_generator/translations/kab/LC_MESSAGES/messages.po b/readme_generator/translations/kab/LC_MESSAGES/messages.po
deleted file mode 100644
index fbe6f991..00000000
--- a/readme_generator/translations/kab/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,206 +0,0 @@
-# Translations template for PROJECT.
-# Copyright (C) 2024 ORGANIZATION
-# This file is distributed under the same license as the PROJECT project.
-# FIRST AUTHOR , 2024.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PROJECT VERSION\n"
-"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2024-03-31 19:33+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: kab\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.14.0\n"
-
-#: templates/ALL_README.md.j2:11
-#, python-format
-msgid "Read the README in %(language)s"
-msgstr ""
-
-#: templates/README.md.j2:2
-msgid "Packaging an app, starting from this example"
-msgstr ""
-
-#: templates/README.md.j2:4
-msgid ""
-"Copy this app before working on it, using the ['Use this template'](https://"
-"github.com/new?template_name=example_ynh&template_owner=YunoHost) button on "
-"the Github repo"
-msgstr ""
-
-#: templates/README.md.j2:5
-msgid "Edit the `manifest.toml` with app specific info"
-msgstr ""
-
-#: templates/README.md.j2:6
-msgid ""
-"Edit the `install`, `upgrade`, `remove`, `backup` and `restore` scripts, and "
-"any relevant conf files in `conf/`"
-msgstr ""
-
-#: templates/README.md.j2:7
-msgid ""
-"Using the [script helpers documentation](https://yunohost.org/"
-"packaging_apps_helpers)"
-msgstr ""
-
-#: templates/README.md.j2:8
-msgid ""
-"Edit the `change_url` and `config` scripts too, or remove them if you have "
-"no use of them"
-msgstr ""
-
-#: templates/README.md.j2:9
-msgid "Add a `LICENSE` file for the package."
-msgstr ""
-
-#: templates/README.md.j2:10
-msgid ""
-"NB: this `LICENSE` file is not meant to necessarily be the same LICENSE as "
-"the upstream app - it is only the LICENSE you want this package's code to "
-"published with and you can choose it freely! (If you don't know which to "
-"choose, we recommend [the AGPL-3](https://www.gnu.org/licenses/agpl-3.0.txt))"
-msgstr ""
-
-#: templates/README.md.j2:11
-msgid ""
-"Edit files under the `doc/` directory ([see the page about documenting "
-"packages](https://yunohost.org/packaging_app_doc))"
-msgstr ""
-
-#: templates/README.md.j2:12
-msgid ""
-"The `README.md` files are to be automatically generated by "
-msgstr ""
-
-#: templates/README.md.j2:18
-msgid ""
-"N.B.: This README was automatically generated by \n"
-"It shall NOT be edited by hand."
-msgstr ""
-
-#: templates/README.md.j2:22
-#, python-format
-msgid "%(application_name)s for YunoHost"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Integration level"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Working status"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Maintenance status"
-msgstr ""
-
-#: templates/README.md.j2:26
-#, python-format
-msgid "Install %(application_name)s with YunoHost"
-msgstr ""
-
-#: templates/README.md.j2:28
-msgid "Read this README in other languages."
-msgstr ""
-
-#: templates/README.md.j2:30
-#, python-format
-msgid ""
-"This package allows you to install %(application_name)s quickly and simply "
-"on a YunoHost server."
-msgstr ""
-
-#: templates/README.md.j2:31
-msgid ""
-"If you don't have YunoHost, please consult [the guide](https://yunohost.org/"
-"install) to learn how to install it."
-msgstr ""
-
-#: templates/README.md.j2:33
-msgid "Overview"
-msgstr ""
-
-#: templates/README.md.j2:37
-msgid "Shipped version:"
-msgstr ""
-
-#: templates/README.md.j2:41
-msgid "Demo:"
-msgstr ""
-
-#: templates/README.md.j2:45
-msgid "Screenshots"
-msgstr ""
-
-#: templates/README.md.j2:48
-#, python-format
-msgid "Screenshot of %(application_name)s"
-msgstr ""
-
-#: templates/README.md.j2:53
-msgid "Disclaimers / important information"
-msgstr ""
-
-#: templates/README.md.j2:59
-msgid "Antifeatures"
-msgstr ""
-
-#: templates/README.md.j2:66
-msgid "Documentation and resources"
-msgstr ""
-
-#: templates/README.md.j2:68
-msgid "Official app website:"
-msgstr ""
-
-#: templates/README.md.j2:70
-msgid "Official user documentation:"
-msgstr ""
-
-#: templates/README.md.j2:72
-msgid "Official admin documentation:"
-msgstr ""
-
-#: templates/README.md.j2:74
-msgid "Upstream app code repository:"
-msgstr ""
-
-#: templates/README.md.j2:76
-msgid "YunoHost Store:"
-msgstr ""
-
-#: templates/README.md.j2:77
-msgid "Report a bug:"
-msgstr ""
-
-#: templates/README.md.j2:79
-msgid "Developer info"
-msgstr ""
-
-#: templates/README.md.j2:81
-#, python-format
-msgid ""
-"Please send your pull request to the [`testing` branch]"
-"(%(testing_branch_url)s)."
-msgstr ""
-
-#: templates/README.md.j2:83
-msgid "To try the `testing` branch, please proceed like that:"
-msgstr ""
-
-#: templates/README.md.j2:87
-msgid "or"
-msgstr ""
-
-#: templates/README.md.j2:91
-msgid "More info regarding app packaging:"
-msgstr ""
diff --git a/readme_generator/translations/ko/LC_MESSAGES/messages.mo b/readme_generator/translations/ko/LC_MESSAGES/messages.mo
deleted file mode 100644
index 0bfa8176..00000000
Binary files a/readme_generator/translations/ko/LC_MESSAGES/messages.mo and /dev/null differ
diff --git a/readme_generator/translations/ko/LC_MESSAGES/messages.po b/readme_generator/translations/ko/LC_MESSAGES/messages.po
deleted file mode 100644
index 1fd6dd2f..00000000
--- a/readme_generator/translations/ko/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,206 +0,0 @@
-# Translations template for PROJECT.
-# Copyright (C) 2024 ORGANIZATION
-# This file is distributed under the same license as the PROJECT project.
-# FIRST AUTHOR , 2024.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PROJECT VERSION\n"
-"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2024-03-31 19:33+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ko\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.14.0\n"
-
-#: templates/ALL_README.md.j2:11
-#, python-format
-msgid "Read the README in %(language)s"
-msgstr ""
-
-#: templates/README.md.j2:2
-msgid "Packaging an app, starting from this example"
-msgstr ""
-
-#: templates/README.md.j2:4
-msgid ""
-"Copy this app before working on it, using the ['Use this template'](https://"
-"github.com/new?template_name=example_ynh&template_owner=YunoHost) button on "
-"the Github repo"
-msgstr ""
-
-#: templates/README.md.j2:5
-msgid "Edit the `manifest.toml` with app specific info"
-msgstr ""
-
-#: templates/README.md.j2:6
-msgid ""
-"Edit the `install`, `upgrade`, `remove`, `backup` and `restore` scripts, and "
-"any relevant conf files in `conf/`"
-msgstr ""
-
-#: templates/README.md.j2:7
-msgid ""
-"Using the [script helpers documentation](https://yunohost.org/"
-"packaging_apps_helpers)"
-msgstr ""
-
-#: templates/README.md.j2:8
-msgid ""
-"Edit the `change_url` and `config` scripts too, or remove them if you have "
-"no use of them"
-msgstr ""
-
-#: templates/README.md.j2:9
-msgid "Add a `LICENSE` file for the package."
-msgstr ""
-
-#: templates/README.md.j2:10
-msgid ""
-"NB: this `LICENSE` file is not meant to necessarily be the same LICENSE as "
-"the upstream app - it is only the LICENSE you want this package's code to "
-"published with and you can choose it freely! (If you don't know which to "
-"choose, we recommend [the AGPL-3](https://www.gnu.org/licenses/agpl-3.0.txt))"
-msgstr ""
-
-#: templates/README.md.j2:11
-msgid ""
-"Edit files under the `doc/` directory ([see the page about documenting "
-"packages](https://yunohost.org/packaging_app_doc))"
-msgstr ""
-
-#: templates/README.md.j2:12
-msgid ""
-"The `README.md` files are to be automatically generated by "
-msgstr ""
-
-#: templates/README.md.j2:18
-msgid ""
-"N.B.: This README was automatically generated by \n"
-"It shall NOT be edited by hand."
-msgstr ""
-
-#: templates/README.md.j2:22
-#, python-format
-msgid "%(application_name)s for YunoHost"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Integration level"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Working status"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Maintenance status"
-msgstr ""
-
-#: templates/README.md.j2:26
-#, python-format
-msgid "Install %(application_name)s with YunoHost"
-msgstr ""
-
-#: templates/README.md.j2:28
-msgid "Read this README in other languages."
-msgstr ""
-
-#: templates/README.md.j2:30
-#, python-format
-msgid ""
-"This package allows you to install %(application_name)s quickly and simply "
-"on a YunoHost server."
-msgstr ""
-
-#: templates/README.md.j2:31
-msgid ""
-"If you don't have YunoHost, please consult [the guide](https://yunohost.org/"
-"install) to learn how to install it."
-msgstr ""
-
-#: templates/README.md.j2:33
-msgid "Overview"
-msgstr ""
-
-#: templates/README.md.j2:37
-msgid "Shipped version:"
-msgstr ""
-
-#: templates/README.md.j2:41
-msgid "Demo:"
-msgstr ""
-
-#: templates/README.md.j2:45
-msgid "Screenshots"
-msgstr ""
-
-#: templates/README.md.j2:48
-#, python-format
-msgid "Screenshot of %(application_name)s"
-msgstr ""
-
-#: templates/README.md.j2:53
-msgid "Disclaimers / important information"
-msgstr ""
-
-#: templates/README.md.j2:59
-msgid "Antifeatures"
-msgstr ""
-
-#: templates/README.md.j2:66
-msgid "Documentation and resources"
-msgstr ""
-
-#: templates/README.md.j2:68
-msgid "Official app website:"
-msgstr ""
-
-#: templates/README.md.j2:70
-msgid "Official user documentation:"
-msgstr ""
-
-#: templates/README.md.j2:72
-msgid "Official admin documentation:"
-msgstr ""
-
-#: templates/README.md.j2:74
-msgid "Upstream app code repository:"
-msgstr ""
-
-#: templates/README.md.j2:76
-msgid "YunoHost Store:"
-msgstr ""
-
-#: templates/README.md.j2:77
-msgid "Report a bug:"
-msgstr ""
-
-#: templates/README.md.j2:79
-msgid "Developer info"
-msgstr ""
-
-#: templates/README.md.j2:81
-#, python-format
-msgid ""
-"Please send your pull request to the [`testing` branch]"
-"(%(testing_branch_url)s)."
-msgstr ""
-
-#: templates/README.md.j2:83
-msgid "To try the `testing` branch, please proceed like that:"
-msgstr ""
-
-#: templates/README.md.j2:87
-msgid "or"
-msgstr ""
-
-#: templates/README.md.j2:91
-msgid "More info regarding app packaging:"
-msgstr ""
diff --git a/readme_generator/translations/lt/LC_MESSAGES/messages.mo b/readme_generator/translations/lt/LC_MESSAGES/messages.mo
deleted file mode 100644
index 8e7a0798..00000000
Binary files a/readme_generator/translations/lt/LC_MESSAGES/messages.mo and /dev/null differ
diff --git a/readme_generator/translations/lt/LC_MESSAGES/messages.po b/readme_generator/translations/lt/LC_MESSAGES/messages.po
deleted file mode 100644
index 5de2712c..00000000
--- a/readme_generator/translations/lt/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,206 +0,0 @@
-# Translations template for PROJECT.
-# Copyright (C) 2024 ORGANIZATION
-# This file is distributed under the same license as the PROJECT project.
-# FIRST AUTHOR , 2024.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PROJECT VERSION\n"
-"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2024-03-31 19:33+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: lt\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.14.0\n"
-
-#: templates/ALL_README.md.j2:11
-#, python-format
-msgid "Read the README in %(language)s"
-msgstr ""
-
-#: templates/README.md.j2:2
-msgid "Packaging an app, starting from this example"
-msgstr ""
-
-#: templates/README.md.j2:4
-msgid ""
-"Copy this app before working on it, using the ['Use this template'](https://"
-"github.com/new?template_name=example_ynh&template_owner=YunoHost) button on "
-"the Github repo"
-msgstr ""
-
-#: templates/README.md.j2:5
-msgid "Edit the `manifest.toml` with app specific info"
-msgstr ""
-
-#: templates/README.md.j2:6
-msgid ""
-"Edit the `install`, `upgrade`, `remove`, `backup` and `restore` scripts, and "
-"any relevant conf files in `conf/`"
-msgstr ""
-
-#: templates/README.md.j2:7
-msgid ""
-"Using the [script helpers documentation](https://yunohost.org/"
-"packaging_apps_helpers)"
-msgstr ""
-
-#: templates/README.md.j2:8
-msgid ""
-"Edit the `change_url` and `config` scripts too, or remove them if you have "
-"no use of them"
-msgstr ""
-
-#: templates/README.md.j2:9
-msgid "Add a `LICENSE` file for the package."
-msgstr ""
-
-#: templates/README.md.j2:10
-msgid ""
-"NB: this `LICENSE` file is not meant to necessarily be the same LICENSE as "
-"the upstream app - it is only the LICENSE you want this package's code to "
-"published with and you can choose it freely! (If you don't know which to "
-"choose, we recommend [the AGPL-3](https://www.gnu.org/licenses/agpl-3.0.txt))"
-msgstr ""
-
-#: templates/README.md.j2:11
-msgid ""
-"Edit files under the `doc/` directory ([see the page about documenting "
-"packages](https://yunohost.org/packaging_app_doc))"
-msgstr ""
-
-#: templates/README.md.j2:12
-msgid ""
-"The `README.md` files are to be automatically generated by "
-msgstr ""
-
-#: templates/README.md.j2:18
-msgid ""
-"N.B.: This README was automatically generated by \n"
-"It shall NOT be edited by hand."
-msgstr ""
-
-#: templates/README.md.j2:22
-#, python-format
-msgid "%(application_name)s for YunoHost"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Integration level"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Working status"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Maintenance status"
-msgstr ""
-
-#: templates/README.md.j2:26
-#, python-format
-msgid "Install %(application_name)s with YunoHost"
-msgstr ""
-
-#: templates/README.md.j2:28
-msgid "Read this README in other languages."
-msgstr ""
-
-#: templates/README.md.j2:30
-#, python-format
-msgid ""
-"This package allows you to install %(application_name)s quickly and simply "
-"on a YunoHost server."
-msgstr ""
-
-#: templates/README.md.j2:31
-msgid ""
-"If you don't have YunoHost, please consult [the guide](https://yunohost.org/"
-"install) to learn how to install it."
-msgstr ""
-
-#: templates/README.md.j2:33
-msgid "Overview"
-msgstr ""
-
-#: templates/README.md.j2:37
-msgid "Shipped version:"
-msgstr ""
-
-#: templates/README.md.j2:41
-msgid "Demo:"
-msgstr ""
-
-#: templates/README.md.j2:45
-msgid "Screenshots"
-msgstr ""
-
-#: templates/README.md.j2:48
-#, python-format
-msgid "Screenshot of %(application_name)s"
-msgstr ""
-
-#: templates/README.md.j2:53
-msgid "Disclaimers / important information"
-msgstr ""
-
-#: templates/README.md.j2:59
-msgid "Antifeatures"
-msgstr ""
-
-#: templates/README.md.j2:66
-msgid "Documentation and resources"
-msgstr ""
-
-#: templates/README.md.j2:68
-msgid "Official app website:"
-msgstr ""
-
-#: templates/README.md.j2:70
-msgid "Official user documentation:"
-msgstr ""
-
-#: templates/README.md.j2:72
-msgid "Official admin documentation:"
-msgstr ""
-
-#: templates/README.md.j2:74
-msgid "Upstream app code repository:"
-msgstr ""
-
-#: templates/README.md.j2:76
-msgid "YunoHost Store:"
-msgstr ""
-
-#: templates/README.md.j2:77
-msgid "Report a bug:"
-msgstr ""
-
-#: templates/README.md.j2:79
-msgid "Developer info"
-msgstr ""
-
-#: templates/README.md.j2:81
-#, python-format
-msgid ""
-"Please send your pull request to the [`testing` branch]"
-"(%(testing_branch_url)s)."
-msgstr ""
-
-#: templates/README.md.j2:83
-msgid "To try the `testing` branch, please proceed like that:"
-msgstr ""
-
-#: templates/README.md.j2:87
-msgid "or"
-msgstr ""
-
-#: templates/README.md.j2:91
-msgid "More info regarding app packaging:"
-msgstr ""
diff --git a/readme_generator/translations/mk/LC_MESSAGES/messages.mo b/readme_generator/translations/mk/LC_MESSAGES/messages.mo
deleted file mode 100644
index 44073897..00000000
Binary files a/readme_generator/translations/mk/LC_MESSAGES/messages.mo and /dev/null differ
diff --git a/readme_generator/translations/mk/LC_MESSAGES/messages.po b/readme_generator/translations/mk/LC_MESSAGES/messages.po
deleted file mode 100644
index c3ecb948..00000000
--- a/readme_generator/translations/mk/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,206 +0,0 @@
-# Translations template for PROJECT.
-# Copyright (C) 2024 ORGANIZATION
-# This file is distributed under the same license as the PROJECT project.
-# FIRST AUTHOR , 2024.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PROJECT VERSION\n"
-"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2024-03-31 19:33+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: mk\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.14.0\n"
-
-#: templates/ALL_README.md.j2:11
-#, python-format
-msgid "Read the README in %(language)s"
-msgstr ""
-
-#: templates/README.md.j2:2
-msgid "Packaging an app, starting from this example"
-msgstr ""
-
-#: templates/README.md.j2:4
-msgid ""
-"Copy this app before working on it, using the ['Use this template'](https://"
-"github.com/new?template_name=example_ynh&template_owner=YunoHost) button on "
-"the Github repo"
-msgstr ""
-
-#: templates/README.md.j2:5
-msgid "Edit the `manifest.toml` with app specific info"
-msgstr ""
-
-#: templates/README.md.j2:6
-msgid ""
-"Edit the `install`, `upgrade`, `remove`, `backup` and `restore` scripts, and "
-"any relevant conf files in `conf/`"
-msgstr ""
-
-#: templates/README.md.j2:7
-msgid ""
-"Using the [script helpers documentation](https://yunohost.org/"
-"packaging_apps_helpers)"
-msgstr ""
-
-#: templates/README.md.j2:8
-msgid ""
-"Edit the `change_url` and `config` scripts too, or remove them if you have "
-"no use of them"
-msgstr ""
-
-#: templates/README.md.j2:9
-msgid "Add a `LICENSE` file for the package."
-msgstr ""
-
-#: templates/README.md.j2:10
-msgid ""
-"NB: this `LICENSE` file is not meant to necessarily be the same LICENSE as "
-"the upstream app - it is only the LICENSE you want this package's code to "
-"published with and you can choose it freely! (If you don't know which to "
-"choose, we recommend [the AGPL-3](https://www.gnu.org/licenses/agpl-3.0.txt))"
-msgstr ""
-
-#: templates/README.md.j2:11
-msgid ""
-"Edit files under the `doc/` directory ([see the page about documenting "
-"packages](https://yunohost.org/packaging_app_doc))"
-msgstr ""
-
-#: templates/README.md.j2:12
-msgid ""
-"The `README.md` files are to be automatically generated by "
-msgstr ""
-
-#: templates/README.md.j2:18
-msgid ""
-"N.B.: This README was automatically generated by \n"
-"It shall NOT be edited by hand."
-msgstr ""
-
-#: templates/README.md.j2:22
-#, python-format
-msgid "%(application_name)s for YunoHost"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Integration level"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Working status"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Maintenance status"
-msgstr ""
-
-#: templates/README.md.j2:26
-#, python-format
-msgid "Install %(application_name)s with YunoHost"
-msgstr ""
-
-#: templates/README.md.j2:28
-msgid "Read this README in other languages."
-msgstr ""
-
-#: templates/README.md.j2:30
-#, python-format
-msgid ""
-"This package allows you to install %(application_name)s quickly and simply "
-"on a YunoHost server."
-msgstr ""
-
-#: templates/README.md.j2:31
-msgid ""
-"If you don't have YunoHost, please consult [the guide](https://yunohost.org/"
-"install) to learn how to install it."
-msgstr ""
-
-#: templates/README.md.j2:33
-msgid "Overview"
-msgstr ""
-
-#: templates/README.md.j2:37
-msgid "Shipped version:"
-msgstr ""
-
-#: templates/README.md.j2:41
-msgid "Demo:"
-msgstr ""
-
-#: templates/README.md.j2:45
-msgid "Screenshots"
-msgstr ""
-
-#: templates/README.md.j2:48
-#, python-format
-msgid "Screenshot of %(application_name)s"
-msgstr ""
-
-#: templates/README.md.j2:53
-msgid "Disclaimers / important information"
-msgstr ""
-
-#: templates/README.md.j2:59
-msgid "Antifeatures"
-msgstr ""
-
-#: templates/README.md.j2:66
-msgid "Documentation and resources"
-msgstr ""
-
-#: templates/README.md.j2:68
-msgid "Official app website:"
-msgstr ""
-
-#: templates/README.md.j2:70
-msgid "Official user documentation:"
-msgstr ""
-
-#: templates/README.md.j2:72
-msgid "Official admin documentation:"
-msgstr ""
-
-#: templates/README.md.j2:74
-msgid "Upstream app code repository:"
-msgstr ""
-
-#: templates/README.md.j2:76
-msgid "YunoHost Store:"
-msgstr ""
-
-#: templates/README.md.j2:77
-msgid "Report a bug:"
-msgstr ""
-
-#: templates/README.md.j2:79
-msgid "Developer info"
-msgstr ""
-
-#: templates/README.md.j2:81
-#, python-format
-msgid ""
-"Please send your pull request to the [`testing` branch]"
-"(%(testing_branch_url)s)."
-msgstr ""
-
-#: templates/README.md.j2:83
-msgid "To try the `testing` branch, please proceed like that:"
-msgstr ""
-
-#: templates/README.md.j2:87
-msgid "or"
-msgstr ""
-
-#: templates/README.md.j2:91
-msgid "More info regarding app packaging:"
-msgstr ""
diff --git a/readme_generator/translations/nb_NO/LC_MESSAGES/messages.mo b/readme_generator/translations/nb_NO/LC_MESSAGES/messages.mo
deleted file mode 100644
index d86ff0b5..00000000
Binary files a/readme_generator/translations/nb_NO/LC_MESSAGES/messages.mo and /dev/null differ
diff --git a/readme_generator/translations/nb_NO/LC_MESSAGES/messages.po b/readme_generator/translations/nb_NO/LC_MESSAGES/messages.po
deleted file mode 100644
index 58075c9a..00000000
--- a/readme_generator/translations/nb_NO/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,206 +0,0 @@
-# Translations template for PROJECT.
-# Copyright (C) 2024 ORGANIZATION
-# This file is distributed under the same license as the PROJECT project.
-# FIRST AUTHOR , 2024.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PROJECT VERSION\n"
-"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2024-03-31 19:33+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: nb_NO\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.14.0\n"
-
-#: templates/ALL_README.md.j2:11
-#, python-format
-msgid "Read the README in %(language)s"
-msgstr ""
-
-#: templates/README.md.j2:2
-msgid "Packaging an app, starting from this example"
-msgstr ""
-
-#: templates/README.md.j2:4
-msgid ""
-"Copy this app before working on it, using the ['Use this template'](https://"
-"github.com/new?template_name=example_ynh&template_owner=YunoHost) button on "
-"the Github repo"
-msgstr ""
-
-#: templates/README.md.j2:5
-msgid "Edit the `manifest.toml` with app specific info"
-msgstr ""
-
-#: templates/README.md.j2:6
-msgid ""
-"Edit the `install`, `upgrade`, `remove`, `backup` and `restore` scripts, and "
-"any relevant conf files in `conf/`"
-msgstr ""
-
-#: templates/README.md.j2:7
-msgid ""
-"Using the [script helpers documentation](https://yunohost.org/"
-"packaging_apps_helpers)"
-msgstr ""
-
-#: templates/README.md.j2:8
-msgid ""
-"Edit the `change_url` and `config` scripts too, or remove them if you have "
-"no use of them"
-msgstr ""
-
-#: templates/README.md.j2:9
-msgid "Add a `LICENSE` file for the package."
-msgstr ""
-
-#: templates/README.md.j2:10
-msgid ""
-"NB: this `LICENSE` file is not meant to necessarily be the same LICENSE as "
-"the upstream app - it is only the LICENSE you want this package's code to "
-"published with and you can choose it freely! (If you don't know which to "
-"choose, we recommend [the AGPL-3](https://www.gnu.org/licenses/agpl-3.0.txt))"
-msgstr ""
-
-#: templates/README.md.j2:11
-msgid ""
-"Edit files under the `doc/` directory ([see the page about documenting "
-"packages](https://yunohost.org/packaging_app_doc))"
-msgstr ""
-
-#: templates/README.md.j2:12
-msgid ""
-"The `README.md` files are to be automatically generated by "
-msgstr ""
-
-#: templates/README.md.j2:18
-msgid ""
-"N.B.: This README was automatically generated by \n"
-"It shall NOT be edited by hand."
-msgstr ""
-
-#: templates/README.md.j2:22
-#, python-format
-msgid "%(application_name)s for YunoHost"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Integration level"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Working status"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Maintenance status"
-msgstr ""
-
-#: templates/README.md.j2:26
-#, python-format
-msgid "Install %(application_name)s with YunoHost"
-msgstr ""
-
-#: templates/README.md.j2:28
-msgid "Read this README in other languages."
-msgstr ""
-
-#: templates/README.md.j2:30
-#, python-format
-msgid ""
-"This package allows you to install %(application_name)s quickly and simply "
-"on a YunoHost server."
-msgstr ""
-
-#: templates/README.md.j2:31
-msgid ""
-"If you don't have YunoHost, please consult [the guide](https://yunohost.org/"
-"install) to learn how to install it."
-msgstr ""
-
-#: templates/README.md.j2:33
-msgid "Overview"
-msgstr ""
-
-#: templates/README.md.j2:37
-msgid "Shipped version:"
-msgstr ""
-
-#: templates/README.md.j2:41
-msgid "Demo:"
-msgstr ""
-
-#: templates/README.md.j2:45
-msgid "Screenshots"
-msgstr ""
-
-#: templates/README.md.j2:48
-#, python-format
-msgid "Screenshot of %(application_name)s"
-msgstr ""
-
-#: templates/README.md.j2:53
-msgid "Disclaimers / important information"
-msgstr ""
-
-#: templates/README.md.j2:59
-msgid "Antifeatures"
-msgstr ""
-
-#: templates/README.md.j2:66
-msgid "Documentation and resources"
-msgstr ""
-
-#: templates/README.md.j2:68
-msgid "Official app website:"
-msgstr ""
-
-#: templates/README.md.j2:70
-msgid "Official user documentation:"
-msgstr ""
-
-#: templates/README.md.j2:72
-msgid "Official admin documentation:"
-msgstr ""
-
-#: templates/README.md.j2:74
-msgid "Upstream app code repository:"
-msgstr ""
-
-#: templates/README.md.j2:76
-msgid "YunoHost Store:"
-msgstr ""
-
-#: templates/README.md.j2:77
-msgid "Report a bug:"
-msgstr ""
-
-#: templates/README.md.j2:79
-msgid "Developer info"
-msgstr ""
-
-#: templates/README.md.j2:81
-#, python-format
-msgid ""
-"Please send your pull request to the [`testing` branch]"
-"(%(testing_branch_url)s)."
-msgstr ""
-
-#: templates/README.md.j2:83
-msgid "To try the `testing` branch, please proceed like that:"
-msgstr ""
-
-#: templates/README.md.j2:87
-msgid "or"
-msgstr ""
-
-#: templates/README.md.j2:91
-msgid "More info regarding app packaging:"
-msgstr ""
diff --git a/readme_generator/translations/ne/LC_MESSAGES/messages.mo b/readme_generator/translations/ne/LC_MESSAGES/messages.mo
deleted file mode 100644
index acf1fb3e..00000000
Binary files a/readme_generator/translations/ne/LC_MESSAGES/messages.mo and /dev/null differ
diff --git a/readme_generator/translations/ne/LC_MESSAGES/messages.po b/readme_generator/translations/ne/LC_MESSAGES/messages.po
deleted file mode 100644
index 174c38e8..00000000
--- a/readme_generator/translations/ne/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,206 +0,0 @@
-# Translations template for PROJECT.
-# Copyright (C) 2024 ORGANIZATION
-# This file is distributed under the same license as the PROJECT project.
-# FIRST AUTHOR , 2024.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PROJECT VERSION\n"
-"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2024-03-31 19:33+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ne\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.14.0\n"
-
-#: templates/ALL_README.md.j2:11
-#, python-format
-msgid "Read the README in %(language)s"
-msgstr ""
-
-#: templates/README.md.j2:2
-msgid "Packaging an app, starting from this example"
-msgstr ""
-
-#: templates/README.md.j2:4
-msgid ""
-"Copy this app before working on it, using the ['Use this template'](https://"
-"github.com/new?template_name=example_ynh&template_owner=YunoHost) button on "
-"the Github repo"
-msgstr ""
-
-#: templates/README.md.j2:5
-msgid "Edit the `manifest.toml` with app specific info"
-msgstr ""
-
-#: templates/README.md.j2:6
-msgid ""
-"Edit the `install`, `upgrade`, `remove`, `backup` and `restore` scripts, and "
-"any relevant conf files in `conf/`"
-msgstr ""
-
-#: templates/README.md.j2:7
-msgid ""
-"Using the [script helpers documentation](https://yunohost.org/"
-"packaging_apps_helpers)"
-msgstr ""
-
-#: templates/README.md.j2:8
-msgid ""
-"Edit the `change_url` and `config` scripts too, or remove them if you have "
-"no use of them"
-msgstr ""
-
-#: templates/README.md.j2:9
-msgid "Add a `LICENSE` file for the package."
-msgstr ""
-
-#: templates/README.md.j2:10
-msgid ""
-"NB: this `LICENSE` file is not meant to necessarily be the same LICENSE as "
-"the upstream app - it is only the LICENSE you want this package's code to "
-"published with and you can choose it freely! (If you don't know which to "
-"choose, we recommend [the AGPL-3](https://www.gnu.org/licenses/agpl-3.0.txt))"
-msgstr ""
-
-#: templates/README.md.j2:11
-msgid ""
-"Edit files under the `doc/` directory ([see the page about documenting "
-"packages](https://yunohost.org/packaging_app_doc))"
-msgstr ""
-
-#: templates/README.md.j2:12
-msgid ""
-"The `README.md` files are to be automatically generated by "
-msgstr ""
-
-#: templates/README.md.j2:18
-msgid ""
-"N.B.: This README was automatically generated by \n"
-"It shall NOT be edited by hand."
-msgstr ""
-
-#: templates/README.md.j2:22
-#, python-format
-msgid "%(application_name)s for YunoHost"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Integration level"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Working status"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Maintenance status"
-msgstr ""
-
-#: templates/README.md.j2:26
-#, python-format
-msgid "Install %(application_name)s with YunoHost"
-msgstr ""
-
-#: templates/README.md.j2:28
-msgid "Read this README in other languages."
-msgstr ""
-
-#: templates/README.md.j2:30
-#, python-format
-msgid ""
-"This package allows you to install %(application_name)s quickly and simply "
-"on a YunoHost server."
-msgstr ""
-
-#: templates/README.md.j2:31
-msgid ""
-"If you don't have YunoHost, please consult [the guide](https://yunohost.org/"
-"install) to learn how to install it."
-msgstr ""
-
-#: templates/README.md.j2:33
-msgid "Overview"
-msgstr ""
-
-#: templates/README.md.j2:37
-msgid "Shipped version:"
-msgstr ""
-
-#: templates/README.md.j2:41
-msgid "Demo:"
-msgstr ""
-
-#: templates/README.md.j2:45
-msgid "Screenshots"
-msgstr ""
-
-#: templates/README.md.j2:48
-#, python-format
-msgid "Screenshot of %(application_name)s"
-msgstr ""
-
-#: templates/README.md.j2:53
-msgid "Disclaimers / important information"
-msgstr ""
-
-#: templates/README.md.j2:59
-msgid "Antifeatures"
-msgstr ""
-
-#: templates/README.md.j2:66
-msgid "Documentation and resources"
-msgstr ""
-
-#: templates/README.md.j2:68
-msgid "Official app website:"
-msgstr ""
-
-#: templates/README.md.j2:70
-msgid "Official user documentation:"
-msgstr ""
-
-#: templates/README.md.j2:72
-msgid "Official admin documentation:"
-msgstr ""
-
-#: templates/README.md.j2:74
-msgid "Upstream app code repository:"
-msgstr ""
-
-#: templates/README.md.j2:76
-msgid "YunoHost Store:"
-msgstr ""
-
-#: templates/README.md.j2:77
-msgid "Report a bug:"
-msgstr ""
-
-#: templates/README.md.j2:79
-msgid "Developer info"
-msgstr ""
-
-#: templates/README.md.j2:81
-#, python-format
-msgid ""
-"Please send your pull request to the [`testing` branch]"
-"(%(testing_branch_url)s)."
-msgstr ""
-
-#: templates/README.md.j2:83
-msgid "To try the `testing` branch, please proceed like that:"
-msgstr ""
-
-#: templates/README.md.j2:87
-msgid "or"
-msgstr ""
-
-#: templates/README.md.j2:91
-msgid "More info regarding app packaging:"
-msgstr ""
diff --git a/readme_generator/translations/nl/LC_MESSAGES/messages.mo b/readme_generator/translations/nl/LC_MESSAGES/messages.mo
deleted file mode 100644
index 28530d80..00000000
Binary files a/readme_generator/translations/nl/LC_MESSAGES/messages.mo and /dev/null differ
diff --git a/readme_generator/translations/nl/LC_MESSAGES/messages.po b/readme_generator/translations/nl/LC_MESSAGES/messages.po
deleted file mode 100644
index ff202e22..00000000
--- a/readme_generator/translations/nl/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,239 +0,0 @@
-# Translations template for PROJECT.
-# Copyright (C) 2024 ORGANIZATION
-# This file is distributed under the same license as the PROJECT project.
-# FIRST AUTHOR , 2024.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PROJECT VERSION\n"
-"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2024-03-31 19:33+0200\n"
-"PO-Revision-Date: 2024-11-16 09:10+0000\n"
-"Last-Translator: Éric Gaspar \n"
-"Language-Team: Dutch \n"
-"Language: nl\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 5.4.3\n"
-"Generated-By: Babel 2.14.0\n"
-
-#: templates/ALL_README.md.j2:11
-#, python-format
-msgid "Read the README in %(language)s"
-msgstr "Lees de README in het %(language)s"
-
-#: templates/README.md.j2:2
-msgid "Packaging an app, starting from this example"
-msgstr "Package een app, uitgaand van dit voorbeeld"
-
-#: templates/README.md.j2:4
-msgid ""
-"Copy this app before working on it, using the ['Use this template'](https://"
-"github.com/new?template_name=example_ynh&template_owner=YunoHost) button on "
-"the Github repo"
-msgstr ""
-"Kopieer deze app voordat je er aan werkt, met de knop ['Gebruik dit "
-"template'](https://github.com/new?"
-"template_name=example_ynh&template_owner=YunoHost)"
-
-#: templates/README.md.j2:5
-msgid "Edit the `manifest.toml` with app specific info"
-msgstr "Bewerk `manifest.toml` met app-specifieke informatie"
-
-#: templates/README.md.j2:6
-msgid ""
-"Edit the `install`, `upgrade`, `remove`, `backup` and `restore` scripts, and "
-"any relevant conf files in `conf/`"
-msgstr ""
-"Bewerk de scripts `install`, `upgrade`, `remove`, `backup` en `restore` , en "
-"alle overige relevante configuratiebestanden in `conf/`"
-
-#: templates/README.md.j2:7
-msgid ""
-"Using the [script helpers documentation](https://yunohost.org/"
-"packaging_apps_helpers)"
-msgstr ""
-"Gebruik de [script helpers documentatie](https://yunohost.org/"
-"packaging_apps_helpers)"
-
-#: templates/README.md.j2:8
-msgid ""
-"Edit the `change_url` and `config` scripts too, or remove them if you have "
-"no use of them"
-msgstr ""
-"Bewerk ook de `change_url` - en `config`-scripts, of verwijder ze als ze "
-"niet nodig zijn"
-
-#: templates/README.md.j2:9
-msgid "Add a `LICENSE` file for the package."
-msgstr "Voeg een `LICENSE`-bestand toe voor het pakket."
-
-#: templates/README.md.j2:10
-msgid ""
-"NB: this `LICENSE` file is not meant to necessarily be the same LICENSE as "
-"the upstream app - it is only the LICENSE you want this package's code to "
-"published with and you can choose it freely! (If you don't know which to "
-"choose, we recommend [the AGPL-3](https://www.gnu.org/licenses/agpl-3.0.txt))"
-msgstr ""
-"Voeg een `LICENSE`-bestand voor het pakket toe. NB: deze licentie is niet "
-"per se dezelfde als de licentie van de upstream app - het is enkel de "
-"licentie voor de code van het pakket en je bent vrij deze zelf te kiezen! "
-"(Mocht je niet weten welke te kiezen, wij bevelen [de AGPL-3](https://www."
-"gnu.org/licenses/agpl-3.0.txt) aan)"
-
-#: templates/README.md.j2:11
-msgid ""
-"Edit files under the `doc/` directory ([see the page about documenting "
-"packages](https://yunohost.org/packaging_app_doc))"
-msgstr ""
-"Bewerk bestanden in de map `doc/` ([zie de pagina over het documenteren van "
-"pakketten](https://yunohost.org/packaging_app_doc))"
-
-#: templates/README.md.j2:12
-msgid ""
-"The `README.md` files are to be automatically generated by "
-msgstr ""
-"De `README.md`-bestanden worden automatisch gegenereerd door "
-
-#: templates/README.md.j2:18
-msgid ""
-"N.B.: This README was automatically generated by \n"
-"It shall NOT be edited by hand."
-msgstr ""
-"NB: Deze README is automatisch gegenereerd door \n"
-"Hij mag NIET handmatig aangepast worden."
-
-#: templates/README.md.j2:22
-#, python-format
-msgid "%(application_name)s for YunoHost"
-msgstr "%(application_name)s voor Yunohost"
-
-#: templates/README.md.j2:24
-msgid "Integration level"
-msgstr "Integratieniveau"
-
-#: templates/README.md.j2:24
-msgid "Working status"
-msgstr "Mate van functioneren"
-
-#: templates/README.md.j2:24
-msgid "Maintenance status"
-msgstr "Onderhoudsstatus"
-
-#: templates/README.md.j2:26
-#, python-format
-msgid "Install %(application_name)s with YunoHost"
-msgstr "%(application_name)s met Yunohost installeren"
-
-#: templates/README.md.j2:28
-msgid "Read this README in other languages."
-msgstr "Deze README in een andere taal lezen."
-
-#: templates/README.md.j2:30
-#, python-format
-msgid ""
-"This package allows you to install %(application_name)s quickly and simply "
-"on a YunoHost server."
-msgstr ""
-"Met dit pakket kun je %(application_name)s snel en eenvoudig op een YunoHost-"
-"server installeren."
-
-#: templates/README.md.j2:31
-msgid ""
-"If you don't have YunoHost, please consult [the guide](https://yunohost.org/"
-"install) to learn how to install it."
-msgstr ""
-"Als je nog geen YunoHost hebt, lees dan [de installatiehandleiding](https://"
-"yunohost.org/install), om te zien hoe je 'm installeert."
-
-#: templates/README.md.j2:33
-msgid "Overview"
-msgstr "Overzicht"
-
-#: templates/README.md.j2:37
-msgid "Shipped version:"
-msgstr "Geleverde versie:"
-
-#: templates/README.md.j2:41
-msgid "Demo:"
-msgstr "Demo:"
-
-#: templates/README.md.j2:45
-msgid "Screenshots"
-msgstr "Schermafdrukken"
-
-#: templates/README.md.j2:48
-#, python-format
-msgid "Screenshot of %(application_name)s"
-msgstr "Schermafdrukken van %(application_name)s"
-
-#: templates/README.md.j2:53
-msgid "Disclaimers / important information"
-msgstr "Uitsluitingen / belangrijke informatie"
-
-#: templates/README.md.j2:59
-msgid "Antifeatures"
-msgstr "Anti-eigenschappen"
-
-#: templates/README.md.j2:66
-msgid "Documentation and resources"
-msgstr "Documentatie en bronnen"
-
-#: templates/README.md.j2:68
-msgid "Official app website:"
-msgstr "Officiele website van de app:"
-
-#: templates/README.md.j2:70
-msgid "Official user documentation:"
-msgstr "Officiele gebruikersdocumentatie:"
-
-#: templates/README.md.j2:72
-msgid "Official admin documentation:"
-msgstr "Officiele beheerdersdocumentatie:"
-
-#: templates/README.md.j2:74
-msgid "Upstream app code repository:"
-msgstr "Upstream app codedepot:"
-
-#: templates/README.md.j2:76
-msgid "YunoHost Store:"
-msgstr "YunoHost-store:"
-
-#: templates/README.md.j2:77
-msgid "Report a bug:"
-msgstr "Meld een bug:"
-
-#: templates/README.md.j2:79
-msgid "Developer info"
-msgstr "Ontwikkelaarsinformatie"
-
-#: templates/README.md.j2:81
-#, python-format
-msgid ""
-"Please send your pull request to the [`testing` branch]"
-"(%(testing_branch_url)s)."
-msgstr ""
-"Stuur je pull request alsjeblieft naar de [`testing`-branch]"
-"(%(testing_branch_url)s)."
-
-#: templates/README.md.j2:83
-msgid "To try the `testing` branch, please proceed like that:"
-msgstr "Om de `testing`-branch uit te proberen, ga als volgt te werk:"
-
-#: templates/README.md.j2:87
-msgid "or"
-msgstr "of"
-
-#: templates/README.md.j2:91
-msgid "More info regarding app packaging:"
-msgstr "Verdere informatie over app-packaging:"
-
-#~ msgid "Edit files under the `doc/` directory"
-#~ msgstr "Bestanden in de `doc/`-directory bewerken"
diff --git a/readme_generator/translations/oc/LC_MESSAGES/messages.po b/readme_generator/translations/oc/LC_MESSAGES/messages.po
deleted file mode 100644
index 85d17f46..00000000
--- a/readme_generator/translations/oc/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,206 +0,0 @@
-# Translations template for PROJECT.
-# Copyright (C) 2024 ORGANIZATION
-# This file is distributed under the same license as the PROJECT project.
-# FIRST AUTHOR , 2024.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PROJECT VERSION\n"
-"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2024-03-31 19:33+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: oc\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.14.0\n"
-
-#: templates/ALL_README.md.j2:11
-#, python-format
-msgid "Read the README in %(language)s"
-msgstr ""
-
-#: templates/README.md.j2:2
-msgid "Packaging an app, starting from this example"
-msgstr ""
-
-#: templates/README.md.j2:4
-msgid ""
-"Copy this app before working on it, using the ['Use this template'](https://"
-"github.com/new?template_name=example_ynh&template_owner=YunoHost) button on "
-"the Github repo"
-msgstr ""
-
-#: templates/README.md.j2:5
-msgid "Edit the `manifest.toml` with app specific info"
-msgstr ""
-
-#: templates/README.md.j2:6
-msgid ""
-"Edit the `install`, `upgrade`, `remove`, `backup` and `restore` scripts, and "
-"any relevant conf files in `conf/`"
-msgstr ""
-
-#: templates/README.md.j2:7
-msgid ""
-"Using the [script helpers documentation](https://yunohost.org/"
-"packaging_apps_helpers)"
-msgstr ""
-
-#: templates/README.md.j2:8
-msgid ""
-"Edit the `change_url` and `config` scripts too, or remove them if you have "
-"no use of them"
-msgstr ""
-
-#: templates/README.md.j2:9
-msgid "Add a `LICENSE` file for the package."
-msgstr ""
-
-#: templates/README.md.j2:10
-msgid ""
-"NB: this `LICENSE` file is not meant to necessarily be the same LICENSE as "
-"the upstream app - it is only the LICENSE you want this package's code to "
-"published with and you can choose it freely! (If you don't know which to "
-"choose, we recommend [the AGPL-3](https://www.gnu.org/licenses/agpl-3.0.txt))"
-msgstr ""
-
-#: templates/README.md.j2:11
-msgid ""
-"Edit files under the `doc/` directory ([see the page about documenting "
-"packages](https://yunohost.org/packaging_app_doc))"
-msgstr ""
-
-#: templates/README.md.j2:12
-msgid ""
-"The `README.md` files are to be automatically generated by "
-msgstr ""
-
-#: templates/README.md.j2:18
-msgid ""
-"N.B.: This README was automatically generated by \n"
-"It shall NOT be edited by hand."
-msgstr ""
-
-#: templates/README.md.j2:22
-#, python-format
-msgid "%(application_name)s for YunoHost"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Integration level"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Working status"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Maintenance status"
-msgstr ""
-
-#: templates/README.md.j2:26
-#, python-format
-msgid "Install %(application_name)s with YunoHost"
-msgstr ""
-
-#: templates/README.md.j2:28
-msgid "Read this README in other languages."
-msgstr ""
-
-#: templates/README.md.j2:30
-#, python-format
-msgid ""
-"This package allows you to install %(application_name)s quickly and simply "
-"on a YunoHost server."
-msgstr ""
-
-#: templates/README.md.j2:31
-msgid ""
-"If you don't have YunoHost, please consult [the guide](https://yunohost.org/"
-"install) to learn how to install it."
-msgstr ""
-
-#: templates/README.md.j2:33
-msgid "Overview"
-msgstr ""
-
-#: templates/README.md.j2:37
-msgid "Shipped version:"
-msgstr ""
-
-#: templates/README.md.j2:41
-msgid "Demo:"
-msgstr ""
-
-#: templates/README.md.j2:45
-msgid "Screenshots"
-msgstr ""
-
-#: templates/README.md.j2:48
-#, python-format
-msgid "Screenshot of %(application_name)s"
-msgstr ""
-
-#: templates/README.md.j2:53
-msgid "Disclaimers / important information"
-msgstr ""
-
-#: templates/README.md.j2:59
-msgid "Antifeatures"
-msgstr ""
-
-#: templates/README.md.j2:66
-msgid "Documentation and resources"
-msgstr ""
-
-#: templates/README.md.j2:68
-msgid "Official app website:"
-msgstr ""
-
-#: templates/README.md.j2:70
-msgid "Official user documentation:"
-msgstr ""
-
-#: templates/README.md.j2:72
-msgid "Official admin documentation:"
-msgstr ""
-
-#: templates/README.md.j2:74
-msgid "Upstream app code repository:"
-msgstr ""
-
-#: templates/README.md.j2:76
-msgid "YunoHost Store:"
-msgstr ""
-
-#: templates/README.md.j2:77
-msgid "Report a bug:"
-msgstr ""
-
-#: templates/README.md.j2:79
-msgid "Developer info"
-msgstr ""
-
-#: templates/README.md.j2:81
-#, python-format
-msgid ""
-"Please send your pull request to the [`testing` branch]"
-"(%(testing_branch_url)s)."
-msgstr ""
-
-#: templates/README.md.j2:83
-msgid "To try the `testing` branch, please proceed like that:"
-msgstr ""
-
-#: templates/README.md.j2:87
-msgid "or"
-msgstr ""
-
-#: templates/README.md.j2:91
-msgid "More info regarding app packaging:"
-msgstr ""
diff --git a/readme_generator/translations/pl/LC_MESSAGES/messages.mo b/readme_generator/translations/pl/LC_MESSAGES/messages.mo
deleted file mode 100644
index d9b3adc5..00000000
Binary files a/readme_generator/translations/pl/LC_MESSAGES/messages.mo and /dev/null differ
diff --git a/readme_generator/translations/pl/LC_MESSAGES/messages.po b/readme_generator/translations/pl/LC_MESSAGES/messages.po
deleted file mode 100644
index 48c741a4..00000000
--- a/readme_generator/translations/pl/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,238 +0,0 @@
-# Translations template for PROJECT.
-# Copyright (C) 2024 ORGANIZATION
-# This file is distributed under the same license as the PROJECT project.
-# FIRST AUTHOR , 2024.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PROJECT VERSION\n"
-"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2024-03-31 19:33+0200\n"
-"PO-Revision-Date: 2024-11-17 14:54+0000\n"
-"Last-Translator: Eryk Michalak \n"
-"Language-Team: Polish \n"
-"Language: pl\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
-"|| n%100>=20) ? 1 : 2;\n"
-"X-Generator: Weblate 5.4.3\n"
-"Generated-By: Babel 2.14.0\n"
-
-#: templates/ALL_README.md.j2:11
-#, python-format
-msgid "Read the README in %(language)s"
-msgstr "Przeczytaj README w języku %(language)s"
-
-#: templates/README.md.j2:2
-msgid "Packaging an app, starting from this example"
-msgstr "Pakowanie aplikacji, zaczynając od tego przykładu"
-
-#: templates/README.md.j2:4
-msgid ""
-"Copy this app before working on it, using the ['Use this template'](https://"
-"github.com/new?template_name=example_ynh&template_owner=YunoHost) button on "
-"the Github repo"
-msgstr ""
-"Skopiuj tę aplikację zanim rozpoczniesz nad nią pracę używając przycisku "
-"['Użyj tego szablonu'](https://github.com/new?"
-"template_name=example_ynh&template_owner=YunoHost) na GitHubie"
-
-#: templates/README.md.j2:5
-msgid "Edit the `manifest.toml` with app specific info"
-msgstr "Edytuj `manifest.toml` z informacjami o danej aplikacji"
-
-#: templates/README.md.j2:6
-msgid ""
-"Edit the `install`, `upgrade`, `remove`, `backup` and `restore` scripts, and "
-"any relevant conf files in `conf/`"
-msgstr ""
-"Edytuj skrypty `install`, `upgrade`, `remove`, `backup` i `restore` i inne "
-"powiązane pliki w `conf/`"
-
-#: templates/README.md.j2:7
-msgid ""
-"Using the [script helpers documentation](https://yunohost.org/"
-"packaging_apps_helpers)"
-msgstr ""
-"Używa [dokumentacji do skryptów pomocniczych](https://yunohost.org/"
-"packaging_apps_helpers)"
-
-#: templates/README.md.j2:8
-msgid ""
-"Edit the `change_url` and `config` scripts too, or remove them if you have "
-"no use of them"
-msgstr ""
-"Edytuj również skrypty `change_url` i `config` lub usuń je, jeśli nie są Ci "
-"potrzebne"
-
-#: templates/README.md.j2:9
-msgid "Add a `LICENSE` file for the package."
-msgstr "Dodaj plik `LICENSE` dla paczki."
-
-#: templates/README.md.j2:10
-msgid ""
-"NB: this `LICENSE` file is not meant to necessarily be the same LICENSE as "
-"the upstream app - it is only the LICENSE you want this package's code to "
-"published with and you can choose it freely! (If you don't know which to "
-"choose, we recommend [the AGPL-3](https://www.gnu.org/licenses/agpl-3.0.txt))"
-msgstr ""
-"UWAGA: plik `LICENSE` niekoniecznie musi być tą samą LICENCJĄ, co aplikacja "
-"źródłowa — jest to po prostu LICENCJA, z którą chcesz opublikować kod tego "
-"pakietu, i możesz ją wybrać swobodnie! (Jeśli nie wiesz, którą wybrać, "
-"zalecamy [AGPL-3](https://www.gnu.org/licenses/agpl-3.0.txt))"
-
-#: templates/README.md.j2:11
-msgid ""
-"Edit files under the `doc/` directory ([see the page about documenting "
-"packages](https://yunohost.org/packaging_app_doc))"
-msgstr ""
-"Edytuj pliki w katalogu `doc/` ([zobacz stronę o dokumentowaniu "
-"pakietów](https://yunohost.org/packaging_app_doc))"
-
-#: templates/README.md.j2:12
-msgid ""
-"The `README.md` files are to be automatically generated by "
-msgstr ""
-"Pliki `README.md` są automatycznie generowane przez "
-
-#: templates/README.md.j2:18
-msgid ""
-"N.B.: This README was automatically generated by \n"
-"It shall NOT be edited by hand."
-msgstr ""
-"To README zostało automatycznie wygenerowane przez \n"
-"Nie powinno być ono edytowane ręcznie."
-
-#: templates/README.md.j2:22
-#, python-format
-msgid "%(application_name)s for YunoHost"
-msgstr "%(application_name)s dla YunoHost"
-
-#: templates/README.md.j2:24
-msgid "Integration level"
-msgstr "Poziom integracji"
-
-#: templates/README.md.j2:24
-msgid "Working status"
-msgstr "Status działania"
-
-#: templates/README.md.j2:24
-msgid "Maintenance status"
-msgstr "Status utrzymania"
-
-#: templates/README.md.j2:26
-#, python-format
-msgid "Install %(application_name)s with YunoHost"
-msgstr "Zainstaluj %(application_name)s z YunoHost"
-
-#: templates/README.md.j2:28
-msgid "Read this README in other languages."
-msgstr "Przeczytaj plik README w innym języku."
-
-#: templates/README.md.j2:30
-#, python-format
-msgid ""
-"This package allows you to install %(application_name)s quickly and simply "
-"on a YunoHost server."
-msgstr ""
-"Ta aplikacja pozwala na szybką i prostą instalację %(application_name)s na "
-"serwerze YunoHost."
-
-#: templates/README.md.j2:31
-msgid ""
-"If you don't have YunoHost, please consult [the guide](https://yunohost.org/"
-"install) to learn how to install it."
-msgstr ""
-"Jeżeli nie masz YunoHost zapoznaj się z [poradnikiem](https://yunohost.org/"
-"install) instalacji."
-
-#: templates/README.md.j2:33
-msgid "Overview"
-msgstr "Przegląd"
-
-#: templates/README.md.j2:37
-msgid "Shipped version:"
-msgstr "Dostarczona wersja:"
-
-#: templates/README.md.j2:41
-msgid "Demo:"
-msgstr "Demo:"
-
-#: templates/README.md.j2:45
-msgid "Screenshots"
-msgstr "Zrzuty ekranu"
-
-#: templates/README.md.j2:48
-#, python-format
-msgid "Screenshot of %(application_name)s"
-msgstr "Zrzut ekranu z %(application_name)s"
-
-#: templates/README.md.j2:53
-msgid "Disclaimers / important information"
-msgstr "Zastrzeżenia / ważne informacje"
-
-#: templates/README.md.j2:59
-msgid "Antifeatures"
-msgstr "Niepożądane funkcje"
-
-#: templates/README.md.j2:66
-msgid "Documentation and resources"
-msgstr "Dokumentacja i zasoby"
-
-#: templates/README.md.j2:68
-msgid "Official app website:"
-msgstr "Oficjalna strona aplikacji:"
-
-#: templates/README.md.j2:70
-msgid "Official user documentation:"
-msgstr "Oficjalna dokumentacja:"
-
-#: templates/README.md.j2:72
-msgid "Official admin documentation:"
-msgstr "Oficjalna dokumentacja dla administratora:"
-
-#: templates/README.md.j2:74
-msgid "Upstream app code repository:"
-msgstr "Repozytorium z kodem źródłowym:"
-
-#: templates/README.md.j2:76
-msgid "YunoHost Store:"
-msgstr "Sklep YunoHost:"
-
-#: templates/README.md.j2:77
-msgid "Report a bug:"
-msgstr "Zgłaszanie błędów:"
-
-#: templates/README.md.j2:79
-msgid "Developer info"
-msgstr "Informacje od twórców"
-
-#: templates/README.md.j2:81
-#, python-format
-msgid ""
-"Please send your pull request to the [`testing` branch]"
-"(%(testing_branch_url)s)."
-msgstr ""
-"Wyślij swój pull request do [gałęzi `testing`](%(testing_branch_url)s)."
-
-#: templates/README.md.j2:83
-msgid "To try the `testing` branch, please proceed like that:"
-msgstr "Aby wypróbować gałąź `testing` postępuj zgodnie z instrukcjami:"
-
-#: templates/README.md.j2:87
-msgid "or"
-msgstr "lub"
-
-#: templates/README.md.j2:91
-msgid "More info regarding app packaging:"
-msgstr "Więcej informacji o tworzeniu paczek aplikacji:"
-
-#~ msgid "Edit `doc/DISCLAIMER*.md`"
-#~ msgstr "Edytuj `doc/DISCLAIMER*.md`"
diff --git a/readme_generator/translations/pt/LC_MESSAGES/messages.mo b/readme_generator/translations/pt/LC_MESSAGES/messages.mo
deleted file mode 100644
index bde94003..00000000
Binary files a/readme_generator/translations/pt/LC_MESSAGES/messages.mo and /dev/null differ
diff --git a/readme_generator/translations/pt/LC_MESSAGES/messages.po b/readme_generator/translations/pt/LC_MESSAGES/messages.po
deleted file mode 100644
index 7e89f853..00000000
--- a/readme_generator/translations/pt/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,225 +0,0 @@
-# Translations template for PROJECT.
-# Copyright (C) 2024 ORGANIZATION
-# This file is distributed under the same license as the PROJECT project.
-# FIRST AUTHOR , 2024.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PROJECT VERSION\n"
-"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2024-03-31 19:33+0200\n"
-"PO-Revision-Date: 2024-11-16 09:10+0000\n"
-"Last-Translator: Éric Gaspar \n"
-"Language-Team: Portuguese \n"
-"Language: pt\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: Weblate 5.4.3\n"
-"Generated-By: Babel 2.14.0\n"
-
-#: templates/ALL_README.md.j2:11
-#, fuzzy, python-format
-msgid "Read the README in %(language)s"
-msgstr "Leia o README em %(language)s"
-
-#: templates/README.md.j2:2
-#, fuzzy
-msgid "Packaging an app, starting from this example"
-msgstr "Acondicionamento de uma aplicação, começando com este exemplo"
-
-#: templates/README.md.j2:4
-#, fuzzy
-msgid ""
-"Copy this app before working on it, using the ['Use this template'](https://"
-"github.com/new?template_name=example_ynh&template_owner=YunoHost) button on "
-"the Github repo"
-msgstr ""
-"Copie esta aplicação antes de trabalhar nela, utilizando o botão ['Use this "
-"template'](https://github.com/"
-"new?template_name=example_ynh&template_owner=YunoHost) no repositório do "
-"GitHub"
-
-#: templates/README.md.j2:5
-#, fuzzy
-msgid "Edit the `manifest.toml` with app specific info"
-msgstr "Edite o `manifest.toml` com informações específicas da aplicação"
-
-#: templates/README.md.j2:6
-#, fuzzy
-msgid ""
-"Edit the `install`, `upgrade`, `remove`, `backup` and `restore` scripts, and "
-"any relevant conf files in `conf/`"
-msgstr ""
-"Edite os scripts `install`, `upgrade`, `remove`, `backup` e `restore` e "
-"quaisquer ficheiros conf relevantes em `conf/`"
-
-#: templates/README.md.j2:7
-#, fuzzy
-msgid ""
-"Using the [script helpers documentation](https://yunohost.org/"
-"packaging_apps_helpers)"
-msgstr ""
-"Utilizando a [documentação dos auxiliares de script](https://yunohost.org/"
-"packaging_apps_helpers)"
-
-#: templates/README.md.j2:8
-#, fuzzy
-msgid ""
-"Edit the `change_url` and `config` scripts too, or remove them if you have "
-"no use of them"
-msgstr ""
-"Edite também os scripts `change_url` e `config` ou remova-os se não os "
-"utilizar"
-
-#: templates/README.md.j2:9
-msgid "Add a `LICENSE` file for the package."
-msgstr ""
-
-#: templates/README.md.j2:10
-msgid ""
-"NB: this `LICENSE` file is not meant to necessarily be the same LICENSE as "
-"the upstream app - it is only the LICENSE you want this package's code to "
-"published with and you can choose it freely! (If you don't know which to "
-"choose, we recommend [the AGPL-3](https://www.gnu.org/licenses/agpl-3.0.txt))"
-msgstr ""
-
-#: templates/README.md.j2:11
-msgid ""
-"Edit files under the `doc/` directory ([see the page about documenting "
-"packages](https://yunohost.org/packaging_app_doc))"
-msgstr ""
-
-#: templates/README.md.j2:12
-msgid ""
-"The `README.md` files are to be automatically generated by "
-msgstr ""
-
-#: templates/README.md.j2:18
-msgid ""
-"N.B.: This README was automatically generated by \n"
-"It shall NOT be edited by hand."
-msgstr ""
-
-#: templates/README.md.j2:22
-#, python-format
-msgid "%(application_name)s for YunoHost"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Integration level"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Working status"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Maintenance status"
-msgstr ""
-
-#: templates/README.md.j2:26
-#, python-format
-msgid "Install %(application_name)s with YunoHost"
-msgstr ""
-
-#: templates/README.md.j2:28
-msgid "Read this README in other languages."
-msgstr ""
-
-#: templates/README.md.j2:30
-#, python-format
-msgid ""
-"This package allows you to install %(application_name)s quickly and simply "
-"on a YunoHost server."
-msgstr ""
-
-#: templates/README.md.j2:31
-msgid ""
-"If you don't have YunoHost, please consult [the guide](https://yunohost.org/"
-"install) to learn how to install it."
-msgstr ""
-
-#: templates/README.md.j2:33
-msgid "Overview"
-msgstr ""
-
-#: templates/README.md.j2:37
-msgid "Shipped version:"
-msgstr ""
-
-#: templates/README.md.j2:41
-msgid "Demo:"
-msgstr ""
-
-#: templates/README.md.j2:45
-msgid "Screenshots"
-msgstr ""
-
-#: templates/README.md.j2:48
-#, python-format
-msgid "Screenshot of %(application_name)s"
-msgstr ""
-
-#: templates/README.md.j2:53
-msgid "Disclaimers / important information"
-msgstr ""
-
-#: templates/README.md.j2:59
-msgid "Antifeatures"
-msgstr ""
-
-#: templates/README.md.j2:66
-msgid "Documentation and resources"
-msgstr ""
-
-#: templates/README.md.j2:68
-msgid "Official app website:"
-msgstr ""
-
-#: templates/README.md.j2:70
-msgid "Official user documentation:"
-msgstr ""
-
-#: templates/README.md.j2:72
-msgid "Official admin documentation:"
-msgstr ""
-
-#: templates/README.md.j2:74
-msgid "Upstream app code repository:"
-msgstr ""
-
-#: templates/README.md.j2:76
-msgid "YunoHost Store:"
-msgstr ""
-
-#: templates/README.md.j2:77
-msgid "Report a bug:"
-msgstr ""
-
-#: templates/README.md.j2:79
-msgid "Developer info"
-msgstr ""
-
-#: templates/README.md.j2:81
-#, python-format
-msgid ""
-"Please send your pull request to the [`testing` branch]"
-"(%(testing_branch_url)s)."
-msgstr ""
-
-#: templates/README.md.j2:83
-msgid "To try the `testing` branch, please proceed like that:"
-msgstr ""
-
-#: templates/README.md.j2:87
-msgid "or"
-msgstr ""
-
-#: templates/README.md.j2:91
-msgid "More info regarding app packaging:"
-msgstr ""
diff --git a/readme_generator/translations/pt_BR/LC_MESSAGES/messages.mo b/readme_generator/translations/pt_BR/LC_MESSAGES/messages.mo
deleted file mode 100644
index 1291c6db..00000000
Binary files a/readme_generator/translations/pt_BR/LC_MESSAGES/messages.mo and /dev/null differ
diff --git a/readme_generator/translations/pt_BR/LC_MESSAGES/messages.po b/readme_generator/translations/pt_BR/LC_MESSAGES/messages.po
deleted file mode 100644
index 2e4c162d..00000000
--- a/readme_generator/translations/pt_BR/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,206 +0,0 @@
-# Translations template for PROJECT.
-# Copyright (C) 2024 ORGANIZATION
-# This file is distributed under the same license as the PROJECT project.
-# FIRST AUTHOR , 2024.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PROJECT VERSION\n"
-"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2024-03-31 19:33+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: pt_BR\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.14.0\n"
-
-#: templates/ALL_README.md.j2:11
-#, python-format
-msgid "Read the README in %(language)s"
-msgstr ""
-
-#: templates/README.md.j2:2
-msgid "Packaging an app, starting from this example"
-msgstr ""
-
-#: templates/README.md.j2:4
-msgid ""
-"Copy this app before working on it, using the ['Use this template'](https://"
-"github.com/new?template_name=example_ynh&template_owner=YunoHost) button on "
-"the Github repo"
-msgstr ""
-
-#: templates/README.md.j2:5
-msgid "Edit the `manifest.toml` with app specific info"
-msgstr ""
-
-#: templates/README.md.j2:6
-msgid ""
-"Edit the `install`, `upgrade`, `remove`, `backup` and `restore` scripts, and "
-"any relevant conf files in `conf/`"
-msgstr ""
-
-#: templates/README.md.j2:7
-msgid ""
-"Using the [script helpers documentation](https://yunohost.org/"
-"packaging_apps_helpers)"
-msgstr ""
-
-#: templates/README.md.j2:8
-msgid ""
-"Edit the `change_url` and `config` scripts too, or remove them if you have "
-"no use of them"
-msgstr ""
-
-#: templates/README.md.j2:9
-msgid "Add a `LICENSE` file for the package."
-msgstr ""
-
-#: templates/README.md.j2:10
-msgid ""
-"NB: this `LICENSE` file is not meant to necessarily be the same LICENSE as "
-"the upstream app - it is only the LICENSE you want this package's code to "
-"published with and you can choose it freely! (If you don't know which to "
-"choose, we recommend [the AGPL-3](https://www.gnu.org/licenses/agpl-3.0.txt))"
-msgstr ""
-
-#: templates/README.md.j2:11
-msgid ""
-"Edit files under the `doc/` directory ([see the page about documenting "
-"packages](https://yunohost.org/packaging_app_doc))"
-msgstr ""
-
-#: templates/README.md.j2:12
-msgid ""
-"The `README.md` files are to be automatically generated by "
-msgstr ""
-
-#: templates/README.md.j2:18
-msgid ""
-"N.B.: This README was automatically generated by \n"
-"It shall NOT be edited by hand."
-msgstr ""
-
-#: templates/README.md.j2:22
-#, python-format
-msgid "%(application_name)s for YunoHost"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Integration level"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Working status"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Maintenance status"
-msgstr ""
-
-#: templates/README.md.j2:26
-#, python-format
-msgid "Install %(application_name)s with YunoHost"
-msgstr ""
-
-#: templates/README.md.j2:28
-msgid "Read this README in other languages."
-msgstr ""
-
-#: templates/README.md.j2:30
-#, python-format
-msgid ""
-"This package allows you to install %(application_name)s quickly and simply "
-"on a YunoHost server."
-msgstr ""
-
-#: templates/README.md.j2:31
-msgid ""
-"If you don't have YunoHost, please consult [the guide](https://yunohost.org/"
-"install) to learn how to install it."
-msgstr ""
-
-#: templates/README.md.j2:33
-msgid "Overview"
-msgstr ""
-
-#: templates/README.md.j2:37
-msgid "Shipped version:"
-msgstr ""
-
-#: templates/README.md.j2:41
-msgid "Demo:"
-msgstr ""
-
-#: templates/README.md.j2:45
-msgid "Screenshots"
-msgstr ""
-
-#: templates/README.md.j2:48
-#, python-format
-msgid "Screenshot of %(application_name)s"
-msgstr ""
-
-#: templates/README.md.j2:53
-msgid "Disclaimers / important information"
-msgstr ""
-
-#: templates/README.md.j2:59
-msgid "Antifeatures"
-msgstr ""
-
-#: templates/README.md.j2:66
-msgid "Documentation and resources"
-msgstr ""
-
-#: templates/README.md.j2:68
-msgid "Official app website:"
-msgstr ""
-
-#: templates/README.md.j2:70
-msgid "Official user documentation:"
-msgstr ""
-
-#: templates/README.md.j2:72
-msgid "Official admin documentation:"
-msgstr ""
-
-#: templates/README.md.j2:74
-msgid "Upstream app code repository:"
-msgstr ""
-
-#: templates/README.md.j2:76
-msgid "YunoHost Store:"
-msgstr ""
-
-#: templates/README.md.j2:77
-msgid "Report a bug:"
-msgstr ""
-
-#: templates/README.md.j2:79
-msgid "Developer info"
-msgstr ""
-
-#: templates/README.md.j2:81
-#, python-format
-msgid ""
-"Please send your pull request to the [`testing` branch]"
-"(%(testing_branch_url)s)."
-msgstr ""
-
-#: templates/README.md.j2:83
-msgid "To try the `testing` branch, please proceed like that:"
-msgstr ""
-
-#: templates/README.md.j2:87
-msgid "or"
-msgstr ""
-
-#: templates/README.md.j2:91
-msgid "More info regarding app packaging:"
-msgstr ""
diff --git a/readme_generator/translations/ru/LC_MESSAGES/messages.mo b/readme_generator/translations/ru/LC_MESSAGES/messages.mo
deleted file mode 100644
index 009778e9..00000000
Binary files a/readme_generator/translations/ru/LC_MESSAGES/messages.mo and /dev/null differ
diff --git a/readme_generator/translations/ru/LC_MESSAGES/messages.po b/readme_generator/translations/ru/LC_MESSAGES/messages.po
deleted file mode 100644
index 47bf759f..00000000
--- a/readme_generator/translations/ru/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,236 +0,0 @@
-# Translations template for PROJECT.
-# Copyright (C) 2024 ORGANIZATION
-# This file is distributed under the same license as the PROJECT project.
-# FIRST AUTHOR , 2024.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PROJECT VERSION\n"
-"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2024-03-31 19:33+0200\n"
-"PO-Revision-Date: 2024-08-07 06:55+0000\n"
-"Last-Translator: Ivan Davydov \n"
-"Language-Team: Russian \n"
-"Language: ru\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
-"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: Weblate 5.4.3\n"
-"Generated-By: Babel 2.14.0\n"
-
-#: templates/ALL_README.md.j2:11
-#, python-format
-msgid "Read the README in %(language)s"
-msgstr "Прочитать README на %(language)s"
-
-#: templates/README.md.j2:2
-msgid "Packaging an app, starting from this example"
-msgstr "Пакетирование приложения, начиная с этого примера"
-
-#: templates/README.md.j2:4
-msgid ""
-"Copy this app before working on it, using the ['Use this template'](https://"
-"github.com/new?template_name=example_ynh&template_owner=YunoHost) button on "
-"the Github repo"
-msgstr ""
-"Скопируйте приложение перед тем, как работать над ним, используя кнопку "
-"['Use this template'](https://github.com/new?"
-"template_name=example_ynh&template_owner=YunoHost) на GitHub-репозитории"
-
-#: templates/README.md.j2:5
-msgid "Edit the `manifest.toml` with app specific info"
-msgstr "Отредактируйте `manifest.toml`, добавив данные приложения"
-
-#: templates/README.md.j2:6
-msgid ""
-"Edit the `install`, `upgrade`, `remove`, `backup` and `restore` scripts, and "
-"any relevant conf files in `conf/`"
-msgstr ""
-"Отредактируйте скрипты `install`, `upgrade`, `remove`, `backup` and "
-"`restore`, и добавьте необходимые файлы конфигурации в `conf/`"
-
-#: templates/README.md.j2:7
-msgid ""
-"Using the [script helpers documentation](https://yunohost.org/"
-"packaging_apps_helpers)"
-msgstr ""
-"Используя [документацию по помощникам скриптов](https://yunohost.org/"
-"packaging_apps_helpers)"
-
-#: templates/README.md.j2:8
-msgid ""
-"Edit the `change_url` and `config` scripts too, or remove them if you have "
-"no use of them"
-msgstr ""
-"Также отредактируйте скрипты `change_url` and `config`, или удалите их, если "
-"Вы их не используете"
-
-#: templates/README.md.j2:9
-msgid "Add a `LICENSE` file for the package."
-msgstr "Добавьте файл `LICENSE` в пакет."
-
-#: templates/README.md.j2:10
-msgid ""
-"NB: this `LICENSE` file is not meant to necessarily be the same LICENSE as "
-"the upstream app - it is only the LICENSE you want this package's code to "
-"published with and you can choose it freely! (If you don't know which to "
-"choose, we recommend [the AGPL-3](https://www.gnu.org/licenses/agpl-3.0.txt))"
-msgstr ""
-"Важно: этот файл `LICENSE` не обязан быть таким же, как и в главной ветке "
-"приложения - это только лицензия, под которой Вы хотите распространять код "
-"данного пакета. (если Вы не знаете, какую выбрать лицензию, мы рекомендуем "
-"[AGPL-3](https://www.gnu.org/licenses/agpl-3.0.txt))"
-
-#: templates/README.md.j2:11
-msgid ""
-"Edit files under the `doc/` directory ([see the page about documenting "
-"packages](https://yunohost.org/packaging_app_doc))"
-msgstr ""
-"Отредактируйте файлы в директории `doc/` ([смотрите страницу о "
-"документировании пакетов](https://yunohost.org/packaging_app_doc))"
-
-#: templates/README.md.j2:12
-msgid ""
-"The `README.md` files are to be automatically generated by "
-msgstr ""
-"Файлы `README.md` автоматически генерируются "
-
-#: templates/README.md.j2:18
-msgid ""
-"N.B.: This README was automatically generated by \n"
-"It shall NOT be edited by hand."
-msgstr ""
-"Важно: этот README был автоматически сгенерирован \n"
-"Он НЕ ДОЛЖЕН редактироваться вручную."
-
-#: templates/README.md.j2:22
-#, python-format
-msgid "%(application_name)s for YunoHost"
-msgstr "%(application_name)s для YunoHost"
-
-#: templates/README.md.j2:24
-msgid "Integration level"
-msgstr "Уровень интеграции"
-
-#: templates/README.md.j2:24
-msgid "Working status"
-msgstr "Состояние работы"
-
-#: templates/README.md.j2:24
-msgid "Maintenance status"
-msgstr "Состояние сопровождения"
-
-#: templates/README.md.j2:26
-#, python-format
-msgid "Install %(application_name)s with YunoHost"
-msgstr "Установите %(application_name)s с YunoHost"
-
-#: templates/README.md.j2:28
-msgid "Read this README in other languages."
-msgstr "Прочтите этот README на других языках."
-
-#: templates/README.md.j2:30
-#, python-format
-msgid ""
-"This package allows you to install %(application_name)s quickly and simply "
-"on a YunoHost server."
-msgstr ""
-"Этот пакет позволяет Вам установить %(application_name)s быстро и просто на "
-"YunoHost-сервер."
-
-#: templates/README.md.j2:31
-msgid ""
-"If you don't have YunoHost, please consult [the guide](https://yunohost.org/"
-"install) to learn how to install it."
-msgstr ""
-"Если у Вас нет YunoHost, пожалуйста, посмотрите [инструкцию](https://"
-"yunohost.org/install), чтобы узнать, как установить его."
-
-#: templates/README.md.j2:33
-msgid "Overview"
-msgstr "Обзор"
-
-#: templates/README.md.j2:37
-msgid "Shipped version:"
-msgstr "Поставляемая версия:"
-
-#: templates/README.md.j2:41
-msgid "Demo:"
-msgstr "Демо-версия:"
-
-#: templates/README.md.j2:45
-msgid "Screenshots"
-msgstr "Снимки экрана"
-
-#: templates/README.md.j2:48
-#, python-format
-msgid "Screenshot of %(application_name)s"
-msgstr "Снимок экрана %(application_name)s"
-
-#: templates/README.md.j2:53
-msgid "Disclaimers / important information"
-msgstr "Дисклеймеры / важная информация"
-
-#: templates/README.md.j2:59
-msgid "Antifeatures"
-msgstr "Анти-функции"
-
-#: templates/README.md.j2:66
-msgid "Documentation and resources"
-msgstr "Документация и ресурсы"
-
-#: templates/README.md.j2:68
-msgid "Official app website:"
-msgstr "Официальный веб-сайт приложения:"
-
-#: templates/README.md.j2:70
-msgid "Official user documentation:"
-msgstr "Официальная документация пользователя:"
-
-#: templates/README.md.j2:72
-msgid "Official admin documentation:"
-msgstr "Официальная документация администратора:"
-
-#: templates/README.md.j2:74
-msgid "Upstream app code repository:"
-msgstr "Репозиторий кода главной ветки приложения:"
-
-#: templates/README.md.j2:76
-msgid "YunoHost Store:"
-msgstr "Магазин YunoHost:"
-
-#: templates/README.md.j2:77
-msgid "Report a bug:"
-msgstr "Сообщите об ошибке:"
-
-#: templates/README.md.j2:79
-msgid "Developer info"
-msgstr "Информация для разработчиков"
-
-#: templates/README.md.j2:81
-#, python-format
-msgid ""
-"Please send your pull request to the [`testing` branch]"
-"(%(testing_branch_url)s)."
-msgstr ""
-"Пришлите Ваш запрос на слияние в [ветку `testing`](%(testing_branch_url)s)."
-
-#: templates/README.md.j2:83
-msgid "To try the `testing` branch, please proceed like that:"
-msgstr ""
-"Чтобы попробовать ветку `testing`, пожалуйста, сделайте что-то вроде этого:"
-
-#: templates/README.md.j2:87
-msgid "or"
-msgstr "или"
-
-#: templates/README.md.j2:91
-msgid "More info regarding app packaging:"
-msgstr "Больше информации о пакетировании приложений:"
diff --git a/readme_generator/translations/sk/LC_MESSAGES/messages.po b/readme_generator/translations/sk/LC_MESSAGES/messages.po
deleted file mode 100644
index 7003979f..00000000
--- a/readme_generator/translations/sk/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,206 +0,0 @@
-# Translations template for PROJECT.
-# Copyright (C) 2024 ORGANIZATION
-# This file is distributed under the same license as the PROJECT project.
-# FIRST AUTHOR , 2024.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PROJECT VERSION\n"
-"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2024-03-31 19:33+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: sk\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.14.0\n"
-
-#: templates/ALL_README.md.j2:11
-#, python-format
-msgid "Read the README in %(language)s"
-msgstr ""
-
-#: templates/README.md.j2:2
-msgid "Packaging an app, starting from this example"
-msgstr ""
-
-#: templates/README.md.j2:4
-msgid ""
-"Copy this app before working on it, using the ['Use this template'](https://"
-"github.com/new?template_name=example_ynh&template_owner=YunoHost) button on "
-"the Github repo"
-msgstr ""
-
-#: templates/README.md.j2:5
-msgid "Edit the `manifest.toml` with app specific info"
-msgstr ""
-
-#: templates/README.md.j2:6
-msgid ""
-"Edit the `install`, `upgrade`, `remove`, `backup` and `restore` scripts, and "
-"any relevant conf files in `conf/`"
-msgstr ""
-
-#: templates/README.md.j2:7
-msgid ""
-"Using the [script helpers documentation](https://yunohost.org/"
-"packaging_apps_helpers)"
-msgstr ""
-
-#: templates/README.md.j2:8
-msgid ""
-"Edit the `change_url` and `config` scripts too, or remove them if you have "
-"no use of them"
-msgstr ""
-
-#: templates/README.md.j2:9
-msgid "Add a `LICENSE` file for the package."
-msgstr ""
-
-#: templates/README.md.j2:10
-msgid ""
-"NB: this `LICENSE` file is not meant to necessarily be the same LICENSE as "
-"the upstream app - it is only the LICENSE you want this package's code to "
-"published with and you can choose it freely! (If you don't know which to "
-"choose, we recommend [the AGPL-3](https://www.gnu.org/licenses/agpl-3.0.txt))"
-msgstr ""
-
-#: templates/README.md.j2:11
-msgid ""
-"Edit files under the `doc/` directory ([see the page about documenting "
-"packages](https://yunohost.org/packaging_app_doc))"
-msgstr ""
-
-#: templates/README.md.j2:12
-msgid ""
-"The `README.md` files are to be automatically generated by "
-msgstr ""
-
-#: templates/README.md.j2:18
-msgid ""
-"N.B.: This README was automatically generated by \n"
-"It shall NOT be edited by hand."
-msgstr ""
-
-#: templates/README.md.j2:22
-#, python-format
-msgid "%(application_name)s for YunoHost"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Integration level"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Working status"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Maintenance status"
-msgstr ""
-
-#: templates/README.md.j2:26
-#, python-format
-msgid "Install %(application_name)s with YunoHost"
-msgstr ""
-
-#: templates/README.md.j2:28
-msgid "Read this README in other languages."
-msgstr ""
-
-#: templates/README.md.j2:30
-#, python-format
-msgid ""
-"This package allows you to install %(application_name)s quickly and simply "
-"on a YunoHost server."
-msgstr ""
-
-#: templates/README.md.j2:31
-msgid ""
-"If you don't have YunoHost, please consult [the guide](https://yunohost.org/"
-"install) to learn how to install it."
-msgstr ""
-
-#: templates/README.md.j2:33
-msgid "Overview"
-msgstr ""
-
-#: templates/README.md.j2:37
-msgid "Shipped version:"
-msgstr ""
-
-#: templates/README.md.j2:41
-msgid "Demo:"
-msgstr ""
-
-#: templates/README.md.j2:45
-msgid "Screenshots"
-msgstr ""
-
-#: templates/README.md.j2:48
-#, python-format
-msgid "Screenshot of %(application_name)s"
-msgstr ""
-
-#: templates/README.md.j2:53
-msgid "Disclaimers / important information"
-msgstr ""
-
-#: templates/README.md.j2:59
-msgid "Antifeatures"
-msgstr ""
-
-#: templates/README.md.j2:66
-msgid "Documentation and resources"
-msgstr ""
-
-#: templates/README.md.j2:68
-msgid "Official app website:"
-msgstr ""
-
-#: templates/README.md.j2:70
-msgid "Official user documentation:"
-msgstr ""
-
-#: templates/README.md.j2:72
-msgid "Official admin documentation:"
-msgstr ""
-
-#: templates/README.md.j2:74
-msgid "Upstream app code repository:"
-msgstr ""
-
-#: templates/README.md.j2:76
-msgid "YunoHost Store:"
-msgstr ""
-
-#: templates/README.md.j2:77
-msgid "Report a bug:"
-msgstr ""
-
-#: templates/README.md.j2:79
-msgid "Developer info"
-msgstr ""
-
-#: templates/README.md.j2:81
-#, python-format
-msgid ""
-"Please send your pull request to the [`testing` branch]"
-"(%(testing_branch_url)s)."
-msgstr ""
-
-#: templates/README.md.j2:83
-msgid "To try the `testing` branch, please proceed like that:"
-msgstr ""
-
-#: templates/README.md.j2:87
-msgid "or"
-msgstr ""
-
-#: templates/README.md.j2:91
-msgid "More info regarding app packaging:"
-msgstr ""
diff --git a/readme_generator/translations/sl/LC_MESSAGES/messages.mo b/readme_generator/translations/sl/LC_MESSAGES/messages.mo
deleted file mode 100644
index 5998c368..00000000
Binary files a/readme_generator/translations/sl/LC_MESSAGES/messages.mo and /dev/null differ
diff --git a/readme_generator/translations/sl/LC_MESSAGES/messages.po b/readme_generator/translations/sl/LC_MESSAGES/messages.po
deleted file mode 100644
index dd6846e4..00000000
--- a/readme_generator/translations/sl/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,206 +0,0 @@
-# Translations template for PROJECT.
-# Copyright (C) 2024 ORGANIZATION
-# This file is distributed under the same license as the PROJECT project.
-# FIRST AUTHOR , 2024.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PROJECT VERSION\n"
-"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2024-03-31 19:33+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: sl\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.14.0\n"
-
-#: templates/ALL_README.md.j2:11
-#, python-format
-msgid "Read the README in %(language)s"
-msgstr ""
-
-#: templates/README.md.j2:2
-msgid "Packaging an app, starting from this example"
-msgstr ""
-
-#: templates/README.md.j2:4
-msgid ""
-"Copy this app before working on it, using the ['Use this template'](https://"
-"github.com/new?template_name=example_ynh&template_owner=YunoHost) button on "
-"the Github repo"
-msgstr ""
-
-#: templates/README.md.j2:5
-msgid "Edit the `manifest.toml` with app specific info"
-msgstr ""
-
-#: templates/README.md.j2:6
-msgid ""
-"Edit the `install`, `upgrade`, `remove`, `backup` and `restore` scripts, and "
-"any relevant conf files in `conf/`"
-msgstr ""
-
-#: templates/README.md.j2:7
-msgid ""
-"Using the [script helpers documentation](https://yunohost.org/"
-"packaging_apps_helpers)"
-msgstr ""
-
-#: templates/README.md.j2:8
-msgid ""
-"Edit the `change_url` and `config` scripts too, or remove them if you have "
-"no use of them"
-msgstr ""
-
-#: templates/README.md.j2:9
-msgid "Add a `LICENSE` file for the package."
-msgstr ""
-
-#: templates/README.md.j2:10
-msgid ""
-"NB: this `LICENSE` file is not meant to necessarily be the same LICENSE as "
-"the upstream app - it is only the LICENSE you want this package's code to "
-"published with and you can choose it freely! (If you don't know which to "
-"choose, we recommend [the AGPL-3](https://www.gnu.org/licenses/agpl-3.0.txt))"
-msgstr ""
-
-#: templates/README.md.j2:11
-msgid ""
-"Edit files under the `doc/` directory ([see the page about documenting "
-"packages](https://yunohost.org/packaging_app_doc))"
-msgstr ""
-
-#: templates/README.md.j2:12
-msgid ""
-"The `README.md` files are to be automatically generated by "
-msgstr ""
-
-#: templates/README.md.j2:18
-msgid ""
-"N.B.: This README was automatically generated by \n"
-"It shall NOT be edited by hand."
-msgstr ""
-
-#: templates/README.md.j2:22
-#, python-format
-msgid "%(application_name)s for YunoHost"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Integration level"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Working status"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Maintenance status"
-msgstr ""
-
-#: templates/README.md.j2:26
-#, python-format
-msgid "Install %(application_name)s with YunoHost"
-msgstr ""
-
-#: templates/README.md.j2:28
-msgid "Read this README in other languages."
-msgstr ""
-
-#: templates/README.md.j2:30
-#, python-format
-msgid ""
-"This package allows you to install %(application_name)s quickly and simply "
-"on a YunoHost server."
-msgstr ""
-
-#: templates/README.md.j2:31
-msgid ""
-"If you don't have YunoHost, please consult [the guide](https://yunohost.org/"
-"install) to learn how to install it."
-msgstr ""
-
-#: templates/README.md.j2:33
-msgid "Overview"
-msgstr ""
-
-#: templates/README.md.j2:37
-msgid "Shipped version:"
-msgstr ""
-
-#: templates/README.md.j2:41
-msgid "Demo:"
-msgstr ""
-
-#: templates/README.md.j2:45
-msgid "Screenshots"
-msgstr ""
-
-#: templates/README.md.j2:48
-#, python-format
-msgid "Screenshot of %(application_name)s"
-msgstr ""
-
-#: templates/README.md.j2:53
-msgid "Disclaimers / important information"
-msgstr ""
-
-#: templates/README.md.j2:59
-msgid "Antifeatures"
-msgstr ""
-
-#: templates/README.md.j2:66
-msgid "Documentation and resources"
-msgstr ""
-
-#: templates/README.md.j2:68
-msgid "Official app website:"
-msgstr ""
-
-#: templates/README.md.j2:70
-msgid "Official user documentation:"
-msgstr ""
-
-#: templates/README.md.j2:72
-msgid "Official admin documentation:"
-msgstr ""
-
-#: templates/README.md.j2:74
-msgid "Upstream app code repository:"
-msgstr ""
-
-#: templates/README.md.j2:76
-msgid "YunoHost Store:"
-msgstr ""
-
-#: templates/README.md.j2:77
-msgid "Report a bug:"
-msgstr ""
-
-#: templates/README.md.j2:79
-msgid "Developer info"
-msgstr ""
-
-#: templates/README.md.j2:81
-#, python-format
-msgid ""
-"Please send your pull request to the [`testing` branch]"
-"(%(testing_branch_url)s)."
-msgstr ""
-
-#: templates/README.md.j2:83
-msgid "To try the `testing` branch, please proceed like that:"
-msgstr ""
-
-#: templates/README.md.j2:87
-msgid "or"
-msgstr ""
-
-#: templates/README.md.j2:91
-msgid "More info regarding app packaging:"
-msgstr ""
diff --git a/readme_generator/translations/sv/LC_MESSAGES/messages.mo b/readme_generator/translations/sv/LC_MESSAGES/messages.mo
deleted file mode 100644
index 20f090ff..00000000
Binary files a/readme_generator/translations/sv/LC_MESSAGES/messages.mo and /dev/null differ
diff --git a/readme_generator/translations/sv/LC_MESSAGES/messages.po b/readme_generator/translations/sv/LC_MESSAGES/messages.po
deleted file mode 100644
index 00ce6fa8..00000000
--- a/readme_generator/translations/sv/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,206 +0,0 @@
-# Translations template for PROJECT.
-# Copyright (C) 2024 ORGANIZATION
-# This file is distributed under the same license as the PROJECT project.
-# FIRST AUTHOR , 2024.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PROJECT VERSION\n"
-"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2024-03-31 19:33+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: sv\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.14.0\n"
-
-#: templates/ALL_README.md.j2:11
-#, python-format
-msgid "Read the README in %(language)s"
-msgstr ""
-
-#: templates/README.md.j2:2
-msgid "Packaging an app, starting from this example"
-msgstr ""
-
-#: templates/README.md.j2:4
-msgid ""
-"Copy this app before working on it, using the ['Use this template'](https://"
-"github.com/new?template_name=example_ynh&template_owner=YunoHost) button on "
-"the Github repo"
-msgstr ""
-
-#: templates/README.md.j2:5
-msgid "Edit the `manifest.toml` with app specific info"
-msgstr ""
-
-#: templates/README.md.j2:6
-msgid ""
-"Edit the `install`, `upgrade`, `remove`, `backup` and `restore` scripts, and "
-"any relevant conf files in `conf/`"
-msgstr ""
-
-#: templates/README.md.j2:7
-msgid ""
-"Using the [script helpers documentation](https://yunohost.org/"
-"packaging_apps_helpers)"
-msgstr ""
-
-#: templates/README.md.j2:8
-msgid ""
-"Edit the `change_url` and `config` scripts too, or remove them if you have "
-"no use of them"
-msgstr ""
-
-#: templates/README.md.j2:9
-msgid "Add a `LICENSE` file for the package."
-msgstr ""
-
-#: templates/README.md.j2:10
-msgid ""
-"NB: this `LICENSE` file is not meant to necessarily be the same LICENSE as "
-"the upstream app - it is only the LICENSE you want this package's code to "
-"published with and you can choose it freely! (If you don't know which to "
-"choose, we recommend [the AGPL-3](https://www.gnu.org/licenses/agpl-3.0.txt))"
-msgstr ""
-
-#: templates/README.md.j2:11
-msgid ""
-"Edit files under the `doc/` directory ([see the page about documenting "
-"packages](https://yunohost.org/packaging_app_doc))"
-msgstr ""
-
-#: templates/README.md.j2:12
-msgid ""
-"The `README.md` files are to be automatically generated by "
-msgstr ""
-
-#: templates/README.md.j2:18
-msgid ""
-"N.B.: This README was automatically generated by \n"
-"It shall NOT be edited by hand."
-msgstr ""
-
-#: templates/README.md.j2:22
-#, python-format
-msgid "%(application_name)s for YunoHost"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Integration level"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Working status"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Maintenance status"
-msgstr ""
-
-#: templates/README.md.j2:26
-#, python-format
-msgid "Install %(application_name)s with YunoHost"
-msgstr ""
-
-#: templates/README.md.j2:28
-msgid "Read this README in other languages."
-msgstr ""
-
-#: templates/README.md.j2:30
-#, python-format
-msgid ""
-"This package allows you to install %(application_name)s quickly and simply "
-"on a YunoHost server."
-msgstr ""
-
-#: templates/README.md.j2:31
-msgid ""
-"If you don't have YunoHost, please consult [the guide](https://yunohost.org/"
-"install) to learn how to install it."
-msgstr ""
-
-#: templates/README.md.j2:33
-msgid "Overview"
-msgstr ""
-
-#: templates/README.md.j2:37
-msgid "Shipped version:"
-msgstr ""
-
-#: templates/README.md.j2:41
-msgid "Demo:"
-msgstr ""
-
-#: templates/README.md.j2:45
-msgid "Screenshots"
-msgstr ""
-
-#: templates/README.md.j2:48
-#, python-format
-msgid "Screenshot of %(application_name)s"
-msgstr ""
-
-#: templates/README.md.j2:53
-msgid "Disclaimers / important information"
-msgstr ""
-
-#: templates/README.md.j2:59
-msgid "Antifeatures"
-msgstr ""
-
-#: templates/README.md.j2:66
-msgid "Documentation and resources"
-msgstr ""
-
-#: templates/README.md.j2:68
-msgid "Official app website:"
-msgstr ""
-
-#: templates/README.md.j2:70
-msgid "Official user documentation:"
-msgstr ""
-
-#: templates/README.md.j2:72
-msgid "Official admin documentation:"
-msgstr ""
-
-#: templates/README.md.j2:74
-msgid "Upstream app code repository:"
-msgstr ""
-
-#: templates/README.md.j2:76
-msgid "YunoHost Store:"
-msgstr ""
-
-#: templates/README.md.j2:77
-msgid "Report a bug:"
-msgstr ""
-
-#: templates/README.md.j2:79
-msgid "Developer info"
-msgstr ""
-
-#: templates/README.md.j2:81
-#, python-format
-msgid ""
-"Please send your pull request to the [`testing` branch]"
-"(%(testing_branch_url)s)."
-msgstr ""
-
-#: templates/README.md.j2:83
-msgid "To try the `testing` branch, please proceed like that:"
-msgstr ""
-
-#: templates/README.md.j2:87
-msgid "or"
-msgstr ""
-
-#: templates/README.md.j2:91
-msgid "More info regarding app packaging:"
-msgstr ""
diff --git a/readme_generator/translations/te/LC_MESSAGES/messages.mo b/readme_generator/translations/te/LC_MESSAGES/messages.mo
deleted file mode 100644
index c2c8e7a6..00000000
Binary files a/readme_generator/translations/te/LC_MESSAGES/messages.mo and /dev/null differ
diff --git a/readme_generator/translations/te/LC_MESSAGES/messages.po b/readme_generator/translations/te/LC_MESSAGES/messages.po
deleted file mode 100644
index a854096c..00000000
--- a/readme_generator/translations/te/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,206 +0,0 @@
-# Translations template for PROJECT.
-# Copyright (C) 2024 ORGANIZATION
-# This file is distributed under the same license as the PROJECT project.
-# FIRST AUTHOR , 2024.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PROJECT VERSION\n"
-"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2024-03-31 19:33+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: te\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.14.0\n"
-
-#: templates/ALL_README.md.j2:11
-#, python-format
-msgid "Read the README in %(language)s"
-msgstr ""
-
-#: templates/README.md.j2:2
-msgid "Packaging an app, starting from this example"
-msgstr ""
-
-#: templates/README.md.j2:4
-msgid ""
-"Copy this app before working on it, using the ['Use this template'](https://"
-"github.com/new?template_name=example_ynh&template_owner=YunoHost) button on "
-"the Github repo"
-msgstr ""
-
-#: templates/README.md.j2:5
-msgid "Edit the `manifest.toml` with app specific info"
-msgstr ""
-
-#: templates/README.md.j2:6
-msgid ""
-"Edit the `install`, `upgrade`, `remove`, `backup` and `restore` scripts, and "
-"any relevant conf files in `conf/`"
-msgstr ""
-
-#: templates/README.md.j2:7
-msgid ""
-"Using the [script helpers documentation](https://yunohost.org/"
-"packaging_apps_helpers)"
-msgstr ""
-
-#: templates/README.md.j2:8
-msgid ""
-"Edit the `change_url` and `config` scripts too, or remove them if you have "
-"no use of them"
-msgstr ""
-
-#: templates/README.md.j2:9
-msgid "Add a `LICENSE` file for the package."
-msgstr ""
-
-#: templates/README.md.j2:10
-msgid ""
-"NB: this `LICENSE` file is not meant to necessarily be the same LICENSE as "
-"the upstream app - it is only the LICENSE you want this package's code to "
-"published with and you can choose it freely! (If you don't know which to "
-"choose, we recommend [the AGPL-3](https://www.gnu.org/licenses/agpl-3.0.txt))"
-msgstr ""
-
-#: templates/README.md.j2:11
-msgid ""
-"Edit files under the `doc/` directory ([see the page about documenting "
-"packages](https://yunohost.org/packaging_app_doc))"
-msgstr ""
-
-#: templates/README.md.j2:12
-msgid ""
-"The `README.md` files are to be automatically generated by "
-msgstr ""
-
-#: templates/README.md.j2:18
-msgid ""
-"N.B.: This README was automatically generated by \n"
-"It shall NOT be edited by hand."
-msgstr ""
-
-#: templates/README.md.j2:22
-#, python-format
-msgid "%(application_name)s for YunoHost"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Integration level"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Working status"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Maintenance status"
-msgstr ""
-
-#: templates/README.md.j2:26
-#, python-format
-msgid "Install %(application_name)s with YunoHost"
-msgstr ""
-
-#: templates/README.md.j2:28
-msgid "Read this README in other languages."
-msgstr ""
-
-#: templates/README.md.j2:30
-#, python-format
-msgid ""
-"This package allows you to install %(application_name)s quickly and simply "
-"on a YunoHost server."
-msgstr ""
-
-#: templates/README.md.j2:31
-msgid ""
-"If you don't have YunoHost, please consult [the guide](https://yunohost.org/"
-"install) to learn how to install it."
-msgstr ""
-
-#: templates/README.md.j2:33
-msgid "Overview"
-msgstr ""
-
-#: templates/README.md.j2:37
-msgid "Shipped version:"
-msgstr ""
-
-#: templates/README.md.j2:41
-msgid "Demo:"
-msgstr ""
-
-#: templates/README.md.j2:45
-msgid "Screenshots"
-msgstr ""
-
-#: templates/README.md.j2:48
-#, python-format
-msgid "Screenshot of %(application_name)s"
-msgstr ""
-
-#: templates/README.md.j2:53
-msgid "Disclaimers / important information"
-msgstr ""
-
-#: templates/README.md.j2:59
-msgid "Antifeatures"
-msgstr ""
-
-#: templates/README.md.j2:66
-msgid "Documentation and resources"
-msgstr ""
-
-#: templates/README.md.j2:68
-msgid "Official app website:"
-msgstr ""
-
-#: templates/README.md.j2:70
-msgid "Official user documentation:"
-msgstr ""
-
-#: templates/README.md.j2:72
-msgid "Official admin documentation:"
-msgstr ""
-
-#: templates/README.md.j2:74
-msgid "Upstream app code repository:"
-msgstr ""
-
-#: templates/README.md.j2:76
-msgid "YunoHost Store:"
-msgstr ""
-
-#: templates/README.md.j2:77
-msgid "Report a bug:"
-msgstr ""
-
-#: templates/README.md.j2:79
-msgid "Developer info"
-msgstr ""
-
-#: templates/README.md.j2:81
-#, python-format
-msgid ""
-"Please send your pull request to the [`testing` branch]"
-"(%(testing_branch_url)s)."
-msgstr ""
-
-#: templates/README.md.j2:83
-msgid "To try the `testing` branch, please proceed like that:"
-msgstr ""
-
-#: templates/README.md.j2:87
-msgid "or"
-msgstr ""
-
-#: templates/README.md.j2:91
-msgid "More info regarding app packaging:"
-msgstr ""
diff --git a/readme_generator/translations/tr/LC_MESSAGES/messages.mo b/readme_generator/translations/tr/LC_MESSAGES/messages.mo
deleted file mode 100644
index 094c0933..00000000
Binary files a/readme_generator/translations/tr/LC_MESSAGES/messages.mo and /dev/null differ
diff --git a/readme_generator/translations/tr/LC_MESSAGES/messages.po b/readme_generator/translations/tr/LC_MESSAGES/messages.po
deleted file mode 100644
index 177da97a..00000000
--- a/readme_generator/translations/tr/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,230 +0,0 @@
-# Translations template for PROJECT.
-# Copyright (C) 2024 ORGANIZATION
-# This file is distributed under the same license as the PROJECT project.
-# FIRST AUTHOR , 2024.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PROJECT VERSION\n"
-"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2024-03-31 19:33+0200\n"
-"PO-Revision-Date: 2025-01-22 18:49+0000\n"
-"Last-Translator: Furkan Samed Acet \n"
-"Language-Team: Turkish \n"
-"Language: tr\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 5.4.3\n"
-"Generated-By: Babel 2.14.0\n"
-
-#: templates/ALL_README.md.j2:11
-#, python-format
-msgid "Read the README in %(language)s"
-msgstr "README(BENİOKU)'yu%(language)s dilinde oku"
-
-#: templates/README.md.j2:2
-msgid "Packaging an app, starting from this example"
-msgstr "Bu örnekten başlayarak,bir uygulama paketleme"
-
-#: templates/README.md.j2:4
-#, fuzzy
-msgid ""
-"Copy this app before working on it, using the ['Use this template'](https://"
-"github.com/new?template_name=example_ynh&template_owner=YunoHost) button on "
-"the Github repo"
-msgstr ""
-"Bu uygulama üzerinde çalışmaya başlamadan önce, Github deposunda bulunan "
-"['Bu şablonu kullan'](https://github.com/new?"
-"template_name=example_ynh&template_owner=YunoHost) düğmesini kullanarak bu "
-"uygulamayı kopyalayın."
-
-#: templates/README.md.j2:5
-msgid "Edit the `manifest.toml` with app specific info"
-msgstr "`manifest.toml`'u özel bir uygulama bilgisi ile düzenle"
-
-#: templates/README.md.j2:6
-#, fuzzy
-msgid ""
-"Edit the `install`, `upgrade`, `remove`, `backup` and `restore` scripts, and "
-"any relevant conf files in `conf/`"
-msgstr ""
-"``,``,``,``ve`` script(betik)lerini ve `conf/`dizinindeki ilgili "
-"yapılandırma dosyalarını düzenleyin."
-
-#: templates/README.md.j2:7
-msgid ""
-"Using the [script helpers documentation](https://yunohost.org/"
-"packaging_apps_helpers)"
-msgstr ""
-
-#: templates/README.md.j2:8
-msgid ""
-"Edit the `change_url` and `config` scripts too, or remove them if you have "
-"no use of them"
-msgstr ""
-
-#: templates/README.md.j2:9
-msgid "Add a `LICENSE` file for the package."
-msgstr ""
-
-#: templates/README.md.j2:10
-msgid ""
-"NB: this `LICENSE` file is not meant to necessarily be the same LICENSE as "
-"the upstream app - it is only the LICENSE you want this package's code to "
-"published with and you can choose it freely! (If you don't know which to "
-"choose, we recommend [the AGPL-3](https://www.gnu.org/licenses/agpl-3.0.txt))"
-msgstr ""
-
-#: templates/README.md.j2:11
-msgid ""
-"Edit files under the `doc/` directory ([see the page about documenting "
-"packages](https://yunohost.org/packaging_app_doc))"
-msgstr ""
-
-#: templates/README.md.j2:12
-msgid ""
-"The `README.md` files are to be automatically generated by "
-msgstr ""
-
-#: templates/README.md.j2:18
-msgid ""
-"N.B.: This README was automatically generated by \n"
-"It shall NOT be edited by hand."
-msgstr ""
-
-#: templates/README.md.j2:22
-#, python-format
-msgid "%(application_name)s for YunoHost"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Integration level"
-msgstr "Entegrasyon seviyesi"
-
-#: templates/README.md.j2:24
-msgid "Working status"
-msgstr "Çalışma durumu"
-
-#: templates/README.md.j2:24
-msgid "Maintenance status"
-msgstr "Bakım durumu"
-
-#: templates/README.md.j2:26
-#, fuzzy, python-format
-msgid "Install %(application_name)s with YunoHost"
-msgstr "%(application_name)s'i YunoHost ile yükleyin"
-
-#: templates/README.md.j2:28
-#, fuzzy
-msgid "Read this README in other languages."
-msgstr "Bu README dosyasını diğer dillerde okuyun."
-
-#: templates/README.md.j2:30
-#, python-format
-msgid ""
-"This package allows you to install %(application_name)s quickly and simply "
-"on a YunoHost server."
-msgstr ""
-"Bu paket, %(application_name)s'i YunoHost sunucusuna hızlı ve basit bir "
-"şekilde yüklemenizi sağlar."
-
-#: templates/README.md.j2:31
-#, fuzzy
-msgid ""
-"If you don't have YunoHost, please consult [the guide](https://yunohost.org/"
-"install) to learn how to install it."
-msgstr ""
-"YunoHost'a sahip değilseniz, nasıl kurulacağını öğrenmek için lütfen "
-"[kılavuza](https://yunohost.org/install) başvurun."
-
-#: templates/README.md.j2:33
-#, fuzzy
-msgid "Overview"
-msgstr "Genel Bakış"
-
-#: templates/README.md.j2:37
-#, fuzzy
-msgid "Shipped version:"
-msgstr "Gönderilen sürüm:"
-
-#: templates/README.md.j2:41
-msgid "Demo:"
-msgstr "Demo:"
-
-#: templates/README.md.j2:45
-msgid "Screenshots"
-msgstr "Ekran Görüntüleri"
-
-#: templates/README.md.j2:48
-#, fuzzy, python-format
-msgid "Screenshot of %(application_name)s"
-msgstr "%(application_name)s'nin ekran görüntüsü"
-
-#: templates/README.md.j2:53
-msgid "Disclaimers / important information"
-msgstr ""
-
-#: templates/README.md.j2:59
-msgid "Antifeatures"
-msgstr ""
-
-#: templates/README.md.j2:66
-#, fuzzy
-msgid "Documentation and resources"
-msgstr "Belgeler ve kaynaklar"
-
-#: templates/README.md.j2:68
-#, fuzzy
-msgid "Official app website:"
-msgstr "Resmi uygulama web sitesi:"
-
-#: templates/README.md.j2:70
-#, fuzzy
-msgid "Official user documentation:"
-msgstr "Resmi kullanıcı belgeleri:"
-
-#: templates/README.md.j2:72
-#, fuzzy
-msgid "Official admin documentation:"
-msgstr "Resmi yönetici belgeleri:"
-
-#: templates/README.md.j2:74
-#, fuzzy
-msgid "Upstream app code repository:"
-msgstr "Upstream uygulama kod deposu:"
-
-#: templates/README.md.j2:76
-msgid "YunoHost Store:"
-msgstr "YunoHost Mağazası:"
-
-#: templates/README.md.j2:77
-msgid "Report a bug:"
-msgstr "Hata bildir:"
-
-#: templates/README.md.j2:79
-msgid "Developer info"
-msgstr "Geliştirici bilgisi"
-
-#: templates/README.md.j2:81
-#, python-format
-msgid ""
-"Please send your pull request to the [`testing` branch]"
-"(%(testing_branch_url)s)."
-msgstr ""
-
-#: templates/README.md.j2:83
-msgid "To try the `testing` branch, please proceed like that:"
-msgstr ""
-
-#: templates/README.md.j2:87
-msgid "or"
-msgstr ""
-
-#: templates/README.md.j2:91
-msgid "More info regarding app packaging:"
-msgstr ""
diff --git a/readme_generator/translations/uk/LC_MESSAGES/messages.po b/readme_generator/translations/uk/LC_MESSAGES/messages.po
deleted file mode 100644
index 8e281173..00000000
--- a/readme_generator/translations/uk/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,206 +0,0 @@
-# Translations template for PROJECT.
-# Copyright (C) 2024 ORGANIZATION
-# This file is distributed under the same license as the PROJECT project.
-# FIRST AUTHOR , 2024.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PROJECT VERSION\n"
-"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2024-03-31 19:33+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: uk\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.14.0\n"
-
-#: templates/ALL_README.md.j2:11
-#, python-format
-msgid "Read the README in %(language)s"
-msgstr ""
-
-#: templates/README.md.j2:2
-msgid "Packaging an app, starting from this example"
-msgstr ""
-
-#: templates/README.md.j2:4
-msgid ""
-"Copy this app before working on it, using the ['Use this template'](https://"
-"github.com/new?template_name=example_ynh&template_owner=YunoHost) button on "
-"the Github repo"
-msgstr ""
-
-#: templates/README.md.j2:5
-msgid "Edit the `manifest.toml` with app specific info"
-msgstr ""
-
-#: templates/README.md.j2:6
-msgid ""
-"Edit the `install`, `upgrade`, `remove`, `backup` and `restore` scripts, and "
-"any relevant conf files in `conf/`"
-msgstr ""
-
-#: templates/README.md.j2:7
-msgid ""
-"Using the [script helpers documentation](https://yunohost.org/"
-"packaging_apps_helpers)"
-msgstr ""
-
-#: templates/README.md.j2:8
-msgid ""
-"Edit the `change_url` and `config` scripts too, or remove them if you have "
-"no use of them"
-msgstr ""
-
-#: templates/README.md.j2:9
-msgid "Add a `LICENSE` file for the package."
-msgstr ""
-
-#: templates/README.md.j2:10
-msgid ""
-"NB: this `LICENSE` file is not meant to necessarily be the same LICENSE as "
-"the upstream app - it is only the LICENSE you want this package's code to "
-"published with and you can choose it freely! (If you don't know which to "
-"choose, we recommend [the AGPL-3](https://www.gnu.org/licenses/agpl-3.0.txt))"
-msgstr ""
-
-#: templates/README.md.j2:11
-msgid ""
-"Edit files under the `doc/` directory ([see the page about documenting "
-"packages](https://yunohost.org/packaging_app_doc))"
-msgstr ""
-
-#: templates/README.md.j2:12
-msgid ""
-"The `README.md` files are to be automatically generated by "
-msgstr ""
-
-#: templates/README.md.j2:18
-msgid ""
-"N.B.: This README was automatically generated by \n"
-"It shall NOT be edited by hand."
-msgstr ""
-
-#: templates/README.md.j2:22
-#, python-format
-msgid "%(application_name)s for YunoHost"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Integration level"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Working status"
-msgstr ""
-
-#: templates/README.md.j2:24
-msgid "Maintenance status"
-msgstr ""
-
-#: templates/README.md.j2:26
-#, python-format
-msgid "Install %(application_name)s with YunoHost"
-msgstr ""
-
-#: templates/README.md.j2:28
-msgid "Read this README in other languages."
-msgstr ""
-
-#: templates/README.md.j2:30
-#, python-format
-msgid ""
-"This package allows you to install %(application_name)s quickly and simply "
-"on a YunoHost server."
-msgstr ""
-
-#: templates/README.md.j2:31
-msgid ""
-"If you don't have YunoHost, please consult [the guide](https://yunohost.org/"
-"install) to learn how to install it."
-msgstr ""
-
-#: templates/README.md.j2:33
-msgid "Overview"
-msgstr ""
-
-#: templates/README.md.j2:37
-msgid "Shipped version:"
-msgstr ""
-
-#: templates/README.md.j2:41
-msgid "Demo:"
-msgstr ""
-
-#: templates/README.md.j2:45
-msgid "Screenshots"
-msgstr ""
-
-#: templates/README.md.j2:48
-#, python-format
-msgid "Screenshot of %(application_name)s"
-msgstr ""
-
-#: templates/README.md.j2:53
-msgid "Disclaimers / important information"
-msgstr ""
-
-#: templates/README.md.j2:59
-msgid "Antifeatures"
-msgstr ""
-
-#: templates/README.md.j2:66
-msgid "Documentation and resources"
-msgstr ""
-
-#: templates/README.md.j2:68
-msgid "Official app website:"
-msgstr ""
-
-#: templates/README.md.j2:70
-msgid "Official user documentation:"
-msgstr ""
-
-#: templates/README.md.j2:72
-msgid "Official admin documentation:"
-msgstr ""
-
-#: templates/README.md.j2:74
-msgid "Upstream app code repository:"
-msgstr ""
-
-#: templates/README.md.j2:76
-msgid "YunoHost Store:"
-msgstr ""
-
-#: templates/README.md.j2:77
-msgid "Report a bug:"
-msgstr ""
-
-#: templates/README.md.j2:79
-msgid "Developer info"
-msgstr ""
-
-#: templates/README.md.j2:81
-#, python-format
-msgid ""
-"Please send your pull request to the [`testing` branch]"
-"(%(testing_branch_url)s)."
-msgstr ""
-
-#: templates/README.md.j2:83
-msgid "To try the `testing` branch, please proceed like that:"
-msgstr ""
-
-#: templates/README.md.j2:87
-msgid "or"
-msgstr ""
-
-#: templates/README.md.j2:91
-msgid "More info regarding app packaging:"
-msgstr ""
diff --git a/readme_generator/translations/zh_Hans/LC_MESSAGES/messages.mo b/readme_generator/translations/zh_Hans/LC_MESSAGES/messages.mo
deleted file mode 100644
index a8f14004..00000000
Binary files a/readme_generator/translations/zh_Hans/LC_MESSAGES/messages.mo and /dev/null differ
diff --git a/readme_generator/translations/zh_Hans/LC_MESSAGES/messages.po b/readme_generator/translations/zh_Hans/LC_MESSAGES/messages.po
deleted file mode 100644
index daba33da..00000000
--- a/readme_generator/translations/zh_Hans/LC_MESSAGES/messages.po
+++ /dev/null
@@ -1,228 +0,0 @@
-# Translations template for PROJECT.
-# Copyright (C) 2024 ORGANIZATION
-# This file is distributed under the same license as the PROJECT project.
-# FIRST AUTHOR , 2024.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PROJECT VERSION\n"
-"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2024-03-31 19:33+0200\n"
-"PO-Revision-Date: 2024-05-05 15:28+0000\n"
-"Last-Translator: Poesty Li \n"
-"Language-Team: Chinese (Simplified) \n"
-"Language: zh_Hans\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Weblate 5.3.1\n"
-"Generated-By: Babel 2.14.0\n"
-
-#: templates/ALL_README.md.j2:11
-#, python-format
-msgid "Read the README in %(language)s"
-msgstr "阅读%(language)s的 README"
-
-#: templates/README.md.j2:2
-msgid "Packaging an app, starting from this example"
-msgstr "打包应用,从这个示例开始"
-
-#: templates/README.md.j2:4
-msgid ""
-"Copy this app before working on it, using the ['Use this template'](https://"
-"github.com/new?template_name=example_ynh&template_owner=YunoHost) button on "
-"the Github repo"
-msgstr ""
-"使用 Github 代码库中的['使用此模板'](https://github.com/new?"
-"template_name=example_ynh&template_owner=YunoHost)按钮复制此应用,然后再对其"
-"进行操作"
-
-#: templates/README.md.j2:5
-msgid "Edit the `manifest.toml` with app specific info"
-msgstr "编辑 `manifest.toml` 文件以补充应用特定信息"
-
-#: templates/README.md.j2:6
-msgid ""
-"Edit the `install`, `upgrade`, `remove`, `backup` and `restore` scripts, and "
-"any relevant conf files in `conf/`"
-msgstr ""
-"编辑 `install`, `upgrade`, `remove`, `backup` 和 `restore` 脚本,以及 `conf/"
-"` 中的任何相关配置文件"
-
-#: templates/README.md.j2:7
-msgid ""
-"Using the [script helpers documentation](https://yunohost.org/"
-"packaging_apps_helpers)"
-msgstr "使用[脚本帮助文档](https://yunohost.org/packaging_apps_helpers)"
-
-#: templates/README.md.j2:8
-msgid ""
-"Edit the `change_url` and `config` scripts too, or remove them if you have "
-"no use of them"
-msgstr "同时编辑 `change_url` 和 `config` 脚本,如果不需要,可将其删除"
-
-#: templates/README.md.j2:9
-msgid "Add a `LICENSE` file for the package."
-msgstr "为软件包添加 `LICENSE` 文件。"
-
-#: templates/README.md.j2:10
-msgid ""
-"NB: this `LICENSE` file is not meant to necessarily be the same LICENSE as "
-"the upstream app - it is only the LICENSE you want this package's code to "
-"published with and you can choose it freely! (If you don't know which to "
-"choose, we recommend [the AGPL-3](https://www.gnu.org/licenses/agpl-3.0.txt))"
-msgstr ""
-"注意:此 `LICENSE` 文件不一定与上游应用的 LICENSE 相同 - 它只是您希望此软件包"
-"的代码发布时使用的 LICENSE 并且您可以自由选择!(如果您不知道该如何选择,我们"
-"推荐 [AGPL-3](https://www.gnu.org/licenses/agpl-3.0.txt))"
-
-#: templates/README.md.j2:11
-msgid ""
-"Edit files under the `doc/` directory ([see the page about documenting "
-"packages](https://yunohost.org/packaging_app_doc))"
-msgstr ""
-"编辑 `doc/` 目录下的文件([请参阅有关文档化软件包的页面](https://yunohost."
-"org/packaging_app_doc))"
-
-#: templates/README.md.j2:12
-msgid ""
-"The `README.md` files are to be automatically generated by "
-msgstr ""
-"`README.md` 文件将由 自动生成"
-
-#: templates/README.md.j2:18
-msgid ""
-"N.B.: This README was automatically generated by \n"
-"It shall NOT be edited by hand."
-msgstr ""
-"注意:此 README 由 自动生成\n"
-"请勿手动编辑。"
-
-#: templates/README.md.j2:22
-#, python-format
-msgid "%(application_name)s for YunoHost"
-msgstr "YunoHost 上的 %(application_name)s"
-
-#: templates/README.md.j2:24
-msgid "Integration level"
-msgstr "集成程度"
-
-#: templates/README.md.j2:24
-msgid "Working status"
-msgstr "工作状态"
-
-#: templates/README.md.j2:24
-msgid "Maintenance status"
-msgstr "维护状态"
-
-#: templates/README.md.j2:26
-#, python-format
-msgid "Install %(application_name)s with YunoHost"
-msgstr "使用 YunoHost 安装 %(application_name)s"
-
-#: templates/README.md.j2:28
-msgid "Read this README in other languages."
-msgstr "阅读此 README 的其它语言版本。"
-
-#: templates/README.md.j2:30
-#, python-format
-msgid ""
-"This package allows you to install %(application_name)s quickly and simply "
-"on a YunoHost server."
-msgstr ""
-"通过此软件包,您可以在 YunoHost 服务器上快速、简单地安装 "
-"%(application_name)s。"
-
-#: templates/README.md.j2:31
-msgid ""
-"If you don't have YunoHost, please consult [the guide](https://yunohost.org/"
-"install) to learn how to install it."
-msgstr ""
-"如果您还没有 YunoHost,请参阅[指南](https://yunohost.org/install)了解如何安装"
-"它。"
-
-#: templates/README.md.j2:33
-msgid "Overview"
-msgstr "概况"
-
-#: templates/README.md.j2:37
-msgid "Shipped version:"
-msgstr "分发版本:"
-
-#: templates/README.md.j2:41
-msgid "Demo:"
-msgstr "演示:"
-
-#: templates/README.md.j2:45
-msgid "Screenshots"
-msgstr "截图"
-
-#: templates/README.md.j2:48
-#, python-format
-msgid "Screenshot of %(application_name)s"
-msgstr "%(application_name)s 的截图"
-
-#: templates/README.md.j2:53
-msgid "Disclaimers / important information"
-msgstr "免责声明 / 重要信息"
-
-#: templates/README.md.j2:59
-msgid "Antifeatures"
-msgstr "负面特征"
-
-#: templates/README.md.j2:66
-msgid "Documentation and resources"
-msgstr "文档与资源"
-
-#: templates/README.md.j2:68
-msgid "Official app website:"
-msgstr "官方应用网站:"
-
-#: templates/README.md.j2:70
-msgid "Official user documentation:"
-msgstr "官方用户文档:"
-
-#: templates/README.md.j2:72
-msgid "Official admin documentation:"
-msgstr "官方管理文档:"
-
-#: templates/README.md.j2:74
-msgid "Upstream app code repository:"
-msgstr "上游应用代码库:"
-
-#: templates/README.md.j2:76
-msgid "YunoHost Store:"
-msgstr "YunoHost 商店:"
-
-#: templates/README.md.j2:77
-msgid "Report a bug:"
-msgstr "报告 bug:"
-
-#: templates/README.md.j2:79
-msgid "Developer info"
-msgstr "开发者信息"
-
-#: templates/README.md.j2:81
-#, python-format
-msgid ""
-"Please send your pull request to the [`testing` branch]"
-"(%(testing_branch_url)s)."
-msgstr "请向 [`testing` 分支](%(testing_branch_url)s) 发送拉取请求。"
-
-#: templates/README.md.j2:83
-msgid "To try the `testing` branch, please proceed like that:"
-msgstr "如要尝试 `testing` 分支,请这样操作:"
-
-#: templates/README.md.j2:87
-msgid "or"
-msgstr "或"
-
-#: templates/README.md.j2:91
-msgid "More info regarding app packaging:"
-msgstr "有关应用打包的更多信息:"