localisation: nwc

This commit is contained in:
2026-06-12 20:50:36 +02:00
parent 201242c797
commit 262d5f068d
13 changed files with 387 additions and 95 deletions
@@ -461,7 +461,7 @@ fun WalletScreen(
val connectionState by nwcVm.connectionDetailState.collectAsStateWithLifecycle()
LaunchedEffect(pubkey) { nwcVm.loadConnectionDetail(pubkey) }
LaunchedEffect(pubkey) { nwcVm.loadConnectionDetail(pubkey, strings) }
DisposableEffect(Unit) { onDispose { nwcVm.clearConnectionDetail() } }
when (val state = connectionState) {
@@ -491,7 +491,7 @@ fun WalletScreen(
budgets = state.budgets,
onBack = { navController.popBackStack() },
onRevoke = {
nwcVm.deleteConnection(pubkey)
nwcVm.deleteConnection(pubkey, strings)
navController.popBackStack()
}
)