Skip to content

Fix localisation, remove debugPrint statement #1087

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jan 23, 2025
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Views/Payment/CustomAmount.swift
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ struct CustomAmount: View {
)
}
} label: {
Text("payment.confirm.button.title")
Text("payment.confirm.button.title".localized)
}
.buttonStyle(BorderedProminentButtonStyle())
.padding()
Expand Down
1 change: 0 additions & 1 deletion Views/Payment/PaymentSummary.swift
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ struct PaymentSummary: View {
.font(.callout)
}
}.onReceive(payment.completeSubject) {
debugPrint("PaymentSummary::payment.completeSubject")
onComplete()
}
}
Expand Down
2 changes: 1 addition & 1 deletion project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ targets:
com.apple.developer.in-app-payments: [merchant.org.kiwix.apple] # this line is removed for macOS FTP
settings:
base:
MARKETING_VERSION: "3.8.0"
MARKETING_VERSION: "3.7.2"
PRODUCT_BUNDLE_IDENTIFIER: self.Kiwix
INFOPLIST_KEY_CFBundleDisplayName: Kiwix
INFOPLIST_FILE: Support/Info.plist
Expand Down
Loading