Skip to content

Commit 1f1aa7f

Browse files
authored
Merge pull request #6653 from woocommerce/issue/6648-add-fee-button
Order Creation: Update fee line button title to "Add Fee"
2 parents 6837ec5 + 5ef7b99 commit 1f1aa7f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

WooCommerce/Classes/ViewRelated/Orders/Order Creation/PaymentSection/OrderPaymentSection.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ struct OrderPaymentSection: View {
7878
shouldShowFeeLineDetails = true
7979
}
8080
} else {
81-
Button(Localization.addFees) {
81+
Button(Localization.addFee) {
8282
shouldShowFeeLineDetails = true
8383
}
8484
.buttonStyle(PlusButtonStyle())
@@ -95,7 +95,7 @@ private extension OrderPaymentSection {
9595
static let orderTotal = NSLocalizedString("Order Total", comment: "Label for the the row showing the total cost of the order")
9696
static let addShipping = NSLocalizedString("Add Shipping", comment: "Title text of the button that adds shipping line when creating a new order")
9797
static let shippingTotal = NSLocalizedString("Shipping", comment: "Label for the row showing the cost of shipping in the order")
98-
static let addFees = NSLocalizedString("Add Fees", comment: "Title text of the button that adds fees when creating a new order")
98+
static let addFee = NSLocalizedString("Add Fee", comment: "Title text of the button that adds a fee when creating a new order")
9999
static let feesTotal = NSLocalizedString("Fees", comment: "Label for the row showing the cost of fees in the order")
100100
static let taxesTotal = NSLocalizedString("Taxes", comment: "Label for the row showing the taxes in the order")
101101
}

0 commit comments

Comments
 (0)