Skip to content

Commit d304dae

Browse files
committed
Freeze strings for localization
1 parent e674221 commit d304dae

File tree

1 file changed

+58
-10
lines changed

1 file changed

+58
-10
lines changed

WooCommerce/Resources/en.lproj/Localizable.strings

Lines changed: 58 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -919,6 +919,9 @@ which should be translated separately and considered part of this sentence. */
919919
/* Accessibility label for audio items in the media collection view. The parameter is the creation date of the audio. */
920920
"Audio, %@" = "Audio, %@";
921921

922+
/* Button to dismiss a web view */
923+
"authenticatableWebView.done" = "Done";
924+
922925
/* No comment provided by engineer. */
923926
"Authenticating" = "Authenticating";
924927

@@ -1837,7 +1840,7 @@ which should be translated separately and considered part of this sentence. */
18371840
"BookingAttendanceStatus.booked" = "Booked";
18381841

18391842
/* Title for 'Cancelled' booking attendance status. */
1840-
"BookingAttendanceStatus.cancelled" = "Cancelled";
1843+
"BookingAttendanceStatus.canceled" = "Canceled";
18411844

18421845
/* Title for 'Checked In' booking attendance status. */
18431846
"BookingAttendanceStatus.checkedIn" = "Checked-in";
@@ -1909,26 +1912,38 @@ which should be translated separately and considered part of this sentence. */
19091912
"BookingDetailsView.attendance.headerTitle" = "Attendance";
19101913

19111914
/* Content of error presented when updating the attendance status of a Booking fails. It reads: Unable to change status of Booking #{Booking number}. Parameters: %1$d - Booking number */
1912-
"BookingDetailsView.attendanceStatus.updateFailed.message" = "Unable to change attendance status of Booking #%1$d";
1915+
"BookingDetailsView.attendanceStatus.failureMessage." = "Unable to change attendance status of Booking #%1$d.";
1916+
1917+
/* Add a booking note section in booking details view. */
1918+
"BookingDetailsView.bookingNote.addNoteRow.title" = "Add note";
1919+
1920+
/* Footer text for the `Booking note` section in the booking details screen. */
1921+
"BookingDetailsView.bookingNote.footerText" = "This is a private note. It'll not be shared with the customer.";
19131922

1914-
/* Add a note row title in booking notes section in booking details view. */
1915-
"BookingDetailsView.bookingNotes.addANoteRow.title" = "Add a note";
1923+
/* Header title for the 'Booking note' section in the booking details screen. */
1924+
"BookingDetailsView.bookingNote.headerTitle" = "Booking note";
19161925

1917-
/* Header title for the 'Booking notes' section in the booking details screen. */
1918-
"BookingDetailsView.bookingNotes.headerTitle" = "Booking notes";
1926+
/* Title of navigation bar when editing a booking note. */
1927+
"BookingDetailsView.bookingNote.navbar.title" = "Booking note";
19191928

19201929
/* Cancel button title for the booking cancellation confirmation alert. */
19211930
"BookingDetailsView.cancelation.alert.cancelAction" = "No, keep it";
19221931

19231932
/* Confirm button title for the booking cancellation confirmation alert. */
19241933
"BookingDetailsView.cancelation.alert.confirmAction" = "Yes, cancel it";
19251934

1935+
/* Generic message for the booking cancellation confirmation alert. */
1936+
"BookingDetailsView.cancelation.alert.genericMessage" = "Are you sure you want to cancel this booking?";
1937+
19261938
/* Message for the booking cancellation confirmation alert. %1$@ is customer name, %2$@ is product name, %3$@ is booking date. */
19271939
"BookingDetailsView.cancelation.alert.message" = "%1$@ will no longer be able to attend “%2$@” on %3$@.";
19281940

19291941
/* Title for the booking cancellation confirmation alert. */
19301942
"BookingDetailsView.cancelation.alert.title" = "Cancel booking";
19311943

1944+
/* Content of error presented when cancelling a Booking fails. It reads: Unable to cancel Booking #{Booking number}. Parameters: %1$d - Booking number */
1945+
"BookingDetailsView.cancellation.failureMessage" = "Unable to cancel Booking #%1$d.";
1946+
19321947
/* Billing address row title in customer section in booking details view. */
19331948
"BookingDetailsView.customer.billingAddress.title" = "Billing address";
19341949

@@ -1944,6 +1959,9 @@ which should be translated separately and considered part of this sentence. */
19441959
/* 'Status' row title in attendance section in booking details view. */
19451960
"BookingDetailsView.customer.status.title" = "Status";
19461961

1962+
/* Content of error presented when cancelling a Booking fails. It reads: Unable to mark Booking #{Booking number} as paid. Parameters: %1$d - Booking number */
1963+
"BookingDetailsView.markAsPaid.failureMessage" = "Unable to mark Booking #%1$d as paid.";
1964+
19471965
/* Booking Details screen nav bar title. %1$d is a placeholder for the booking ID. */
19481966
"BookingDetailsView.navTitle" = "Booking #%1$d";
19491967

@@ -1962,9 +1980,6 @@ which should be translated separately and considered part of this sentence. */
19621980
/* Header title for the 'Payment' section in the booking details screen. */
19631981
"BookingDetailsView.payment.headerTitle" = "Payment";
19641982

1965-
/* Title for 'Issue refund' button in payment section in booking details view. */
1966-
"BookingDetailsView.payment.issueRefund.title" = "Issue refund";
1967-
19681983
/* Title for 'Mark as paid' button in payment section in booking details view. */
19691984
"BookingDetailsView.payment.markAsPaid.title" = "Mark as paid";
19701985

@@ -2026,7 +2041,7 @@ which should be translated separately and considered part of this sentence. */
20262041
"bookingFiltersViewModel.dateRangeFilter.until" = "Until %1$@";
20272042

20282043
/* Message displayed when searching bookings by keyword yields no results. */
2029-
"bookingList.emptySearchText" = "We couldnt find any bookings with that name — try adjusting your search term to see more results.";
2044+
"bookingList.emptySearchText" = "We couldn't find any bookings with that name — try adjusting your search term to see more results.";
20302045

20312046
/* Error message when fetching bookings fails */
20322047
"bookingList.errorMessage" = "Error fetching bookings";
@@ -2079,12 +2094,30 @@ which should be translated separately and considered part of this sentence. */
20792094
/* Title of the booking list view */
20802095
"bookingListView.view.title" = "Bookings";
20812096

2097+
/* Status of a paid booking */
2098+
"bookingPaymentStatus.title.paid" = "Paid";
2099+
2100+
/* Status of a refunded booking */
2101+
"bookingPaymentStatus.title.refunded" = "Refunded";
2102+
2103+
/* Status of a booking with unexpected payment status */
2104+
"bookingPaymentStatus.title.unknown" = "Unknown";
2105+
2106+
/* Status of an unpaid booking */
2107+
"bookingPaymentStatus.title.unpaid" = "Unpaid";
2108+
20822109
/* Displayed name on the booking list when no customer is associated with a booking. */
20832110
"bookings.guest" = "Guest";
20842111

2112+
/* Message on the empty search result view of the booking service/event selector view */
2113+
"bookingServiceEventSelectorView.emptySearchDescription" = "Try adjusting your search term to see more results";
2114+
20852115
/* Text on the empty view of the booking service/event selector view */
20862116
"bookingServiceEventSelectorView.noMembersFound" = "No service or event found";
20872117

2118+
/* Prompt in the search bar of the booking service/event selector view */
2119+
"bookingServiceEventSelectorView.searchPrompt" = "Search service / event";
2120+
20882121
/* Title of the booking service/event selector view */
20892122
"bookingServiceEventSelectorView.title" = "Service / Event";
20902123

@@ -5910,6 +5943,18 @@ which should be translated separately and considered part of this sentence. */
59105943
/* Trash Action Spoken hint */
59115944
"Moves the comment to Trash" = "Moves the comment to Trash";
59125945

5946+
/* Cancel button title for the discard changes confirmation dialog in the multiline text editor. */
5947+
"MultilineEditableTextDetailView.discardChanges.alert.cancelAction" = "Cancel";
5948+
5949+
/* Destructive action button title to discard changes in the multiline text editor. */
5950+
"MultilineEditableTextDetailView.discardChanges.alert.discardAction" = "Discard changes";
5951+
5952+
/* Title for the confirmation dialog when the user attempts to discard changes in the multiline text editor. */
5953+
"MultilineEditableTextDetailView.discardChanges.alert.title" = "Are you sure you want to discard these changes?";
5954+
5955+
/* Navigation bar button title used to save changes and close the multiline text editor. */
5956+
"MultilineEditableTextDetailView.doneButton.title" = "Done";
5957+
59135958
/* Title of multiple stores as part of Jetpack benefits. */
59145959
"Multiple Stores" = "Multiple Stores";
59155960

@@ -7791,6 +7836,9 @@ which should be translated separately and considered part of this sentence. */
77917836
/* Title of a stock type displayed on the Stock section on My Store screen */
77927837
"productStockDashboardCardViewModel.stockType.outOfStock" = "Out of stock";
77937838

7839+
/* Bookable product type label interpretation as Service. Presented in product type picker in filters. */
7840+
"ProductType.service" = "Service";
7841+
77947842
/* Description of the hub menu Blaze button */
77957843
"Promote products with Blaze" = "Promote products with Blaze";
77967844

0 commit comments

Comments
 (0)