1
0
Fork 0
mirror of https://github.com/YunoHost/apps.git synced 2024-09-03 20:06:07 +02:00

feat(translate_apps): add a list of apps for the beta testing phase

This commit is contained in:
Laurent Peuch 2024-03-28 04:22:54 +01:00 committed by OniriCorpe
parent 0ac7c24587
commit 9dd70e9d61
2 changed files with 12 additions and 4 deletions

View file

@ -93,10 +93,15 @@ def extract_strings_to_translate_from_apps(apps, translations_repository):
if "github.com" not in infos["git"]["url"]: if "github.com" not in infos["git"]["url"]:
continue continue
# xxx if app not in (
repository_uri = "YunoHost-Apps/test_app_for_translation_ynh" "gotosocial",
branch = "master" "fluffychat",
app = "test_app_for_translation" "cinny",
"fittrackee",
"funkwhale",
"photoprism",
):
continue
print(app) print(app)
print(f"{repository_uri} -> branch '{branch}'") print(f"{repository_uri} -> branch '{branch}'")

View file

@ -104,6 +104,9 @@ def extract_strings_to_translate_from_apps(apps, translations_repository):
if "github.com" not in infos["git"]["url"]: if "github.com" not in infos["git"]["url"]:
continue continue
if app not in ("gotosocial", "fluffychat", "cinny", "fittrackee", "funkwhale", "photoprism"):
continue
print(app) print(app)
print(f"{repository_uri} -> branch '{branch}'") print(f"{repository_uri} -> branch '{branch}'")