feat: add donation info
This commit is contained in:
@@ -21,6 +21,12 @@
|
||||
"description": "Statusnachricht nach einem erneuten Versuch ohne wiederhergestellte Verbindung"
|
||||
},
|
||||
"account": "Konto",
|
||||
"supportConduit": "Conduit unterstützen",
|
||||
"supportConduitSubtitle": "Hilf, die Weiterentwicklung und neue Funktionen zu finanzieren.",
|
||||
"githubSponsorsTitle": "GitHub Sponsors",
|
||||
"githubSponsorsSubtitle": "Werde monatliche*r Sponsor*in und unterstütze die Roadmap.",
|
||||
"buyMeACoffeeTitle": "Buy Me a Coffee",
|
||||
"buyMeACoffeeSubtitle": "Bedanke dich mit einer einmaligen Spende.",
|
||||
"signOut": "Abmelden",
|
||||
"endYourSession": "Sitzung beenden",
|
||||
"defaultModel": "Standardmodell",
|
||||
|
||||
@@ -30,6 +30,30 @@
|
||||
"@pleaseCheckConnection": {"description": "Generic connectivity hint after an error."},
|
||||
"account": "Account",
|
||||
"@account": {"description": "Section header for account-related options."},
|
||||
"supportConduit": "Support Conduit",
|
||||
"@supportConduit": {
|
||||
"description": "Section header inviting the user to financially support the project."
|
||||
},
|
||||
"supportConduitSubtitle": "Keep Conduit independent by funding ongoing development.",
|
||||
"@supportConduitSubtitle": {
|
||||
"description": "Subtitle explaining why donations are helpful."
|
||||
},
|
||||
"githubSponsorsTitle": "GitHub Sponsors",
|
||||
"@githubSponsorsTitle": {
|
||||
"description": "Tile title linking to the GitHub Sponsors page."
|
||||
},
|
||||
"githubSponsorsSubtitle": "Become a recurring sponsor to fund roadmap items.",
|
||||
"@githubSponsorsSubtitle": {
|
||||
"description": "Subtitle explaining the impact of recurring sponsorship."
|
||||
},
|
||||
"buyMeACoffeeTitle": "Buy Me a Coffee",
|
||||
"@buyMeACoffeeTitle": {
|
||||
"description": "Tile title linking to the Buy Me a Coffee page."
|
||||
},
|
||||
"buyMeACoffeeSubtitle": "Make a one-time donation to say thanks.",
|
||||
"@buyMeACoffeeSubtitle": {
|
||||
"description": "Subtitle encouraging one-time donations via Buy Me a Coffee."
|
||||
},
|
||||
"signOut": "Sign Out",
|
||||
"@signOut": {"description": "Button/title for signing out of the app."},
|
||||
"endYourSession": "End your session",
|
||||
|
||||
@@ -21,6 +21,12 @@
|
||||
"description": "Message d'état après une tentative de reconnexion sans succès"
|
||||
},
|
||||
"account": "Compte",
|
||||
"supportConduit": "Soutenir Conduit",
|
||||
"supportConduitSubtitle": "Financez le développement continu et les nouvelles fonctionnalités.",
|
||||
"githubSponsorsTitle": "GitHub Sponsors",
|
||||
"githubSponsorsSubtitle": "Devenez sponsor récurrent pour soutenir la feuille de route.",
|
||||
"buyMeACoffeeTitle": "Buy Me a Coffee",
|
||||
"buyMeACoffeeSubtitle": "Faites un don ponctuel pour nous encourager.",
|
||||
"signOut": "Se déconnecter",
|
||||
"endYourSession": "Terminer votre session",
|
||||
"defaultModel": "Modèle par défaut",
|
||||
|
||||
@@ -21,6 +21,12 @@
|
||||
"description": "Messaggio di stato dopo un tentativo di riconnessione senza successo"
|
||||
},
|
||||
"account": "Account",
|
||||
"supportConduit": "Sostieni Conduit",
|
||||
"supportConduitSubtitle": "Mantieni Conduit indipendente finanziando lo sviluppo continuo.",
|
||||
"githubSponsorsTitle": "GitHub Sponsors",
|
||||
"githubSponsorsSubtitle": "Diventa sponsor ricorrente per supportare la roadmap.",
|
||||
"buyMeACoffeeTitle": "Buy Me a Coffee",
|
||||
"buyMeACoffeeSubtitle": "Fai una donazione una tantum per dire grazie.",
|
||||
"signOut": "Esci",
|
||||
"endYourSession": "Termina la sessione",
|
||||
"defaultModel": "Modello predefinito",
|
||||
|
||||
@@ -174,6 +174,42 @@ abstract class AppLocalizations {
|
||||
/// **'Account'**
|
||||
String get account;
|
||||
|
||||
/// Section header inviting the user to financially support the project.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Support Conduit'**
|
||||
String get supportConduit;
|
||||
|
||||
/// Subtitle explaining why donations are helpful.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Keep Conduit independent by funding ongoing development.'**
|
||||
String get supportConduitSubtitle;
|
||||
|
||||
/// Tile title linking to the GitHub Sponsors page.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'GitHub Sponsors'**
|
||||
String get githubSponsorsTitle;
|
||||
|
||||
/// Subtitle explaining the impact of recurring sponsorship.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Become a recurring sponsor to fund roadmap items.'**
|
||||
String get githubSponsorsSubtitle;
|
||||
|
||||
/// Tile title linking to the Buy Me a Coffee page.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Buy Me a Coffee'**
|
||||
String get buyMeACoffeeTitle;
|
||||
|
||||
/// Subtitle encouraging one-time donations via Buy Me a Coffee.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Make a one-time donation to say thanks.'**
|
||||
String get buyMeACoffeeSubtitle;
|
||||
|
||||
/// Button/title for signing out of the app.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
|
||||
@@ -47,6 +47,27 @@ class AppLocalizationsDe extends AppLocalizations {
|
||||
@override
|
||||
String get account => 'Konto';
|
||||
|
||||
@override
|
||||
String get supportConduit => 'Conduit unterstützen';
|
||||
|
||||
@override
|
||||
String get supportConduitSubtitle =>
|
||||
'Hilf, die Weiterentwicklung und neue Funktionen zu finanzieren.';
|
||||
|
||||
@override
|
||||
String get githubSponsorsTitle => 'GitHub Sponsors';
|
||||
|
||||
@override
|
||||
String get githubSponsorsSubtitle =>
|
||||
'Werde monatliche*r Sponsor*in und unterstütze die Roadmap.';
|
||||
|
||||
@override
|
||||
String get buyMeACoffeeTitle => 'Buy Me a Coffee';
|
||||
|
||||
@override
|
||||
String get buyMeACoffeeSubtitle =>
|
||||
'Bedanke dich mit einer einmaligen Spende.';
|
||||
|
||||
@override
|
||||
String get signOut => 'Abmelden';
|
||||
|
||||
|
||||
@@ -47,6 +47,26 @@ class AppLocalizationsEn extends AppLocalizations {
|
||||
@override
|
||||
String get account => 'Account';
|
||||
|
||||
@override
|
||||
String get supportConduit => 'Support Conduit';
|
||||
|
||||
@override
|
||||
String get supportConduitSubtitle =>
|
||||
'Keep Conduit independent by funding ongoing development.';
|
||||
|
||||
@override
|
||||
String get githubSponsorsTitle => 'GitHub Sponsors';
|
||||
|
||||
@override
|
||||
String get githubSponsorsSubtitle =>
|
||||
'Become a recurring sponsor to fund roadmap items.';
|
||||
|
||||
@override
|
||||
String get buyMeACoffeeTitle => 'Buy Me a Coffee';
|
||||
|
||||
@override
|
||||
String get buyMeACoffeeSubtitle => 'Make a one-time donation to say thanks.';
|
||||
|
||||
@override
|
||||
String get signOut => 'Sign Out';
|
||||
|
||||
|
||||
@@ -47,6 +47,27 @@ class AppLocalizationsFr extends AppLocalizations {
|
||||
@override
|
||||
String get account => 'Compte';
|
||||
|
||||
@override
|
||||
String get supportConduit => 'Soutenir Conduit';
|
||||
|
||||
@override
|
||||
String get supportConduitSubtitle =>
|
||||
'Financez le développement continu et les nouvelles fonctionnalités.';
|
||||
|
||||
@override
|
||||
String get githubSponsorsTitle => 'GitHub Sponsors';
|
||||
|
||||
@override
|
||||
String get githubSponsorsSubtitle =>
|
||||
'Devenez sponsor récurrent pour soutenir la feuille de route.';
|
||||
|
||||
@override
|
||||
String get buyMeACoffeeTitle => 'Buy Me a Coffee';
|
||||
|
||||
@override
|
||||
String get buyMeACoffeeSubtitle =>
|
||||
'Faites un don ponctuel pour nous encourager.';
|
||||
|
||||
@override
|
||||
String get signOut => 'Se déconnecter';
|
||||
|
||||
|
||||
@@ -46,6 +46,27 @@ class AppLocalizationsIt extends AppLocalizations {
|
||||
@override
|
||||
String get account => 'Account';
|
||||
|
||||
@override
|
||||
String get supportConduit => 'Sostieni Conduit';
|
||||
|
||||
@override
|
||||
String get supportConduitSubtitle =>
|
||||
'Mantieni Conduit indipendente finanziando lo sviluppo continuo.';
|
||||
|
||||
@override
|
||||
String get githubSponsorsTitle => 'GitHub Sponsors';
|
||||
|
||||
@override
|
||||
String get githubSponsorsSubtitle =>
|
||||
'Diventa sponsor ricorrente per supportare la roadmap.';
|
||||
|
||||
@override
|
||||
String get buyMeACoffeeTitle => 'Buy Me a Coffee';
|
||||
|
||||
@override
|
||||
String get buyMeACoffeeSubtitle =>
|
||||
'Fai una donazione una tantum per dire grazie.';
|
||||
|
||||
@override
|
||||
String get signOut => 'Esci';
|
||||
|
||||
|
||||
Reference in New Issue
Block a user