From f7ad9c9905379f3ab8a82b0a6ad21a13bb9dfdfa Mon Sep 17 00:00:00 2001 From: Athou Date: Fri, 26 May 2023 08:28:23 +0200 Subject: [PATCH] refactor donate page --- commafeed-client/src/App.tsx | 2 + commafeed-client/src/app/slices/redirect.ts | 9 ++- .../src/components/header/ProfileMenu.tsx | 16 ++++- commafeed-client/src/locales/ar/messages.po | 17 +++--- commafeed-client/src/locales/ca/messages.po | 17 +++--- commafeed-client/src/locales/cs/messages.po | 17 +++--- commafeed-client/src/locales/cy/messages.po | 17 +++--- commafeed-client/src/locales/da/messages.po | 17 +++--- commafeed-client/src/locales/de/messages.po | 17 +++--- commafeed-client/src/locales/en/messages.po | 17 +++--- commafeed-client/src/locales/es/messages.po | 17 +++--- commafeed-client/src/locales/fa/messages.po | 17 +++--- commafeed-client/src/locales/fi/messages.po | 17 +++--- commafeed-client/src/locales/fr/messages.po | 17 +++--- commafeed-client/src/locales/gl/messages.po | 17 +++--- commafeed-client/src/locales/hu/messages.po | 17 +++--- commafeed-client/src/locales/id/messages.po | 17 +++--- commafeed-client/src/locales/it/messages.po | 17 +++--- commafeed-client/src/locales/ja/messages.po | 17 +++--- commafeed-client/src/locales/ko/messages.po | 17 +++--- commafeed-client/src/locales/ms/messages.po | 17 +++--- commafeed-client/src/locales/nb/messages.po | 17 +++--- commafeed-client/src/locales/nl/messages.po | 17 +++--- commafeed-client/src/locales/nn/messages.po | 17 +++--- commafeed-client/src/locales/pl/messages.po | 17 +++--- commafeed-client/src/locales/pt/messages.po | 17 +++--- commafeed-client/src/locales/ru/messages.po | 17 +++--- commafeed-client/src/locales/sk/messages.po | 17 +++--- commafeed-client/src/locales/sv/messages.po | 17 +++--- commafeed-client/src/locales/tr/messages.po | 17 +++--- commafeed-client/src/locales/zh/messages.po | 17 +++--- commafeed-client/src/pages/app/AboutPage.tsx | 39 +----------- commafeed-client/src/pages/app/DonatePage.tsx | 59 +++++++++++++++++++ 33 files changed, 337 insertions(+), 264 deletions(-) create mode 100644 commafeed-client/src/pages/app/DonatePage.tsx diff --git a/commafeed-client/src/App.tsx b/commafeed-client/src/App.tsx index e3f84ff6..b2cd1db8 100644 --- a/commafeed-client/src/App.tsx +++ b/commafeed-client/src/App.tsx @@ -18,6 +18,7 @@ import { MetricsPage } from "pages/admin/MetricsPage" import { AboutPage } from "pages/app/AboutPage" import { AddPage } from "pages/app/AddPage" import { CategoryDetailsPage } from "pages/app/CategoryDetailsPage" +import { DonatePage } from "pages/app/DonatePage" import { FeedDetailsPage } from "pages/app/FeedDetailsPage" import { FeedEntriesPage } from "pages/app/FeedEntriesPage" import Layout from "pages/app/Layout" @@ -91,6 +92,7 @@ function AppRoutes() { } /> } /> + } /> } /> } /> diff --git a/commafeed-client/src/app/slices/redirect.ts b/commafeed-client/src/app/slices/redirect.ts index 28029a76..58a60476 100644 --- a/commafeed-client/src/app/slices/redirect.ts +++ b/commafeed-client/src/app/slices/redirect.ts @@ -13,7 +13,13 @@ export const redirectToRegistration = createAsyncThunk("redirect/register", (_, export const redirectToPasswordRecovery = createAsyncThunk("redirect/passwordRecovery", (_, thunkApi) => thunkApi.dispatch(redirectTo("/passwordRecovery")) ) -export const redirectToSelectedSource = createAsyncThunk("redirect/selectedSource", (_, thunkApi) => { +export const redirectToSelectedSource = createAsyncThunk< + void, + void, + { + state: RootState + } +>("redirect/selectedSource", (_, thunkApi) => { const { source } = thunkApi.getState().entries thunkApi.dispatch(redirectTo(`/app/${source.type}/${source.id}`)) }) @@ -44,6 +50,7 @@ export const redirectToAdminUsers = createAsyncThunk("redirect/admin/users", (_, export const redirectToMetrics = createAsyncThunk("redirect/admin/metrics", (_, thunkApi) => thunkApi.dispatch(redirectTo("/app/admin/metrics")) ) +export const redirectToDonate = createAsyncThunk("redirect/donate", (_, thunkApi) => thunkApi.dispatch(redirectTo("/app/donate"))) export const redirectToAbout = createAsyncThunk("redirect/about", (_, thunkApi) => thunkApi.dispatch(redirectTo("/app/about"))) export const redirectToApiDocumentation = createAsyncThunk("redirect/api", (_, thunkApi) => thunkApi.dispatch(redirectTo("/app/api"))) diff --git a/commafeed-client/src/components/header/ProfileMenu.tsx b/commafeed-client/src/components/header/ProfileMenu.tsx index 1f701c5a..4d585668 100644 --- a/commafeed-client/src/components/header/ProfileMenu.tsx +++ b/commafeed-client/src/components/header/ProfileMenu.tsx @@ -2,13 +2,14 @@ import { Trans } from "@lingui/macro" import { Box, Divider, Group, Menu, SegmentedControl, SegmentedControlItem, useMantineColorScheme } from "@mantine/core" import { showNotification } from "@mantine/notifications" import { client } from "app/client" -import { redirectToAbout, redirectToAdminUsers, redirectToMetrics, redirectToSettings } from "app/slices/redirect" +import { redirectToAbout, redirectToAdminUsers, redirectToDonate, redirectToMetrics, redirectToSettings } from "app/slices/redirect" import { useAppDispatch, useAppSelector } from "app/store" import { ViewMode } from "app/types" import { useViewMode } from "hooks/useViewMode" import { useState } from "react" import { TbChartLine, + TbHeartFilled, TbHelp, TbLayoutList, TbList, @@ -123,6 +124,7 @@ export function ProfileMenu(props: ProfileMenuProps) { + Theme @@ -131,6 +133,7 @@ export function ProfileMenu(props: ProfileMenuProps) { + Display @@ -171,6 +174,17 @@ export function ProfileMenu(props: ProfileMenuProps) { )} + + } + onClick={() => { + dispatch(redirectToDonate()) + setOpened(false) + }} + > + Donate + + } onClick={() => { diff --git a/commafeed-client/src/locales/ar/messages.po b/commafeed-client/src/locales/ar/messages.po index 82c43525..8cb6598b 100644 --- a/commafeed-client/src/locales/ar/messages.po +++ b/commafeed-client/src/locales/ar/messages.po @@ -25,6 +25,10 @@ msgstr "" msgid "<0>Have an account?<1>Log in!" msgstr "<0> هل لديك حساب؟ <1> تسجيل الدخول! " +#: src/pages/app/DonatePage.tsx +msgid "<0>Hey,<1>I'm Jérémie from Belgium and I've been working on CommaFeed in my free time for over 10 years now. Thanks for taking an interest in helping me continue supporting CommaFeed." +msgstr "" + #: src/pages/auth/LoginPage.tsx msgid "<0>Need an account?<1>Sign up!" msgstr "<0> هل تحتاج إلى حساب؟ <1> اشترك! " @@ -245,6 +249,11 @@ msgstr "" msgid "Display" msgstr "عرض" +#: src/components/header/ProfileMenu.tsx +#: src/pages/app/DonatePage.tsx +msgid "Donate" +msgstr "" + #: src/components/settings/ProfileSettings.tsx msgid "Download" msgstr "تنزيل" @@ -321,10 +330,6 @@ msgstr "الملف مطلوب" msgid "Filtering expression" msgstr "تصفية التعبير" -#: src/pages/app/AboutPage.tsx -msgid "For those of you who prefer bitcoin, here is the address: {bitcoinAddress}" -msgstr "" - #: src/pages/auth/LoginPage.tsx msgid "Forgot password?" msgstr "هل نسيت كلمة المرور؟" @@ -373,10 +378,6 @@ msgstr "إذا لم يكن فارغًا ، فسيتم تقييم التعبير msgid "If you encounter an issue, please report it on the issues page of the GitHub project." msgstr "إذا واجهت مشكلة ، فالرجاء الإبلاغ عنها على صفحة مشكلات مشروع GitHub." -#: src/pages/app/AboutPage.tsx -msgid "If you like this project, please consider a donation to support the developer and help cover the costs of keeping this website online." -msgstr "إذا أعجبك هذا المشروع ، فيرجى التفكير في التبرع لدعم المطور والمساعدة في تغطية تكاليف إبقاء هذا الموقع على الإنترنت." - #: src/components/content/add/ImportOpml.tsx msgid "Import" msgstr "استيراد" diff --git a/commafeed-client/src/locales/ca/messages.po b/commafeed-client/src/locales/ca/messages.po index 159bc5cd..e0aac9be 100644 --- a/commafeed-client/src/locales/ca/messages.po +++ b/commafeed-client/src/locales/ca/messages.po @@ -25,6 +25,10 @@ msgstr "" msgid "<0>Have an account?<1>Log in!" msgstr "<0>Teniu un compte?<1>Inicieu la sessió!" +#: src/pages/app/DonatePage.tsx +msgid "<0>Hey,<1>I'm Jérémie from Belgium and I've been working on CommaFeed in my free time for over 10 years now. Thanks for taking an interest in helping me continue supporting CommaFeed." +msgstr "" + #: src/pages/auth/LoginPage.tsx msgid "<0>Need an account?<1>Sign up!" msgstr "<0>Necessites un compte?<1>Registreu-vos!" @@ -245,6 +249,11 @@ msgstr "" msgid "Display" msgstr "Mostra" +#: src/components/header/ProfileMenu.tsx +#: src/pages/app/DonatePage.tsx +msgid "Donate" +msgstr "" + #: src/components/settings/ProfileSettings.tsx msgid "Download" msgstr "Descarrega" @@ -321,10 +330,6 @@ msgstr "el fitxer és necessari" msgid "Filtering expression" msgstr "Expressió de filtratge" -#: src/pages/app/AboutPage.tsx -msgid "For those of you who prefer bitcoin, here is the address: {bitcoinAddress}" -msgstr "" - #: src/pages/auth/LoginPage.tsx msgid "Forgot password?" msgstr "Heu oblidat la contrasenya?" @@ -373,10 +378,6 @@ msgstr "Si no està buida, una expressió que s'avalua com a \"vertader\" o \"fa msgid "If you encounter an issue, please report it on the issues page of the GitHub project." msgstr "Si trobeu un problema, informeu-lo a la pàgina de problemes del projecte GitHub." -#: src/pages/app/AboutPage.tsx -msgid "If you like this project, please consider a donation to support the developer and help cover the costs of keeping this website online." -msgstr "Si t'agrada aquest projecte, considera una donació per donar suport al desenvolupador i ajudar a cobrir els costos de mantenir aquest lloc web en línia." - #: src/components/content/add/ImportOpml.tsx msgid "Import" msgstr "Importació" diff --git a/commafeed-client/src/locales/cs/messages.po b/commafeed-client/src/locales/cs/messages.po index 5b4e007b..7335df29 100644 --- a/commafeed-client/src/locales/cs/messages.po +++ b/commafeed-client/src/locales/cs/messages.po @@ -25,6 +25,10 @@ msgstr "" msgid "<0>Have an account?<1>Log in!" msgstr "<0>Máte účet?<1>Přihlaste se!" +#: src/pages/app/DonatePage.tsx +msgid "<0>Hey,<1>I'm Jérémie from Belgium and I've been working on CommaFeed in my free time for over 10 years now. Thanks for taking an interest in helping me continue supporting CommaFeed." +msgstr "" + #: src/pages/auth/LoginPage.tsx msgid "<0>Need an account?<1>Sign up!" msgstr "<0>Potřebujete účet?<1>Zaregistrujte se!" @@ -245,6 +249,11 @@ msgstr "" msgid "Display" msgstr "Displej" +#: src/components/header/ProfileMenu.tsx +#: src/pages/app/DonatePage.tsx +msgid "Donate" +msgstr "" + #: src/components/settings/ProfileSettings.tsx msgid "Download" msgstr "Stáhnout" @@ -321,10 +330,6 @@ msgstr "" msgid "Filtering expression" msgstr "Filtrování výrazu" -#: src/pages/app/AboutPage.tsx -msgid "For those of you who prefer bitcoin, here is the address: {bitcoinAddress}" -msgstr "" - #: src/pages/auth/LoginPage.tsx msgid "Forgot password?" msgstr "Zapomněli jste heslo?" @@ -373,10 +378,6 @@ msgstr "Pokud není prázdný, výraz vyhodnocený jako 'true' nebo 'false'. " msgid "If you encounter an issue, please report it on the issues page of the GitHub project." msgstr "Pokud narazíte na problém, nahlaste jej prosím na stránce problémů projektu GitHub." -#: src/pages/app/AboutPage.tsx -msgid "If you like this project, please consider a donation to support the developer and help cover the costs of keeping this website online." -msgstr "Pokud se vám tento projekt líbí, zvažte prosím dar na podporu vývojáře a pomozte pokrýt náklady na udržování tohoto webu online." - #: src/components/content/add/ImportOpml.tsx msgid "Import" msgstr "" diff --git a/commafeed-client/src/locales/cy/messages.po b/commafeed-client/src/locales/cy/messages.po index 25682854..1454cd30 100644 --- a/commafeed-client/src/locales/cy/messages.po +++ b/commafeed-client/src/locales/cy/messages.po @@ -25,6 +25,10 @@ msgstr "" msgid "<0>Have an account?<1>Log in!" msgstr "<0>A oes gennych gyfrif?<1>Mewngofnodi!" +#: src/pages/app/DonatePage.tsx +msgid "<0>Hey,<1>I'm Jérémie from Belgium and I've been working on CommaFeed in my free time for over 10 years now. Thanks for taking an interest in helping me continue supporting CommaFeed." +msgstr "" + #: src/pages/auth/LoginPage.tsx msgid "<0>Need an account?<1>Sign up!" msgstr "<0>Angen cyfrif?<1>Ymunwch!" @@ -245,6 +249,11 @@ msgstr "" msgid "Display" msgstr "Arddangos" +#: src/components/header/ProfileMenu.tsx +#: src/pages/app/DonatePage.tsx +msgid "Donate" +msgstr "" + #: src/components/settings/ProfileSettings.tsx msgid "Download" msgstr "Lawrlwytho" @@ -321,10 +330,6 @@ msgstr "mae angen y ffeil" msgid "Filtering expression" msgstr "Hidlo mynegiant" -#: src/pages/app/AboutPage.tsx -msgid "For those of you who prefer bitcoin, here is the address: {bitcoinAddress}" -msgstr "" - #: src/pages/auth/LoginPage.tsx msgid "Forgot password?" msgstr "Wedi anghofio cyfrinair?" @@ -373,10 +378,6 @@ msgstr "Os nad yw'n wag, mynegiad sy'n gwerthuso i 'gwir' neu 'anghywir'. " msgid "If you encounter an issue, please report it on the issues page of the GitHub project." msgstr "Os byddwch yn dod ar draws mater, rhowch wybod amdano ar dudalen materion y prosiect GitHub." -#: src/pages/app/AboutPage.tsx -msgid "If you like this project, please consider a donation to support the developer and help cover the costs of keeping this website online." -msgstr "Os ydych chi'n hoffi'r prosiect hwn, ystyriwch rodd i gefnogi'r datblygwr a helpu i dalu costau cadw'r wefan hon ar-lein." - #: src/components/content/add/ImportOpml.tsx msgid "Import" msgstr "Mewnforio" diff --git a/commafeed-client/src/locales/da/messages.po b/commafeed-client/src/locales/da/messages.po index f32a536d..58b2bafc 100644 --- a/commafeed-client/src/locales/da/messages.po +++ b/commafeed-client/src/locales/da/messages.po @@ -25,6 +25,10 @@ msgstr "" msgid "<0>Have an account?<1>Log in!" msgstr "<0>Har du en konto?<1>Log ind!" +#: src/pages/app/DonatePage.tsx +msgid "<0>Hey,<1>I'm Jérémie from Belgium and I've been working on CommaFeed in my free time for over 10 years now. Thanks for taking an interest in helping me continue supporting CommaFeed." +msgstr "" + #: src/pages/auth/LoginPage.tsx msgid "<0>Need an account?<1>Sign up!" msgstr "<0>Har du brug for en konto?<1>Tilmeld dig!" @@ -245,6 +249,11 @@ msgstr "" msgid "Display" msgstr "Skærm" +#: src/components/header/ProfileMenu.tsx +#: src/pages/app/DonatePage.tsx +msgid "Donate" +msgstr "" + #: src/components/settings/ProfileSettings.tsx msgid "Download" msgstr "" @@ -321,10 +330,6 @@ msgstr "fil er påkrævet" msgid "Filtering expression" msgstr "Filtrerende udtryk" -#: src/pages/app/AboutPage.tsx -msgid "For those of you who prefer bitcoin, here is the address: {bitcoinAddress}" -msgstr "" - #: src/pages/auth/LoginPage.tsx msgid "Forgot password?" msgstr "Glemt adgangskode?" @@ -373,10 +378,6 @@ msgstr "Hvis det ikke er tomt, et udtryk, der vurderes til 'sand' eller 'falsk'. msgid "If you encounter an issue, please report it on the issues page of the GitHub project." msgstr "Hvis du støder på et problem, bedes du rapportere det på problemsiden for GitHub-projektet." -#: src/pages/app/AboutPage.tsx -msgid "If you like this project, please consider a donation to support the developer and help cover the costs of keeping this website online." -msgstr "Hvis du kan lide dette projekt, bedes du overveje en donation for at støtte udvikleren og hjælpe med at dække omkostningerne ved at holde denne hjemmeside online." - #: src/components/content/add/ImportOpml.tsx msgid "Import" msgstr "" diff --git a/commafeed-client/src/locales/de/messages.po b/commafeed-client/src/locales/de/messages.po index 7f090a8f..c2c8834f 100644 --- a/commafeed-client/src/locales/de/messages.po +++ b/commafeed-client/src/locales/de/messages.po @@ -25,6 +25,10 @@ msgstr "" msgid "<0>Have an account?<1>Log in!" msgstr "<0>Haben Sie ein Konto?<1>Melden Sie sich an!" +#: src/pages/app/DonatePage.tsx +msgid "<0>Hey,<1>I'm Jérémie from Belgium and I've been working on CommaFeed in my free time for over 10 years now. Thanks for taking an interest in helping me continue supporting CommaFeed." +msgstr "" + #: src/pages/auth/LoginPage.tsx msgid "<0>Need an account?<1>Sign up!" msgstr "<0>Benötigen Sie ein Konto?<1>Melden Sie sich an!" @@ -245,6 +249,11 @@ msgstr "" msgid "Display" msgstr "Anzeige" +#: src/components/header/ProfileMenu.tsx +#: src/pages/app/DonatePage.tsx +msgid "Donate" +msgstr "" + #: src/components/settings/ProfileSettings.tsx msgid "Download" msgstr "Herunterladen" @@ -321,10 +330,6 @@ msgstr "Datei ist erforderlich" msgid "Filtering expression" msgstr "Filterausdruck" -#: src/pages/app/AboutPage.tsx -msgid "For those of you who prefer bitcoin, here is the address: {bitcoinAddress}" -msgstr "" - #: src/pages/auth/LoginPage.tsx msgid "Forgot password?" msgstr "Passwort vergessen?" @@ -373,10 +378,6 @@ msgstr "Wenn nicht leer, ein Ausdruck, der als „wahr“ oder „falsch“ ausg msgid "If you encounter an issue, please report it on the issues page of the GitHub project." msgstr "Wenn Sie auf ein Problem stoßen, melden Sie es bitte auf der Problemseite des GitHub-Projekts." -#: src/pages/app/AboutPage.tsx -msgid "If you like this project, please consider a donation to support the developer and help cover the costs of keeping this website online." -msgstr "Wenn Ihnen dieses Projekt gefällt, denken Sie bitte über eine Spende nach, um den Entwickler zu unterstützen und die Kosten für die Onlinehaltung dieser Website zu decken." - #: src/components/content/add/ImportOpml.tsx msgid "Import" msgstr "Importieren" diff --git a/commafeed-client/src/locales/en/messages.po b/commafeed-client/src/locales/en/messages.po index 99cb5644..55f31628 100644 --- a/commafeed-client/src/locales/en/messages.po +++ b/commafeed-client/src/locales/en/messages.po @@ -25,6 +25,10 @@ msgstr "<0>Complete syntax is available <1>here." msgid "<0>Have an account?<1>Log in!" msgstr "<0>Have an account?<1>Log in!" +#: src/pages/app/DonatePage.tsx +msgid "<0>Hey,<1>I'm Jérémie from Belgium and I've been working on CommaFeed in my free time for over 10 years now. Thanks for taking an interest in helping me continue supporting CommaFeed." +msgstr "<0>Hey,<1>I'm Jérémie from Belgium and I've been working on CommaFeed in my free time for over 10 years now. Thanks for taking an interest in helping me continue supporting CommaFeed." + #: src/pages/auth/LoginPage.tsx msgid "<0>Need an account?<1>Sign up!" msgstr "<0>Need an account?<1>Sign up!" @@ -245,6 +249,11 @@ msgstr "Detailed" msgid "Display" msgstr "Display" +#: src/components/header/ProfileMenu.tsx +#: src/pages/app/DonatePage.tsx +msgid "Donate" +msgstr "Donate" + #: src/components/settings/ProfileSettings.tsx msgid "Download" msgstr "Download" @@ -321,10 +330,6 @@ msgstr "file is required" msgid "Filtering expression" msgstr "Filtering expression" -#: src/pages/app/AboutPage.tsx -msgid "For those of you who prefer bitcoin, here is the address: {bitcoinAddress}" -msgstr "For those of you who prefer bitcoin, here is the address: {bitcoinAddress}" - #: src/pages/auth/LoginPage.tsx msgid "Forgot password?" msgstr "Forgot password?" @@ -373,10 +378,6 @@ msgstr "If not empty, an expression evaluating to 'true' or 'false'. If false, n msgid "If you encounter an issue, please report it on the issues page of the GitHub project." msgstr "If you encounter an issue, please report it on the issues page of the GitHub project." -#: src/pages/app/AboutPage.tsx -msgid "If you like this project, please consider a donation to support the developer and help cover the costs of keeping this website online." -msgstr "If you like this project, please consider a donation to support the developer and help cover the costs of keeping this website online." - #: src/components/content/add/ImportOpml.tsx msgid "Import" msgstr "Import" diff --git a/commafeed-client/src/locales/es/messages.po b/commafeed-client/src/locales/es/messages.po index 16401db6..e30f2730 100644 --- a/commafeed-client/src/locales/es/messages.po +++ b/commafeed-client/src/locales/es/messages.po @@ -25,6 +25,10 @@ msgstr "" msgid "<0>Have an account?<1>Log in!" msgstr "<0>¿Tienes una cuenta?<1>¡Inicia sesión!" +#: src/pages/app/DonatePage.tsx +msgid "<0>Hey,<1>I'm Jérémie from Belgium and I've been working on CommaFeed in my free time for over 10 years now. Thanks for taking an interest in helping me continue supporting CommaFeed." +msgstr "" + #: src/pages/auth/LoginPage.tsx msgid "<0>Need an account?<1>Sign up!" msgstr "<0>¿Necesitas una cuenta?<1>¡Regístrate!" @@ -245,6 +249,11 @@ msgstr "" msgid "Display" msgstr "Pantalla" +#: src/components/header/ProfileMenu.tsx +#: src/pages/app/DonatePage.tsx +msgid "Donate" +msgstr "" + #: src/components/settings/ProfileSettings.tsx msgid "Download" msgstr "descargar" @@ -321,10 +330,6 @@ msgstr "archivo requerido" msgid "Filtering expression" msgstr "Expresión de filtrado" -#: src/pages/app/AboutPage.tsx -msgid "For those of you who prefer bitcoin, here is the address: {bitcoinAddress}" -msgstr "" - #: src/pages/auth/LoginPage.tsx msgid "Forgot password?" msgstr "¿Olvidaste la contraseña?" @@ -373,10 +378,6 @@ msgstr "Si no está vacío, una expresión que se evalúa como 'verdadero' o 'fa msgid "If you encounter an issue, please report it on the issues page of the GitHub project." msgstr "Si encuentra un problema, infórmelo en la página de problemas del proyecto GitHub." -#: src/pages/app/AboutPage.tsx -msgid "If you like this project, please consider a donation to support the developer and help cover the costs of keeping this website online." -msgstr "Si le gusta este proyecto, considere una donación para apoyar al desarrollador y ayudar a cubrir los costos de mantener este sitio web en línea." - #: src/components/content/add/ImportOpml.tsx msgid "Import" msgstr "Importar" diff --git a/commafeed-client/src/locales/fa/messages.po b/commafeed-client/src/locales/fa/messages.po index b2fd4362..53397804 100644 --- a/commafeed-client/src/locales/fa/messages.po +++ b/commafeed-client/src/locales/fa/messages.po @@ -25,6 +25,10 @@ msgstr "" msgid "<0>Have an account?<1>Log in!" msgstr "<0>حساب دارید؟<1>وارد سیستم شوید!" +#: src/pages/app/DonatePage.tsx +msgid "<0>Hey,<1>I'm Jérémie from Belgium and I've been working on CommaFeed in my free time for over 10 years now. Thanks for taking an interest in helping me continue supporting CommaFeed." +msgstr "" + #: src/pages/auth/LoginPage.tsx msgid "<0>Need an account?<1>Sign up!" msgstr "<0>به یک حساب نیاز دارید؟<1>ثبت نام کنید!" @@ -245,6 +249,11 @@ msgstr "" msgid "Display" msgstr "نمایش" +#: src/components/header/ProfileMenu.tsx +#: src/pages/app/DonatePage.tsx +msgid "Donate" +msgstr "" + #: src/components/settings/ProfileSettings.tsx msgid "Download" msgstr "دانلود" @@ -321,10 +330,6 @@ msgstr "فایل مورد نیاز است" msgid "Filtering expression" msgstr "بیان فیلتر" -#: src/pages/app/AboutPage.tsx -msgid "For those of you who prefer bitcoin, here is the address: {bitcoinAddress}" -msgstr "" - #: src/pages/auth/LoginPage.tsx msgid "Forgot password?" msgstr "رمز عبور را فراموش کرده اید؟" @@ -373,10 +378,6 @@ msgstr "اگر خالی نباشد، عبارتی به \"درست\" یا \"نا msgid "If you encounter an issue, please report it on the issues page of the GitHub project." msgstr "اگر با مشکلی مواجه شدید، لطفاً آن را در صفحه مشکلات پروژه GitHub گزارش دهید." -#: src/pages/app/AboutPage.tsx -msgid "If you like this project, please consider a donation to support the developer and help cover the costs of keeping this website online." -msgstr "اگر این پروژه را دوست دارید، لطفاً کمک مالی برای حمایت از توسعه دهنده و کمک به پوشش هزینه های آنلاین نگه داشتن این وب سایت در نظر بگیرید." - #: src/components/content/add/ImportOpml.tsx msgid "Import" msgstr "واردات" diff --git a/commafeed-client/src/locales/fi/messages.po b/commafeed-client/src/locales/fi/messages.po index c556c3bd..3a80e7bb 100644 --- a/commafeed-client/src/locales/fi/messages.po +++ b/commafeed-client/src/locales/fi/messages.po @@ -25,6 +25,10 @@ msgstr "" msgid "<0>Have an account?<1>Log in!" msgstr "<0>Onko sinulla tili?<1>Kirjaudu sisään!" +#: src/pages/app/DonatePage.tsx +msgid "<0>Hey,<1>I'm Jérémie from Belgium and I've been working on CommaFeed in my free time for over 10 years now. Thanks for taking an interest in helping me continue supporting CommaFeed." +msgstr "" + #: src/pages/auth/LoginPage.tsx msgid "<0>Need an account?<1>Sign up!" msgstr "<0>Tarvitsetko tilin?<1>Rekisteröidy!" @@ -245,6 +249,11 @@ msgstr "" msgid "Display" msgstr "Näyttö" +#: src/components/header/ProfileMenu.tsx +#: src/pages/app/DonatePage.tsx +msgid "Donate" +msgstr "" + #: src/components/settings/ProfileSettings.tsx msgid "Download" msgstr "Lataa" @@ -321,10 +330,6 @@ msgstr "tiedosto vaaditaan" msgid "Filtering expression" msgstr "Suodattava lauseke" -#: src/pages/app/AboutPage.tsx -msgid "For those of you who prefer bitcoin, here is the address: {bitcoinAddress}" -msgstr "" - #: src/pages/auth/LoginPage.tsx msgid "Forgot password?" msgstr "Unohditko salasanan?" @@ -373,10 +378,6 @@ msgstr "Jos ei tyhjä, lauseke, jonka arvo on \"tosi\" tai \"epätosi\". " msgid "If you encounter an issue, please report it on the issues page of the GitHub project." msgstr "Jos kohtaat ongelman, ilmoita siitä GitHub-projektin ongelmasivulla." -#: src/pages/app/AboutPage.tsx -msgid "If you like this project, please consider a donation to support the developer and help cover the costs of keeping this website online." -msgstr "Jos pidät tästä projektista, harkitse lahjoitusta tukeaksesi kehittäjää ja autat kattamaan tämän verkkosivuston verkossa pitämisestä aiheutuvat kulut." - #: src/components/content/add/ImportOpml.tsx msgid "Import" msgstr "Tuo" diff --git a/commafeed-client/src/locales/fr/messages.po b/commafeed-client/src/locales/fr/messages.po index 15b409ab..2a872a03 100644 --- a/commafeed-client/src/locales/fr/messages.po +++ b/commafeed-client/src/locales/fr/messages.po @@ -25,6 +25,10 @@ msgstr "<0>La syntaxe complète est disponible <1>ici." msgid "<0>Have an account?<1>Log in!" msgstr "<0>Déjà un compte ?<1>Connectez-vous !" +#: src/pages/app/DonatePage.tsx +msgid "<0>Hey,<1>I'm Jérémie from Belgium and I've been working on CommaFeed in my free time for over 10 years now. Thanks for taking an interest in helping me continue supporting CommaFeed." +msgstr "" + #: src/pages/auth/LoginPage.tsx msgid "<0>Need an account?<1>Sign up!" msgstr "<0>Besoin d'un compte ?<1>Enregistrez-vous !" @@ -245,6 +249,11 @@ msgstr "Vue détaillée" msgid "Display" msgstr "Affichage" +#: src/components/header/ProfileMenu.tsx +#: src/pages/app/DonatePage.tsx +msgid "Donate" +msgstr "" + #: src/components/settings/ProfileSettings.tsx msgid "Download" msgstr "Télécharger" @@ -321,10 +330,6 @@ msgstr "fichier requis" msgid "Filtering expression" msgstr "Expression de filtrage" -#: src/pages/app/AboutPage.tsx -msgid "For those of you who prefer bitcoin, here is the address: {bitcoinAddress}" -msgstr "" - #: src/pages/auth/LoginPage.tsx msgid "Forgot password?" msgstr "Mot de passe oublié ?" @@ -373,10 +378,6 @@ msgstr "Si non vide, une expression évaluant à 'vrai' ou 'faux'. Si faux, les msgid "If you encounter an issue, please report it on the issues page of the GitHub project." msgstr "Si vous rencontrez un problème, merci de le signaler sur la page du projet GitHub." -#: src/pages/app/AboutPage.tsx -msgid "If you like this project, please consider a donation to support the developer and help cover the costs of keeping this website online." -msgstr "Si vous aimez ce projet, n'hésitez pas à faire un don pour encourager le développeur et aider à couvrir les coûts d'hébergement de la plate-forme." - #: src/components/content/add/ImportOpml.tsx msgid "Import" msgstr "Importer" diff --git a/commafeed-client/src/locales/gl/messages.po b/commafeed-client/src/locales/gl/messages.po index 71c32297..f20db18e 100644 --- a/commafeed-client/src/locales/gl/messages.po +++ b/commafeed-client/src/locales/gl/messages.po @@ -25,6 +25,10 @@ msgstr "" msgid "<0>Have an account?<1>Log in!" msgstr "<0>Tes unha conta?<1>Iniciar sesión!" +#: src/pages/app/DonatePage.tsx +msgid "<0>Hey,<1>I'm Jérémie from Belgium and I've been working on CommaFeed in my free time for over 10 years now. Thanks for taking an interest in helping me continue supporting CommaFeed." +msgstr "" + #: src/pages/auth/LoginPage.tsx msgid "<0>Need an account?<1>Sign up!" msgstr "<0>Necesitas unha conta?<1>Rexístrate!" @@ -245,6 +249,11 @@ msgstr "" msgid "Display" msgstr "Exhibición" +#: src/components/header/ProfileMenu.tsx +#: src/pages/app/DonatePage.tsx +msgid "Donate" +msgstr "" + #: src/components/settings/ProfileSettings.tsx msgid "Download" msgstr "Descargar" @@ -321,10 +330,6 @@ msgstr "é necesario o ficheiro" msgid "Filtering expression" msgstr "Expresión de filtrado" -#: src/pages/app/AboutPage.tsx -msgid "For those of you who prefer bitcoin, here is the address: {bitcoinAddress}" -msgstr "" - #: src/pages/auth/LoginPage.tsx msgid "Forgot password?" msgstr "Esqueceches o contrasinal?" @@ -373,10 +378,6 @@ msgstr "Se non está baleira, unha expresión que se avalía como \"verdadeiro\" msgid "If you encounter an issue, please report it on the issues page of the GitHub project." msgstr "Se atopas algún problema, infórmao na páxina de problemas do proxecto GitHub." -#: src/pages/app/AboutPage.tsx -msgid "If you like this project, please consider a donation to support the developer and help cover the costs of keeping this website online." -msgstr "Se che gusta este proxecto, considera unha doazón para apoiar o programador e axudar a cubrir os custos de manter este sitio web en liña." - #: src/components/content/add/ImportOpml.tsx msgid "Import" msgstr "Importación" diff --git a/commafeed-client/src/locales/hu/messages.po b/commafeed-client/src/locales/hu/messages.po index f485e55f..95a98c84 100644 --- a/commafeed-client/src/locales/hu/messages.po +++ b/commafeed-client/src/locales/hu/messages.po @@ -25,6 +25,10 @@ msgstr "" msgid "<0>Have an account?<1>Log in!" msgstr "<0>Van fiókja?<1>Jelentkezzen be!" +#: src/pages/app/DonatePage.tsx +msgid "<0>Hey,<1>I'm Jérémie from Belgium and I've been working on CommaFeed in my free time for over 10 years now. Thanks for taking an interest in helping me continue supporting CommaFeed." +msgstr "" + #: src/pages/auth/LoginPage.tsx msgid "<0>Need an account?<1>Sign up!" msgstr "<0>Fiókra van szüksége?<1>Regisztráljon!" @@ -245,6 +249,11 @@ msgstr "" msgid "Display" msgstr "Kijelző" +#: src/components/header/ProfileMenu.tsx +#: src/pages/app/DonatePage.tsx +msgid "Donate" +msgstr "" + #: src/components/settings/ProfileSettings.tsx msgid "Download" msgstr "Letöltés" @@ -321,10 +330,6 @@ msgstr "fájl szükséges" msgid "Filtering expression" msgstr "Szűrő kifejezés" -#: src/pages/app/AboutPage.tsx -msgid "For those of you who prefer bitcoin, here is the address: {bitcoinAddress}" -msgstr "" - #: src/pages/auth/LoginPage.tsx msgid "Forgot password?" msgstr "Elfelejtette a jelszavát?" @@ -373,10 +378,6 @@ msgstr "Ha nem üres, akkor 'igaz' vagy 'hamis' értékre kiértékelő kifejez msgid "If you encounter an issue, please report it on the issues page of the GitHub project." msgstr "Ha problémát tapasztal, kérjük, jelentse azt a GitHub projekt problémák oldalán." -#: src/pages/app/AboutPage.tsx -msgid "If you like this project, please consider a donation to support the developer and help cover the costs of keeping this website online." -msgstr "Ha tetszik ez a projekt, kérjük, fontolja meg adományozását a fejlesztő támogatására és a webhely online tartásának költségeinek fedezésére." - #: src/components/content/add/ImportOpml.tsx msgid "Import" msgstr "Importálás" diff --git a/commafeed-client/src/locales/id/messages.po b/commafeed-client/src/locales/id/messages.po index 5048dd5a..9ec93228 100644 --- a/commafeed-client/src/locales/id/messages.po +++ b/commafeed-client/src/locales/id/messages.po @@ -25,6 +25,10 @@ msgstr "" msgid "<0>Have an account?<1>Log in!" msgstr "<0>Punya akun?<1>Masuk!" +#: src/pages/app/DonatePage.tsx +msgid "<0>Hey,<1>I'm Jérémie from Belgium and I've been working on CommaFeed in my free time for over 10 years now. Thanks for taking an interest in helping me continue supporting CommaFeed." +msgstr "" + #: src/pages/auth/LoginPage.tsx msgid "<0>Need an account?<1>Sign up!" msgstr "<0>Butuh akun?<1>Daftar!" @@ -245,6 +249,11 @@ msgstr "" msgid "Display" msgstr "Tampilan" +#: src/components/header/ProfileMenu.tsx +#: src/pages/app/DonatePage.tsx +msgid "Donate" +msgstr "" + #: src/components/settings/ProfileSettings.tsx msgid "Download" msgstr "Unduh" @@ -321,10 +330,6 @@ msgstr "file diperlukan" msgid "Filtering expression" msgstr "Memfilter ekspresi" -#: src/pages/app/AboutPage.tsx -msgid "For those of you who prefer bitcoin, here is the address: {bitcoinAddress}" -msgstr "" - #: src/pages/auth/LoginPage.tsx msgid "Forgot password?" msgstr "Lupa kata sandi?" @@ -373,10 +378,6 @@ msgstr "Jika tidak kosong, ekspresi mengevaluasi ke 'benar' atau 'salah'. " msgid "If you encounter an issue, please report it on the issues page of the GitHub project." msgstr "Jika Anda mengalami masalah, harap laporkan di halaman masalah proyek GitHub." -#: src/pages/app/AboutPage.tsx -msgid "If you like this project, please consider a donation to support the developer and help cover the costs of keeping this website online." -msgstr "Jika Anda menyukai proyek ini, mohon pertimbangkan sumbangan untuk mendukung pengembang dan membantu menutupi biaya menjaga situs web ini tetap online." - #: src/components/content/add/ImportOpml.tsx msgid "Import" msgstr "Impor" diff --git a/commafeed-client/src/locales/it/messages.po b/commafeed-client/src/locales/it/messages.po index 6acddecf..843690bd 100644 --- a/commafeed-client/src/locales/it/messages.po +++ b/commafeed-client/src/locales/it/messages.po @@ -25,6 +25,10 @@ msgstr "" msgid "<0>Have an account?<1>Log in!" msgstr "<0>Hai un account?<1>Accedi!" +#: src/pages/app/DonatePage.tsx +msgid "<0>Hey,<1>I'm Jérémie from Belgium and I've been working on CommaFeed in my free time for over 10 years now. Thanks for taking an interest in helping me continue supporting CommaFeed." +msgstr "" + #: src/pages/auth/LoginPage.tsx msgid "<0>Need an account?<1>Sign up!" msgstr "<0>Hai bisogno di un account?<1>Registrati!" @@ -245,6 +249,11 @@ msgstr "" msgid "Display" msgstr "Visualizzazione" +#: src/components/header/ProfileMenu.tsx +#: src/pages/app/DonatePage.tsx +msgid "Donate" +msgstr "" + #: src/components/settings/ProfileSettings.tsx msgid "Download" msgstr "Scarica" @@ -321,10 +330,6 @@ msgstr "è richiesto il file" msgid "Filtering expression" msgstr "Espressione filtrante" -#: src/pages/app/AboutPage.tsx -msgid "For those of you who prefer bitcoin, here is the address: {bitcoinAddress}" -msgstr "" - #: src/pages/auth/LoginPage.tsx msgid "Forgot password?" msgstr "Password dimenticata?" @@ -373,10 +378,6 @@ msgstr "Se non è vuota, un'espressione valutata come 'vero' o 'falso'. " msgid "If you encounter an issue, please report it on the issues page of the GitHub project." msgstr "Se riscontri un problema, segnalalo nella pagina dei problemi del progetto GitHub." -#: src/pages/app/AboutPage.tsx -msgid "If you like this project, please consider a donation to support the developer and help cover the costs of keeping this website online." -msgstr "Se ti piace questo progetto, prendi in considerazione una donazione per supportare lo sviluppatore e aiutare a coprire i costi per mantenere questo sito online." - #: src/components/content/add/ImportOpml.tsx msgid "Import" msgstr "Importa" diff --git a/commafeed-client/src/locales/ja/messages.po b/commafeed-client/src/locales/ja/messages.po index 268f268f..8b91cec7 100644 --- a/commafeed-client/src/locales/ja/messages.po +++ b/commafeed-client/src/locales/ja/messages.po @@ -25,6 +25,10 @@ msgstr "" msgid "<0>Have an account?<1>Log in!" msgstr "<0>アカウントをお持ちですか?<1>ログインしてください!" +#: src/pages/app/DonatePage.tsx +msgid "<0>Hey,<1>I'm Jérémie from Belgium and I've been working on CommaFeed in my free time for over 10 years now. Thanks for taking an interest in helping me continue supporting CommaFeed." +msgstr "" + #: src/pages/auth/LoginPage.tsx msgid "<0>Need an account?<1>Sign up!" msgstr "<0>アカウントが必要ですか?<1>サインアップ!" @@ -245,6 +249,11 @@ msgstr "" msgid "Display" msgstr "ディスプレイ" +#: src/components/header/ProfileMenu.tsx +#: src/pages/app/DonatePage.tsx +msgid "Donate" +msgstr "" + #: src/components/settings/ProfileSettings.tsx msgid "Download" msgstr "ダウンロード" @@ -321,10 +330,6 @@ msgstr "ファイルが必要です" msgid "Filtering expression" msgstr "フィルタリング式" -#: src/pages/app/AboutPage.tsx -msgid "For those of you who prefer bitcoin, here is the address: {bitcoinAddress}" -msgstr "" - #: src/pages/auth/LoginPage.tsx msgid "Forgot password?" msgstr "パスワードをお忘れですか?" @@ -373,10 +378,6 @@ msgstr "空でない場合は、'true' または 'false' に評価される式 msgid "If you encounter an issue, please report it on the issues page of the GitHub project." msgstr "問題が発生した場合は、GitHub プロジェクトの問題ページで報告してください。" -#: src/pages/app/AboutPage.tsx -msgid "If you like this project, please consider a donation to support the developer and help cover the costs of keeping this website online." -msgstr "このプロジェクトが気に入った場合は、開発者をサポートし、この Web サイトをオンラインに維持するための費用を賄うための寄付を検討してください。" - #: src/components/content/add/ImportOpml.tsx msgid "Import" msgstr "インポート" diff --git a/commafeed-client/src/locales/ko/messages.po b/commafeed-client/src/locales/ko/messages.po index 275f1d82..4fb66cf5 100644 --- a/commafeed-client/src/locales/ko/messages.po +++ b/commafeed-client/src/locales/ko/messages.po @@ -25,6 +25,10 @@ msgstr "" msgid "<0>Have an account?<1>Log in!" msgstr "<0>계정이 있습니까?<1>로그인하세요!" +#: src/pages/app/DonatePage.tsx +msgid "<0>Hey,<1>I'm Jérémie from Belgium and I've been working on CommaFeed in my free time for over 10 years now. Thanks for taking an interest in helping me continue supporting CommaFeed." +msgstr "" + #: src/pages/auth/LoginPage.tsx msgid "<0>Need an account?<1>Sign up!" msgstr "<0>계정이 필요하십니까?<1>가입하세요!" @@ -245,6 +249,11 @@ msgstr "" msgid "Display" msgstr "디스플레이" +#: src/components/header/ProfileMenu.tsx +#: src/pages/app/DonatePage.tsx +msgid "Donate" +msgstr "" + #: src/components/settings/ProfileSettings.tsx msgid "Download" msgstr "다운로드" @@ -321,10 +330,6 @@ msgstr "파일이 필요합니다" msgid "Filtering expression" msgstr "필터링 표현식" -#: src/pages/app/AboutPage.tsx -msgid "For those of you who prefer bitcoin, here is the address: {bitcoinAddress}" -msgstr "" - #: src/pages/auth/LoginPage.tsx msgid "Forgot password?" msgstr "비밀번호를 잊으셨나요?" @@ -373,10 +378,6 @@ msgstr "비어 있지 않은 경우 'true' 또는 'false'로 평가되는 표현 msgid "If you encounter an issue, please report it on the issues page of the GitHub project." msgstr "문제가 발생하면 GitHub 프로젝트의 문제 페이지에서 보고하세요." -#: src/pages/app/AboutPage.tsx -msgid "If you like this project, please consider a donation to support the developer and help cover the costs of keeping this website online." -msgstr "이 프로젝트가 마음에 들면 개발자를 지원하고 이 웹사이트를 온라인 상태로 유지하는 데 드는 비용을 충당하기 위한 기부를 고려하십시오." - #: src/components/content/add/ImportOpml.tsx msgid "Import" msgstr "가져오기" diff --git a/commafeed-client/src/locales/ms/messages.po b/commafeed-client/src/locales/ms/messages.po index f65717cb..d66783c1 100644 --- a/commafeed-client/src/locales/ms/messages.po +++ b/commafeed-client/src/locales/ms/messages.po @@ -25,6 +25,10 @@ msgstr "" msgid "<0>Have an account?<1>Log in!" msgstr "<0>Ada akaun?<1>Log masuk!" +#: src/pages/app/DonatePage.tsx +msgid "<0>Hey,<1>I'm Jérémie from Belgium and I've been working on CommaFeed in my free time for over 10 years now. Thanks for taking an interest in helping me continue supporting CommaFeed." +msgstr "" + #: src/pages/auth/LoginPage.tsx msgid "<0>Need an account?<1>Sign up!" msgstr "<0>Perlukan akaun?<1>Daftar!" @@ -245,6 +249,11 @@ msgstr "" msgid "Display" msgstr "Paparan" +#: src/components/header/ProfileMenu.tsx +#: src/pages/app/DonatePage.tsx +msgid "Donate" +msgstr "" + #: src/components/settings/ProfileSettings.tsx msgid "Download" msgstr "Muat turun" @@ -321,10 +330,6 @@ msgstr "fail diperlukan" msgid "Filtering expression" msgstr "Ungkapan penapisan" -#: src/pages/app/AboutPage.tsx -msgid "For those of you who prefer bitcoin, here is the address: {bitcoinAddress}" -msgstr "" - #: src/pages/auth/LoginPage.tsx msgid "Forgot password?" msgstr "Lupa kata laluan?" @@ -373,10 +378,6 @@ msgstr "Jika tidak kosong, ungkapan yang menilai kepada 'benar' atau 'palsu'. " msgid "If you encounter an issue, please report it on the issues page of the GitHub project." msgstr "Jika anda menghadapi isu, sila laporkan pada halaman isu projek GitHub." -#: src/pages/app/AboutPage.tsx -msgid "If you like this project, please consider a donation to support the developer and help cover the costs of keeping this website online." -msgstr "Jika anda menyukai projek ini, sila pertimbangkan derma untuk menyokong pembangun dan membantu menampung kos mengekalkan tapak web ini dalam talian." - #: src/components/content/add/ImportOpml.tsx msgid "Import" msgstr "" diff --git a/commafeed-client/src/locales/nb/messages.po b/commafeed-client/src/locales/nb/messages.po index 2c5e785c..f6b0ad8d 100644 --- a/commafeed-client/src/locales/nb/messages.po +++ b/commafeed-client/src/locales/nb/messages.po @@ -25,6 +25,10 @@ msgstr "" msgid "<0>Have an account?<1>Log in!" msgstr "<0>Har du en konto?<1>Logg på!" +#: src/pages/app/DonatePage.tsx +msgid "<0>Hey,<1>I'm Jérémie from Belgium and I've been working on CommaFeed in my free time for over 10 years now. Thanks for taking an interest in helping me continue supporting CommaFeed." +msgstr "" + #: src/pages/auth/LoginPage.tsx msgid "<0>Need an account?<1>Sign up!" msgstr "<0>Trenger du en konto?<1>Registrer deg!" @@ -245,6 +249,11 @@ msgstr "" msgid "Display" msgstr "Visning" +#: src/components/header/ProfileMenu.tsx +#: src/pages/app/DonatePage.tsx +msgid "Donate" +msgstr "" + #: src/components/settings/ProfileSettings.tsx msgid "Download" msgstr "Last ned" @@ -321,10 +330,6 @@ msgstr "fil kreves" msgid "Filtering expression" msgstr "Filtrerende uttrykk" -#: src/pages/app/AboutPage.tsx -msgid "For those of you who prefer bitcoin, here is the address: {bitcoinAddress}" -msgstr "" - #: src/pages/auth/LoginPage.tsx msgid "Forgot password?" msgstr "Glemt passord?" @@ -373,10 +378,6 @@ msgstr "Hvis det ikke er tomt, et uttrykk som vurderes til 'sant' eller 'usant'. msgid "If you encounter an issue, please report it on the issues page of the GitHub project." msgstr "Hvis du støter på et problem, vennligst rapporter det på problemsiden til GitHub-prosjektet." -#: src/pages/app/AboutPage.tsx -msgid "If you like this project, please consider a donation to support the developer and help cover the costs of keeping this website online." -msgstr "Hvis du liker dette prosjektet, kan du vurdere en donasjon for å støtte utvikleren og hjelpe til med å dekke kostnadene ved å holde denne nettsiden online." - #: src/components/content/add/ImportOpml.tsx msgid "Import" msgstr "" diff --git a/commafeed-client/src/locales/nl/messages.po b/commafeed-client/src/locales/nl/messages.po index 73eb6b05..58a8afea 100644 --- a/commafeed-client/src/locales/nl/messages.po +++ b/commafeed-client/src/locales/nl/messages.po @@ -25,6 +25,10 @@ msgstr "" msgid "<0>Have an account?<1>Log in!" msgstr "<0>Heb je een account?<1>Log in!" +#: src/pages/app/DonatePage.tsx +msgid "<0>Hey,<1>I'm Jérémie from Belgium and I've been working on CommaFeed in my free time for over 10 years now. Thanks for taking an interest in helping me continue supporting CommaFeed." +msgstr "" + #: src/pages/auth/LoginPage.tsx msgid "<0>Need an account?<1>Sign up!" msgstr "<0>Een account nodig?<1>Meld je aan!" @@ -245,6 +249,11 @@ msgstr "" msgid "Display" msgstr "Weergave" +#: src/components/header/ProfileMenu.tsx +#: src/pages/app/DonatePage.tsx +msgid "Donate" +msgstr "" + #: src/components/settings/ProfileSettings.tsx msgid "Download" msgstr "Downloaden" @@ -321,10 +330,6 @@ msgstr "bestand is vereist" msgid "Filtering expression" msgstr "Uitdrukking filteren" -#: src/pages/app/AboutPage.tsx -msgid "For those of you who prefer bitcoin, here is the address: {bitcoinAddress}" -msgstr "" - #: src/pages/auth/LoginPage.tsx msgid "Forgot password?" msgstr "Wachtwoord vergeten?" @@ -373,10 +378,6 @@ msgstr "Indien niet leeg, een uitdrukking die evalueert naar 'true' of 'false'. msgid "If you encounter an issue, please report it on the issues page of the GitHub project." msgstr "Als je een probleem tegenkomt, meld dit dan op de pagina met problemen van het GitHub-project." -#: src/pages/app/AboutPage.tsx -msgid "If you like this project, please consider a donation to support the developer and help cover the costs of keeping this website online." -msgstr "Als je dit project leuk vindt, overweeg dan een donatie om de ontwikkelaar te ondersteunen en de kosten te dekken om deze website online te houden." - #: src/components/content/add/ImportOpml.tsx msgid "Import" msgstr "" diff --git a/commafeed-client/src/locales/nn/messages.po b/commafeed-client/src/locales/nn/messages.po index d3b01e8d..7953ad2e 100644 --- a/commafeed-client/src/locales/nn/messages.po +++ b/commafeed-client/src/locales/nn/messages.po @@ -25,6 +25,10 @@ msgstr "" msgid "<0>Have an account?<1>Log in!" msgstr "<0>Har du en konto?<1>Logg på!" +#: src/pages/app/DonatePage.tsx +msgid "<0>Hey,<1>I'm Jérémie from Belgium and I've been working on CommaFeed in my free time for over 10 years now. Thanks for taking an interest in helping me continue supporting CommaFeed." +msgstr "" + #: src/pages/auth/LoginPage.tsx msgid "<0>Need an account?<1>Sign up!" msgstr "<0>Trenger du en konto?<1>Registrer deg!" @@ -245,6 +249,11 @@ msgstr "" msgid "Display" msgstr "Visning" +#: src/components/header/ProfileMenu.tsx +#: src/pages/app/DonatePage.tsx +msgid "Donate" +msgstr "" + #: src/components/settings/ProfileSettings.tsx msgid "Download" msgstr "Last ned" @@ -321,10 +330,6 @@ msgstr "fil kreves" msgid "Filtering expression" msgstr "Filtrerende uttrykk" -#: src/pages/app/AboutPage.tsx -msgid "For those of you who prefer bitcoin, here is the address: {bitcoinAddress}" -msgstr "" - #: src/pages/auth/LoginPage.tsx msgid "Forgot password?" msgstr "Glemt passord?" @@ -373,10 +378,6 @@ msgstr "Hvis det ikke er tomt, et uttrykk som vurderes til 'sant' eller 'usant'. msgid "If you encounter an issue, please report it on the issues page of the GitHub project." msgstr "Hvis du støter på et problem, vennligst rapporter det på problemsiden til GitHub-prosjektet." -#: src/pages/app/AboutPage.tsx -msgid "If you like this project, please consider a donation to support the developer and help cover the costs of keeping this website online." -msgstr "Hvis du liker dette prosjektet, kan du vurdere en donasjon for å støtte utvikleren og hjelpe til med å dekke kostnadene ved å holde denne nettsiden online." - #: src/components/content/add/ImportOpml.tsx msgid "Import" msgstr "" diff --git a/commafeed-client/src/locales/pl/messages.po b/commafeed-client/src/locales/pl/messages.po index 1a537449..5c42306e 100644 --- a/commafeed-client/src/locales/pl/messages.po +++ b/commafeed-client/src/locales/pl/messages.po @@ -25,6 +25,10 @@ msgstr "" msgid "<0>Have an account?<1>Log in!" msgstr "<0>Masz konto?<1>Zaloguj się!" +#: src/pages/app/DonatePage.tsx +msgid "<0>Hey,<1>I'm Jérémie from Belgium and I've been working on CommaFeed in my free time for over 10 years now. Thanks for taking an interest in helping me continue supporting CommaFeed." +msgstr "" + #: src/pages/auth/LoginPage.tsx msgid "<0>Need an account?<1>Sign up!" msgstr "<0>Potrzebujesz konta?<1>Zarejestruj się!" @@ -245,6 +249,11 @@ msgstr "" msgid "Display" msgstr "Wyświetlacz" +#: src/components/header/ProfileMenu.tsx +#: src/pages/app/DonatePage.tsx +msgid "Donate" +msgstr "" + #: src/components/settings/ProfileSettings.tsx msgid "Download" msgstr "Pobierz" @@ -321,10 +330,6 @@ msgstr "plik jest wymagany" msgid "Filtering expression" msgstr "Wyrażenie filtrujące" -#: src/pages/app/AboutPage.tsx -msgid "For those of you who prefer bitcoin, here is the address: {bitcoinAddress}" -msgstr "" - #: src/pages/auth/LoginPage.tsx msgid "Forgot password?" msgstr "Zapomniałeś hasła?" @@ -373,10 +378,6 @@ msgstr "Jeśli nie jest puste, wyrażenie oceniające jako „prawda” lub „f msgid "If you encounter an issue, please report it on the issues page of the GitHub project." msgstr "Jeśli napotkasz problem, zgłoś go na stronie problemów projektu GitHub." -#: src/pages/app/AboutPage.tsx -msgid "If you like this project, please consider a donation to support the developer and help cover the costs of keeping this website online." -msgstr "Jeśli podoba Ci się ten projekt, rozważ darowiznę, aby wesprzeć programistę i pokryć koszty utrzymania tej witryny online." - #: src/components/content/add/ImportOpml.tsx msgid "Import" msgstr "" diff --git a/commafeed-client/src/locales/pt/messages.po b/commafeed-client/src/locales/pt/messages.po index 446750d2..32222296 100644 --- a/commafeed-client/src/locales/pt/messages.po +++ b/commafeed-client/src/locales/pt/messages.po @@ -25,6 +25,10 @@ msgstr "" msgid "<0>Have an account?<1>Log in!" msgstr "<0>Tem uma conta?<1>Faça login!" +#: src/pages/app/DonatePage.tsx +msgid "<0>Hey,<1>I'm Jérémie from Belgium and I've been working on CommaFeed in my free time for over 10 years now. Thanks for taking an interest in helping me continue supporting CommaFeed." +msgstr "" + #: src/pages/auth/LoginPage.tsx msgid "<0>Need an account?<1>Sign up!" msgstr "<0>Precisa de uma conta?<1>Inscreva-se!" @@ -245,6 +249,11 @@ msgstr "" msgid "Display" msgstr "Exibir" +#: src/components/header/ProfileMenu.tsx +#: src/pages/app/DonatePage.tsx +msgid "Donate" +msgstr "" + #: src/components/settings/ProfileSettings.tsx msgid "Download" msgstr "Baixar" @@ -321,10 +330,6 @@ msgstr "o arquivo é obrigatório" msgid "Filtering expression" msgstr "Filtrando expressão" -#: src/pages/app/AboutPage.tsx -msgid "For those of you who prefer bitcoin, here is the address: {bitcoinAddress}" -msgstr "" - #: src/pages/auth/LoginPage.tsx msgid "Forgot password?" msgstr "Esqueceu a senha?" @@ -373,10 +378,6 @@ msgstr "Se não estiver vazio, uma expressão avaliada como 'true' ou 'false'. " msgid "If you encounter an issue, please report it on the issues page of the GitHub project." msgstr "Se você encontrar um problema, informe-o na página de problemas do projeto GitHub." -#: src/pages/app/AboutPage.tsx -msgid "If you like this project, please consider a donation to support the developer and help cover the costs of keeping this website online." -msgstr "Se você gostar deste projeto, considere uma doação para apoiar o desenvolvedor e ajudar a cobrir os custos de manter este site online." - #: src/components/content/add/ImportOpml.tsx msgid "Import" msgstr "Importar" diff --git a/commafeed-client/src/locales/ru/messages.po b/commafeed-client/src/locales/ru/messages.po index de1d5f52..59490fbb 100644 --- a/commafeed-client/src/locales/ru/messages.po +++ b/commafeed-client/src/locales/ru/messages.po @@ -25,6 +25,10 @@ msgstr "" msgid "<0>Have an account?<1>Log in!" msgstr "<0>Есть аккаунт?<1>Войти!" +#: src/pages/app/DonatePage.tsx +msgid "<0>Hey,<1>I'm Jérémie from Belgium and I've been working on CommaFeed in my free time for over 10 years now. Thanks for taking an interest in helping me continue supporting CommaFeed." +msgstr "" + #: src/pages/auth/LoginPage.tsx msgid "<0>Need an account?<1>Sign up!" msgstr "<0>Нужен аккаунт?<1>Зарегистрируйтесь!" @@ -245,6 +249,11 @@ msgstr "" msgid "Display" msgstr "Дисплей" +#: src/components/header/ProfileMenu.tsx +#: src/pages/app/DonatePage.tsx +msgid "Donate" +msgstr "" + #: src/components/settings/ProfileSettings.tsx msgid "Download" msgstr "Скачать" @@ -321,10 +330,6 @@ msgstr "требуется файл" msgid "Filtering expression" msgstr "Выражение фильтрации" -#: src/pages/app/AboutPage.tsx -msgid "For those of you who prefer bitcoin, here is the address: {bitcoinAddress}" -msgstr "" - #: src/pages/auth/LoginPage.tsx msgid "Forgot password?" msgstr "Забыли пароль?" @@ -373,10 +378,6 @@ msgstr "Если не пусто, выражение оценивается ка msgid "If you encounter an issue, please report it on the issues page of the GitHub project." msgstr "Если вы столкнулись с проблемой, сообщите о ней на странице проблем проекта GitHub." -#: src/pages/app/AboutPage.tsx -msgid "If you like this project, please consider a donation to support the developer and help cover the costs of keeping this website online." -msgstr "Если вам нравится этот проект, подумайте о том, чтобы сделать пожертвование для поддержки разработчика и помочь покрыть расходы на содержание этого веб-сайта в сети." - #: src/components/content/add/ImportOpml.tsx msgid "Import" msgstr "Импорт" diff --git a/commafeed-client/src/locales/sk/messages.po b/commafeed-client/src/locales/sk/messages.po index eabf9ad4..5acc88d7 100644 --- a/commafeed-client/src/locales/sk/messages.po +++ b/commafeed-client/src/locales/sk/messages.po @@ -25,6 +25,10 @@ msgstr "" msgid "<0>Have an account?<1>Log in!" msgstr "<0>Máte účet?<1>Prihláste sa!" +#: src/pages/app/DonatePage.tsx +msgid "<0>Hey,<1>I'm Jérémie from Belgium and I've been working on CommaFeed in my free time for over 10 years now. Thanks for taking an interest in helping me continue supporting CommaFeed." +msgstr "" + #: src/pages/auth/LoginPage.tsx msgid "<0>Need an account?<1>Sign up!" msgstr "<0>Potrebujete účet?<1>Zaregistrujte sa!" @@ -245,6 +249,11 @@ msgstr "" msgid "Display" msgstr "Displej" +#: src/components/header/ProfileMenu.tsx +#: src/pages/app/DonatePage.tsx +msgid "Donate" +msgstr "" + #: src/components/settings/ProfileSettings.tsx msgid "Download" msgstr "Stiahnuť" @@ -321,10 +330,6 @@ msgstr "" msgid "Filtering expression" msgstr "Filtrovanie výrazu" -#: src/pages/app/AboutPage.tsx -msgid "For those of you who prefer bitcoin, here is the address: {bitcoinAddress}" -msgstr "" - #: src/pages/auth/LoginPage.tsx msgid "Forgot password?" msgstr "Zabudli ste heslo?" @@ -373,10 +378,6 @@ msgstr "Ak nie je prázdny, výraz vyhodnotený ako 'pravda' alebo 'nepravda'. " msgid "If you encounter an issue, please report it on the issues page of the GitHub project." msgstr "Ak narazíte na problém, nahláste ho na stránke problémov projektu GitHub." -#: src/pages/app/AboutPage.tsx -msgid "If you like this project, please consider a donation to support the developer and help cover the costs of keeping this website online." -msgstr "Ak sa vám tento projekt páči, zvážte príspevok na podporu vývojára a pomôžte pokryť náklady na udržiavanie tejto webovej stránky online." - #: src/components/content/add/ImportOpml.tsx msgid "Import" msgstr "" diff --git a/commafeed-client/src/locales/sv/messages.po b/commafeed-client/src/locales/sv/messages.po index 5a3a5976..10e8e91a 100644 --- a/commafeed-client/src/locales/sv/messages.po +++ b/commafeed-client/src/locales/sv/messages.po @@ -25,6 +25,10 @@ msgstr "" msgid "<0>Have an account?<1>Log in!" msgstr "<0>Har du ett konto?<1>Logga in!" +#: src/pages/app/DonatePage.tsx +msgid "<0>Hey,<1>I'm Jérémie from Belgium and I've been working on CommaFeed in my free time for over 10 years now. Thanks for taking an interest in helping me continue supporting CommaFeed." +msgstr "" + #: src/pages/auth/LoginPage.tsx msgid "<0>Need an account?<1>Sign up!" msgstr "<0>Behöver du ett konto?<1>Registrera dig!" @@ -245,6 +249,11 @@ msgstr "" msgid "Display" msgstr "Visa" +#: src/components/header/ProfileMenu.tsx +#: src/pages/app/DonatePage.tsx +msgid "Donate" +msgstr "" + #: src/components/settings/ProfileSettings.tsx msgid "Download" msgstr "Ladda ner" @@ -321,10 +330,6 @@ msgstr "fil krävs" msgid "Filtering expression" msgstr "Filtrerande uttryck" -#: src/pages/app/AboutPage.tsx -msgid "For those of you who prefer bitcoin, here is the address: {bitcoinAddress}" -msgstr "" - #: src/pages/auth/LoginPage.tsx msgid "Forgot password?" msgstr "Glömt lösenord?" @@ -373,10 +378,6 @@ msgstr "Om det inte är tomt, ett uttryck som utvärderas till 'sant' eller 'fal msgid "If you encounter an issue, please report it on the issues page of the GitHub project." msgstr "Om du stöter på ett problem, vänligen rapportera det på problemsidan för GitHub-projektet." -#: src/pages/app/AboutPage.tsx -msgid "If you like this project, please consider a donation to support the developer and help cover the costs of keeping this website online." -msgstr "Om du gillar det här projektet, vänligen överväg en donation för att stödja utvecklaren och hjälpa till att täcka kostnaderna för att hålla denna webbplats online." - #: src/components/content/add/ImportOpml.tsx msgid "Import" msgstr "" diff --git a/commafeed-client/src/locales/tr/messages.po b/commafeed-client/src/locales/tr/messages.po index f7c45c1c..85b809af 100644 --- a/commafeed-client/src/locales/tr/messages.po +++ b/commafeed-client/src/locales/tr/messages.po @@ -25,6 +25,10 @@ msgstr "" msgid "<0>Have an account?<1>Log in!" msgstr "<0>Hesabınız var mı?<1>Giriş yapın!" +#: src/pages/app/DonatePage.tsx +msgid "<0>Hey,<1>I'm Jérémie from Belgium and I've been working on CommaFeed in my free time for over 10 years now. Thanks for taking an interest in helping me continue supporting CommaFeed." +msgstr "" + #: src/pages/auth/LoginPage.tsx msgid "<0>Need an account?<1>Sign up!" msgstr "<0>Bir hesaba mı ihtiyacınız var?<1>Kaydolun!" @@ -245,6 +249,11 @@ msgstr "" msgid "Display" msgstr "Ekran" +#: src/components/header/ProfileMenu.tsx +#: src/pages/app/DonatePage.tsx +msgid "Donate" +msgstr "" + #: src/components/settings/ProfileSettings.tsx msgid "Download" msgstr "İndir" @@ -321,10 +330,6 @@ msgstr "dosya gerekli" msgid "Filtering expression" msgstr "Filtreleme ifadesi" -#: src/pages/app/AboutPage.tsx -msgid "For those of you who prefer bitcoin, here is the address: {bitcoinAddress}" -msgstr "" - #: src/pages/auth/LoginPage.tsx msgid "Forgot password?" msgstr "Parolanızı mı unuttunuz?" @@ -373,10 +378,6 @@ msgstr "Boş değilse, 'doğru' veya 'yanlış' olarak değerlendirilen bir ifad msgid "If you encounter an issue, please report it on the issues page of the GitHub project." msgstr "Bir sorunla karşılaşırsanız lütfen GitHub projesinin sorunlar sayfasında bildirin." -#: src/pages/app/AboutPage.tsx -msgid "If you like this project, please consider a donation to support the developer and help cover the costs of keeping this website online." -msgstr "Bu projeyi beğendiyseniz, lütfen geliştiriciyi desteklemek ve bu web sitesini çevrimiçi tutma maliyetlerini karşılamaya yardımcı olmak için bir bağış yapmayı düşünün." - #: src/components/content/add/ImportOpml.tsx msgid "Import" msgstr "İçe Aktar" diff --git a/commafeed-client/src/locales/zh/messages.po b/commafeed-client/src/locales/zh/messages.po index f0cfa8af..c3c9143c 100644 --- a/commafeed-client/src/locales/zh/messages.po +++ b/commafeed-client/src/locales/zh/messages.po @@ -25,6 +25,10 @@ msgstr "" msgid "<0>Have an account?<1>Log in!" msgstr "<0>有帐号吗?<1>登录!" +#: src/pages/app/DonatePage.tsx +msgid "<0>Hey,<1>I'm Jérémie from Belgium and I've been working on CommaFeed in my free time for over 10 years now. Thanks for taking an interest in helping me continue supporting CommaFeed." +msgstr "" + #: src/pages/auth/LoginPage.tsx msgid "<0>Need an account?<1>Sign up!" msgstr "<0>需要一个帐户?<1>注册!" @@ -245,6 +249,11 @@ msgstr "" msgid "Display" msgstr "显示" +#: src/components/header/ProfileMenu.tsx +#: src/pages/app/DonatePage.tsx +msgid "Donate" +msgstr "" + #: src/components/settings/ProfileSettings.tsx msgid "Download" msgstr "下载" @@ -321,10 +330,6 @@ msgstr "文件是必需的" msgid "Filtering expression" msgstr "过滤表达式" -#: src/pages/app/AboutPage.tsx -msgid "For those of you who prefer bitcoin, here is the address: {bitcoinAddress}" -msgstr "" - #: src/pages/auth/LoginPage.tsx msgid "Forgot password?" msgstr "忘记密码?" @@ -373,10 +378,6 @@ msgstr "如果不为空,则表达式评估为“真”或“假”。" msgid "If you encounter an issue, please report it on the issues page of the GitHub project." msgstr "如果遇到问题,请在GitHub项目的issues页面上报告。" -#: src/pages/app/AboutPage.tsx -msgid "If you like this project, please consider a donation to support the developer and help cover the costs of keeping this website online." -msgstr "如果您喜欢这个项目,请考虑捐款以支持开发人员并帮助支付保持此网站在线的费用。" - #: src/components/content/add/ImportOpml.tsx msgid "Import" msgstr "进口" diff --git a/commafeed-client/src/pages/app/AboutPage.tsx b/commafeed-client/src/pages/app/AboutPage.tsx index 6ae60b15..d7c7331b 100644 --- a/commafeed-client/src/pages/app/AboutPage.tsx +++ b/commafeed-client/src/pages/app/AboutPage.tsx @@ -1,5 +1,5 @@ import { t, Trans } from "@lingui/macro" -import { Anchor, Box, Center, Code, Container, createStyles, List, NativeSelect, SimpleGrid, Title } from "@mantine/core" +import { Anchor, Box, Container, createStyles, List, NativeSelect, SimpleGrid, Title } from "@mantine/core" import { Constants } from "app/constants" import { redirectToApiDocumentation } from "app/slices/redirect" import { useAppDispatch, useAppSelector } from "app/store" @@ -57,8 +57,6 @@ function NextUnreadBookmarklet() { ) } -const bitcoinAddress = {Constants.bitcoinWalletAddress} - export function AboutPage() { const version = useAppSelector(state => state.server.serverInfos?.version) const revision = useAppSelector(state => state.server.serverInfos?.gitCommit) @@ -84,41 +82,6 @@ export function AboutPage() { If you encounter an issue, please report it on the issues page of the GitHub project. - - - - If you like this project, please consider a donation to support the developer and help cover the costs of - keeping this website online. - - -
- - - - - - -
- - - - - - -
-
-
- - For those of you who prefer bitcoin, here is the address: {bitcoinAddress} -
Goodies} icon={}> diff --git a/commafeed-client/src/pages/app/DonatePage.tsx b/commafeed-client/src/pages/app/DonatePage.tsx new file mode 100644 index 00000000..20a99caa --- /dev/null +++ b/commafeed-client/src/pages/app/DonatePage.tsx @@ -0,0 +1,59 @@ +import { Trans } from "@lingui/macro" +import { Anchor, Box, Code, Container, Group, List, Title } from "@mantine/core" +import { Constants } from "app/constants" +import React from "react" +import { TbBrandGithub, TbBrandPaypal, TbCoinBitcoin, TbHeartFilled } from "react-icons/tb" + +const iconSize = 24 + +export function DonatePage() { + return ( + + + + + <Trans>Donate</Trans> + + + + + + Hey, + + I'm Jérémie from Belgium and I've been working on CommaFeed in my free time for over 10 years now. Thanks for taking + an interest in helping me continue supporting CommaFeed. + + + + + }> + + Paypal EUR + + + }> + + Paypal USD + + + }> + + GitHub Sponsors + + + }> + Bitcoin: {Constants.bitcoinWalletAddress} + + + + + ) +}