File tree Expand file tree Collapse file tree 2 files changed +20
-4
lines changed Expand file tree Collapse file tree 2 files changed +20
-4
lines changed Original file line number Diff line number Diff line change 22 "sourceLanguage" : "en",
33 "strings" : {
44 " High Priority - %lld" : {
5+ "extractionState" : "stale",
56 "localizations" : {
67 "fr" : {
78 "stringUnit" : {
1617 }
1718 }
1819 }
20+ },
21+ " High Priority: %lld" : {
22+
1923 },
2024 " Low Priority - %lld" : {
25+ "extractionState" : "stale",
2126 "localizations" : {
2227 "fr" : {
2328 "stringUnit" : {
3237 }
3338 }
3439 }
40+ },
41+ " Low Priority: %lld" : {
42+
3543 },
3644 " Med Priority - %lld" : {
45+ "extractionState" : "stale",
3746 "localizations" : {
3847 "fr" : {
3948 "stringUnit" : {
4857 }
4958 }
5059 }
60+ },
61+ " Med Priority: %lld" : {
62+
5163 },
5264 " No Priority - %lld" : {
65+ "extractionState" : "stale",
5366 "localizations" : {
5467 "fr" : {
5568 "stringUnit" : {
6477 }
6578 }
6679 }
80+ },
81+ " No Priority: %lld" : {
82+
6783 },
6884 "- %llu sats" : {
6985 "extractionState" : "stale",
Original file line number Diff line number Diff 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 )
You can’t perform that action at this time.
0 commit comments