fix strings

This commit is contained in:
otsmr 2026-05-16 18:24:28 +02:00
parent 102d2579ce
commit fe2dd06213
3 changed files with 0 additions and 39 deletions

View file

@ -3218,12 +3218,6 @@ abstract class AppLocalizations {
/// **'Emoji already used or invalid'**
String get errorEmojiUsedOrInvalid;
/// No description provided for @subscriptionPledgeTitle.
///
/// In en, this message translates to:
/// **'Support independent privacy.'**
String get subscriptionPledgeTitle;
/// No description provided for @subscriptionPledgeSecureTitle.
///
/// In en, this message translates to:
@ -3248,18 +3242,6 @@ abstract class AppLocalizations {
/// **'twonly will never show advertisements or sell your private data.'**
String get subscriptionPledgeNoAdsDesc;
/// No description provided for @subscriptionPledgeFundedTitle.
///
/// In en, this message translates to:
/// **'Independent and funded by Users'**
String get subscriptionPledgeFundedTitle;
/// No description provided for @subscriptionPledgeFundedDesc.
///
/// In en, this message translates to:
/// **'twonly is funded purely by user subscriptions to secure our independence and support the future of twonly.'**
String get subscriptionPledgeFundedDesc;
/// No description provided for @subscriptionPledgeSubtitle.
///
/// In en, this message translates to:

View file

@ -1813,9 +1813,6 @@ class AppLocalizationsDe extends AppLocalizations {
String get errorEmojiUsedOrInvalid =>
'Emoji wird bereits verwendet oder ist ungültig';
@override
String get subscriptionPledgeTitle => 'Unterstütze unabhängigen Datenschutz.';
@override
String get subscriptionPledgeSecureTitle => 'Secure by Design';
@ -1830,14 +1827,6 @@ class AppLocalizationsDe extends AppLocalizations {
String get subscriptionPledgeNoAdsDesc =>
'twonly wird niemals Werbung anzeigen oder deine privaten Daten verkaufen.';
@override
String get subscriptionPledgeFundedTitle =>
'Unabhängig und durch Nutzer finanziert';
@override
String get subscriptionPledgeFundedDesc =>
'twonly wird rein durch Nutzer-Abonnements finanziert, um unsere Unabhängigkeit und die Zukunft von twonly zu sichern.';
@override
String get subscriptionPledgeSubtitle => 'Keine Werbung. Volle Privatsphäre.';
}

View file

@ -1797,9 +1797,6 @@ class AppLocalizationsEn extends AppLocalizations {
@override
String get errorEmojiUsedOrInvalid => 'Emoji already used or invalid';
@override
String get subscriptionPledgeTitle => 'Support independent privacy.';
@override
String get subscriptionPledgeSecureTitle => 'Secure by Design';
@ -1814,13 +1811,6 @@ class AppLocalizationsEn extends AppLocalizations {
String get subscriptionPledgeNoAdsDesc =>
'twonly will never show advertisements or sell your private data.';
@override
String get subscriptionPledgeFundedTitle => 'Independent and funded by Users';
@override
String get subscriptionPledgeFundedDesc =>
'twonly is funded purely by user subscriptions to secure our independence and support the future of twonly.';
@override
String get subscriptionPledgeSubtitle => 'Zero ads. Total privacy.';
}