mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-07-11 01:24:22 +02:00
Replace hardcoded save progress string
This commit is contained in:
+5
-1
@@ -1165,7 +1165,11 @@ private fun SaveTransferProgressRow(
|
||||
)
|
||||
Spacer(modifier = Modifier.width(16.dp))
|
||||
Text(
|
||||
text = "${formatMib(playerProgress.progress)}/${formatMib(totalSize)} MiB",
|
||||
text = stringResource(
|
||||
R.string.netplay_transfer_progress,
|
||||
formatMib(playerProgress.progress),
|
||||
formatMib(totalSize)
|
||||
),
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1035,4 +1035,5 @@ It can efficiently compress both junk data and encrypted Wii data.
|
||||
<string name="netplay_address_unknown">Unknown</string>
|
||||
<string name="netplay_address_share">Share address</string>
|
||||
<string name="netplay_address_retry">Retry</string>
|
||||
<string name="netplay_transfer_progress">%1$s/%2$s MiB</string>
|
||||
</resources>
|
||||
|
||||
Reference in New Issue
Block a user