fix(i18n): fix french translation and wrong keys (#456)

This commit is contained in:
Gauvain
2025-02-02 09:20:08 +01:00
committed by GitHub
parent 94502b558d
commit 1c81091e8b
3 changed files with 37 additions and 37 deletions

View File

@@ -85,7 +85,7 @@ export const StorageSettings = () => {
<View className="flex flex-row items-center">
<View className="w-3 h-3 rounded-full bg-purple-400 mr-1"></View>
<Text className="text-white text-xs">
{t("home.settings.storage.phone_usage", {availableSpace: calculatePercentage(size.total - size.remaining - size.app, size.total)})}
{t("home.settings.storage.device_usage", {availableSpace: calculatePercentage(size.total - size.remaining - size.app, size.total)})}
</Text>
</View>
</>