TF-4045 Add storage information in settings

This commit is contained in:
dab246
2025-10-01 14:23:17 +07:00
committed by Dat H. Pham
parent 0f3002879d
commit 075878f919
21 changed files with 605 additions and 37 deletions
@@ -5161,4 +5161,41 @@ class AppLocalizations {
name: 'defaultIdentitySetupSuccessful',
);
}
String get storageSettingExplanation {
return Intl.message(
'Monitor your available space.',
name: 'storageSettingExplanation',
);
}
String get storageIsAlmostFullMessage {
return Intl.message(
'The storage is almost full. You can free up space by deleting unnecessary files or subscribe to get extra space.',
name: 'storageIsAlmostFullMessage',
);
}
String get upgradeStorage {
return Intl.message(
'Upgrade storage',
name: 'upgradeStorage',
);
}
String storageUsedMessage(String limit) {
return Intl.message(
'of $limit used',
name: 'storageUsedMessage',
args: [limit],
);
}
String storageAvailableMessage(String count) {
return Intl.message(
'Available: $count',
name: 'storageAvailableMessage',
args: [count],
);
}
}