diff --git a/BDKSwiftExampleWallet/Resources/Localizable.xcstrings b/BDKSwiftExampleWallet/Resources/Localizable.xcstrings index c15b6b15..81efd666 100644 --- a/BDKSwiftExampleWallet/Resources/Localizable.xcstrings +++ b/BDKSwiftExampleWallet/Resources/Localizable.xcstrings @@ -2,6 +2,7 @@ "sourceLanguage" : "en", "strings" : { " High Priority - %lld" : { + "extractionState" : "stale", "localizations" : { "fr" : { "stringUnit" : { @@ -16,8 +17,12 @@ } } } + }, + " High: %lld" : { + }, " Low Priority - %lld" : { + "extractionState" : "stale", "localizations" : { "fr" : { "stringUnit" : { @@ -32,8 +37,12 @@ } } } + }, + " Low: %lld" : { + }, " Med Priority - %lld" : { + "extractionState" : "stale", "localizations" : { "fr" : { "stringUnit" : { @@ -50,6 +59,7 @@ } }, " No Priority - %lld" : { + "extractionState" : "stale", "localizations" : { "fr" : { "stringUnit" : { @@ -64,6 +74,9 @@ } } } + }, + " None: %lld" : { + }, "- %llu sats" : { "extractionState" : "stale", @@ -710,6 +723,9 @@ } } } + }, + "Med: %lld" : { + }, "Navigation Title" : { "extractionState" : "stale", diff --git a/BDKSwiftExampleWallet/View/Send/FeeView.swift b/BDKSwiftExampleWallet/View/Send/FeeView.swift index bf9d93c7..ead92e0e 100644 --- a/BDKSwiftExampleWallet/View/Send/FeeView.swift +++ b/BDKSwiftExampleWallet/View/Send/FeeView.swift @@ -34,7 +34,7 @@ struct FeeView: View { variableValue: 0.0 ) Text( - " No Priority - \(viewModel.recommendedFees?.minimumFee ?? 1)" + " None • \(viewModel.recommendedFees?.minimumFee ?? 1)" ) } .tag(0) @@ -44,7 +44,7 @@ struct FeeView: View { variableValue: 0.33 ) Text( - " Low Priority - \(viewModel.recommendedFees?.hourFee ?? 1)" + " Low • \(viewModel.recommendedFees?.hourFee ?? 1)" ) } .tag(1) @@ -54,7 +54,7 @@ struct FeeView: View { variableValue: 0.66 ) Text( - " Med Priority - \(viewModel.recommendedFees?.halfHourFee ?? 1)" + " Medium • \(viewModel.recommendedFees?.halfHourFee ?? 1)" ) } .tag(2) @@ -64,7 +64,7 @@ struct FeeView: View { variableValue: 1.0 ) Text( - " High Priority - \(viewModel.recommendedFees?.fastestFee ?? 1)" + " High • \(viewModel.recommendedFees?.fastestFee ?? 1)" ) } .tag(3) @@ -108,7 +108,7 @@ struct FeeView: View { } .padding() - .navigationTitle("Fees") + .navigationTitle("Fee Priority") .task { await viewModel.getFees() }