From 43dc47dbcc1f1e9a457429e812e048427ce5a888 Mon Sep 17 00:00:00 2001 From: OniriCorpe Date: Mon, 11 Mar 2024 16:37:30 +0100 Subject: [PATCH 1/5] fix test readmes --- tools/readme_generator/tests/README.md | 2 +- tools/readme_generator/tests/README_fr.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/readme_generator/tests/README.md b/tools/readme_generator/tests/README.md index 9217ea2..fcd2c40 100644 --- a/tools/readme_generator/tests/README.md +++ b/tools/readme_generator/tests/README.md @@ -51,7 +51,7 @@ Please send your pull request to the [testing branch](https://github.com/YunoHos To try the testing branch, please proceed like that. -``` bash +```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 diff --git a/tools/readme_generator/tests/README_fr.md b/tools/readme_generator/tests/README_fr.md index 10eb87a..8aa636b 100644 --- a/tools/readme_generator/tests/README_fr.md +++ b/tools/readme_generator/tests/README_fr.md @@ -51,7 +51,7 @@ Merci de faire vos pull request sur la [branche testing](https://github.com/Yuno Pour essayer la branche testing, procédez comme suit. -``` bash +```bash sudo yunohost app install https://github.com/YunoHost-Apps/gotosocial_ynh/tree/testing --debug ou sudo yunohost app upgrade gotosocial -u https://github.com/YunoHost-Apps/gotosocial_ynh/tree/testing --debug From c6613749f99006a0b9507a6936b4ee840b38fb10 Mon Sep 17 00:00:00 2001 From: Tagada <36127788+Tagadda@users.noreply.github.com> Date: Mon, 11 Mar 2024 15:34:27 +0100 Subject: [PATCH 2/5] store: add tos link in the footer --- store/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/store/templates/base.html b/store/templates/base.html index 09901b8..78cfebb 100644 --- a/store/templates/base.html +++ b/store/templates/base.html @@ -194,7 +194,7 @@ From 7e2ab3912f73c0dec0787de91ef8d37617dec5a2 Mon Sep 17 00:00:00 2001 From: OniriCorpe Date: Mon, 11 Mar 2024 15:58:43 +0100 Subject: [PATCH 3/5] Store: fix flask command for debug in real-time --- store/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/store/README.md b/store/README.md index 628ef79..7cc6e5f 100644 --- a/store/README.md +++ b/store/README.md @@ -31,7 +31,7 @@ And then start the dev server: ```bash source venv/bin/activate -FLASK_APP=app.py FLASK_ENV=development flask run +FLASK_APP=app.py FLASK_ENV=development flask --debug run ``` ## Translation From e0274b354886e71a5c628a0de940c922691d40d6 Mon Sep 17 00:00:00 2001 From: OniriCorpe Date: Mon, 11 Mar 2024 16:01:33 +0100 Subject: [PATCH 4/5] Store: add TOS link, seperate TOS from source and acknoledgements --- store/messages.pot | 16 ++++++++++++---- store/templates/base.html | 8 +++++--- 2 files changed, 17 insertions(+), 7 deletions(-) diff --git a/store/messages.pot b/store/messages.pot index b0b0dbf..649f7c9 100644 --- a/store/messages.pot +++ b/store/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-03-05 19:36+0100\n" +"POT-Creation-Date: 2024-03-11 16:01+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -271,12 +271,20 @@ msgid "" "Made with " "using Flask and TailwindCSS - TailwindCSS" +msgstr "" + +#: templates/base.html:198 +msgid "" +" Source" msgstr "" +#: templates/base.html:199 +msgid "Terms of Service" +msgstr "" + #: templates/catalog.html:75 templates/catalog.html:80 msgid "Application Catalog" msgstr "" @@ -349,7 +357,7 @@ msgstr "" #: templates/catalog.html:188 msgid "" -"This means that the developer will no longer update them. We strongly " +"This means that the developer will no longer update them. We strongly " "advise against their installation and advise users to find alternatives." msgstr "" diff --git a/store/templates/base.html b/store/templates/base.html index 78cfebb..6c7dab7 100644 --- a/store/templates/base.html +++ b/store/templates/base.html @@ -193,9 +193,11 @@ From b1c1ff3ce1188427b58b542188492ac5a8c45788 Mon Sep 17 00:00:00 2001 From: OniriCorpe Date: Mon, 11 Mar 2024 16:09:38 +0100 Subject: [PATCH 5/5] "Source" without the HTML link, better for translation --- store/messages.pot | 7 ++----- store/templates/base.html | 2 +- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/store/messages.pot b/store/messages.pot index 649f7c9..ee38d79 100644 --- a/store/messages.pot +++ b/store/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-03-11 16:01+0100\n" +"POT-Creation-Date: 2024-03-11 16:09+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -275,10 +275,7 @@ msgid "" msgstr "" #: templates/base.html:198 -msgid "" -" Source" +msgid "Source" msgstr "" #: templates/base.html:199 diff --git a/store/templates/base.html b/store/templates/base.html index 6c7dab7..5127dee 100644 --- a/store/templates/base.html +++ b/store/templates/base.html @@ -195,7 +195,7 @@