Remove PHP 8.1. warning
This commit is contained in:
parent
0649b80ffc
commit
2d7123d2c7
|
|
@ -89,9 +89,6 @@ class _UpdateDialogState extends State<UpdateDialog> {
|
||||||
Text(
|
Text(
|
||||||
'• ${localization.latestVersion}: v${account.latestVersion}'),
|
'• ${localization.latestVersion}: v${account.latestVersion}'),
|
||||||
],
|
],
|
||||||
// TODO remove this in a few months
|
|
||||||
SizedBox(height: 20),
|
|
||||||
Text(localization.php81Required),
|
|
||||||
if (account.isDocker) ...[
|
if (account.isDocker) ...[
|
||||||
SizedBox(height: 20),
|
SizedBox(height: 20),
|
||||||
Text(localization.toUpdateRun + ':'),
|
Text(localization.toUpdateRun + ':'),
|
||||||
|
|
|
||||||
|
|
@ -402,7 +402,6 @@ mixin LocalizationsProvider on LocaleCodeAware {
|
||||||
'merged_clients': 'Successfully merged clients',
|
'merged_clients': 'Successfully merged clients',
|
||||||
'merge_into': 'Merge Into',
|
'merge_into': 'Merge Into',
|
||||||
'merge': 'Merge',
|
'merge': 'Merge',
|
||||||
'php81_required': 'Note: v5.5 requires PHP 8.1',
|
|
||||||
'price_change_accepted': 'Price change accepted',
|
'price_change_accepted': 'Price change accepted',
|
||||||
'price_change_failed': 'Price change failed with code',
|
'price_change_failed': 'Price change failed with code',
|
||||||
'restore_purchases': 'Restore Purchases',
|
'restore_purchases': 'Restore Purchases',
|
||||||
|
|
@ -102106,10 +102105,6 @@ mixin LocalizationsProvider on LocaleCodeAware {
|
||||||
_localizedValues[localeCode]['price_change_failed'] ??
|
_localizedValues[localeCode]['price_change_failed'] ??
|
||||||
_localizedValues['en']['price_change_failed'];
|
_localizedValues['en']['price_change_failed'];
|
||||||
|
|
||||||
String get php81Required =>
|
|
||||||
_localizedValues[localeCode]['php81_required'] ??
|
|
||||||
_localizedValues['en']['php81_required'];
|
|
||||||
|
|
||||||
String get merge =>
|
String get merge =>
|
||||||
_localizedValues[localeCode]['merge'] ?? _localizedValues['en']['merge'];
|
_localizedValues[localeCode]['merge'] ?? _localizedValues['en']['merge'];
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue