Skip to content

Commit b32ad7e

Browse files
authored
Merge pull request #6202 from woocommerce/issue/6196-button-title-case
Order Creation: Use title case for buttons
2 parents 0dee246 + 6184fc4 commit b32ad7e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

WooCommerce/Classes/ViewRelated/Orders/Order Creation/NewOrder.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ private extension NewOrder {
151151
static let title = NSLocalizedString("New Order", comment: "Title for the order creation screen")
152152
static let createButton = NSLocalizedString("Create", comment: "Button to create an order on the New Order screen")
153153
static let products = NSLocalizedString("Products", comment: "Title text of the section that shows the Products when creating a new order")
154-
static let addProduct = NSLocalizedString("Add product", comment: "Title text of the button that adds a product when creating a new order")
154+
static let addProduct = NSLocalizedString("Add Product", comment: "Title text of the button that adds a product when creating a new order")
155155
}
156156
}
157157

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ private extension OrderPaymentSection {
6969
static let orderTotal = NSLocalizedString("Order Total", comment: "Label for the the row showing the total cost of the order")
7070
static let taxesInfo = NSLocalizedString("Taxes will be automatically calculated based on your store settings.",
7171
comment: "Information about taxes and the order total when creating a new order")
72-
static let addShipping = NSLocalizedString("Add shipping", comment: "Title text of the button that adds shipping line when creating a new order")
72+
static let addShipping = NSLocalizedString("Add Shipping", comment: "Title text of the button that adds shipping line when creating a new order")
7373
static let shippingTotal = NSLocalizedString("Shipping", comment: "Label for the row showing the cost of shipping in the order")
7474
}
7575
}

WooCommerce/Classes/ViewRelated/Orders/Order Creation/ProductsSection/ProductInOrder.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ private extension ProductInOrder {
6565
enum Localization {
6666
static let title = NSLocalizedString("Product", comment: "Title for the Product screen during order creation")
6767
static let close = NSLocalizedString("Close", comment: "Text for the close button in the Product screen")
68-
static let remove = NSLocalizedString("Remove product from order",
68+
static let remove = NSLocalizedString("Remove Product from Order",
6969
comment: "Text for the button to remove a product from the order during order creation")
7070
}
7171
}

0 commit comments

Comments
 (0)