File tree Expand file tree Collapse file tree 2 files changed +21
-5
lines changed Expand file tree Collapse file tree 2 files changed +21
-5
lines changed Original file line number Diff line number Diff line change 2
2
"sourceLanguage" : "en",
3
3
"strings" : {
4
4
" High Priority - %lld" : {
5
+ "extractionState" : "stale",
5
6
"localizations" : {
6
7
"fr" : {
7
8
"stringUnit" : {
16
17
}
17
18
}
18
19
}
20
+ },
21
+ " High: %lld" : {
22
+
19
23
},
20
24
" Low Priority - %lld" : {
25
+ "extractionState" : "stale",
21
26
"localizations" : {
22
27
"fr" : {
23
28
"stringUnit" : {
32
37
}
33
38
}
34
39
}
40
+ },
41
+ " Low: %lld" : {
42
+
35
43
},
36
44
" Med Priority - %lld" : {
45
+ "extractionState" : "stale",
37
46
"localizations" : {
38
47
"fr" : {
39
48
"stringUnit" : {
50
59
}
51
60
},
52
61
" No Priority - %lld" : {
62
+ "extractionState" : "stale",
53
63
"localizations" : {
54
64
"fr" : {
55
65
"stringUnit" : {
64
74
}
65
75
}
66
76
}
77
+ },
78
+ " None: %lld" : {
79
+
67
80
},
68
81
"- %llu sats" : {
69
82
"extractionState" : "stale",
710
723
}
711
724
}
712
725
}
726
+ },
727
+ "Med: %lld" : {
728
+
713
729
},
714
730
"Navigation Title" : {
715
731
"extractionState" : "stale",
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ struct FeeView: View {
34
34
variableValue: 0.0
35
35
)
36
36
Text (
37
- " No Priority - \( viewModel. recommendedFees? . minimumFee ?? 1 ) "
37
+ " None • \( viewModel. recommendedFees? . minimumFee ?? 1 ) "
38
38
)
39
39
}
40
40
. tag ( 0 )
@@ -44,7 +44,7 @@ struct FeeView: View {
44
44
variableValue: 0.33
45
45
)
46
46
Text (
47
- " Low Priority - \( viewModel. recommendedFees? . hourFee ?? 1 ) "
47
+ " Low • \( viewModel. recommendedFees? . hourFee ?? 1 ) "
48
48
)
49
49
}
50
50
. tag ( 1 )
@@ -54,7 +54,7 @@ struct FeeView: View {
54
54
variableValue: 0.66
55
55
)
56
56
Text (
57
- " Med Priority - \( viewModel. recommendedFees? . halfHourFee ?? 1 ) "
57
+ " Medium • \( viewModel. recommendedFees? . halfHourFee ?? 1 ) "
58
58
)
59
59
}
60
60
. tag ( 2 )
@@ -64,7 +64,7 @@ struct FeeView: View {
64
64
variableValue: 1.0
65
65
)
66
66
Text (
67
- " High Priority - \( viewModel. recommendedFees? . fastestFee ?? 1 ) "
67
+ " High • \( viewModel. recommendedFees? . fastestFee ?? 1 ) "
68
68
)
69
69
}
70
70
. tag ( 3 )
@@ -108,7 +108,7 @@ struct FeeView: View {
108
108
109
109
}
110
110
. padding ( )
111
- . navigationTitle ( " Fees " )
111
+ . navigationTitle ( " Fee Priority " )
112
112
. task {
113
113
await viewModel. getFees ( )
114
114
}
You can’t perform that action at this time.
0 commit comments