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 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 Priority: %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 Priority: %lld" : {
42
+
35
43
},
36
44
" Med Priority - %lld" : {
45
+ "extractionState" : "stale",
37
46
"localizations" : {
38
47
"fr" : {
39
48
"stringUnit" : {
48
57
}
49
58
}
50
59
}
60
+ },
61
+ " Med Priority: %lld" : {
62
+
51
63
},
52
64
" No Priority - %lld" : {
65
+ "extractionState" : "stale",
53
66
"localizations" : {
54
67
"fr" : {
55
68
"stringUnit" : {
64
77
}
65
78
}
66
79
}
80
+ },
81
+ " No Priority: %lld" : {
82
+
67
83
},
68
84
"- %llu sats" : {
69
85
"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
+ " No Priority: \( 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 Priority: \( 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
+ " Med Priority: \( 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 Priority: \( viewModel. recommendedFees? . fastestFee ?? 1 ) "
68
68
)
69
69
}
70
70
. tag ( 3 )
You can’t perform that action at this time.
0 commit comments