From a71ccb3890d40bd6b5d2f400c811051f34cde7cc 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 1/9] 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 09901b81..78cfebbd 100644 --- a/store/templates/base.html +++ b/store/templates/base.html @@ -194,7 +194,7 @@ From ecd71f1eaa82f70588c978ab1e441137c57bd6cc Mon Sep 17 00:00:00 2001 From: OniriCorpe Date: Mon, 11 Mar 2024 15:58:43 +0100 Subject: [PATCH 2/9] 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 628ef794..7cc6e5f5 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 e361a024cd5d4eba0540947d19785c126e257f3b Mon Sep 17 00:00:00 2001 From: OniriCorpe Date: Mon, 11 Mar 2024 16:01:33 +0100 Subject: [PATCH 3/9] 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 b0b0dbf3..649f7c9b 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 78cfebbd..6c7dab7f 100644 --- a/store/templates/base.html +++ b/store/templates/base.html @@ -193,9 +193,11 @@ From 36cabb34333dd94d6b7620a3119466409b845d6e Mon Sep 17 00:00:00 2001 From: OniriCorpe Date: Mon, 11 Mar 2024 16:09:38 +0100 Subject: [PATCH 4/9] "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 649f7c9b..ee38d79b 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 6c7dab7f..5127dee8 100644 --- a/store/templates/base.html +++ b/store/templates/base.html @@ -195,7 +195,7 @@ From 10d574028105e18f8f8297cf2f7479fe0ca473ff 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 5/9] 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 09901b81..78cfebbd 100644 --- a/store/templates/base.html +++ b/store/templates/base.html @@ -194,7 +194,7 @@ From eaf53cab7fbab00543757f8b4fb8ac5443c6fd1f Mon Sep 17 00:00:00 2001 From: OniriCorpe Date: Mon, 11 Mar 2024 15:58:43 +0100 Subject: [PATCH 6/9] 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 628ef794..7cc6e5f5 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 144e943ef97831a40b038d0e36bea476e0f210c0 Mon Sep 17 00:00:00 2001 From: OniriCorpe Date: Mon, 11 Mar 2024 16:01:33 +0100 Subject: [PATCH 7/9] 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 b0b0dbf3..649f7c9b 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 78cfebbd..6c7dab7f 100644 --- a/store/templates/base.html +++ b/store/templates/base.html @@ -193,9 +193,11 @@ From b7f1b8c60c480ce96c4f2cb59031b82a2b29e143 Mon Sep 17 00:00:00 2001 From: OniriCorpe Date: Mon, 11 Mar 2024 16:09:38 +0100 Subject: [PATCH 8/9] "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 649f7c9b..ee38d79b 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 6c7dab7f..5127dee8 100644 --- a/store/templates/base.html +++ b/store/templates/base.html @@ -195,7 +195,7 @@ From 073f5c2d62cfe07474a05946f9b6075ed28acada Mon Sep 17 00:00:00 2001 From: OniriCorpe Date: Mon, 11 Mar 2024 16:43:32 +0100 Subject: [PATCH 9/9] fix "Source" textspacing --- 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 5127dee8..f7f9b27c 100644 --- a/store/templates/base.html +++ b/store/templates/base.html @@ -195,7 +195,7 @@