Skip to content

Commit 477e5b8

Browse files
committed
fix: use correct string resources
1 parent 95daa1b commit 477e5b8

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

app/src/main/java/to/bitkit/ui/screens/wallets/send/SendAndReviewScreen.kt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ fun SendAndReviewScreen(
7878
}
7979

8080
Spacer(modifier = Modifier.height(16.dp))
81-
Caption13Up(text = stringResource(R.string.label_tags), color = Colors.White64)
81+
Caption13Up(text = stringResource(R.string.wallet__tags), color = Colors.White64)
8282
Spacer(modifier = Modifier.height(8.dp))
8383
//TODO DISPLAY TAGS
8484
PrimaryButton(
@@ -138,7 +138,7 @@ private fun OnChainDescription(
138138
.clickable { onEvent(SendEvent.SpeedAndFee) }
139139
.padding(top = 16.dp)
140140
) {
141-
Caption13Up(text = stringResource(R.string.label_speed), color = Colors.White64)
141+
Caption13Up(text = stringResource(R.string.wallet__send_fee_and_speed), color = Colors.White64)
142142
Spacer(modifier = Modifier.height(8.dp))
143143
Row(
144144
verticalAlignment = Alignment.CenterVertically,
@@ -168,7 +168,7 @@ private fun OnChainDescription(
168168
.clickable { onEvent(SendEvent.SpeedAndFee) }
169169
.padding(top = 16.dp)
170170
) {
171-
Caption13Up(text = stringResource(R.string.label_confirms_in), color = Colors.White64)
171+
Caption13Up(text = stringResource(R.string.wallet__send_confirming_in), color = Colors.White64)
172172
Spacer(modifier = Modifier.height(8.dp))
173173
Row(
174174
verticalAlignment = Alignment.CenterVertically,
@@ -215,7 +215,7 @@ private fun LightningDescription(
215215
.weight(1f)
216216
.padding(top = 16.dp)
217217
) {
218-
Caption13Up(text = stringResource(R.string.label_speed), color = Colors.White64)
218+
Caption13Up(text = stringResource(R.string.wallet__send_fee_and_speed), color = Colors.White64)
219219
Spacer(modifier = Modifier.height(8.dp))
220220
Row(
221221
verticalAlignment = Alignment.CenterVertically,
@@ -240,7 +240,7 @@ private fun LightningDescription(
240240
.padding(top = 16.dp)
241241
) {
242242
Caption13Up(
243-
text = stringResource(R.string.label_invoice_expiration),
243+
text = stringResource(R.string.wallet__send_invoice_expiration),
244244
color = Colors.White64
245245
)
246246
Spacer(modifier = Modifier.height(8.dp))
@@ -267,7 +267,7 @@ private fun LightningDescription(
267267

268268
uiState.decodedInvoice?.description?.let { description ->
269269
Column {
270-
Caption13Up(text = stringResource(R.string.label_note), color = Colors.White64)
270+
Caption13Up(text = stringResource(R.string.wallet__note), color = Colors.White64)
271271
Spacer(modifier = Modifier.height(8.dp))
272272
BodySSB(text = description)
273273
HorizontalDivider(modifier = Modifier.padding(top = 16.dp))

0 commit comments

Comments
 (0)