Skip to content

Commit cdcb90d

Browse files
committed
ui: feeview colon instead of dash
1 parent 79d1d7c commit cdcb90d

File tree

2 files changed

+20
-4
lines changed

2 files changed

+20
-4
lines changed

BDKSwiftExampleWallet/Resources/Localizable.xcstrings

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"sourceLanguage" : "en",
33
"strings" : {
44
" High Priority - %lld" : {
5+
"extractionState" : "stale",
56
"localizations" : {
67
"fr" : {
78
"stringUnit" : {
@@ -16,8 +17,12 @@
1617
}
1718
}
1819
}
20+
},
21+
" High Priority: %lld" : {
22+
1923
},
2024
" Low Priority - %lld" : {
25+
"extractionState" : "stale",
2126
"localizations" : {
2227
"fr" : {
2328
"stringUnit" : {
@@ -32,8 +37,12 @@
3237
}
3338
}
3439
}
40+
},
41+
" Low Priority: %lld" : {
42+
3543
},
3644
" Med Priority - %lld" : {
45+
"extractionState" : "stale",
3746
"localizations" : {
3847
"fr" : {
3948
"stringUnit" : {
@@ -48,8 +57,12 @@
4857
}
4958
}
5059
}
60+
},
61+
" Med Priority: %lld" : {
62+
5163
},
5264
" No Priority - %lld" : {
65+
"extractionState" : "stale",
5366
"localizations" : {
5467
"fr" : {
5568
"stringUnit" : {
@@ -64,6 +77,9 @@
6477
}
6578
}
6679
}
80+
},
81+
" No Priority: %lld" : {
82+
6783
},
6884
"- %llu sats" : {
6985
"extractionState" : "stale",

BDKSwiftExampleWallet/View/Send/FeeView.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ struct FeeView: View {
3434
variableValue: 0.0
3535
)
3636
Text(
37-
" No Priority - \(viewModel.recommendedFees?.minimumFee ?? 1)"
37+
" No Priority: \(viewModel.recommendedFees?.minimumFee ?? 1)"
3838
)
3939
}
4040
.tag(0)
@@ -44,7 +44,7 @@ struct FeeView: View {
4444
variableValue: 0.33
4545
)
4646
Text(
47-
" Low Priority - \(viewModel.recommendedFees?.hourFee ?? 1)"
47+
" Low Priority: \(viewModel.recommendedFees?.hourFee ?? 1)"
4848
)
4949
}
5050
.tag(1)
@@ -54,7 +54,7 @@ struct FeeView: View {
5454
variableValue: 0.66
5555
)
5656
Text(
57-
" Med Priority - \(viewModel.recommendedFees?.halfHourFee ?? 1)"
57+
"Med Priority: \(viewModel.recommendedFees?.halfHourFee ?? 1)"
5858
)
5959
}
6060
.tag(2)
@@ -64,7 +64,7 @@ struct FeeView: View {
6464
variableValue: 1.0
6565
)
6666
Text(
67-
" High Priority - \(viewModel.recommendedFees?.fastestFee ?? 1)"
67+
" High Priority: \(viewModel.recommendedFees?.fastestFee ?? 1)"
6868
)
6969
}
7070
.tag(3)

0 commit comments

Comments
 (0)