diff --git a/lib/ui/system/update_dialog.dart b/lib/ui/system/update_dialog.dart index 414f6121e..1559c3816 100644 --- a/lib/ui/system/update_dialog.dart +++ b/lib/ui/system/update_dialog.dart @@ -89,9 +89,6 @@ class _UpdateDialogState extends State { Text( '• ${localization.latestVersion}: v${account.latestVersion}'), ], - // TODO remove this in a few months - SizedBox(height: 20), - Text(localization.php81Required), if (account.isDocker) ...[ SizedBox(height: 20), Text(localization.toUpdateRun + ':'), diff --git a/lib/utils/i18n.dart b/lib/utils/i18n.dart index 182b791c7..4ec59ba91 100644 --- a/lib/utils/i18n.dart +++ b/lib/utils/i18n.dart @@ -402,7 +402,6 @@ mixin LocalizationsProvider on LocaleCodeAware { 'merged_clients': 'Successfully merged clients', 'merge_into': 'Merge Into', 'merge': 'Merge', - 'php81_required': 'Note: v5.5 requires PHP 8.1', 'price_change_accepted': 'Price change accepted', 'price_change_failed': 'Price change failed with code', 'restore_purchases': 'Restore Purchases', @@ -102106,10 +102105,6 @@ mixin LocalizationsProvider on LocaleCodeAware { _localizedValues[localeCode]['price_change_failed'] ?? _localizedValues['en']['price_change_failed']; - String get php81Required => - _localizedValues[localeCode]['php81_required'] ?? - _localizedValues['en']['php81_required']; - String get merge => _localizedValues[localeCode]['merge'] ?? _localizedValues['en']['merge'];