-
Notifications
You must be signed in to change notification settings - Fork 131
/
Copy pathstrings.xml
4525 lines (4265 loc) · 358 KB
/
strings.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<string name="app_name">Woo</string>
<!-- Android O notification channels, these show in the Android app settings -->
<string name="notification_channel_general_title">General</string>
<string name="notification_channel_general_id" content_override="true" translatable="false">wooandroid_notification_channel_general_id</string>
<string name="notification_channel_order_title">New order alerts</string>
<string name="notification_channel_order_id" content_override="true" translatable="false">wooandroid_notification_channel_order_id</string>
<string name="notification_channel_review_title">Product review alerts</string>
<string name="notification_channel_review_id" content_override="true" translatable="false">wooandroid_notification_channel_review_id</string>
<string name="notification_order_ringtone_title" translatable="false">WooCommerce Cha-ching</string>
<!-- Required by the login library - overwrites the placeholder value with a real channel -->
<string name="login_notification_channel_id" content_override="true" translatable="false">@string/notification_channel_general_id</string>
<!--
General Strings
-->
<string name="all">All</string>
<string name="logging_in">Logging in</string>
<string name="loading_stores">Loading stores</string>
<string name="signout">Log out</string>
<string name="my_store">My store</string>
<string name="orders">Orders</string>
<string name="email_address">Email address</string>
<string name="email">Email</string>
<string name="currency_total">%1$s%2$s</string>
<string name="currency_total_negative">-%1$s%2$s</string>
<string name="order_total">Order total</string>
<string name="shipping">Shipping</string>
<string name="multiple_shipping">multiple shipping lines</string>
<string name="edit">Edit</string>
<string name="payment">Payment</string>
<string name="taxes">Taxes</string>
<string name="tax">Tax</string>
<string name="total">Total</string>
<string name="subtotal">Subtotal</string>
<string name="products_total">Products total</string>
<string name="discount">Discount</string>
<string name="details">Details</string>
<string name="show_details">Show Details</string>
<string name="hide_details">Hide Details</string>
<string name="retry">Retry</string>
<string name="undo">Undo</string>
<string name="install">Install</string>
<string name="update_downloaded">Woo has downloaded an update</string>
<string name="update_failed">Woo update has failed</string>
<string name="continue_button">Continue</string>
<string name="refresh_button">Refresh</string>
<string name="untitled">Untitled</string>
<string name="dialog_ok">OK</string>
<string name="cancel">Cancel</string>
<string name="no">No</string>
<string name="cancel_anyway">Cancel anyway</string>
<string name="keep_editing">Keep editing</string>
<string name="keep_changes">Keep changes</string>
<string name="learn_more">Learn more</string>
<string name="try_it_now">Try it now</string>
<string name="maybe_later">Maybe later</string>
<string name="set_up_now">Set up now</string>
<string name="offline_message">Offline \u2014 using cached data</string>
<string name="offline_error">Your network is unavailable. Check your data or wifi connection.</string>
<string name="product">Product</string>
<string name="today">Today</string>
<string name="this_week">This Week</string>
<string name="this_month">This Month</string>
<string name="this_year">This Year</string>
<string name="discard">Discard</string>
<string name="products">Products</string>
<string name="custom_amounts">Custom Amounts</string>
<string name="refunds">Refunds</string>
<string name="domain">Domain</string>
<string name="domains">Domains</string>
<string name="something_went_wrong_try_again">Something went wrong, Please try again later.</string>
<string name="loading">Loading…</string>
<string name="shipping_labels">Shipping Labels</string>
<string name="product_variations">Variations</string>
<string name="product_variation_options">%1$s (%2$s options)</string>
<string name="product_variation_multiple_count">%1$s variations</string>
<string name="product_variation_single_count">1 variation</string>
<string name="product_variations_edit_attr">Edit attributes</string>
<string name="product_variation_attributes">Attributes</string>
<string name="product_add_attribute">Add attribute</string>
<string name="product_new_attribute_name">New attribute name</string>
<string name="product_rename_attribute">Rename attribute</string>
<string name="product_rename_attribute_helper">Type of variation, eg. size or color</string>
<string name="product_create_attribute_helper">To create a variation, you\'ll need to set its attributes (ie \"Color\", \"Size\") first</string>
<string name="product_select_attribute">Or tap to select an existing attribute</string>
<string name="product_new_attribute_term_name">Option name</string>
<string name="product_select_attribute_term">Or tap to select an existing option</string>
<string name="product_enter_attribute_term">Add each option name and press enter</string>
<string name="product_attribute_name_already_exists">An attribute with this name already exists</string>
<string name="product_any_attribute_hint">Any</string>
<string name="product_term_name_already_exists">An option with this name already exists</string>
<string name="product_attribute_error_renaming">Error while renaming your attribute</string>
<string name="product_attributes_error_saving">Error while saving your attributes</string>
<string name="product_attribute_remove">Remove this attribute?</string>
<string name="product_bulk_update_regular_price">Update regular price</string>
<string name="product_bulk_update_price_updated">Price updated!</string>
<string name="product_bulk_update_status">Update status</string>
<string name="product_bulk_update_status_updated">Status updated!</string>
<string name="review_notifications">Reviews</string>
<string name="version_with_name_param">Version %s</string>
<string name="share_store_button">Share your store</string>
<string name="share_store_dialog_title">Share your store\'s URL</string>
<string name="emdash" translatable="false">\u2014</string>
<string name="share">Share</string>
<string name="search">Search</string>
<string name="scan_barcode">Scan Barcode</string>
<string name="clear">Clear</string>
<string name="done">Done</string>
<string name="back">Back</string>
<string name="close">Close</string>
<string name="button_update_instructions">Update instructions</string>
<string name="dismiss">Dismiss</string>
<string name="allow">Allow</string>
<string name="no_thanks">No thanks</string>
<string name="apply">Apply</string>
<string name="copied_to_clipboard">Copied to clipboard</string>
<string name="error_copy_to_clipboard">Error copying to clipboard</string>
<string name="read_more">Read more</string>
<string name="database_downgraded">Database downgraded, recreating tables and loading stores</string>
<string name="button_not_now">Not now</string>
<string name="unknown">Unknown</string>
<string name="remove">Remove</string>
<string name="rename">Rename</string>
<string name="type">Type</string>
<string name="try_again">Try again</string>
<string name="update">Update</string>
<string name="save">Save</string>
<string name="skip">Skip</string>
<string name="discard_message">Do you want to discard your changes?</string>
<string name="discard_images_message">Product images are still uploading. Do you want to discard your changes?</string>
<string name="more_options">More options</string>
<string name="more_settings">More settings</string>
<string name="value_not_set">Not set</string>
<string name="selection_count">%d selected</string>
<string name="please_wait">Please wait…</string>
<string name="other">Other</string>
<string name="na">N/A</string>
<string name="free">free</string>
<string name="and">and</string>
<string name="generic_string" translatable="false">%s</string>
<string name="error_required_field">Required field</string>
<string name="analytics">Analytics</string>
<string name="customize_analytics">Customize Analytics</string>
<string name="analytic_cards">Analytic Cards</string>
<string name="drag_handle">Drag handle</string>
<string name="card">Card</string>
<string name="cash">Cash</string>
<string name="create">Create</string>
<string name="exclusive_or">or</string>
<string name="count">Count: %s</string>
<string name="no_sku">No SKU</string>
<string name="amount">Amount</string>
<string name="copy" tools:override="true">Copy</string>
<string name="variations_bulk_update_sale_price">Update Sale Price</string>
<string name="variations_bulk_update_regular_price">Update Regular Price</string>
<string name="tip">Tip</string>
<string name="hide_password_content_description">Hide password</string>
<string name="show_password_content_description">Show password</string>
<string name="last_update">Last update: %s</string>
<string name="last_update_with_frequency">Last update %s (Updates every 30 minutes)</string>
<string name="receipt_fetching_error">Sorry, we couldn\'t load a receipt for this order</string>
<string name="store_name_default">Store name</string>
<string name="sorted_by">Sorted by 1%s</string>
<string name="add">Add %s</string>
<!--
Date/Time Labels
-->
<string name="date_timeframe_future">Upcoming</string>
<string name="date_timeframe_custom">Custom</string>
<string name="date_timeframe_custom_date_range_title">Custom date range</string>
<string name="date_timeframe_today">Today</string>
<string name="date_timeframe_yesterday">Yesterday</string>
<string name="date_timeframe_last_week">Last Week</string>
<string name="date_timeframe_last_month">Last Month</string>
<string name="date_timeframe_last_quarter">Last Quarter</string>
<string name="date_timeframe_last_year">Last Year</string>
<string name="date_timeframe_week_to_date">Week to Date</string>
<string name="date_timeframe_month_to_date">Month to Date</string>
<string name="date_timeframe_quarter_to_date">Quarter to Date</string>
<string name="date_timeframe_year_to_date">Year to Date</string>
<string name="date_timeframe_older_two_days">Older than 2 days</string>
<string name="date_timeframe_older_week">Older than a week</string>
<string name="date_timeframe_older_month">Older than a month</string>
<string name="date_at_time">%1$s at %2$s</string>
<string name="date_compared_to">Compared to</string>
<string name="images_unavailable_notice">The images are unavailable because your site is marked Private. You can change this by switching to Coming Soon mode.\n<a href="">Tap to learn more.</a></string>
<!--
Error Strings
-->
<string name="error_cant_open_url">Unable to open the link</string>
<string name="error_please_choose_browser">Error opening the default web browser. Please choose another app:</string>
<string name="error_no_phone_app">No phone app was found</string>
<string name="error_no_gmaps_app">Google Maps app was found</string>
<string name="error_no_email_app">No e-mail app was found</string>
<string name="error_no_sms_app">No SMS app was found</string>
<!--
Payment methods
-->
<string name="payment_method_american_express">American Express</string>
<string name="payment_method_discover">Discover</string>
<string name="payment_method_mastercard">MasterCard</string>
<string name="payment_method_visa">VISA</string>
<string name="payment_method_paypal">Paypal</string>
<!--
Login Library Overrides
-->
<string name="enter_site_address" content_override="true">Enter the address of the WooCommerce store you\'d like to connect.</string>
<!--
Login View
-->
<string name="cant_open_url">Unable to open the link</string>
<string name="already_logged_in_wpcom">You\'re already logged in a WordPress.com account, you can\'t add a WordPress.com site bound to another account.</string>
<string name="at_username">\@%s</string>
<string name="login_no_jetpack_username">Signed in as \@%1$s\nWrong account? %2$s</string>
<string name="login_jetpack_required">This app requires Jetpack to connect to your store.</string>
<string name="login_wpcom">Continue with WordPress.com</string>
<string name="login_store_address">Log In</string>
<string name="login_with_store_address">Log in with your store address</string>
<string name="login_configure_link">Read the %1$sconfiguration instructions%2$s.</string>
<string name="login_application_passwords_help">What are Application Passwords?</string>
<string name="login_prologue_label_analytics">Track sales and high performing products</string>
<string name="login_prologue_label_orders">Manage and edit orders on the go</string>
<string name="login_prologue_label_products">Edit and add new products from anywhere</string>
<string name="login_prologue_new_to_woo">New to WooCommerce</string>
<string name="login_prologue_label_analytics_subtitle">We know it\'s essential to your business.</string>
<string name="login_prologue_label_orders_subtitle">You can manage them quickly and easily.</string>
<string name="login_prologue_label_products_subtitle">We enable you to process them effortlessly.</string>
<string name="login_prologue_survey_title">What brings you to WooCommerce?</string>
<string name="login_prologue_survey_button_exploring">Just exploring</string>
<string name="login_prologue_survey_button_set_up_store">Trying to set up a store</string>
<string name="login_prologue_survey_button_check_analytics">Check my analytics</string>
<string name="login_prologue_survey_button_edit_products">Create or update my products</string>
<string name="login_prologue_survey_button_manage_orders">Manage my orders</string>
<string name="login_prologue_survey_button_switch_stores">Switch between multiple stores</string>
<string name="login_prologue_start_new_store">Starting a new store?</string>
<string name="login_pick_store">Select store to connect</string>
<string name="login_non_woo_stores_label">Other sites</string>
<string name="login_connected_store">Connected store</string>
<string name="login_verifying_site">Verifying site…</string>
<string name="login_verifying_site_error">Cannot connect to %s</string>
<string name="login_verifying_site_jetpack_timeout_error_title">Connection Error</string>
<string name="login_verifying_site_jetpack_timeout_error_description">We were unable to connect to your site. Please contact support to troubleshoot the problem.</string>
<string name="login_update_required_title">Update Store to WooCommerce 3.5</string>
<string name="login_update_required_desc">This store uses an older version of WooCommerce. Please upgrade your store to WooCommerce 3.5 or greater to use it with this app.</string>
<string name="login_avatar_content_description">Your profile photo</string>
<string name="login_nostores_content_description">No WooCommerce stores</string>
<string name="login_with_a_different_account">Login with a different account</string>
<string name="login_no_stores_header">Create your first store</string>
<string name="login_no_stores_subtitle">Quickly get up and selling with a beautiful online store.</string>
<string name="login_wpcom_account_mismatch">It looks like %1$s is connected to a different WordPress.com account.</string>
<string name="login_jetpack_not_connected">It looks like your account is not connected to %1$s\'s Jetpack</string>
<string name="login_try_another_account">Log in with another account</string>
<string name="login_try_another_email">Try Another Address</string>
<string name="login_try_another_store">Try another store</string>
<string name="login_not_woo_store">It looks like %1$s is not a WooCommerce site.</string>
<string name="login_install_woo">Install WooCommerce</string>
<string name="login_open_installation_page">Open installation page</string>
<string name="login_not_connected_jetpack">To use this app for %1$s you\'ll need to have the Jetpack plugin setup and connected to this account. \n\nOnce setup, refresh the app</string>
<string name="login_no_jetpack">To use this app for %1$s you\'ll need to have the Jetpack plugin setup and connected to a WordPress.com account</string>
<string name="login_not_wordpress_site_v2">We were not able to detect a WordPress site at the address you entered. Please make sure WordPress is installed and that you are running the latest available version.</string>
<string name="login_refresh_app">Refresh the app</string>
<string name="login_refresh_app_continue">refresh the app to continue</string>
<string name="login_refresh_app_progress">Checking for WooCommerce…</string>
<string name="login_refresh_app_progress_jetpack">Attempting to login with Jetpack…</string>
<string name="login_view_connected_stores">View connected stores</string>
<string name="login_jetpack_required_text">To use this app for %1$s you\'ll need to have the Jetpack plugin connected on your store.</string>
<string name="login_jetpack_view_instructions">Learn how to install and connect Jetpack</string>
<string name="login_jetpack_view_instructions_alt">Learn more about connecting Jetpack</string>
<string name="login_jetpack_view_setup_instructions">View setup instructions</string>
<string name="login_jetpack_what_is">What is Jetpack?</string>
<string name="login_jetpack_what_is_description">Jetpack is a free WordPress plugin that connects your store with the tools needed to give you the best mobile experience, including push notifications and stats</string>
<string name="login_jetpack_installed_sign_in">Already have Jetpack? %1$s</string>
<string name="login_jetpack_not_found">Jetpack not found. Please try again</string>
<string name="login_jetpack_install">Install Jetpack</string>
<string name="login_sign_in">Sign in</string>
<string name="login_need_help_finding_email">Need help finding the required email?</string>
<string name="login_email_help_title">What email do I use to sign in?</string>
<string name="login_email_help_desc">In your site admin you can find the email you used to connect to WordPress.com from the %1$sJetpack Dashboard%2$s under %3$sConnections > Account connection%4$s</string>
<string name="login_discovery_error_title">Connection error</string>
<string name="login_discovery_error_options">Here are a few other things you can try:</string>
<string name="login_with_wordpress">Sign in with WordPress.com</string>
<string name="login_troubleshooting_tips">Read our troubleshooting tips</string>
<string name="login_discovery_error_option_select">Select an option</string>
<string name="login_no_wpcom_account_found">Your email isn\'t used with a WordPress.com account.</string>
<string name="user_role_access_error_msg">This app supports only Administrator and Shop Manager user roles. Please contact your store owner to upgrade your role.</string>
<string name="user_role_access_error_link">Learn more about roles and permissions</string>
<string name="user_role_access_error_retry">You don\'t have the correct user role</string>
<string name="user_access_verifying">Verifying role…</string>
<string name="site_discovery_postlogin_failure">A failure occurred, please contact support</string>
<string name="login_simple_wpcom_site">The site %1$s is currently on a WordPress.com plan that does not support plugin installation. Please upgrade your plan to use WooCommerce.</string>
<string name="login_jetpack_connection_verification_failed">Cannot verify your Jetpack connection. Please try again.</string>
<string name="login_jetpack_verify_connection">Verifying Jetpack connection…</string>
<string name="login_jetpack_connection_url_failed">Fetching connection data failed…</string>
<string name="login_2fa_not_supported_self_hosted_site">2FA not supported for self-hosted sites. Please use an app-password.</string>
<string name="login_account_mismatch_connect_jetpack">Connect Jetpack to your account</string>
<string name="login_account_mismatch_connect_wpcom">Connect to the site</string>
<string name="login_account_mismatch_connect_wpcom_dialog_title">Connecting to a WordPress.com site</string>
<string name="login_account_mismatch_connect_wpcom_dialog_message">Please contact the site owner for an invitation to the site as a shop manager or administrator to use the app.</string>
<string name="login_jetpack_connection_consent">By tapping the Connect Jetpack button, you agree to our <a href=\'terms\'>Terms of Service</a> and to <a href=\'sync\'>share details</a> with WordPress.com.</string>
<string name="login_jetpack_installation_screen_title">Connect store</string>
<string name="login_jetpack_installation_explanation">Please install the free Jetpack plugin to access your store on this app.</string>
<string name="login_jetpack_connection_explanation">Please connect your store to Jetpack to access it on this app.</string>
<string name="login_jetpack_installation_credentials_hint">Have your store credentials ready.</string>
<string name="login_jetpack_connect">Connect Jetpack</string>
<string name="login_jetpack_installation_enter_site_credentials">Log in to <b>%1$s</b> with your store credentials to install Jetpack.</string>
<string name="login_jetpack_connection_enter_site_credentials">Log in to <b>%1$s</b> with your store credentials to connect Jetpack.</string>
<string name="login_jetpack_steps_installing">Installing Jetpack</string>
<string name="login_jetpack_steps_activating">Activating</string>
<string name="login_jetpack_steps_authorizing">Connect store to Jetpack</string>
<string name="login_jetpack_steps_authorizing_validation">Validating</string>
<string name="login_jetpack_steps_authorizing_done">Connected</string>
<string name="login_jetpack_steps_done">All done</string>
<string name="login_jetpack_installation_steps_screen_title">Installing Jetpack</string>
<string name="login_jetpack_connection_steps_screen_title">Connecting Jetpack</string>
<string name="login_jetpack_connection_steps_screen_title_done">Connected Jetpack</string>
<string name="login_jetpack_installation_steps_screen_title_done">Installed Jetpack</string>
<string name="login_jetpack_steps_screen_subtitle">Please wait while we connect your store <b>%1$s</b> with Jetpack.</string>
<string name="login_jetpack_steps_screen_subtitle_done">Your store <b>%1$s</b> is now connected to Jetpack.</string>
<string name="login_jetpack_installation_error_code_template">Error code %1$s</string>
<string name="login_jetpack_installation_error">Error</string>
<string name="login_jetpack_installation_go_to_store_button">Go to store</string>
<string name="login_jetpack_installation_approve_connection">Connect Jetpack</string>
<string name="login_jetpack_installation_error_installing">Error installing Jetpack</string>
<string name="login_jetpack_installation_error_activating">Error activating Jetpack</string>
<string name="login_jetpack_installation_error_authorizing">Error authorising connection to Jetpack</string>
<string name="login_jetpack_installation_error_plugin_permission_message">You don’t have permission to manage plugins on this store</string>
<string name="login_jetpack_installation_error_connection_message">There was an error communicating with your site.</string>
<string name="login_jetpack_installation_error_connection_suggestion">Please connect Jetpack through your admin page on a browser or contact support.</string>
<string name="login_jetpack_installation_error_generic_message">There was an error communicating with your site.</string>
<string name="login_jetpack_installation_error_generic_suggestion">Please try again and contact support if this error continues.</string>
<string name="login_jetpack_installation_get_support">Get support</string>
<string name="login_jetpack_installation_retry_installing">Try installing again</string>
<string name="login_jetpack_installation_retry_activating">Try activating again</string>
<string name="login_jetpack_installation_retry_authorizing">Try authorising again</string>
<string name="login_jetpack_installation_cancel">Cancel installation</string>
<string name="login_jetpack_installation_error_forbidden_suggestion">Please contact your shop manager or administrator for help.</string>
<string name="login_jetpack_installation_error_connection_permission_message">You don’t have permission to connect to Jetpack on this store</string>
<string name="login_jetpack_installation_connection_dismissed">Jetpack is installed, but not connected.</string>
<string name="login_jetpack_installation_connection_dismissed_explanation">Try connecting again to access your store.</string>
<string name="login_jetpack_installation_continue_connection">Continue connection</string>
<string name="login_jetpack_installation_exit_without_connection">Exit Without Connecting</string>
<string name="login_application_passwords_unavailable">It looks like Application Passwords feature is disabled in your site %1$s.\n Please enable it to use the WooCommerce app.</string>
<string name="login_jetpack_connection_enter_wpcom_email">Log in with your WordPress.com account to connect Jetpack</string>
<string name="login_jetpack_installation_enter_wpcom_email">Log in with your WordPress.com account to install Jetpack</string>
<string name="login_jetpack_connection_enter_wpcom_password">Enter the password of your WordPress.com account to connect to Jetpack</string>
<string name="login_jetpack_installation_enter_wpcom_password">Enter the password of your WordPress.com account to install Jetpack</string>
<string name="login_jetpack_installation_continue_magic_link">Or continue using Magic Link</string>
<string name="login_jetpack_installation_magic_link_failure">An error occurred while fetching your website, please retry!</string>
<string name="login_site_credentials_invalid_response">Login failed with an unexpected response from your site. We are working on fixing this issue.</string>
<string name="login_site_credentials_custom_login_url">Unable to login because we cannot identify your store\'s login URL</string>
<string name="login_site_credentials_custom_admin_url">Unable to login because we cannot identify your store\'s admin URL</string>
<string name="login_site_credentials_http_error">Login failed with status code %1$s</string>
<string name="login_site_credentials_use_web_authorization">Try again with WP Admin page</string>
<string name="login_site_credentials_fetching_site_failed">An error occurred while fetching your website</string>
<string name="login_site_credentials_fetching_site">Fetching site…</string>
<string name="login_site_credentials_web_authorization_connection_rejected">Unable to login because application password creation is not approved.</string>
<string name="login_app_login_malformed_link">We couldn\'t process your app login request</string>
<string name="login_jetpack_connection_create_account">If you don\'t have an account, we\'ll use this email to create one.</string>
<!--
Site picker
-->
<string name="site_picker_select_store_list_header_with_hidden_sites">Select store to connect (%d hidden)</string>
<string name="login_site_picker_enter_site_address">Enter a site address</string>
<string name="login_site_picker_add_a_store">Connect another store</string>
<string name="site_picker_create_new_store">Create a new store</string>
<string name="site_picker_connect_existing_store">Connect an existing store</string>
<string name="login_site_picker_new_to_woo">New to WooCommerce</string>
<string name="site_picker_edit_store_list">Edit Stores</string>
<string name="site_picker_edit_store_list_title">Visible Stores</string>
<string name="site_picker_edit_store_list_footer">Unselected stores won\'t be shown in the app site\'s picker and won\'t receive push notifications for new orders or product reviews.</string>
<string name="site_picker_edit_store_current_site_header">Current Store</string>
<string name="site_picker_edit_store_current_site_footer">Please switch to another store if you want to hide this one.</string>
<string name="site_picker_edit_store_list_header">Other Stores</string>
<string name="site_picker_edit_store_list_error_title">There was an error when updating notification settings. Please try again</string>
<!--
My Store View
-->
<string name="dashboard_stats_granularity_days">Days</string>
<string name="dashboard_stats_granularity_weeks">Weeks</string>
<string name="dashboard_stats_granularity_months">Months</string>
<string name="dashboard_stats_granularity_years">Years</string>
<string name="dashboard_stats_edit_granularity_content_description">Change date range button</string>
<string name="dashboard_filter_menu_content_description">Open filter dropdown</string>
<string name="dashboard_stats_visitors">Visitors</string>
<string name="dashboard_stats_orders">Orders</string>
<string name="dashboard_stats_revenue">Revenue</string>
<string name="dashboard_stats_conversion">Conversion</string>
<string name="dashboard_state_no_data">No revenue this period</string>
<string name="dashboard_stats_error">Error fetching data</string>
<string name="dashboard_stats_error_content_description">Error image</string>
<string name="dashboard_stats_todays_stats">Today\'s Stats</string>
<string name="dashboard_stats_custom_range_label">Custom</string>
<string name="dashboard_top_performers_items_sold">Items Sold</string>
<string name="dashboard_top_performers_total_orders">Total orders: %s</string>
<string name="dashboard_top_performers_empty">No activity this period</string>
<string name="dashboard_top_performers_net_sales">Net sales: %s</string>
<string name="dashboard_top_performers_wcanalytics_inactive_title">Unable to load the top performers</string>
<string name="dashboard_action_view_order">View Order</string>
<string name="dashboard_action_view_orders">View Orders</string>
<string name="dashboard_action_view_all_orders">View all orders</string>
<string name="dashboard_action_view_all_messages">View all messages</string>
<string name="my_store_stats_plugin_inactive_title">We can\'t display your\n store\'s analytics</string>
<string name="my_store_custom_range_content_description">Add custom date range stats</string>
<string name="my_store_custom_range_granularity_label">%s interval</string>
<string name="my_store_custom_range_granularity_hour">Hourly</string>
<string name="my_store_custom_range_granularity_day">Daily</string>
<string name="my_store_custom_range_granularity_week">Weekly</string>
<string name="my_store_custom_range_granularity_month">Monthly</string>
<string name="my_store_custom_range_granularity_year">Yearly</string>
<string name="my_store_custom_range_visitors_stats_unavailable_title">Visitors and conversion data not available</string>
<string name="my_store_custom_range_visitors_stats_unavailable_message">The stats feature does not support the display of visitors and conversions data for arbitrary date ranges.\n\nHowever, you can tap a value on the graph to see visitors and conversions for that specific range.</string>
<string name="my_store_edit_screen_widgets">Customize</string>
<string name="my_store_widget_onboarding_title">Store setup</string>
<string name="my_store_widget_stats_title">Performance</string>
<string name="my_store_widget_top_products_title">Top performers</string>
<string name="my_store_widget_blaze_title">Blaze campaigns</string>
<string name="my_store_widget_feedback_title">Feedback</string>
<string name="my_store_widget_orders_title">Most recent orders</string>
<string name="my_store_widget_reviews_title">Most recent reviews</string>
<string name="my_store_widget_coupons_title">Most active coupons</string>
<string name="my_store_widget_product_stock_title">Stock</string>
<string name="my_store_widget_google_ads_title">Google Ads campaigns</string>
<string name="my_store_widget_unavailable">Unavailable</string>
<string name="my_store_widget_onboarding_completed">Completed</string>
<string name="dynamic_dashboard_widget_menu_item_hide">Hide %s</string>
<string name="dynamic_dashboard_widget_error_title">Unable to load data</string>
<string name="dynamic_dashboard_widget_error_description"><![CDATA[Try reloading this card. If the issue persists, please <a href="support">contact support</a>.]]></string>
<string name="dashboard_reviews_card_header_title">Status</string>
<string name="dashboard_reviews_card_empty_title_filtered">No reviews found</string>
<string name="dashboard_reviews_card_empty_message_filtered">No reviews match the selected filter, please try changing the filter</string>
<string name="dashboard_reviews_card_view_all_button">View all reviews</string>
<string name="dashboard_coupons_card_header_coupons">Coupons</string>
<string name="dashboard_coupons_card_header_uses">Uses</string>
<string name="dashboard_coupons_view_all_button">View all coupons</string>
<string name="dashboard_coupons_card_empty_view_message">No coupon usage during this period</string>
<string name="dashboard_coupons_wcanalytics_inactive_title">Unable to load coupon usage report</string>
<string name="dashboard_wcanalytics_inactive_description">Make sure you are running the latest version of WooCommerce on your site and that you have WooCommerce Analytics activated.</string>
<string name="dashboard_wcanalytics_inactive_contact_us">Still need help? Contact us</string>
<string name="dashboard_product_stock_status_header_title">Status</string>
<string name="dashboard_product_stock_levels">Stock levels</string>
<string name="dashboard_product_stock_products">Products</string>
<string name="dashboard_product_stock_sales_last_30_days">%d items sold in last 30 days</string>
<string name="dashboard_product_stock_no_sales_last_30_days">No items sold in the last 30 days</string>
<string name="dashboard_product_stock_wcanalytics_inactive_title">Unable to load product stock reports</string>
<string name="dashboard_product_stock_empty_products">No products found for the selected stock status</string>
<string name="dashboard_google_ads_card_no_campaign_heading">Drive sales and generate more traffic with Google Ads</string>
<string name="dashboard_google_ads_card_no_campaign_description">Promote your products across Google Search, Shopping, Youtube, Gmail, and more.</string>
<string name="dashboard_google_ads_card_has_campaign_heading">Paid campaign performance</string>
<string name="dashboard_google_ads_card_has_campaign_impressions">Impressions</string>
<string name="dashboard_google_ads_card_has_campaign_clicks">Clicks</string>
<string name="dashboard_google_ads_card_create_campaign_button">Create Campaign</string>
<string name="dashboard_google_ads_card_view_all_campaigns_button">View all campaigns</string>
<string name="dashboard_new_widgets_card_title">Looking for more insights?</string>
<string name="dashboard_new_widgets_card_description">Add new sections to customize your store management experience</string>
<string name="dashboard_new_widgets_card_button">Add new Sections</string>
<!--
Sign Up Flow
-->
<string name="signup_get_started_label">Get started in minutes</string>
<string name="signup_create_password_label">Create your password</string>
<string name="signup_get_started_create_account_label">First, let’s create your account. </string>
<string name="signup_email_address_hint">Your email address</string>
<string name="signup_password_hint">Choose a password</string>
<string name="signup_terms_of_service">By continuing, you agree to our <a href=\'termsOfService\'><u>Terms of Service.</u></a></string>
<string name="signup_creating_account_loading_message">Creating new account</string>
<string name="signup_email_exist_input">An account with this email already exists.</string>
<string name="signup_email_invalid_input">Please enter a valid email address.</string>
<string name="signup_password_too_short">Your password is too short. Please pick a password that has at least 6 characters.</string>
<string name="signup_password_not_secure_enough">Your password does not meet our security guidelines. Please try a more complex password.</string>
<string name="signup_api_generic_error">Sorry, we couldn\'t create an account for the provided credentials. Please try with a different email.</string>
<!--
Analytics View
-->
<string name="analytics_section_see_all">View all store analytics</string>
<string name="analytics_date_range_to_date">%1$s (%2$s)</string>
<string name="analytics_date_range_from_date">vs Previous Period (%1$s)</string>
<string name="analytics_date_range_custom">%1$s - %2$s</string>
<string name="analytics_date_range_selector_description">Selector for date range filter</string>
<string-array name="analytics_date_range_selectors">
<item translatable="false">@string/date_timeframe_custom</item>
<item translatable="false">@string/date_timeframe_today</item>
<item translatable="false">@string/date_timeframe_yesterday</item>
<item translatable="false">@string/date_timeframe_last_week</item>
<item translatable="false">@string/date_timeframe_last_month</item>
<item translatable="false">@string/date_timeframe_last_quarter</item>
<item translatable="false">@string/date_timeframe_last_year</item>
<item translatable="false">@string/date_timeframe_week_to_date</item>
<item translatable="false">@string/date_timeframe_month_to_date</item>
<item translatable="false">@string/date_timeframe_quarter_to_date</item>
<item translatable="false">@string/date_timeframe_year_to_date</item>
</string-array>
<string name="analytics_revenue_card_title">Revenue</string>
<string name="analytics_revenue_no_data">No revenue this period</string>
<string name="analytics_orders_no_data">No orders this period</string>
<string name="analytics_products_no_data">No products this period</string>
<string name="analytics_gift_cards_no_data">No gift cards this period</string>
<string name="analytics_google_ads_no_data">No Programs this period</string>
<string name="analytics_session_no_data">No sessions this period</string>
<string name="analytics_session_no_available">Session data unavailable</string>
<string name="analytics_custom_list_selection_button_description">Filter selection</string>
<string name="analytics_session_no_available_description">Session analytics rely on unique visitor counts not available for custom date ranges</string>
<string name="analytics_total_sales_title">Total sales</string>
<string name="analytics_spend_subtitle_value">Spend: %1$s</string>
<string name="analytics_total_sales_subtitle_value">Total Sales: %1$s</string>
<string name="analytics_used_title">Used</string>
<string name="analytics_net_sales_title">Net sales</string>
<string name="analytics_information_card_delta" translatable="false">%1$s%2$d%%</string>
<string name="analytics_orders_card_title">Orders</string>
<string name="analytics_total_orders_title">Total Orders</string>
<string name="analytics_avg_orders_title">Average Order Value</string>
<string name="analytics_products_list_items_sold">Items sold</string>
<string name="analytics_bundles_list_items_sold">Bundles sold</string>
<string name="analytics_products_card_title">Products</string>
<string name="analytics_products_list_header_title">Products</string>
<string name="analytics_bundles_list_header_title">Bundles</string>
<string name="analytics_products_list_header_subtitle">Items sold</string>
<string name="analytics_bundles_list_header_subtitle">Bundles sold</string>
<string name="analytics_products_list_item_description">Net sales: %1$s</string>
<string name="analytics_session_card_title">Sessions</string>
<string name="analytics_bundles_card_title">Bundles</string>
<string name="analytics_gift_cards_card_title">Gift Cards</string>
<string name="analytics_google_ads_card_title">Google Campaigns</string>
<string name="analytics_google_ads_metric_card_title">Metric</string>
<string name="analytics_google_ads_filter_total_sales">Total Sales</string>
<string name="analytics_google_ads_filter_spend">Spend</string>
<string name="analytics_google_ads_filter_conversion">Conversion</string>
<string name="analytics_google_ads_filter_impressions">Impressions</string>
<string name="analytics_google_ads_filter_clicks">Clicks</string>
<string name="analytics_google_ads_programs_card_title">Programs</string>
<string name="analytics_conversion_subtitle">Conversion Rate</string>
<string name="analytics_visitors_subtitle">Visitors</string>
<string name="analytics_item">item</string>
<string name="analytics_items">items</string>
<string name="analytics_list_item_products_sold">%1$s, %2$s, %3$s, %4$s sold</string>
<string name="analytics_google_ads_cta_title">Google Campaigns</string>
<string name="analytics_google_ads_cta_description">Drive sales and generate more traffic with Google Ads.</string>
<string name="analytics_google_ads_cta_action">Add paid campaign</string>
<string name="analytics_google_ads_cta_web_view_title">Google for WooCommerce</string>
<string name="analytics_wip_title">See your stats, revenue and more from your device!</string>
<string name="analytics_wip_message">We\'ve been working on making it possible to display significant store information from your device! Could it be better? Please help us improve this feature by sharing your feedback with us</string>
<string name="analytics_banner_title">Enjoying analytics?</string>
<string name="analytics_banner_message">Please rate your analytics experience</string>
<!--
Order List View
-->
<string name="orderlist_no_orders">No Orders</string>
<string name="orderlist_item_order_num">#%s</string>
<string name="orderlist_item_order_name">%1$s %2$s</string>
<string name="orderlist_error_fetch_generic">Error fetching orders</string>
<string name="orderlist_filter_by">Filter orders by</string>
<string name="orderlist_filter">Filter</string>
<string name="orderlist_search_hint">Search orders</string>
<string name="orderlist_search_hint_active_filters">Search filtered orders</string>
<string name="orderlist_filtered" translatable="false">: %1$s</string>
<string name="orderlist_loading">Looking up your orders…</string>
<string name="orderlist_no_filters_title">All Orders</string>
<string name="orderlist_filters_title">Filtered Orders</string>
<string name="orderlist_simple_payments_menu">Simple payment</string>
<string name="order_card_transition_name">order_card_%1$s</string>
<string name="order_card_detail_transition_name">order_card_detail</string>
<string name="orderlist_mark_completed">Mark\ncompleted</string>
<string name="orderlist_mark_completed_success">Order #%1$d marked as completed</string>
<string name="orderlist_updating_order_error">Error updating Order #%1$d</string>
<string name="order_list_barcode_scanning_process_death">The system terminated the Woo app while it was running in the background. You may attempt to use it again.</string>
<string name="orderlist_parsing_error_title">We couldn\'t load your data.</string>
<string name="orderlist_parsing_error_message">This could be related to a conflict with a plugin. Please try again later or reach out to us and we\'ll be happy to assist you!</string>
<string name="error_troubleshooting">Troubleshooting</string>
<string name="orderlist_timeout_error_title">Your site is taking a long time to respond</string>
<string name="orderlist_timeout_error_message">Please try again later or reach out to us and we\'ll be happy to assist you</string>
<string name="orderlist_connectivity_tool_title">Troubleshoot Connection</string>
<string name="orderlist_connectivity_tool_subtitle">Please wait while we attempt to identify your connection issue.</string>
<string name="orderlist_connectivity_tool_internet_check_title">Internet connection</string>
<string name="orderlist_connectivity_tool_internet_check_suggestion">It looks like you\'re not connected to the internet.\n\nEnsure your Wi-Fi is turned on. If you\'re using mobile data, make sure it\'s enabled in your device settings.</string>
<string name="orderlist_connectivity_tool_wordpress_check_title">Connecting to WordPress.com servers</string>
<string name="orderlist_connectivity_tool_wordpress_check_suggestion">We can\'t connect to WordPress.com right now.\n\nTry again in a few minutes, or contact our support team and we will happily assist you.</string>
<string name="orderlist_connectivity_tool_store_check_title">Connecting to your site</string>
<string name="orderlist_connectivity_tool_store_orders_check_title">Fetching your site orders</string>
<string name="orderlist_connectivity_tool_contact_support_action">Contact Support</string>
<string name="orderlist_connectivity_tool_read_more_action">Read More</string>
<string name="orderlist_connectivity_tool_retry_action">Retry connection</string>
<string name="orderlist_connectivity_tool_return_action">Return to the previous screen</string>
<string name="orderlist_connectivity_tool_timeout_error_suggestion">Your site seems to be taking too long to respond.\n\nContact your hosting provider for further assistance.</string>
<string name="orderlist_connectivity_tool_parsing_error_suggestion">It seems we can\'t work properly with your site\'s response.\n\nBut don\'t worry, our support team is here to help. Contact us and we will happily assist you.</string>
<string name="orderlist_connectivity_tool_jetpack_error_suggestion">There seems to be a problem with your jetpack connection.\n\nBut don\'t worry, our support team is here to help. Contact us and we will happily assist you.</string>
<string name="orderlist_connectivity_tool_generic_error_suggestion">There seems to be a problem with your site.\n\nContact your hosting provider for further assistance.</string>
<string name="orderlist_connectivity_tool_summary_title">No connection issues</string>
<string name="orderlist_connectivity_tool_summary_suggestion">If your data still isn\'t loading, contact our support team for assistance.</string>
<string name="orderlist_order_trashed">Order trashed</string>
<string name="orderlist_order_trashed_error">Error trashing order</string>
<string name="orderlist_selection_count">%d orders selected</string>
<string name="orderlist_selection_count_single">%d order selected</string>
<string name="orderlist_selection_menu_update_status">Update status</string>
<string name="orderlist_bulk_update_status_updated">Status updated!</string>
<string name="orderlist_bulk_update_maximum_reached">Maximum selection count (%d) is reached.</string>
<string name="orderlist_bulk_update_result_no_orders_updated">No orders updated. Please try again.</string>
<string name="orderlist_bulk_update_result_all_failed">Failed to update orders. Please try again.</string>
<string name="orderlist_bulk_update_result_partial_success">%d order(s) updated, and %d order(s) failed to update. Please try again.</string>
<!--
Simple Payments
-->
<string name="simple_payments_dialog_title">Take payment</string>
<string name="simple_payments_title">Simple payment</string>
<string name="simple_payments_enter_amount">Enter amount</string>
<string name="simple_payments_creation_error">Unable to create simple payment order</string>
<string name="simple_payments_update_error">Unable to update simple payment order</string>
<string name="simple_payments_edit_email_hint">Enter email</string>
<string name="simple_payments_custom_amount">Custom amount</string>
<string name="simple_payments_charge_taxes">Charge taxes</string>
<string name="simple_payments_take_payment_button">Take payment (%s)</string>
<string name="simple_payments_tax_with_percent">Tax (%s%%)</string>
<string name="simple_payments_tax_message">Taxes are automatically calculated based on your store address</string>
<string name="simple_payments_choose_method">Choose your payment method</string>
<string name="simple_payments_cash_dlg_title">Mark as paid?</string>
<string name="simple_payments_cash_dlg_message">This will create your order and mark it as paid if you received payment outside of WooCommerce</string>
<string name="existing_order_cash_dlg_message">This will mark this order as paid if you received payment outside of WooCommerce</string>
<string name="simple_payments_cash_dlg_button">Mark as paid</string>
<string name="simple_payments_share_payment_link">Share Payment Link</string>
<string name="simple_payments_share_payment_dialog_title">Checkout - %s</string>
<!--
Cash Payments
-->
<string name="cash_payments_take_payment_title">Take payment (%s)</string>
<string name="cash_payments_cash_received">Cash received</string>
<string name="cash_payments_change_due">Change due</string>
<string name="cash_payments_record_transaction_details">Record transaction details in order note</string>
<string name="cash_payments_mark_order_as_complete">Mark Order as Complete</string>
<string name="cash_payments_order_note_text">The order was paid by cash. Customer paid %s. The change due was %s.</string>
<string name="cash_payments_order_note_adding_error">Error adding order note</string>
<!--
Custom Amounts
-->
<string name="custom_amounts_dialog_title">Custom Amount</string>
<string name="custom_amounts_enter_amount">Amount</string>
<string name="custom_amounts_name">Name</string>
<string name="custom_amounts_add_custom_amount">Add Custom Amount</string>
<string name="custom_amounts_delete_custom_amount">Delete Custom Amount</string>
<string name="custom_amounts_add_custom_name_hint">Enter Custom name</string>
<string name="custom_amounts_creation_error">Unable to create custom amount order</string>
<string name="custom_amounts_tax_label">Charge Taxes</string>
<string name="custom_amounts_percentage_label">Percentage of order total (%1$s)</string>
<string name="custom_amounts_bottom_sheet_heading">How do you want to add your custom amount?</string>
<string name="custom_amounts_bottom_sheet_fixed_amount_option">A fixed amount</string>
<string name="custom_amounts_bottom_sheet_percentage_amount_option">A percentage of the order total</string>
<string name="custom_amounts_percentage_hint">0</string>
<string name="custom_amounts_percentage_symbol">%</string>
<string name="custom_amounts_percentage_invalid_value">Invalid value</string>
<!--
Taxes
-->
<string name="tax_name_with_tax_percent">%1$s (%2$s%%)</string>
<!--
Order Creation
-->
<string name="orderlist_create_order_button_description">Create order</string>
<string name="orderlist_bottom_sheet_create_order_action">Create order</string>
<string name="orderlist_bottom_sheet_create_order_description">Create a new manual order</string>
<string name="orderlist_bottom_sheet_simple_payment_action">Simple payment</string>
<string name="orderlist_bottom_sheet_simple_payment_description">Create an order with minimal information</string>
<string name="orderlist_bottom_sheet_simple_payments_moved_title">Payments from the Menu tab</string>
<string name="orderlist_bottom_sheet_simple_payments_moved_description">Now you can quickly access In-Person Payments and other features with ease</string>
<string name="orderlist_bottom_sheet_simple_payments_moved_button">Got it!</string>
<string name="order_list_barcode_scanning_scanning_failed">Scanning failed. Please try again later</string>
<string name="order_creation_fragment_title">New order</string>
<string name="order_creation_tablet_mode_fragment_title">Order Summary</string>
<string name="order_creation_price_after_discount">Price after discount</string>
<string name="order_creation_products_order_count">Order count</string>
<string name="order_creation_status_edit_content_description">Edit order status</string>
<string name="order_creation_customer">Customer</string>
<string name="order_creation_customer_edit_content_description">Edit customer details</string>
<string name="order_creation_customer_note">Customer note</string>
<string name="order_creation_customer_note_edit_content_description">Edit customer note</string>
<string name="order_creation_add_customer">Add customer details</string>
<string name="order_creation_add_customer_content_description">add customer</string>
<string name="order_creation_add_customer_note">Add note</string>
<string name="order_creation_products">Products</string>
<string name="order_creation_add_products">Add products</string>
<string name="order_creation_add_custom_amounts">Add custom amount</string>
<string name="order_creation_add_product_via_barcode_scanning">Add products via scanner</string>
<string name="order_creation_scan_products">Scan products</string>
<string name="order_creation_set_tax_rate">Set New Tax Rate</string>
<string name="order_creation_edit_tax_rate">Edit Tax Rate Setting</string>
<string name="order_creation_add_fee">Add fee</string>
<string name="order_creation_add_coupon">Add coupon</string>
<string name="order_creation_add_gift_card">Add gift card</string>
<string name="order_creation_select_coupon">Select a coupon</string>
<string name="order_creation_coupon_discount_value">-%1$s</string>
<string name="order_creation_coupon_codes">Coupon (%1$s)</string>
<string name="order_creation_coupon_button">Coupons</string>
<string name="order_creation_coupons_title">Coupons applied</string>
<string name="order_creation_increase_item_amount_content_description">Increase product quantity</string>
<string name="order_creation_decrease_item_amount_content_description">Decrease product quantity</string>
<string name="coupon_selector_empty_list_button">Go to Coupons</string>
<string name="coupon_selector_empty_list_message">You haven\'t created any coupons yet. Create a coupon to apply it to this order.</string>
<string name="coupon_selector_empty_list_title">Everyone loves a deal</string>
<string name="order_creation_remove_coupon">Remove coupon from order</string>
<string name="order_creation_remove_this_coupon">Remove coupon</string>
<string name="order_creation_customer_details">Customer details</string>
<string name="order_creation_product_stock_quantity">%s in stock</string>
<string name="order_creation_product_instock">In stock</string>
<string name="order_creation_new_customer_add_different_shipping_address">Add a different shipping address</string>
<string name="order_creation_product_details_title">Product</string>
<string name="order_creation_add_discount">Add discount</string>
<string name="order_creation_discount_amount_label">Calculated Amount</string>
<string name="order_creation_discount_percentage_label">Calculated Percentage</string>
<string name="order_creation_total_label">Order total</string>
<string name="order_creation_price_after_discount_label">Price after discount</string>
<string name="order_creation_remove_discount">Remove discount</string>
<string name="order_creation_discount_too_big_error">Discount cannot be greater than the price</string>
<string name="order_creation_discount_invalid_number_error">Discount is not a valid number</string>
<string name="order_creation_discount_with_coupon_error">Manual discount could not be applied. Remove coupons first</string>
<string name="order_creation_discount_amount_with_currency">Amount (%1$s)</string>
<string name="order_creation_discount">Discount</string>
<string name="order_creation_discounts_total">Discounts Total</string>
<string name="order_creation_discounts_total_value">- %1$s</string>
<string name="order_creation_discount_value">Discount %1$s</string>
<string name="order_creation_discount_amount_type">Amount (%1$s)</string>
<string name="order_creation_remove_product">Remove product from order</string>
<string name="order_creation_variations_screen_title">Select variation</string>
<string name="order_creation_payment">Payment</string>
<string name="order_creation_payment_header">Payment totals</string>
<string name="order_creation_payment_products_total">Products Total</string>
<string name="order_creation_payment_products">Products</string>
<string name="order_creation_payment_order_total">Order Total</string>
<string name="order_creation_payment_fee">Fees</string>
<string name="order_creation_loading_dialog_title">Creating your order</string>
<string name="order_creation_loading_dialog_message">Please wait…</string>
<string name="order_creation_failure_snackbar">Order creation failed</string>
<string name="order_creation_success_snackbar">Order created</string>
<string name="order_creation_payment_tax">Taxes Total</string>
<string name="order_creation_payment_tax_label">Taxes</string>
<string name="order_creation_shipping_name">Name</string>
<string name="order_creation_shipping_title_add">Add Shipping</string>
<string name="order_creation_shipping_title_edit">Edit Shipping</string>
<string name="order_creation_shipping_methods_title">Method</string>
<string name="order_creation_shipping_methods_error">Error while fetching your shipping methods. Please try again</string>
<string name="order_creation_shipping_add">Add Shipping</string>
<string name="order_creation_shipping_edit">Edit Shipping</string>
<string name="order_creation_add_shipping">Add shipping</string>
<string name="order_creation_add_shipping_method">Method</string>
<string name="order_creation_add_shipping_amount">Amount</string>
<string name="order_creation_add_shipping_name">Name</string>
<string name="order_creation_add_shipping_name_hint">Shipping</string>
<string name="order_creation_add_shipping_method_select_hint">Select a shipping method</string>
<string name="order_creation_edit_shipping">Shipping</string>
<string name="order_creation_remove_shipping">Remove shipping from order</string>
<string name="order_creation_add_fee_removal_hint">Remove fee from order</string>
<string name="order_creation_fee_percentage_hint">Percentage (%)</string>
<string name="order_creation_fee_percentage_toggle_text">Calculate as percentage</string>
<string name="order_creation_fee_percentage_calculated_amount">Calculated amount: %s</string>
<string name="order_creation_customer_search_empty">No customers found</string>
<string name="order_creation_customer_search_empty_on_old_version_wcpay">Search for an existing customer or</string>
<string name="order_creation_customer_search_hint">Search for customers</string>
<string name="order_creation_customer_search_old_wc_hint">Search for customers by</string>
<string name="order_creation_customer_search_email">Email</string>
<string name="order_creation_customer_search_name">Name</string>
<string name="order_creation_customer_search_username">Username</string>
<string name="order_creation_customer_search_empty_name">No name</string>
<string name="order_creation_customer_search_empty_email">No email address</string>
<string name="order_creation_customer_search_empty_add_details_manually">Add details manually</string>
<string name="order_creation_customer_search_empty_add_details_manually_with_email">Add details manually using email</string>
<string name="order_creation_change_product_quantity">Change the product quantity from %1$d to %2$d</string>
<string name="order_creation_barcode_scanning_unable_to_add_product">Product with SKU %s not found. Unable to add to the order</string>
<string name="order_creation_barcode_scanning_scanning_failed">Scanning failed. Please try again later</string>
<string name="order_creation_barcode_scanning_unable_to_add_variable_product">You cannot add variable product directly. Please select a specific variation</string>
<string name="order_creation_barcode_scanning_unable_to_add_draft_product">You cannot add products that are not published</string>
<string name="order_creation_barcode_scanning_unable_to_add_product_with_invalid_price">You cannot add products with no price specified</string>
<string name="order_creation_barcode_scanning_process_death">The system terminated the Woo app while it was running in the background. You may attempt to use it again.</string>
<string name="order_creation_coupon_invalid_code">We couldn\'t find a coupon with that code. Please try again</string>
<string name="order_creation_coupon_network_error">Something went wrong when validating your coupon code. Please try again</string>
<string name="order_creation_tax_based_on_store_address">Calculated on store address</string>
<string name="order_creation_tax_based_on_billing_address">Calculated on billing address</string>
<string name="order_creation_tax_based_on_shipping_address">Calculated on shipping address</string>
<string name="order_creation_collapse_expand_product_card_content_description">Collapse/expand product card</string>
<string name="order_creation_gift_card_text_field_hint">Enter code</string>
<string name="order_creation_gift_card_text_error">The code should be in XXXX-XXXX-XXXX-XXXX format</string>
<string name="order_creation_collect_payment_button">Collect Payment</string>
<string name="order_creation_recalculate_button">Recalculate</string>
<string name="order_creation_expand_collapse_order_totals">Expand collapse order totals</string>
<string name="order_creation_payment_shipping_tax_label">Shipping Tax</string>
<string name="order_creation_simple_payment_migration_title">Collect Payment \nhas moved</string>
<string name="order_creation_simple_payment_migration_message_one">We’ve combined payment collection with order creation, making it more accessible and more powerful.</string>
<string name="order_creation_simple_payment_migration_message_two">To set a payment amount, add a custom amount to your new order.</string>
<string name="order_creation_simple_payment_migration_button">Add a Custom Amount</string>
<string name="customer_picker_guest_customer_not_allowed_message">This user is a guest, and guests can\'t be used for filtering orders.</string>
<string name="customer_picker_guest">Guest</string>
<string name="order_creation_shipping_feedback_title">Shipping added!</string>
<string name="order_creation_shipping_feedback_message">Does Woo make shipping easy?</string>
<string name="order_creation_feedback_action">Share your feedback</string>
<!--
Barcode Scanning
-->
<string name="barcode_scanning_title">Scan Barcode</string>
<string name="barcode_scanning_camera_permission_denied">Camera permission is required to scan the barcode.</string>
<string name="barcode_scanning_alert_dialog_title">Grant Camera Permission</string>
<string name="barcode_scanning_alert_dialog_rationale_message">Camera permission is required in order to scan the barcode</string>
<string name="barcode_scanning_alert_dialog_permanently_denied_message">You have permanently denied Camera permission. It is required in order to scan the barcode. Please enable it from the app settings</string>
<string name="barcode_scanning_alert_dialog_rationale_cta_label">Grant</string>
<string name="barcode_scanning_alert_dialog_dismiss_label">Cancel</string>
<string name="barcode_scanning_alert_dialog_permanently_denied_cta_label">Go to settings</string>
<string name="barcode_scanning_scan_product_barcode_label">Scan Product Barcode</string>
<!--
Domains
-->
<string name="domains_your_free_store_address">Your free store address</string>
<string name="domains_claim_your_free_domain_title">Claim your free domain</string>
<string name="domains_claim_your_free_domain_description">You have a free one-year domain registration included with your plan.</string>
<string name="domains_claim_your_free_domain_link">Claim Domain</string>
<string name="domains_purchase_redirect_notice">The domain purchased will redirect users to your primary address.</string>
<string name="domains_search_for_domain_button_title">Search for a domain</string>
<string name="domains_learn_more"><a href=\'\'><u>Learn more</u></a> about domains and how to take domain-related actions.</string>
<string name="domains_primary_address">Primary site address</string>
<string name="domains_your_domains">Your site domains</string>
<string name="domains_add_domain_button_title">Add a domain</string>
<string name="domains_select_domain">Select domain</string>
<string name="domains_search_domains">Search domains</string>
<string name="domains_redirect_notice">The domain purchased will redirect users to</string>
<string name="domains_generic_error_title">Unable to load site domains</string>
<string name="domains_access_error_title">Only store administrators can access domain settings</string>
<string name="domains_free_with_credits">Free for the first year</string>
<string name="domains_purchase_successful_heading">Congratulations on your purchase</string>
<string name="domains_purchase_successful_delay_notice">Your site address is being set up. It may take up 30 minutes for your domain to start working.</string>
<string name="domains_purchase_successful_settings_notice">You can find the domain settings in Settings -> Domains</string>
<string name="domain_registration_privacy_protection_title">Privacy Protection</string>
<string name="domain_registration_privacy_protection_description">Domain owners have to share contact information in a public database of all domains.
With Privacy Protection, we publish our own information instead of yours and privately forward any communication to you.</string>
<string name="domain_registration_privacy_protection_tos">By registering this domain you agree to our <a href=\'\'>terms and conditions</a></string>
<string name="domain_registration_contact_form_input_error">Please enter a valid %s</string>
<string name="domain_privacy_option_on_title">Register privately with Privacy Protection</string>
<string name="domain_privacy_option_off_title">Register publicly</string>
<string name="domain_contact_information_title">Domain contact information</string>
<string name="domain_contact_information_description">For your convenience, we have pre-filled your WordPress.com
contact information. Please review to be sure it’s the correct information you want to use for this domain.</string>
<string name="domain_contact_information_organization_hint">Organization (optional)</string>
<string name="domain_contact_information_phone_number_hint">Phone</string>
<string name="domain_contact_information_country_code_hint">Country code</string>
<string name="domain_contact_information_country_hint">Country</string>
<string name="domain_contact_information_address_hint">Address</string>
<string name="domain_contact_information_address_hint_two">Address 2</string>
<string name="domain_contact_information_city_hint">City</string>
<string name="domain_contact_information_state_hint">State</string>
<string name="domain_contact_information_state_not_available_hint">State (Not Available)</string>
<string name="domain_contact_information_postal_code_hint">Postal code</string>
<string name="domain_contact_information_register_domain_button">Register domain</string>
<string name="domain_registration_registering_domain_name_progress_dialog_message">Registering domain name…</string>
<string name="domain_registration_country_picker_dialog_title">Select Country</string>
<string name="domain_registration_state_picker_dialog_title">Select State</string>
<string name="domain_registration_generic_error">An error occurred during domain registration</string>
<string name="domain_picker_title">Choose a domain</string>
<string name="domain_picker_subtitle">This is where people will find you on the Internet. Don\'t worry, you can change it later.</string>
<string name="domain_picker_hint">Type a domain</string>
<string name="domain_picker_suggestions_title">Suggestions</string>
<string name="domain_picker_empty_suggestions">No available domains for this search</string>
<string name="domain_picker_suggestions_error">Unable to load domain suggestions</string>
<!--
Order Editing
-->
<string name="order_editing_non_editable_title">Parts of this order are not currently editable</string>
<string name="order_editing_non_editable_message">To edit Products or Payment Details, change the status to Pending Payment.</string>
<string name="order_editing_locked_content_description">locked</string>
<string name="order_editing_barcode_content_description">Scan barcode</string>
<string name="order_editing_add_content_description">Add product</string>
<string name="order_sync_failed">Unable to save changes</string>
<string name="order_sync_coupon_removed">Coupon could not be applied and was removed from the order</string>
<!--
Order Filters
-->
<string name="orderfilters_show_orders_button">Show Orders</string>
<string name="orderfilters_default_filter_value">All</string>
<string name="orderfilters_order_status_filter">Order Status</string>
<string name="orderfilters_date_range_filter">Date Range</string>
<string name="orderfilters_product_filter">Product</string>
<string name="orderfilters_customer_filter">Customer</string>
<string name="orderfilters_selected_filter_fallback_display_value">Id: %d</string>
<string name="orderfilters_filter_option_item_selected">Selected filter option</string>
<string name="orderfilters_filter_order_status_options_title">Order Status</string>
<string name="orderfilters_filter_date_range_options_title">Date Range</string>
<string name="orderfilters_filter_card_title_all_orders">All orders</string>
<string name="orderfilters_filter_card_title_filtered_orders">Filtered orders</string>
<string name="orderfilters_filters_default_title">Filters</string>
<string name="orderfilters_filters_count_title">Filters (%d)</string>
<string name="orderfilters_default_filter_option">All</string>
<string name="orderfilters_order_status_with_count_filter_option">%1$s (%2$d)</string>
<string name="orderfilters_date_range_filter_today">Today</string>
<string name="orderfilters_date_range_filter_last_two_days">Last 2 Days</string>
<string name="orderfilters_date_range_filter_last_7_days">Last 7 days</string>
<string name="orderfilters_date_range_filter_last_30_days">Last 30 days</string>
<string name="orderfilters_date_range_filter_custom_range">Custom Range</string>
<string name="orderfilters_date_range_picker_title">Select dates</string>
<string name="orderfilters_date_range_start_date">Start Date</string>
<string name="orderfilters_date_range_end_date">End Date</string>
<!--
Order Detail Views
-->
<string name="customer_information">Customer information</string>
<string name="orderdetail_customer_header">CUSTOMER</string>
<string name="customer_full_name">%1$s %2$s</string>
<string name="orderdetail_customer_note">\u0022%1$s\u0022</string>
<string name="orderdetail_customer_name_default">Guest</string>
<string name="orderdetail_orderstatus_ordernum">Order #%s</string>
<string name="orderdetail_orderstatus_name">%1$s %2$s</string>
<string name="orderdetail_shipping_method">Shipping method</string>
<string name="orderdetail_shipping_details">Shipping details</string>
<string name="orderdetail_billing_details">Billing details</string>
<string name="orderdetail_email_contentdesc">email customer</string>
<string name="orderdetail_call_or_message_contentdesc">Call or message customer</string>
<string name="orderdetail_call_customer">Call</string>
<string name="orderdetail_message_customer">Message</string>
<string name="orderdetail_message_customer_using_whatsapp">Contact using WhatsApp</string>
<string name="orderdetail_message_customer_using_telegram">Contact using Telegram</string>
<string name="orderdetail_product_lineitem_qty_and_price">%1$s x %2$s</string>
<string name="orderdetail_product_lineitem_attributes">%1$s%2$s x %3$s</string>
<string name="orderdetail_product_lineitem_tax">Tax:</string>
<string name="orderdetail_product_lineitem_sku">SKU:</string>
<string name="orderdetail_product_lineitem_sku_value">SKU: %1$s</string>
<string name="orderdetail_product_lineitem_view_addons_action">View Add-ons</string>
<string name="orderdetail_product_image_contentdesc">Product Image</string>
<string name="orderdetail_product">Product</string>
<string name="orderdetail_product_multiple">Products</string>
<string name="orderdetail_product_uppercase">PRODUCT</string>
<string name="orderdetail_product_multiple_uppercase">PRODUCTS</string>
<string name="orderdetail_product_qty">QTY</string>
<string name="orderdetail_payment_summary_completed">%1$s via %2$s</string>
<string name="orderdetail_payment_summary_onhold">Awaiting payment via %s</string>
<string name="orderdetail_payment_summary_onhold_plain">Awaiting payment</string>
<string name="orderdetail_payment_paid_by_customer">Paid</string>
<string name="orderdetail_refunded">Refunded</string>
<string name="orderdetail_refunded_line_with_info">Refunded: %1$s</string>
<string name="orderdetail_refunded_products">Refunded products</string>
<string name="orderdetail_refund_detail">%1$s via %2$s</string>
<string name="orderdetail_net">Net Payment</string>
<string name="orderdetail_discount_items">(%1$s)</string>
<string name="orderdetail_refund_amount" translatable="false">-%1$s</string>
<string name="orderdetail_payment_fees">Fees</string>
<string name="orderdetail_customer_provided_note">Customer provided note</string>
<string name="orderdetail_customer_image_contentdesc">Customer profile image</string>
<string name="orderdetail_note_hint">Compose an order note</string>
<string name="orderdetail_note_private">Private</string>
<string name="orderdetail_note_public">To customer</string>
<string name="orderdetail_note_system">System</string>
<string name="orderdetail_order_notes">Order notes</string>
<string name="orderdetail_order_notes_uppercase">ORDER NOTES</string>
<string name="orderdetail_customer_note_hint">Edit a customer order note</string>
<string name="orderdetail_payment_cleared">Payment Cleared</string>
<string name="orderdetail_show_billing">Show Billing</string>
<string name="orderdetail_hide_billing">Hide Billing</string>
<string name="orderdetail_add_note">Add a note</string>
<string name="orderdetail_addnote_contentdesc">Add an order note</string>
<string name="orderdetail_change_order_status">Click to change order status</string>
<string name="orderdetail_track_shipment">Track shipment</string>
<string name="orderdetail_copy_tracking_number">Copy tracking number</string>
<string name="orderdetail_delete_tracking">Delete tracking</string>
<string name="orderdetail_shipping_notice">This order is using extensions to calculate shipping. The shipping methods shown might be incomplete.</string>
<string name="orderdetail_issue_refund_button">Issue refund</string>
<string name="orderdetail_collect_payment_button">Collect Payment</string>
<string name="orderdetail_see_receipt_button">See receipt</string>
<string name="orderdetail_printing_instructions_button">Learn more about printing receipts with your device</string>
<string name="orderdetail_products_recreate_shipping_label_menu">Create new shipping label</string>
<string name="orderdetail_shipping_label_item_header">Package %d</string>
<string name="orderdetail_shipping_label_item_menu">Refund shipping label</string>
<string name="orderdetail_shipping_label_item_shipfrom">Ship from</string>
<string name="orderdetail_shipping_label_item_shipto">Ship to</string>
<string name="orderdetail_shipping_label_item_package_info">Package details</string>
<string name="orderdetail_shipping_label_item_carrier">Shipping carriers and rates</string>
<string name="orderdetail_shipping_label_item_payment">Payment method</string>
<string name="orderdetail_shipping_label_item_payment_type">Credit card</string>
<string name="orderdetail_shipping_label_item_show_shipping">Show shipment details</string>