-
Notifications
You must be signed in to change notification settings - Fork 131
/
Copy pathstrings.xml
4009 lines (3792 loc) · 317 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">WooCommerce</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="subtotal">Subtotal</string>
<string name="products_total">Products total</string>
<string name="discount">Discount</string>
<string name="details">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="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="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="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>
<!--
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>
<!--
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_with_qr_code">Scan QR code to login</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_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="login_site_picker_enter_site_address">Enter a site address</string>
<string name="login_site_picker_add_a_store">Add a Store</string>
<string name="site_discovery_postlogin_failure">A failure occurred, please contact support</string>
<string name="login_site_picker_new_to_woo">New to WooCommerce</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_create_an_account">Create An Account</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_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>
<!--
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_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_top_performers_title">Top performers</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_action_view_order">View Order</string>
<string name="dashboard_action_view_orders">View Orders</string>
<string name="my_store_stats_reverted_title">Upgrade to keep seeing your stats</string>
<string name="my_store_stats_reverted_message">We\'ve rolled out improvements to our analytics. Upgrade to WooCommerce 4.0 or above or install WooCommerce Admin plugin to keep seeing your stats after September 1, 2020.</string>
<string name="my_store_stats_availability_title">We can\'t display your\n store\'s analytics</string>
<string name="my_store_stats_availability_description">Make sure you are running the latest version of WooCommerce on your site and that you have WooCommerce Admin activated.\n\nStill need help? %1$s</string>
<string name="my_store_stats_availability_contact_us">Contact us</string>
<!--
Sign Up Flow
-->
<string name="signup_get_started_button">Create a new store</string>
<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_see_more">See more</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_session_no_data">No sessions this period</string>
<string name="analytics_total_sales_title">Total sales</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_products_card_title">Products</string>
<string name="analytics_products_list_header_title">Products</string>
<string name="analytics_products_list_header_subtitle">Items 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_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_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_wip_title">Create orders from your device!</string>
<string name="orderlist_simple_payments_wip_message_enabled">We\'ve been working on making it possible to create orders from your device! You can try this feature out by tapping on the "+" button</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>
<!--
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>
<!--
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>
<!--
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_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_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">Coupon</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_add_shipping">Add shipping</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_expand_collapse_order_totals">Expand collapse order totals</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 %1$sterms and conditions%2$s</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>
<!--
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_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_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>
<string name="orderdetail_shipping_label_item_hide_shipping">Hide shipment details</string>
<string name="orderdetail_shipping_label_carrier_info">%1$s\n%2$s</string>
<string name="orderdetail_shipping_label_tracking_info">Track shipment</string>
<string name="orderdetail_shipping_label_refund_title">%1$s label refund requested</string>
<string name="orderdetail_shipping_label_refund_subtitle">%1$s \u2022 %2$s</string>
<string name="orderdetail_shipping_label_request_refund">Request a refund</string>
<string name="orderdetail_shipping_label_print_customs_form">Print customs form</string>
<string name="orderdetail_shipping_label_unpackaged_products_header">Remaining products</string>
<string name="orderdetail_shipping_label_print">Print shipping label</string>
<string name="orderdetail_shipping_label_wip_title">Print shipping labels from your device!</string>
<string name="orderdetail_shipping_label_m2_wip_title">Create shipping labels from your device!!</string>
<string name="orderdetail_shipping_label_wip_message">We are working on making it easier for you to print shipping labels directly from you device! For now, if you have created shipping labels for this order in your store admin with WooCommerce Shipping, you can print them in your Order Details here.</string>
<string name="orderdetail_shipping_label_m3_wip_message">You can now create shipping labels for all physical orders directly from your device with the free WooCommerce Shipping plugin. Tap on "Create shipping label" to try our beta feature!</string>
<string name="orderdetail_shipping_label_create_shipping_label">Create shipping label</string>
<string name="orderdetail_shipping_label_notice">Learn more about creating labels with your mobile device</string>
<string name="orderdetail_custom_fields">Custom fields</string>
<string name="orderdetail_view_custom_fields">View custom fields</string>
<string name="orderdetail_ai_create_thank_you_note_button">✨Create thank-you note</string>
<string name="receipt_preview_print_menu_item">Print</string>
<string name="receipt_preview_send_menu_item">Send</string>
<string name="order_mark_complete">Mark order complete</string>
<string name="order_fulfill_mark_complete">Mark Order Complete</string>
<string name="order_fulfill_marked_complete">Order Marked Complete</string>
<string name="order_fulfill_completed">🎉 Order completed!</string>
<string name="order_status_updated">Order status updated</string>
<string name="order_error_fetch_notes_generic">Error fetching notes</string>
<string name="order_error_update_general">Error changing order</string>
<string name="order_error_update_empty_mail">Unable to update address with empty email. Make sure you are running the latest version of WooCommerce.</string>
<string name="order_error_fetch_generic">Error fetching order</string>
<string name="order_shipment_tracking">Tracking</string>
<string name="order_shipment_tracking_number">Tracking Number</string>
<string name="order_shipment_tracking_number_clipboard">Tracking number copied to the clipboard</string>
<string name="order_shipment_tracking_button">Track package</string>
<string name="order_detail_shipment_tracking_button_contentdesc">Track or delete shipment tracking</string>
<string name="order_shipment_tracking_section_cd">Shipment tracking</string>
<string name="order_shipment_tracking_copy_to_clipboard">Copy tracking number to clipboard</string>
<string name="order_shipment_tracking_add_button">Add tracking</string>
<string name="order_shipment_tracking_delete_snackbar_msg">Deleted shipment tracking</string>
<string name="order_shipment_tracking_delete_error">Error deleting tracking</string>
<string name="order_shipment_tracking_delete_success">Tracking deleted</string>
<string name="ordered_add_ons_details_info_notice">If renaming an add-on in your web dashboard, please note that previous orders will no longer show that add-on within the app.</string>
<string name="ordered_add_ons_wip_title">View add-ons from your device!</string>
<string name="ordered_add_ons_wip_message">We are working on making it easier for you to see product add-ons from your device! For now, you’ll be able to see the add-ons for your orders. You can create and edit these add-ons in your web dashboard.</string>
<string name="ordered_add_ons_loading_failed_dialog_title">Something went wrong</string>
<string name="ordered_add_ons_loading_failed_dialog_message">Sorry, we couldn\'t load the Order Add-ons right now</string>
<string name="ordered_add_ons_loading_failed_dialog_ok_action">OK</string>
<string name="order_detail_edit_address_details_first_name">First name</string>
<string name="order_detail_edit_address_details_last_name">Last name</string>
<string name="order_detail_edit_address_details_email">Email</string>
<string name="order_detail_edit_address_details_phone">Phone</string>
<string name="order_detail_edit_address_company">Company</string>
<string name="order_detail_edit_address_line1">Address 1</string>
<string name="order_detail_edit_address_line2">Address 2</string>
<string name="order_detail_edit_address_city">City</string>
<string name="order_detail_edit_address_zip">Postal Code</string>
<string name="order_detail_edit_address_state">State</string>
<string name="order_detail_edit_address_country">Country</string>
<string name="order_detail_address_section">Address</string>
<string name="order_detail_shipping_address_section">Shipping Address</string>
<string name="order_detail_billing_address_section">Billing Address</string>
<string name="order_detail_add_customer_note">Add customer note</string>
<string name="order_detail_add_shipping_address">Add shipping address</string>
<string name="order_detail_add_billing_address">Add billing address</string>
<string name="orderdetail_empty_address">No address specified</string>
<string name="order_detail_use_as_billing_address">Use as Billing Address</string>
<string name="order_detail_use_as_shipping_address">Use as Shipping Address</string>
<string name="order_detail_payment_header">PAYMENT TOTALS</string>
<string name="order_detail_custom_amounts_header">CUSTOM AMOUNTS</string>
<!--
Shipping label Refunds
-->
<string name="shipping_label_refund_message">You can request a refund for a shipping label that has not been used to ship a package. It will take at least 14 days to process.</string>
<string name="shipping_label_refund_purchase_date_title">Purchase date</string>
<string name="shipping_label_refund_amount_title">Amount eligible for refund</string>
<string name="shipping_label_refund_button">Refund label (-%1$s)</string>
<string name="shipping_label_refund_success">Refund request was successfully submitted</string>
<string name="shipping_label_refund_progress_message">Your refund is being processed. Please wait…</string>
<string name="shipping_label_refund_expired">Labels older than 30 days cannot be refunded</string>
<!--
Fulfill order
-->
<string name="order_fulfill_title">Review order</string>
<string name="order_fulfill_email_info">If you’ve enabled this setting, the customer will receive a confirmation email once the order is completed</string>
<!--
Print shipping labels
-->
<string name="shipping_label_print_error_message">If there was a printing error when you purchased the label, you can print it again.</string>
<string name="shipping_label_print_disclaimer">If you already used the label on a package, printing and using it again is a violation of our terms of service.</string>
<string name="shipping_label_paper_size">Paper size</string>
<string name="shipping_label_paper_size_options_title">Choose paper size</string>
<string name="shipping_label_print_button">Print shipping label</string>
<string name="shipping_label_print_multiple_button">Print shipping labels</string>
<string name="shipping_label_paper_size_options_info">See label layout and paper size options</string>
<string name="shipping_label_print_info">Don\'t know how to print with your mobile device?</string>
<string name="shipping_label_print_purchase_success">Shipping label purchased!</string>
<string name="shipping_label_print_multiple_purchase_success">Shipping labels purchased!</string>
<string name="shipping_label_print_save_for_later">Save for later</string>
<string name="shipping_label_print_screen_title">Print shipping label</string>
<string name="shipping_label_print_multiple_screen_title">Print shipping labels</string>
<string name="shipping_label_preview_error">Error previewing shipping label</string>
<string name="shipping_label_preview_pdf_app_missing">Unable to preview shipping label. Please install a PDF viewer app and try again.</string>
<string name="shipping_label_paper_size_legal">Legal (8.5 x 14 in)</string>
<string name="shipping_label_paper_size_letter">Letter (8.5 x 11 in)</string>
<string name="shipping_label_paper_size_label">Label (4 x 6 in)</string>
<string name="print_receipt_label_info_step_count_1" translatable="false">1</string>
<string name="print_receipt_label_info_step_count_2" translatable="false">2</string>
<string name="print_receipt_label_info_step_count_3" translatable="false">3</string>
<string name="print_receipt_label_info_step_count_4" translatable="false">4</string>
<string name="print_receipt_label_info_step_count_5" translatable="false">5</string>
<string name="print_receipt_label_info_step_count_6" translatable="false">6</string>
<string name="print_receipt_label_info_step_count_7" translatable="false">7</string>
<string name="print_receipt_label_info_step_1">Make sure the Print Service Plugin for yor printer is installed.</string>
<string name="print_receipt_label_info_step_2">Enable bluetooth or Wifi connection on your printer.</string>
<string name="print_receipt_label_info_step_3">When selecting "Print receipt" after accepting payment, replace "Save as PDF" with "All printers", and search for new printer.</string>
<string name="print_receipt_label_info_step_4">Pair and connect the printer to your mobile when prompted.</string>
<string name="print_receipt_label_info_step_5">Adjust paper size as needed, and select "Print" when ready to print the receipt.</string>
<string name="print_receipt_label_info_step_6">If printing is not available, you can always save your receipt as PDF and send it by email to print it from another device.</string>
<string name="print_receipt_label_info_step_7">If you are experiencing issues printing from your device, contact customer support for your printer.</string>
<string name="print_shipping_label_info_title">Print with your device</string>
<string name="print_shipping_label_format_options_title">Label format options</string>
<string name="print_shipping_label_info_step_count_1" translatable="false">1</string>
<string name="print_shipping_label_info_step_count_2" translatable="false">2</string>
<string name="print_shipping_label_info_step_count_3" translatable="false">3</string>
<string name="print_shipping_label_info_step_count_4" translatable="false">4</string>
<string name="print_shipping_label_info_step_count_5" translatable="false">5</string>
<string name="print_shipping_label_info_step_1">Make sure your printer and your device are connected to the <b>same WiFi networks</b></string>
<string name="print_shipping_label_info_step_2">After selecting <b>\"Print shipping label\"</b>, you may have to select and add a printer if you haven\'t printed from this device before.</string>
<string name="print_shipping_label_info_step_3">You can select your device\'s <b>default print service</b> or install your <b>printer\'s brand app</b> (this should appear as a recommended option)</string>
<string name="print_shipping_label_info_step_4">You might have to <b>configure WiFi printing directly on the printer itself.</b> Make sure the printer firmware is updated and see your printer documentation for instructions.</string>
<string name="print_shipping_label_info_step_5">If you are still experiencing issues printing from your device, you can <b>save your label as PDF</b> and send it by email to print it from another device.</string>
<string name="shipping_label_reprint_expired_message">Label images older than 180 days are deleted by our technology partners for general security and data privacy concerns.</string>
<!--
Create shipping labels
-->
<string name="shipping_label_more_information_title">WooCommerce Shipping</string>
<string name="shipping_label_more_information_heading">Save time and money by fulfilling with WooCommerce Shipping</string>
<string name="shipping_label_more_information_message">Cut the post office line by printing shipping labels at home with your mobile device at discounted rates!</string>
<string name="shipping_label_more_information_link">Learn more</string>
<string name="shipping_label_create_title">Create shipping label</string>
<string name="shipping_label_create_packaging_details">Packaging details</string>
<string name="shipping_label_create_packaging_details_description">Select the type of packaging you\’d like to ship your items in</string>
<string name="shipping_label_create_customs">Customs</string>
<string name="shipping_label_create_customs_description">Fill out customs form</string>
<string name="shipping_label_create_customs_done">Customs form completed</string>
<string name="shipping_label_create_carrier_description">Select your shipping carrier and rates</string>
<string name="shipping_label_create_payment_description">Add a new credit card</string>
<string name="shipping_label_create_order_summary">Shipping label order summary</string>
<string name="shipping_label_create_price_subtotal">Subtotal</string>
<string name="shipping_label_create_price_woo_discount">WooCommerce Services discount</string>
<string name="shipping_label_create_price_woo_discount_content_description">Learn more about WooCommerce Services discount</string>
<string name="shipping_label_create_price_total">Order total</string>
<string name="shipping_label_create_mark_order_complete">Mark this order as complete and notify the customer</string>
<string name="shipping_label_create_purchase">Purchase shipping label</string>
<string name="shipping_label_create_purchase_progress_title">Purchasing label</string>
<string name="shipping_label_create_purchase_progress_message">Please wait…</string>
<string name="shipping_label_create_purchase_error">Error purchasing the labels</string>
<string name="shipping_label_create_purchase_fulfill_error">Couldn\'t mark the order as complete</string>
<string name="shipping_label_selected_payment_description">Credit card ending in %1$s</string>
<string name="shipping_label_loading_data_progress_title">Fetching your settings</string>
<string name="shipping_label_loading_data_progress_message">Please wait…</string>
<string name="shipping_label_edit_address_name">Name</string>
<string name="shipping_label_edit_address_company">Company</string>
<string name="shipping_label_edit_address_phone">Phone</string>
<string name="shipping_label_edit_address_line1">Address line 1</string>
<string name="shipping_label_edit_address_line2">Address line 2</string>
<string name="shipping_label_edit_address_city">City</string>
<string name="shipping_label_edit_address_state">State</string>
<string name="shipping_label_edit_address_state_search_hint">Filter state</string>
<string name="shipping_label_edit_address_zip">Zip / Postal Code</string>
<string name="shipping_label_edit_address_country">Country</string>
<string name="shipping_label_edit_address_country_search_hint">Filter countries</string>
<string name="shipping_label_edit_address_use_address_as_is">Use address as entered</string>
<string name="shipping_label_edit_data_loading_error">Unable to load the address data</string>
<string name="shipping_label_edit_address_validation_progress_title">Address validation in progress</string>
<string name="shipping_label_edit_address_loading_progress_title">Loading address data</string>
<string name="shipping_label_edit_address_progress_message">Please wait…</string>
<string name="shipping_label_edit_address_validation_error">Address validation failed</string>
<string name="shipping_label_edit_origin_address_error_warning">We were unable to automatically verify the origin address. View it on Google Maps to make sure the address is correct.</string>
<string name="shipping_label_edit_address_error_warning">We were unable to automatically verify the shipping address. View it on Google Maps or try contacting the customer to make sure the address is correct.</string>
<string name="shipping_label_error_address_not_found">Address was not found</string>
<string name="shipping_label_error_address_house_number_missing">House number missing</string>
<string name="shipping_label_error_address_invalid_street">Invalid street</string>
<string name="shipping_label_validation_error_template">We were unable to automatically verify the shipping address: %s</string>
<string name="shipping_label_validation_contact_customer">Contact Customer</string>