-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstrings.xml
More file actions
1449 lines (1386 loc) · 112 KB
/
strings.xml
File metadata and controls
1449 lines (1386 loc) · 112 KB
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">
<!-- App -->
<string name="app_name">CryptoX Wallet</string>
<string name="app_menu_item_accounts">Accounts</string>
<string name="app_menu_item_news">News</string>
<string name="app_menu_item_tokens">NFT</string>
<string name="app_menu_item_more">More</string>
<string name="app_error_general">Unexpected error</string>
<string name="app_error_lib">An unexpected error occurred, please try again</string>
<string name="app_error_encryption">Unexpected cryptography error</string>
<string name="app_error_json">Unexpected json format</string>
<string name="app_import_missing_identities">The file imported did not contain any identities. This indicates a corrupted backup file.</string>
<string name="app_error_wrong_environment">Files exported on Concordium MainNet, TestNet or StageNet are not compatible with the other chains. Please import on the correct chain.</string>
<string name="app_error_keystore">Unexpected keystore error</string>
<string name="app_error_keystore_key_invalidated">Biometrics has been changed and therefore disabled.</string>
<string name="app_error_backend_unknown_host_exception">Cannot connect. Please check the internet connection.</string>
<string name="app_error_backend_connect_exception">Cannot connect. Please check the internet connection.</string>
<string name="app_error_backend_unknown_sockettimeout_exception">Connection to server timed out. Please check the internet connection.</string>
<string name="app_error_backend_internal_server">Cannot establish communication with the server.</string>
<string name="app_error_backend_unknown_error_code">Cannot establish communication with the server.</string>
<string name="app_error_backend_account_does_not_exist">The account does not exist.</string>
<string name="app_error_backend_unknown">Unknown backend error.</string>
<string name="app_gstroke">CCD</string>
<!-- Dialogs -->
<string name="dialog_ok">OK</string>
<string name="dialog_cancel">Cancel</string>
<string name="dialog_yes">Yes</string>
<string name="dialog_no">No</string>
<!-- Main -->
<!-- ***** Common ***** -->
<!-- IdentityView -->
<string name="template_view_identity_expires_on">Expires on %1$s</string>
<string name="view_identity_status_done">Approved</string>
<string name="view_identity_status_pending">Pending</string>
<string name="view_identity_status_error">Error</string>
<string name="view_identity_status_unknown">Unknown</string>
<!-- AccountView -->
<string name="view_account_name_initial">%1$s (Initial)</string>
<!-- Failed -->
<string name="failed_title">Failed</string>
<string name="failed_try_again">Please try again.</string>
<string name="failed_run_recovery_and_try_again">Please run the recovery and try again.</string>
<string name="failed_confirm">Okay</string>
<string name="failed_remove">Remove from the list</string>
<!-- Welcome recover wallet-->
<string name="welcome_recover_title">Import Wallet</string>
<string name="welcome_recover_details">Select a way to import your wallet</string>
<string name="welcome_recover_use_phrase">Seed phrase wallet</string>
<string name="welcome_recover_use_phrase_details">Manually enter or paste all your 24 words in order as it was presented to you</string>
<string name="welcome_recover_import_via_seed_phrase">Import via seed phrase</string>
<string name="welcome_recover_import_via_seed_or_private_key">Import via seed phrase or wallet private key</string>
<string name="welcome_recover_import_via_seed">Import via wallet private key</string>
<string name="welcome_recover_import_via_backup_file">Import via backup file</string>
<string name="welcome_recover_use_file">File wallet</string>
<string name="welcome_recover_use_file_details">Use your exported backup file from your device</string>
<string name="welcome_recover_file_wallet_aware_text">Be aware that you can not create new accounts or identities in your file wallet.</string>
<!-- ***** Auth ***** -->
<!-- Auth -->
<string name="auth_password">Password</string>
<string name="auth_confirm">Continue</string>
<string name="auth_error_password_setup">Failed to setup password</string>
<string name="auth_error_password_not_valid">Password is not valid - minimum length is 6.</string>
<string name="auth_error_passcode_not_valid">Passcode is not valid</string>
<string name="auth_error_passcodes_different">Passcodes do not match. Please try again</string>
<string name="auth_error_passwords_different">Passwords do not match. Please try again</string>
<string name="auth_dialog_password_title">Authentication</string>
<string name="auth_dialog_passcode_description">Enter app passcode to continue</string>
<string name="auth_dialog_passcode">Passcode</string>
<string name="auth_dialog_password_description">Enter app password to continue</string>
<string name="auth_dialog_password">Password</string>
<!-- Auth Login -->
<string name="auth_login_title">Login</string>
<string name="auth_login_confirm">Continue</string>
<string name="auth_login_info_passcode">Enter Passcode</string>
<string name="auth_login_info_password">Enter Password</string>
<string name="auth_login_passcode_error">Incorrect passcode. Please try again</string>
<string name="auth_login_password_error">Incorrect password. Please try again</string>
<string name="auth_login_biometrics_dialog_title">Authentication</string>
<string name="auth_login_biometrics_dialog_subtitle">Use biometrics to authenticate</string>
<string name="auth_login_biometrics_dialog_cancel_passcode">Use passcode</string>
<string name="auth_login_biometrics_dialog_cancel_password">Use password</string>
<string name="auth_login_seed_error">Error 101: Encryption failed</string>
<!-- Auth Setup-->
<string name="auth_setup_title">Select Passcode</string>
<string name="auth_setup_repeat_title">Repeat Passcode</string>
<string name="auth_setup_info">Set a 6-digit passcode to secure your wallet.</string>
<string name="auth_setup_repeat_info">Repeat a 6-digit passcode to secure your wallet.</string>
<string name="auth_setup_full_password">Use full password instead</string>
<!-- Auth Setup Password-->
<string name="auth_setup_password_title">Select Password</string>
<string name="auth_setup_password_repeat_title">Repeat Password</string>
<string name="auth_setup_password_info">Set a password with at least 6 characters.</string>
<string name="auth_setup_password_repeat_info">Repeat your password to secure your wallet.</string>
<string name="auth_setup_password_use_passcode">Use digit passcode instead</string>
<!-- Auth Setup Biometrics-->
<string name="auth_setup_biometrics_title">Enable Biometrics</string>
<string name="auth_setup_biometrics_info">Enable biometrics for more convenient login.</string>
<string name="auth_setup_biometrics_confirm">Enable Biometrics</string>
<string name="auth_setup_biometrics_cancel">Continue without</string>
<string name="auth_setup_biometrics_dialog_title">Enable biometrics</string>
<string name="auth_setup_biometrics_dialog_subtitle">Use biometrics to enable it for this app</string>
<string name="auth_setup_biometrics_dialog_cancel">Cancel</string>
<!-- ***** Identity ***** -->
<!-- Identities overview -->
<string name="identities_overview_title">Identities</string>
<string name="identities_overview_no_identities">You have no identities yet.</string>
<string name="identities_overview_identity_verified_title">Identity verified</string>
<string name="identities_overview_identity_verified_message">%1$s has been verified by the identity provider. You can now start using the identity to create accounts</string>
<string name="identities_overview_identity_create_account_now">Create account now</string>
<string name="identities_overview_identity_later">Later</string>
<string name="identities_overview_identity_rejected_title">Identity rejected</string>
<string name="identities_overview_identity_rejected_text">Your identity request was unfortunately rejected with the following reason:\n\n%1$s\n\nRejected identity requests cannot be resolved, so the rejected identity will be discarded, after dismissing this notification.\n\nDo you want to make another request now?</string>
<string name="identities_overview_identity_request_another">Request another identity</string>
<!-- Identity details -->
<string name="identity_details_title">Identity</string>
<string name="identity_details_attribute_header">Identity data</string>
<string name="identity_details_change_name_popup_title">Change identity name</string>
<string name="identity_details_change_name_popup_subtitle">You can enter the new identity name here.</string>
<string name="identity_details_change_name_hint">Enter name</string>
<!-- Identity create -->
<string name="identity_create_default_name_prefix">Identity</string>
<!-- Identity provider list -->
<string name="identity_provider_list_title">Identity verification</string>
<string name="identity_provider_list_details">Select a provider to verify your identity</string>
<!-- Identity Provider Webview -->
<string name="identity_provider_webview_title">Identity verification</string>
<!-- Identity confirmed -->
<string name="identity_confirmed_title">Identity verification</string>
<string name="identity_confirmed_notice_submitted_title">Verification request submitted</string>
<string name="identity_confirmed_notice_submitted_details">Your request has been submitted with the identity provider. Now you just have to wait for a moment for them to process your submission. Once your identity is verified, you can create your first account</string>
<string name="identity_confirmed_notice_approved_title">Verification request approved!</string>
<string name="identity_confirmed_notice_approved_details">Your request has been approved by identity provider. Now you can create an account and start using your wallet</string>
<string name="identity_confirmed_notice_got_it">Got it</string>
<string name="identity_confirmed_confirm">Continue</string>
<string name="identity_confirmed_failed">Identity issuance failed</string>
<string name="identity_confirmed_finish_button">@string/finish</string>
<string name="identity_confirmed_create_new_account">Create new account</string>
<!-- Identity attributes -->
<string name="identity_attribute_first_name">First name</string>
<string name="identity_attribute_last_name">Last name</string>
<string name="identity_attribute_sex">Sex</string>
<string name="identity_attribute_birth_date">Date of birth</string>
<string name="identity_attribute_country_residence">Country of residence</string>
<string name="identity_attribute_nationality">Nationality</string>
<string name="identity_attribute_doc_type">Identity document type</string>
<string name="identity_attribute_doc_no">Identity document number</string>
<string name="identity_attribute_doc_issuer">Identity document issuer</string>
<string name="identity_attribute_doc_issued_at">ID valid from</string>
<string name="identity_attribute_doc_expires_at">ID valid to</string>
<string name="identity_attribute_national_id_no">National ID number</string>
<string name="identity_attribute_tax_id_no">Tax ID number</string>
<string name="identity_attribute_lei">LEI-code</string>
<string name="identity_attribute_legal_name">Legal name</string>
<string name="identity_attribute_legal_country">Legal jurisdiction country</string>
<string name="identity_attribute_business_no">Business Number</string>
<string name="identity_attribute_registration_auth">Registration authority</string>
<string name="identity_attribute_sex_not_known">Not known</string>
<string name="identity_attribute_sex_male">Male</string>
<string name="identity_attribute_sex_female">Female</string>
<string name="identity_attribute_unavailable">Unavailable</string>
<string name="identity_attribute_doc_type_passport">Passport</string>
<string name="identity_attribute_doc_type_national_id">National id card\"</string>
<string name="identity_attribute_doc_type_driving_license">Driving license</string>
<string name="identity_attribute_doc_type_immigration_card">Immigration card</string>
<string name="identity_attribute_na">NA</string>
<!-- ***** Account ***** -->
<!-- Accounts overview -->
<string name="accounts_overview_title">Accounts</string>
<string name="accounts_overview_create_identity">Verify identity</string>
<string name="accounts_overview_create_account">Create account</string>
<string name="accounts_overview_wallet_total">Wallet total</string>
<string name="accounts_overview_balance_at_disposal">at disposal</string>
<string name="total_amount">Total amount</string>
<string name="unshielding_notice_title">Transaction Shielding is going away</string>
<string name="unshielding_notice_message">We recommend that you unshield any Shielded balance today.</string>
<string name="unshielding_notice_unshield">Unshield assets</string>
<string name="accounts_list_title">Your Accounts</string>
<string name="accounts_list_create_new_account">Create new account</string>
<!-- New account name -->
<string name="new_account_name_title">Create new account</string>
<string name="new_account_set_name">Set account name</string>
<string name="new_account_name_info">What would you like to name your account?</string>
<string name="new_account_name_continue">Continue</string>
<string name="new_account_name_account_name_hint">Account name</string>
<!-- Identity overview -->
<!-- New account identity -->
<string name="new_account_identity_title">Add Identity Data</string>
<!-- New account setup -->
<string name="new_account_setup_confirm_submit">Create account</string>
<string name="new_account_identity_attributes_error_max_accounts_title">Error</string>
<string name="new_account_identity_attributes_error_max_accounts">Ooops! This identity already has too many accounts submitted to the chain. Please select another identity to continue.</string>
<string name="new_account_identity_attributes_error_max_accounts_alt">You already have the maximum number of accounts for this identity.</string>
<!-- New account created -->
<string name="new_account_confirmed_title">Account Creation</string>
<string name="new_account_confirmed_confirm">Done</string>
<string name="new_account_confirmed_failed">Account creation failed</string>
<string name="new_account_confirmed_info">Account submitted. Once it\'s finalized, you can use the account from the account overview.</string>
<!-- Account details -->
<string name="account_details_error_msg">Account creation failed in the process of creation.</string>
<string name="account_details_pending_msg">Account creation in progress.\n\nYou can start using this account once it’s been finalized on the chain.</string>
<string name="account_details_title">Account details</string>
<string name="account_details_transfers_title">Activity</string>
<string name="account_details_identity_data_title">Identity Data</string>
<string name="account_details_buy">Buy</string>
<string name="account_details_send">Send</string>
<string name="account_details_receive">Receive</string>
<string name="account_details_address">Address</string>
<string name="account_details_earn">Earn</string>
<string name="account_details_activity">Activity</string>
<string name="account_details_earn_rewards">Earn rewards</string>
<string name="account_details_retry_button">Retry account creation</string>
<string name="account_details_remove_button">Remove account from wallet</string>
<string name="account_details_fee">with fee</string>
<string name="account_details_header_today">Today</string>
<string name="account_details_header_yesterday">Yesterday</string>
<string name="account_details_gtu_drop_header">TESTNET CCD DROP</string>
<string name="account_details_gtu_drop_info">On the Concordium Testnet, you can request 20000CCD to be deposited to an account to get you started.</string>
<string name="account_details_gtu_drop_button">Request 20000CCD</string>
<string name="account_details_shielded_transaction_fee">Shielded transaction fee</string>
<string name="account_delegation_pending">Configure delegation</string>
<string name="account_baking_pending">Configure validator</string>
<string name="account_smart_contract_update_pending">Invoke smart contract</string>
<string name="account_details_empty_identity_data">This account has no identity data revealed.</string>
<string name="account_details_title_regular_balance">%1$s balance</string>
<string name="account_details_total_balance">%1$s CCD</string>
<string name="account_details_balance_at_disposal">%1$s CCD at disposal</string>
<string name="account_details_change_name_popup_title">Change account name</string>
<string name="account_details_change_name_popup_subtitle">You can enter the new account name here.</string>
<string name="account_details_change_name_popup_cancel">Cancel</string>
<string name="account_details_change_name_popup_save">Save</string>
<string name="account_details_change_name_hint">Enter name</string>
<string name="account_details_raw_metadata">Show raw metadata</string>
<string name="account_details_ccd_token">CCD token</string>
<string name="account_details_tooltip_title">Total CCD balance</string>
<string name="account_details_tooltip_description">This balance shows your total CCD in this account. It does not include any other tokens.</string>
<string name="account_token_details_decimals">0 – %1$s</string>
<!-- Account settings -->
<string name="account_settings_title">Account settings</string>
<string name="account_settings_name_changed">Account name changed</string>
<!-- Account release schedule and filters -->
<string name="account_transaction_filters_title">%1$s Transfer filters</string>
<!-- Account QR -->
<string name="account_qr_code_title">Receive funds</string>
<string name="account_qr_code_share">Share</string>
<string name="account_qr_code_copy">Copy</string>
<string name="account_qr_code_copied">Address copied</string>
<string name="account_qr_code_to_account">to %1$s</string>
<!-- ***** Transaction / Send funds ***** -->
<!-- Send funds -->
<string name="send_funds_title">Send Funds</string>
<!-- Send funds confirmed -->
<string name="send_funds_confirmed_failed">Transaction error</string>
<!-- Transaction details -->
<string name="transaction_title">Transaction</string>
<string name="transaction_status">Status</string>
<string name="transaction_details_title">Transaction details</string>
<string name="transaction_details_date">Date</string>
<string name="transaction_details_memo">Memo</string>
<string name="transaction_details_from_address">From address</string>
<string name="transaction_details_to_address">To address</string>
<string name="transaction_details_transaction_hash">@string/transaction_hash</string>
<string name="transaction_details_block_hash">Block hash</string>
<string name="transaction_details_block_hash_submitted">Submitted</string>
<string name="transaction_details_block_hash_failed">Failed</string>
<string name="transaction_details_origin">Origin</string>
<string name="transaction_details_details">Details</string>
<string name="transaction_details_value_copied">Copied full value of %1$s</string>
<string name="submission_id_value_copied">Submission ID copied to clipboard</string>
<string name="transaction_details_copy_value">Copy value</string>
<string name="transaction_details_view_on_explorer">View transaction on block explorer</string>
<!-- ***** More ***** -->
<!-- More overview -->
<string name="settings_overview_title">Wallet Settings</string>
<string name="settings_overview_item_unshielding">Funds to Unshield</string>
<string name="settings_overview_item_identities">Identities</string>
<string name="settings_overview_item_address_book">Address Book</string>
<string name="settings_overview_item_export">Export</string>
<string name="settings_overview_item_import">Import</string>
<string name="settings_overview_item_about">About</string>
<string name="settings_overview_item_analytics">Analytics</string>
<string name="settings_overview_item_nft">NFT</string>
<string name="settings_overview_item_notifications">Notifications</string>
<string name="settings_overview_item_alter_password"><![CDATA[Update Passcode & Biometrics]]></string>
<string name="settings_overview_item_developer_options">Developer Options</string>
<string name="settings_overview_item_clear_wallet_connect">Clear WalletConnect</string>
<string name="settings_overview_item_recover">Recovery</string>
<string name="settings_overview_erase_data">Erase Data</string>
<string name="settings_overview_erase_data_confirmation_title">Erasing all data</string>
<string name="settings_overview_erase_wallet_confirmation_message">
All your wallets will be erased from this device.
However, you can restore them at any time using the secret recovery phrase or the backup file.
Proceed with erasing?
</string>
<string name="settings_overview_erase_data_continue">@string/dialog_yes</string>
<string name="settings_overview_erase_data_erased">All the data has been successfully erased</string>
<string name="settings_overview_reveal_seed_phrase">Seed Phrase</string>
<string name="settings_overview_reveal_seed">Wallet Private Key</string>
<!-- Export -->
<string name="export_title">Export</string>
<string name="export_confirm">Export</string>
<string name="export_continue">Continue</string>
<string name="export_error_file">Could not write to file.</string>
<string name="export_description_one">Here you can export your identities, accounts and the address book.</string>
<string name="export_description_two">The exported data includes private keys which give access to your identities and accounts. For this reason the data will be encrypted under a password that you will be asked to select during the process. It is important that you store the password safely and securely. The password will be needed for access to exported data (e.g. if you want to import an account into another CCD wallet).</string>
<string name="export_setup_password_title">Enter Export Password</string>
<string name="export_setup_password_repeat_title">Re-enter Export Password</string>
<string name="export_setup_password_info">Select an export password.\nThe password will be needed during import.</string>
<string name="export_setup_password_repeat_info">Re-enter your export password.</string>
<string name="export_password">Export Password</string>
<string name="export_error_entries_different">Entries do not match! Please try again.</string>
<string name="export_error_password_not_valid">Password is not valid - minimum length is 6.</string>
<string name="export_error_password_setup">Failed to setup password</string>
<string name="export_error_account_not_finalised">The following accounts are either failed or not ready on the chain, so they cannot be exported.\n\n</string>
<string name="export_error_account_not_finalised_name">%1$s. %2$s\n</string>
<string name="export_error_account_not_finalised_cancel">Cancel</string>
<string name="export_error_account_not_finalised_continue">Continue</string>
<!-- About -->
<string name="about_title">About</string>
<string name="about_support">Support</string>
<string name="about_support_text">If you encountered a problem, or need help with something, you can reach out to us via <a href="mailto:support@concordium.com?subject=CryptoX">support@concordium.com</a></string>
<string name="about_contact">Website</string>
<string name="about_contact_text">For more info about CryptoX Wallet you can visit <a href="https://concordium.com">concordium.com</a></string>
<string name="about_version">App Version</string>
<string name="about_legal">Legal Information</string>
<string name="about_social_networks">Social</string>
<string name="about_telegram">Telegram button</string>
<string name="about_twitter">X (formerly Twitter) button</string>
<string name="about_discord">Discord button</string>
<string name="about_terms_link"><a href="#terms">Terms and Conditions</a></string>
<string name="about_privacy_link"><a href="https://www.concordium.com/legal/privacy-policy">Privacy policy</a></string>
<!-- Import -->
<string name="import_not_possible_when_using_phrase">File import is not possible when using a secret phrase</string>
<string name="import_importing_progress">Importing…</string>
<string name="import_title">Import</string>
<string name="import_confirm">Okay</string>
<string name="import_error_file">Could not read import file</string>
<string name="import_error_password_or_file_content">Invalid password or import file corrupted</string>
<string name="import_password_title">Export Password</string>
<string name="import_password_info">Enter the password created when exporting the file</string>
<string name="import_password_confirm">Continue</string>
<string name="import_failed_message_template">Import failed\n%1$s</string>
<string name="import_confirmed_title">Import</string>
<string name="import_confirmed_header">Import finished!</string>
<string name="import_confirmed_header_partially">Import partially succeeded</string>
<string name="import_confirmed_info">You have successfully imported:</string>
<string name="import_confirmed_id">ID: </string>
<string name="import_confirmed_accounts">Accounts:</string>
<string name="import_confirmed_address_book">Address Book</string>
<string name="import_confirmed_recipient_accounts">Recipient accounts:</string>
<string name="import_confirmed_state_id_import_failed">ID import failed</string>
<string name="import_confirmed_state_id_import_failed_accounts">Account import failed</string>
<string name="import_confirmed_state_duplicate">(Already existed)</string>
<plurals name="import_confirmed_state_errors">
<item quantity="one">(Imported with %d error)</item>
<item quantity="other">(Imported with %d errors)</item>
</plurals>
<plurals name="import_confirmed_state_recipients_duplicate">
<item quantity="one">(%d recipient account was not imported, as it already existed)</item>
<item quantity="other">(%d recipient accounts were not imported, as they already existed)</item>
</plurals>
<plurals name="import_confirmed_state_recipients_failed">
<item quantity="one">(%d recipient account import failed)</item>
<item quantity="other">(%d recipient account imports failed)</item>
</plurals>
<plurals name="import_confirmed_state_accounts_failed">
<item quantity="one">(%d account import failed)</item>
<item quantity="other">(%d account imports failed)</item>
</plurals>
<string name="import_confirmed_readonly_accounts_header">Accounts found on chain (read only):</string>
<!-- Change Password -->
<string name="alterpassword_title"><![CDATA[Update Passcode & Biometrics]]></string>
<string name="alterpassword_desc">By pressing Continue, you will be guided through setting up a new passcode. You will also get the option of enabling biometrics, or to continue without them.</string>
<string name="alterpassword_confirm">Continue</string>
<!-- ***** Recipient ***** -->
<!-- Select recipient -->
<string name="recipient_list_default_title">Address Book</string>
<string name="recipient_list_select_title">Choose recipient</string>
<string name="recipient_list_search_hint">Search recipients</string>
<string name="recipient_list_search_label">Recipient Address</string>
<string name="recipient_list_continue">Continue</string>
<!-- New recipient -->
<string name="recipient_edit_title">Edit Address</string>
<string name="recipient_new_title">New Recipient</string>
<string name="recipient_name">Recipient name</string>
<string name="recipient_address">Recipient address</string>
<string name="recipient_save_button">Save</string>
<string name="recipient_error_invalid_address">Invalid Address</string>
<!-- Scan QR code -->
<string name="scan_qr_title">Scan QR Code</string>
<string name="scan_qr_permission_camera_rationale">Permission to use the camera is necessary to scan QR codes</string>
<string name="scan_qr_error_invalid_qr_code">Invalid QR code</string>
<string name="valid_special_chars_error_text"><![CDATA[The name can only contain letters, numbers, and these special characters: \"-\", \"_\", \",\", \".\", \"!\", \"?\". The name cannot be empty, or start or end with a space.]]></string>
<string name="valid_special_chars_for_names"><![CDATA[-_, .!?]]></string>
<string name="error_adding_account_duplicate">This account was not added to the address book, as it was already there.</string>
<string name="error_database">You need to uninstall the app, and reinstall it, in order to continue</string>
<string name="error_database_close">Close</string>
<string name="accounts_overview_total_details_disposal">At disposal:</string>
<string name="accounts_overview_total_details_disposal_amount">at disposal</string>
<string name="accounts_overview_total_details_staked">Staked:</string>
<string name="accounts_overview_total_details_delegating">Earning:</string>
<string name="accounts_overview_total_details_cooldown">Cooldown:</string>
<string name="accounts_overview_balance_placeholder">0.00 CCD</string>
<string name="accounts_overview_balance_suffix">CCD</string>
<string name="account_details_menu_release_schedule">Release schedule</string>
<string name="account_details_menu_transfer_filter">Transfer filters</string>
<string name="account_details_menu_change_name">Change account name</string>
<string name="account_details_menu_export_key">Export private key</string>
<string name="account_details_menu_export_transaction_log">Export transaction logs</string>
<string name="account_release_schedule_title">%1$s Release schedule</string>
<string name="account_release_schedule_locked_amount">Locked amount:</string>
<string name="account_release_schedule_release_date">Release date</string>
<string name="account_release_schedule_amount">Amount</string>
<string name="account_release_schedule_copied">Transaction hash copied</string>
<string name="account_release_schedule_copy_title">Transaction hash</string>
<string name="account_release_schedule_no_data">No data</string>
<string name="account_details_baker_id">Validator ID:</string>
<string name="account_read_only">Read only account</string>
<string name="title_create_nft">Mint NFT</string>
<string name="title_transfer_nft">Transfer NFT</string>
<string name="accounts_overview_readonly_desc">This account is imported without keys, and is read only</string>
<string name="transactions_filters_show_rewards">Show rewards</string>
<string name="transactions_filters_show_finalizations_rewards">Show finalizations rewards</string>
<string name="change_password_initial_error">Data could not be decrypted</string>
<string name="change_password_successfully_changed">Passcode was successfully changed</string>
<string name="change_password_final_error">Passcode could not successfully be changed</string>
<!-- Strings used for fragments for navigation -->
<string name="network_comission">Network commission</string>
<string name="acc_address_placeholder">%1$s (%2$s)</string>
<string name="acc_balance_placeholder">Balance: %1$s CCD</string>
<string name="amount">%1$s CCD</string>
<string name="amount_max">up to %1$s CCD</string>
<string name="close_nft">Burn NFT</string>
<string name="unknown_action">Unknown action</string>
<string name="title_add_wallet">Add Wallet</string>
<string name="title_buy_nft">Buy NFT</string>
<string name="title_pause_nft">Unlist from Sale</string>
<string name="title_create_sell_nft">Mint and List for Sale</string>
<string name="title_sell_nft">List for Sale</string>
<string name="title_clean_up_nft">Clean Up NFT</string>
<string name="title_finalize_nft">Auction Approval</string>
<string name="add_memo_title">Add Memo</string>
<string name="add_memo_hint">You can enter an optional memo here</string>
<string name="add_memo_confirm">Add memo to transfer</string>
<string name="send_funds_optional_add_memo">Add memo</string>
<string name="transaction_memo_warning_title">Transaction memos</string>
<string name="transaction_memo_empty_warning_text">You did not provide any memoId. Continue without it?</string>
<string name="transaction_memo_warning_text">Transaction memos are public and visible to everyone on the blockchain. Any memo sent with a transaction is permanent, and will be visible forever, so be careful what you write in the memo.\n\nAdding a memo will increase the transaction fee.</string>
<string name="transaction_memo_warning_dont_show">Don’t show again</string>
<string name="transaction_memo_warning_continue">Continue</string>
<string name="transaction_memo_warning_ok">Okay</string>
<string name="dialog_backup_title">Back-up is important</string>
<string name="dialog_backup_line2">It is necessary to restore your data. Please, make backup.</string>
<string name="backup_suggestion">Please make a back-up of your wallet</string>
<string name="approximate_fee">Approximate fee</string>
<string name="your_owned_nft">Your NFTs</string>
<string name="discover_your_nft">Discover your NFTs</string>
<string name="add_provider_description">To add NFTs from a particular marketplace to your CryptoX wallet you have to enter the marketplace URL and name below.\nExample:</string>
<string name="hint_website_url">Website URL <font color='#FF0000'>*</font></string>
<string name="hint_provider_name">Provider name <font color='#FF0000'>*</font></string>
<string name="delete">Delete</string>
<string name="btn_connect">Connect</string>
<string name="promt_connect_to_this_website">Connect to this website?</string>
<string name="airdrop_connect_description2">By clicking \'Connect\' you confirm the registration for the airdrop campaign at %1$s %2$s</string>
<!-- Wallet Connect -->
<string name="wallet_connect_clear_data_warning_title">Clear WalletConnect</string>
<string name="wallet_connect_clear_data_warning_message">This will clear the local WalletConnect database. You can do this if you experience connection problems with WalletConnect. A restart of the app will be required. Do you want to proceed?</string>
<string name="wallet_connect_database_cleared">Database cleared</string>
<string name="wallet_connect_clear_data_warning_ok">Okay</string>
<string name="wallet_connect_clear_data_warning_cancel">Cancel</string>
<string name="wallet_connect_error_connection_failed">dApp connection failed. Please, refresh the page and try again</string>
<string name="wallet_connect_error_invalid_request">The WalletConnect request is invalid</string>
<string name="wallet_connect_error_cryptography_failed">Unexpected cryptography error</string>
<string name="wallet_connect_error_loading_failed">Could not load the required data</string>
<string name="wallet_connect_error_account_not_found">The WalletConnect request account is not in this wallet</string>
<string name="wallet_connect_error_response_failed">Could not send the response</string>
<string name="wallet_connect_error_tx_submit_failed">Could not submit the transaction</string>
<string name="wallet_connect_error_no_accounts">You must have at least one active account to continue</string>
<string name="wallet_connect_error_no_supported_chains">The wallet does not support the requested chains</string>
<string name="wallet_connect_error_unsupported_methods">The wallet does not support the requested methods</string>
<string name="wallet_connect_error_internal_error">An internal error occurred</string>
<string name="wallet_connect_error_not_seed_phrase_wallet">Only seed phrase wallets support this feature</string>
<string name="wallet_connect_choose_another_account">Choose another account</string>
<string name="wallet_connect_template_session_proposal_review_title">Connect to %1$s?</string>
<string name="wallet_connect_session_proposal_allow">@string/allow</string>
<string name="wallet_connect_session_proposal_decline">@string/decline</string>
<string name="wallet_connect_session_request_sign">@string/sign</string>
<string name="wallet_connect_session_request_decline">@string/decline</string>
<string name="wallet_connect_transaction_request_ccd_amount">CCD amount</string>
<string name="wallet_connect_transaction_request_approximate_fee">@string/approximate_fee</string>
<string name="wallet_connect_transaction_request_show_details">Show details</string>
<string name="wallet_connect_error_transaction_request_stringify_params_no_schema">Can\'t stringify the parameters as there is no schema</string>
<string name="wallet_connect_error_transaction_request_stringify_params_failed">Failed to stringify the parameters</string>
<string name="wallet_connect_template_transaction_request_details">Max energy allowed:\n%1$s\n\nParameters:\n%2$s</string>
<string name="wallet_connect_transaction_request_no_parameters">The call has no parameters</string>
<string name="wallet_connect_transaction_request_no_details">There are no extra details</string>
<string name="wallet_connect_transaction_request_insufficient_funds">Insufficient funds to sign the transaction</string>
<string name="wallet_connect_transaction_submitted_finish">@string/finish</string>
<string name="wallet_connect_transaction_submitted_total_amount">@string/total_amount</string>
<string name="wallet_connect_transaction_submitted_fee">@string/approximate_fee</string>
<string name="wallet_connect_transaction_submitted_hash">@string/transaction_hash</string>
<string name="wallet_connect_transaction_submitted_copy_hash">Copy the hash</string>
<string name="wallet_connect_transaction_submitted_hash_copied">Transaction hash copied</string>
<string name="wallet_connect_transaction_method">Method</string>
<string name="wallet_connect_transaction_receiver">Receiver</string>
<string name="wallet_connect_sign_transaction">Sign transaction</string>
<string name="wallet_connect_signature_request">Signature request</string>
<string name="wallet_connect_signature_request_message">Message</string>
<string name="wallet_connect_signature_request_show_details">Show details</string>
<string name="wallet_connect_template_signature_request_details">Binary message:\n%1$s</string>
<string name="wallet_connect_connecting">Connecting…</string>
<string name="wallet_connect_pending_request_notice">New WalletConnect request is waiting on the home screen</string>
<string name="allow">Allow</string>
<string name="decline">Decline</string>
<string name="sign">Sign</string>
<string name="finish">Finish</string>
<string name="transaction_hash">Transaction hash</string>
<string name="insufficient_funds">Insufficient funds</string>
<string name="transaction_submitted">Transaction submitted!</string>
<string name="cis_tab_tokens">Tokens</string>
<string name="cis_manage">Manage token list</string>
<string name="cis_manage_tokens">Enter a contract index to add tokens.</string>
<string name="cis_manage_token_list">Manage token list</string>
<string name="cis_add_token_title">Add token</string>
<string name="cis_token_details_title">%1$s balance on %2$s</string>
<string name="cis_token_details_balance">Balance</string>
<string name="cis_find_tokens_hint">Search tokens by contract index</string>
<string name="cis_look_for_tokens">Look for tokens</string>
<string name="cis_add_tokens">Add</string>
<string name="cis_add_tokens_continue">Continue</string>
<string name="cis_update_tokens">Apply</string>
<string name="cis_find_tokens_none">This contract has no valid tokens</string>
<string name="cis_find_tokens_error">Invalid contract index</string>
<string name="cis_select_token_title">Choose token</string>
<string name="cis_loading_metadata_progress">Loading metadata…</string>
<string name="cis_search">Search for token ID</string>
<string name="cis_send_continue">Continue</string>
<string name="cis_send_funds">Send funds</string>
<string name="cis_send_funds_confirmation">Confirmation</string>
<string name="cis_send_funds_preview">Preview</string>
<string name="cis_currently_available_amounts">Currently available amounts</string>
<string name="cis_token_balance">%1$s balance</string>
<string name="cis_token_quantity">Quantity</string>
<string name="cis_at_disposal">At disposal</string>
<string name="cis_recipient_placeholder">Select a recipient</string>
<string name="cis_max"><u>Max</u></string>
<string name="cis_send_token">Token:</string>
<string name="cis_send_address">Address</string>
<string name="cis_send_paste_recipient_address">Paste recipient address</string>
<string name="cis_send_or">or</string>
<string name="cis_address_book">Address book</string>
<string name="cis_scan_qr">Scan QR</string>
<string name="cis_add_memo">Add a memo</string>
<string name="cis_memo">Memo</string>
<string name="cis_transaction_send_funds">Transaction: Send funds</string>
<string name="cis_transaction_send_tokens">Transaction: Send tokens</string>
<string name="cis_sender">Sender</string>
<string name="cis_amount">Amount (%1$s):</string>
<string name="cis_token">Token</string>
<string name="cis_token_symbol">Symbol</string>
<string name="cis_token_id">Token ID</string>
<string name="cis_receiver">Receiver</string>
<string name="cis_finish">Close</string>
<string name="cis_transaction_in_progress">Transaction in progress</string>
<string name="cis_transaction_success">You’ve sent</string>
<string name="cis_transaction_fail">Transaction failed to send</string>
<string name="cis_transaction_details">Transaction details</string>
<string name="cis_submit_transaction">Submit transaction</string>
<string name="cis_slider_thumb">Slider thumb</string>
<string name="cis_back">Back</string>
<string name="cis_estimated_fee">Transaction fee ≈ %1$s CCD</string>
<string name="cis_estimated_eur_rate">≈ %1$s EUR</string>
<string name="cis_eur_rate">%1$s EUR</string>
<string name="cis_back_to_list">Back to list</string>
<string name="cis_about_token">About the token</string>
<string name="cis_name_and_icon">Name and icon</string>
<string name="cis_image">Image</string>
<string name="cis_description">Description</string>
<string name="cis_contract_index">Contract index</string>
<string name="cis_contract_index_subindex">Contract index, subindex</string>
<string name="cis_decimals">Decimals</string>
<string name="cis_ownership">Ownership</string>
<string name="cis_owned">Owned</string>
<string name="cis_not_owned">Not owned</string>
<string name="cis_no_tokens_found">No tokens found</string>
<string name="cis_no_tokens_selected">You haven\'t selected any tokens</string>
<string name="cis_tokens_updated">Token list updated</string>
<string name="cis_tokens_updated_details">%1$s hidden from your wallet</string>
<string name="cis_tokens_not_updated">No updates made to token list</string>
<string name="cis_no_collectibles_added">No tokens have been added to this account yet</string>
<string name="cis_delete_token">Don’t show token in wallet</string>
<string name="cis_hide_token">Hide token from account</string>
<string name="cis_hide_token_item">Hide token</string>
<string name="cis_hide_token_title">Hiding a token</string>
<string name="cis_hide_token_body">Are you sure you want to hide %1$s token from your wallet?</string>
<string name="cis_hide_token_confirm">Yes, hide it</string>
<string name="cis_hide_token_cancel">Go back</string>
<string name="cis_delete_dialog_title">Confirm removal</string>
<string name="cis_delete_dialog_content">Delete this from wallet?</string>
<string name="cis_delete_dialog_confirm">Delete</string>
<string name="cis_delete_dialog_cancel">Cancel</string>
<string name="cis_search_balance">Your balance: %1$s</string>
<string name="cis_newly_received_notice_title">You received a new token</string>
<string name="cis_percent_earning">% Earning</string>
<string name="cis_percent">%</string>
<string name="template_cis_newly_received_notice_message">
%1$s has not been listed in your wallet till this transaction.
You can accept it or remove it from the list.
</string>
<string name="cis_newly_received_notice_keep_token">Keep it</string>
<string name="cis_newly_received_notice_remove_token">Remove from the wallet</string>
<string name="ccd_details_description">CCD is the native token of the Concordium blockchain. Its main use cases are the payment of transaction fees, the payment for the execution of smart contracts, payments between users, payments for commercial transactions, staking, and the rewards offered to node operators.</string>
<string name="your_wallet_seed">Your wallet private key</string>
<string name="your_seed_phrase">Your seed phrase</string>
<string name="seed_phrase_incorrect">Incorrect secret recovery phrase. Please verify that each index has the right word.</string>
<string name="copied">Copied</string>
<string name="seed_phrase_recover_title">@string/your_seed_phrase</string>
<string name="seed_phrase_recover_input_explain">Manually enter all your 24 words in order as it was presented to you</string>
<string name="seed_phrase_recover_input_clear_all">Clear all</string>
<string name="seed_phrase_recover_input_clear_below">Clear below</string>
<string name="seed_phrase_try_another_word">Please try another word</string>
<string name="seed_phrase_recover_input_paste">Paste your seed phrase</string>
<string name="seed_recover_title">@string/your_wallet_seed</string>
<string name="seed_recover_input_explain">Please enter your wallet private key exactly how it was presented to you</string>
<string name="seed_recover_input_hint">Wallet private key here</string>
<string name="seed_recover_continue">Continue</string>
<string name="seed_recover_paste">Paste</string>
<string name="seed_recover_clear">Clear</string>
<string name="seed_phrase_recover_process_title">Recover your accounts(s)</string>
<string name="seed_phrase_recover_process_subtitle">Recover your accounts and identities to connect them to your wallet</string>
<string name="seed_phrase_recover_process_scanning">Scanning the Concordium blockchain. Hang on while we find your accounts and identities.</string>
<string name="seed_phrase_recover_process_continue">Recover</string>
<string name="seed_phrase_recover_process_continue_to_wallet">Continue to wallet</string>
<string name="seed_phrase_recover_process_finished">Recovery finished</string>
<string name="seed_phrase_recover_process_partial">Recovery may be partial</string>
<string name="seed_phrase_recover_process_partial_description">There was a problem contacting some identity providers. This means that some identities and accounts may not have been recovered. If you can see that something is missing, you can try to restart the recovery process, or you can try again later by starting the recovery process from the settings menu. The affected identity providers:</string>
<string name="seed_phrase_recover_process_recovered">You have successfully recovered:</string>
<string name="seed_phrase_recover_process_nothing_new">Nothing new was found.</string>
<string name="seed_phrase_recover_process_try_again">Try again</string>
<string name="seed_phrase_recover_process_identities">Identities</string>
<string name="seed_phrase_recover_process_accounts">Accounts</string>
<string name="seed_phrase_recover_process_identity_name_prefix">Identity</string>
<string name="seed_phrase_recover_process_finished_no_accounts">No accounts</string>
<string name="seed_phrase_recover_process_finished_accounts_count">ACCOUNTS: %1$d</string>
<string name="earn_title">Earn</string>
<string name="earn_subtitle">Below are two options for earning rewards on CryptoX Wallet:</string>
<string name="earn_baker_title">Validating</string>
<string name="earn_baker_description">As a validator you participate in the network by validating blocks on the Concordium network. This requires a minimum of %1$s CCD and access to a dedicated node.</string>
<string name="earn_delegation_title">Earn up to <font color='#24D4AB'>6%</font></string>
<string name="earn_delegation_rewarded_title">Get rewarded for staking</string>
<string name="earn_delegation_rewarded_description">Stake your CCD to earn rewards. Rewards can be restaked automatically.</string>
<string name="earn_delegation_options_title">Earn your way</string>
<string name="earn_delegation_options_description">You can delegate to an open pool of your choice, or stake using passive delegation.</string>
<string name="earn_delegation_update_title">Update with ease</string>
<string name="earn_delegation_update_description">Your stake can be modified at any time. If you decrease the amount or stop the delegation a cool-down period of [ X] days applies.</string>
<plurals name="earn_delegation_update_description">
<item quantity="one">Your stake can be modified at any time. If you decrease the amount or stop the delegation a cool-down period of %d day applies</item>
<item quantity="other">Your stake can be modified at any time. If you decrease the amount or stop the delegation a cool-down period of %d days applies</item>
</plurals>
<string name="start_earning_button">Start earning</string>
<string name="read_more_button">Read more</string>
<string name="earn_baker_button">Or become a validator (advanced)</string>
<string name="earn_notice">Estimated rewards are based on past results. Actual returns may vary.</string>
<string name="earn_single_account_notice">Please note, a single account cannot both be a validator and delegator but it is possible to stop one and change to the other.</string>
<!-- Delegation intro -->
<string name="delegation_intro_flow_title">Delegation</string>
<string name="delegation_intro_flow_learn_about">Learn about earning</string>
<string name="delegation_intro_subtitle1">Delegation</string>
<string name="delegation_intro_subtitle2">Delegation models</string>
<string name="delegation_intro_subtitle3">Validator pools</string>
<string name="delegation_intro_subtitle4">Passive delegation</string>
<string name="delegation_intro_subtitle5">Pay days</string>
<string name="delegation_intro_subtitle6">Lock-in and cooldowns</string>
<string name="delegation_intro_subtitle7">The status page</string>
<string name="delegation_update_subtitle1">Updating your delegation</string>
<string name="delegation_update_subtitle2">Pay day updates</string>
<string name="delegation_update_subtitle3">Cooldowns</string>
<string name="delegation_remove_subtitle1">Stop your delegation</string>
<string name="delegation_remove_description">
Stopping your delegation is subject to a cooldown period, in which the stake cannot be spent or transferred.
\n\n
At the end of the cooldown period, the delegated amount is unlocked on your public balance, and
the funds will be at disposal again.
</string>
<string name="delegation_remove_button">Stop staking</string>
<string name="delegation_validation_go_back_button">Go back</string>
<string name="delegation_validation_continue_button">Continue</string>
<string name="delegation_status_title">Earn</string>
<string name="delegation_status_content_empty_title">This account is not currently delegating any CCDs.</string>
<string name="delegation_status_content_empty_desc">This account has no delegation registered. You can register a delegation with the button below.</string>
<string name="delegation_status_continue">Continue</string>
<string name="delegation_status_update">Update current delegation</string>
<string name="delegation_status_stop">Stop delegation</string>
<string name="delegation_status_added_to_delegation_amount">Added to delegation amount</string>
<string name="delegation_status_at_disposal">At disposal</string>
<string name="delegation_status_waiting_to_finalize_title">Waiting for transaction to finalize.</string>
<string name="delegation_status_waiting_to_finalize">Waiting for transaction to finalize</string>
<string name="delegation_status_new_amount">New delegation amount</string>
<string name="delegation_status_effective_time">%1$s at %2$s</string>
<string name="delegation_status_pool_deregistered">This pool has been deregistered, and will stop validating on</string>
<string name="delegation_register_delegation_title">Earn</string>
<string name="delegation_register_staking_mode">Staking mode</string>
<string name="delegation_update_delegation_title">Update delegation</string>
<string name="delegation_update_delegation_button">Update delegation</string>
<string name="delegation_update_delegation_success">Your delegation is updated</string>
<string name="delegation_remove_delegation_title">Earn</string>
<string name="delegation_update_delegation_transaction_title">Transaction: Update delegation</string>
<string name="delegation_status_content_registered_title">Your delegation is registered</string>
<string name="delegation_status_content_registered_button">Submit delegation</string>
<string name="delegation_status_content_registered_success">You are delegating</string>
<string name="delegation_status_content_delegating_account">Delegating account</string>
<string name="delegation_status_content_delegation_amount">Delegation amount</string>
<string name="delegation_status_content_target_pool">Target</string>
<string name="delegation_status_content_rewards_will_be">Rewards will be</string>
<string name="delegation_status_content_take_effect_on">The following changes will take effect on</string>
<string name="delegation_status_content_delegation_will_be_stopped">The delegation will be stopped, and the delegation amount will be unlocked on the public balance of the account.</string>
<string name="delegation_status_content_inactive_stake">Inactive Stake</string>
<string name="delegation_status_content_inactive_stake_description">You don’t receive rewards from this part of stake now, this amount will be at disposal after cooldown period.</string>
<string name="delegation_status_content_cooldown_time">Cooldown time:</string>
<string name="delegation_register_delegation_intro">Delegate to an open pool of your choice, or stake your CCD using passive delegation.</string>
<string name="delegation_register_delegation_desc">If you don\'t already know which validator pool you want to delegate an amount to, you can look on <a href="https://ccdscan.io/staking">ccdscan.io/staking</a></string>
<string name="delegation_register_delegation_desc_testnet">If you don\'t already know which validator pool you want to delegate an amount to, you can look on <a href="https://testnet.ccdscan.io/staking">testnet.ccdscan.io/staking</a></string>
<string name="delegation_register_delegation_desc_passive">Passive delegation is an alternative to delegation to a specific validator pool that has lower rewards. With passive delegation you do not have to worry about the uptime or quality of a validator node.\n\nFor more info you can visit <a href="https://docs.concordium.com/en/mainnet/docs/protocol/concepts-delegation.html">docs.concordium.com</a></string>
<string name="delegation_register_delegation_pool_id_hint">Enter validator pool ID</string>
<string name="delegation_register_delegation_pool_id_hint_update">Optional: New validator pool ID</string>
<string name="delegation_update_delegation_pool_id_baker">Current target: Validator id %1$s</string>
<string name="delegation_update_delegation_pool_id__passive">Current target: Passive </string>
<string name="delegation_register_delegation_pool_baker">Validator pool</string>
<string name="delegation_register_delegation_pool_targeted">Targeted delegation</string>
<string name="delegation_register_delegation_passive">Passive delegation</string>
<string name="delegation_register_delegation_passive_long">Passive delegation</string>
<string name="delegation_register_delegation_continue">Continue</string>
<string name="delegation_register_delegation_error">Staking mode must be confirmed</string>
<string name="delegation_register_delegation_pool_id_error">Invalid target validator pool ID</string>
<string name="delegation_register_delegation_pool_id_closed">This pool is closed</string>
<string name="delegation_register_delegation_yes_add">Yes, add</string>
<string name="delegation_register_delegation_no_add">No, don\'t add</string>
<string name="delegation_register_delegation_amount_current_amount">Current amounts on your account:</string>
<string name="delegation_register_delegation_amount_balance">Balance</string>
<string name="delegation_register_delegation_amount_available_label">Available for staking</string>
<string name="delegation_register_delegation_amount_delegation">Current delegation</string>
<string name="delegation_register_delegation_amount_enter_amount">Type the amount</string>
<string name="delegation_update_delegation_amount_enter_amount">Optional: Type the new amount</string>
<string name="delegation_register_delegation_amount_locked">Amount locked</string>
<string name="delegation_register_delegation_amount_insufficient_error">@string/insufficient_funds</string>
<string name="delegation_register_delegation_amount_current_pool">Current pool</string>
<string name="delegation_register_delegation_amount_pool_pool">Pool limit</string>
<string name="delegation_register_delegation_amount_estimated_transaction_fee">Estimated transaction fee: Ͼ%1$s</string>
<string name="delegation_register_delegation_restake_rewards">Restake rewards</string>
<string name="delegation_register_delegation_amount_do_you_want">Automatically reinvest rewards to compound your staking returns over time.</string>
<string name="delegation_register_delegation_amount_continue">Continue</string>
<string name="delegation_register_delegation_minimum">Minimum stake: Ͼ%1$s</string>
<string name="delegation_register_delegation_maximum">Current maximum: Ͼ%1$s</string>
<string name="delegation_register_delegation_not_enough_funds">@string/insufficient_funds</string>
<string name="delegation_register_delegation_not_enough_funds_for_fee">Insufficient funds at disposal to pay the fee</string>
<string name="delegation_register_delegation_pool_limit_will_be_breached">Pool limit will be breached</string>
<plurals name="delegation_register_delegation_confirmation_desc">
<item quantity="one">This will lock your delegation amount. Amount is released after %d day from the time you remove or decrease your delegation.</item>
<item quantity="other">This will lock your delegation amount. Amount is released after %d days from the time you remove or decrease your delegation.</item>
</plurals>
<plurals name="delegation_register_delegation_confirmation_desc_update">
<item quantity="one">You are about to submit a delegation transaction that lowers your delegation amount. It will take effect after %d day.</item>
<item quantity="other">You are about to submit a delegation transaction that lowers your delegation amount. It will take effect after %d days.</item>
</plurals>
<string name="delegation_register_delegation_confirmation_receipt_title">Transaction: Register delegation</string>
<string name="delegation_register_delegation_confirmation_receipt_account_to_delegate_from">Account to delegate from</string>
<string name="delegation_register_delegation_confirmation_receipt_amount_to_delegate">Amount (CCD):</string>
<string name="delegation_register_delegation_confirmation_receipt_target_pool">Target</string>
<string name="delegation_register_delegation_confirmation_receipt_rewards_will_be">Rewards will be</string>
<string name="delegation_register_delegation_reduce_warning_title">Important</string>
<string name="delegation_register_delegation_reduce_warning_content">Reducing your stake is subject to a cooldown period, in which the stake cannot be spent or transferred</string>
<string name="delegation_register_delegation_reduce_warning_cancel">Let me change my amount</string>
<string name="delegation_register_delegation_reduce_warning_ok">That’s fine</string>
<string name="delegation_no_changes_title">Notice</string>
<string name="delegation_no_changes_message">Your transaction contains no changes compared to the current delegation.</string>
<string name="delegation_no_changes_ok">Okay</string>
<string name="delegation_amount_zero_title">Important</string>
<string name="delegation_amount_zero_message">Setting your delegated amount to 0 will remove the delegation all together.\n\nDo you want to remove your delegation?</string>
<string name="delegation_amount_zero_continue">Yes. Remove the delegation</string>
<string name="delegation_amount_zero_new_stake">No. Set another value</string>
<string name="delegation_more_than_95_title">Warning</string>
<string name="delegation_more_than_95_message">You are about to lock more than 95% of your total balance in a delegation stake.\n\nIf you don’t have enough unlocked CCD at your disposal, you might not be able to pay future transaction fees.</string>
<string name="delegation_more_than_95_continue">Continue</string>
<string name="delegation_more_than_95_new_stake">Enter new delegation stake</string>
<string name="delegation_select_delegation_title">Warning</string>
<string name="delegation_select_delegation_message">Staking mode not selected</string>
<string name="delegation_select_delegation_continue">Select staking mode</string>
<string name="delegation_select_delegation_later">Later</string>
<string name="delegation_register_delegation_submit_delegation_transaction">Submit delegation transaction</string>
<string name="delegation_register_delegation_close">Close</string>
<string name="delegation_register_delegation_failed_title">Transaction failed</string>
<string name="delegation_register_delegation_failed_message">Your delegation transaction failed:\n\n%1$s\n\nDo you want to try again?</string>
<string name="delegation_register_delegation_failed_try_again">Try again</string>
<string name="delegation_register_delegation_failed_later">Later</string>
<string name="delegation_remove_text">Are you sure you want to remove your delegation?</string>
<string name="delegation_remove_confirm_title">Stop staking</string>
<string name="delegation_remove_confirm_success">You submitted a transaction to stop you staking.</string>
<string name="delegation_remove_account">Account to stop delegating</string>
<string name="delegation_remove_not_enough_funds_title">Warning</string>
<string name="delegation_remove_not_enough_funds_message">You don\'t have any funds on your balance to pay for the fee.</string>
<string name="delegation_remove_not_enough_funds_ok">Okay</string>
<string name="delegation_notice_title">Notice</string>
<string name="delegation_notice_message">Once your transaction has successfully finalized, the delegation will take effect from the next pay day.</string>
<plurals name="delegation_notice_message_decrease">
<item quantity="one">Your decrease of the delegation amount will take effect at the next pay day after a cooldown of %d day.\n\nOnce the transaction has finalized, you can see the time of the release on the delegation status screen.</item>
<item quantity="other">Your decrease of the delegation amount will take effect at the next pay day after a cooldown of %d days.\n\nOnce the transaction has finalized, you can see the time of the release on the delegation status screen.</item>
</plurals>
<string name="delegation_notice_message_locked">Once your transaction has successfully finalized, the delegation will take effect from the next pay day.</string>
<plurals name="delegation_notice_message_remove">
<item quantity="one">Your delegation will stop at the next pay day after a cooldown of %d day.\n\nOnce the transaction has finalized, you can see the estimated time on the delegation status screen.</item>
<item quantity="other">Your delegation will stop at the next pay day after a cooldown of %d days.\n\nOnce the transaction has finalized, you can see the estimated time on the delegation status screen.</item>
</plurals>
<string name="delegation_notice_ok">Okay</string>
<string name="delegation_amount_too_large_notice_title">Current delegation amount too large</string>
<string name="delegation_amount_too_large_notice_message">Your current delegation amount will breach the new pool’s limits. To delegate to this pool you must first lower or stop your delegation and then wait for the cooldown to pass.</string>
<string name="delegation_amount_too_large_notice_cancel">Cancel</string>
<string name="delegation_amount_too_large_notice_stop">Stop current delegation</string>
<string name="delegation_amount_too_large_notice_lower">Lower delegation amount and stay with current pool</string>
<string name="delegation_amount_too_large_while_in_cooldown">Your delegation amount is too large for this pool.</string>
<!-- Validator intro -->
<string name="baker_intro_flow_title">Learn about validation</string>
<string name="baker_intro_subtitle1">Become a validator</string>
<string name="baker_intro_subtitle2">The node</string>
<string name="baker_intro_subtitle3">Opening a pool</string>
<string name="baker_intro_subtitle4">Suspension</string>
<string name="baker_intro_notice">NOTE: A single account cannot both be a validator and delegator, but it is possible to stop one and change to the other.</string>
<string name="baker_registration_title">Register validator</string>
<string name="baker_registration_metadata_title">Metadata</string>
<string name="baker_registration_validator_keys_title">Validator keys</string>
<string name="baker_registration_pool_title">Commissions</string>
<string name="baker_registration_open_pool_title">Opening a pool</string>
<string name="baker_start_validation_button">Start validating</string>
<string name="baker_registration_explain">
You have the option when adding a validator to open a staking pool or not. A staking pool allows others who want to earn rewards to do so without the need to run a node or become a validator themselves.\n\n
To do this they delegate an amount to your staking pool which then increases your total stake and your chances of winning the lottery to bake a block. At each pay day the rewards will be distributed to you and your delegators.\n\n
You can also choose not to open a pool, in which case only your own stake applies toward the lottery. You can always open or close a pool later.
</string>
<string name="baker_pool_settings_explain">When you open your validator as a pool, you earn commissions of stake delegated to your pool from other accounts:</string>
<string name="baker_pool_settings_fee_explain">Transaction fee commission</string>
<string name="baker_pool_settings_baking_explain">Block reward commission</string>
<string name="baking_commission_rate_error_transaction_not_in_range">Transaction fee is out of specified range</string>
<string name="baking_commission_rate_error_baking_not_in_range">Validator reward is out of specified range</string>
<string name="baking_pool_range_min">Min:\n%1$s%%</string>
<string name="baking_pool_range_max">Max:\n%1$s%%</string>
<string name="baker_registration_pool_options_title">Open for delegation</string>
<string name="baker_registration_open">Open</string>
<string name="baker_registration_close">Closed for new</string>
<string name="baker_registration_continue">Continue</string>
<string name="baker_registration_export">Export validator keys</string>
<string name="baker_registration_export_explain">Your new validator keys have been generated. Before you can continue, you must export and save them. The keys will have to be added to the validator node.</string>
<string name="baker_registration_export_election_verify_key">Election verify key</string>
<string name="baker_registration_export_signature_verify_key">Signature verify key</string>
<string name="baker_registration_export_aggregation_verify_key">Aggregation verify key</string>
<string name="baker_registration_export_notice_title">Notice</string>
<string name="baker_registration_export_notice_message">This is your only chance to export and save the keys.\n\nThey cannot be recreated, so you will have to generate new keys and register them with a transaction, if you lose these.</string>
<string name="baker_registration_export_notice_ok">Okay</string>
<string name="baker_registration_commission_percent">%</string>
<string name="baker_registration_open_title">Add validator</string>
<string name="baker_registration_open_explain">You can choose to add a URL with metadata about your validator. Leave it blank if you don’t have any.</string>
<string name="baker_registration_open_read_more">You can read more about the metadata URL on <a href="https://docs.concordium.com/en/mainnet/docs/mobile-wallet/add-baker-mw.html">docs.concordium.com</a></string>
<string name="baker_registration_open_continue">Continue</string>
<string name="baker_registration_open_url_hint">Enter metadata URL</string>
<string name="baker_registration_open_url_invalid">Please enter a valid HTTP or HTTPS URL</string>
<string name="baker_status_title">Validation</string>
<string name="baker_status_register_baker">Register validator</string>
<string name="baker_status_no_baker_title">This account has no validator registered.</string>
<string name="baker_status_no_baker">This account has no validator registered. You can register a validator with the button below.</string>
<string name="baker_status_change_baking_status">Change validating status</string>
<string name="baker_status_baker_waiting_title">Waiting for validator transaction to finalize.</string>
<string name="baker_status_baker_waiting">Waiting for transaction to finalize.</string>
<string name="baker_status_baker_registered_title">Your validator is registered</string>
<string name="baker_status_baker_account">Validator account</string>
<string name="baker_status_baker_stake">Validator stake</string>
<string name="baker_status_baker_id">Validator ID</string>
<string name="baker_status_baker_rewards_will_be">Rewards will be</string>
<string name="baker_status_baker_added_to_stake">Added to stake</string>
<string name="baker_status_baker_at_disposal">Added to disposable amount</string>
<string name="baker_status_baker_delegation_pool_status">Delegation pool status</string>
<string name="baker_status_baker_delegation_pool_status_open">Open for delegation</string>
<string name="baker_status_baker_delegation_pool_status_closed">Closed for delegation</string>
<string name="baker_status_baker_delegation_pool_status_closed_for_new">Closed for new delegation</string>
<string name="baker_status_baker_metadata_url">Metadata URL</string>
<string name="baker_registration_amount_title">Register validator</string>
<string name="baker_registration_amount_explain">I want to automatically add my stake rewards to my stake amount.</string>
<string name="baker_registration_amount_current_stake_title">Validator stake</string>
<string name="baker_registration_amount_enter_stake_title">Type the amount you want to stake</string>
<string name="baker_registration_update_amount_title">Update validator stake</string>
<string name="baker_more_than_95_title">Warning</string>
<string name="baker_more_than_95_message">You are about to lock more than 95% of your total balance in a validator stake.\n\nIf you don’t have enough unlocked CCD at your disposal, you might not be able to pay future transaction fees.</string>
<string name="baker_more_than_95_continue">Continue</string>
<string name="baker_more_than_95_new_stake">Enter new validator stake</string>
<string name="baker_registration_update_amount_estimated_transaction_fee_range">Estimated transaction fee:\nϾ%1$s - Ͼ%2$s</string>
<string name="baker_registration_update_amount_estimated_transaction_fee_single">Estimated transaction fee:\nϾ%1$s</string>
<string name="baker_update_enter_new_stake">Enter your new total validator stake</string>
<string name="baker_registration_confirmation_title">Register validator</string>
<string name="baker_registration_confirmation_button">Submit</string>
<string name="baker_registration_confirmation_explain">You are about to submit a register validator transaction that locks some of your funds in a stake. If you want to unlock the stake again, there will be a cooldown period.</string>
<string name="baker_register_confirmation_receipt_title">Transaction: Register validator</string>
<string name="baker_register_confirmation_receipt_account_to_bake_from">Sender account</string>
<string name="baker_register_confirmation_receipt_amount_to_bake">Validator stake</string>
<string name="baker_register_confirmation_receipt_rewards_will_be">Rewards will be</string>
<string name="baker_register_confirmation_receipt_pool_status">Delegation pool status</string>
<string name="baker_register_confirmation_receipt_pool_status_open">Open for delegation</string>
<string name="baker_register_confirmation_receipt_pool_status_closed">Closed for delegation</string>
<string name="baker_register_confirmation_receipt_election_verify_key">Election verify key</string>
<string name="baker_register_confirmation_receipt_signature_verify_key">Signature verify key</string>
<string name="baker_register_confirmation_receipt_aggregation_verify_key">Aggregation verify key</string>
<string name="baker_register_confirmation_receipt_submit_transaction">Submit delegation transaction</string>
<string name="baker_register_confirmation_receipt_submit_transaction_fee">Estimated transaction fee</string>
<string name="baker_register_confirmation_receipt_success">Your validation is registered</string>
<string name="baker_register_confirmation_receipt_close">Close</string>
<string name="baker_register_confirmation_receipt_added_to_delegation_amount">Added to stake</string>
<string name="baker_register_confirmation_receipt_at_disposal">Added to disposable amount</string>
<string name="baker_register_confirmation_receipt_meta_data_url">Metadata URL</string>
<string name="baker_register_transaction_failed">Your validating transaction failed:\n\n%1$s\n\nDo you want to try again?</string>
<string name="baker_registration_confirmation_remove_title">Validation</string>
<string name="baker_registration_confirmation_remove_label">Stop validation</string>
<string name="baker_registration_confirmation_remove_button">Stop validation</string>
<string name="baker_registration_confirmation_remove_success">You submitted a transaction to stop your validator</string>
<string name="baker_registration_confirmation_remove_are_you_sure">Are you sure you want to make the following transaction to stop validating?</string>
<string name="baker_registration_confirmation_remove_transaction">Transaction: Stop validating</string>
<string name="baker_registration_confirmation_remove_account_to_stop">Account to stop validating</string>
<string name="baker_registration_confirmation_submit">Submit validator transaction</string>
<string name="baker_registration_confirmation_update_keys_title">Update validator keys</string>
<string name="baker_registration_confirmation_update_keys_button">Update keys</string>
<string name="baker_registration_confirmation_update_keys_success">Validator keys updated</string>
<string name="baker_registration_confirmation_update_pool_title">Update pool settings</string>
<string name="baker_registration_confirmation_update_pool_button">Update pool</string>
<string name="baker_registration_confirmation_update_pool_success">Validator pool is updated</string>
<string name="baker_registration_confirmation_update_stake_title">Update validator stake</string>
<string name="baker_registration_confirmation_update_stake_button">Update stake</string>
<string name="baker_registration_confirmation_update_stake_success">Validator stake is updated</string>
<string name="baker_registration_confirmation_update_keys_transaction_title">Transaction: Update validator keys</string>
<string name="baker_registration_confirmation_update_pool_transaction_title">Transaction: Update pool settings</string>
<string name="baker_registration_confirmation_update_stake_transaction_title">Transaction: Update validator stake</string>
<string name="baker_registration_confirmation_update_affected_account">Affected validator account</string>
<string name="baker_registration_confirmation_update_stake_update">Account to make validator update</string>
<string name="baker_registration_confirmation_update_stake_update_decrease_explain">You are about to submit a transaction that lowers your validator stake. Reducing your stake is subject to a cooldown period, in which the stake cannot be spent or transferred</string>
<string name="baker_update_intro_flow_title">Validating</string>
<string name="baker_update_title">Update validation</string>
<string name="baker_update_button">Update validation</string>
<string name="baker_update_intro_subtitle1">Updating validator settings</string>
<string name="baker_update_intro_subtitle2">Update validator stake</string>
<string name="baker_update_intro_subtitle3" tools:ignore="TypographyFractions">Update pool settings (1/2)</string>
<string name="baker_update_intro_subtitle4">Update pool settings (2/2)</string>
<string name="baker_update_intro_subtitle5">Update validator keys</string>
<string name="baker_remove_intro_flow_title">Validating</string>
<string name="baker_remove_intro_subtitle1">Stop validation</string>
<string name="baker_remove_intro_description">
If you stop validating there is a cooldown period, after which the full stake amount will be unlocked on your public balance.
\n\nIf your pool has any delegators, they will be automatically moved to passive delegation.
\n\nDeregistering the validator does not shut down your node. You must shut down the node in a separate
action if you no longer wish to run a node on the Concordium blockchain.
</string>
<string name="baker_suspend_validation_dialog_title">Important</string>
<string name="baker_suspend_validation_dialog_description">
You are about to self-suspend your validation.\n\nPlease be aware that:\n\n
• Suspended nodes don’t earn rewards\n\n
• Your delegators will stop earning rewards\n\n