-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathstrings.xml
More file actions
1416 lines (1416 loc) · 139 KB
/
Copy pathstrings.xml
File metadata and controls
1416 lines (1416 loc) · 139 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>
<string name="about">Пра праграму</string>
<string name="add_folder">Дадаць папку</string>
<string name="add_item">Дадаць элемент</string>
<string name="an_error_has_occurred">Адбылася памылка.</string>
<string name="apply">Apply</string>
<string name="back">Назад</string>
<string name="cancel">Скасаваць</string>
<string name="copy">Скапіяваць</string>
<string name="copy_password">Скапіяваць пароль</string>
<string name="copy_username">Скапіяваць імя карыстальніка</string>
<string name="delete">Выдаліць</string>
<string name="preview">Preview</string>
<string name="deleting">Deleting…</string>
<string name="do_you_really_want_to_delete">Вы сапраўды хочаце выдаліць? Гэта дзеянне немагчыма адрабіць.</string>
<string name="edit">Рэдагаваць</string>
<string name="edit_folder">Рэдагаваць папку</string>
<string name="email">Электронная пошта</string>
<string name="email_address">Адрас электроннай пошты</string>
<string name="enter_pin">Увядзіце свой PIN-код.</string>
<string name="favorites">Абраныя</string>
<string name="folder">Папка</string>
<string name="folder_created">Створана новая папка.</string>
<string name="folder_deleted">Папка выдалена.</string>
<string name="folder_none">Без папкі</string>
<string name="folders">Папкі</string>
<string name="folder_updated">Папка абноўлена.</string>
<string name="hide">Схаваць</string>
<string name="internet_connection_required_message">Калі ласка, спачатку падлучыце інтэрнэт.</string>
<string name="internet_connection_required_title">Патрабуецца доступ да інтэрнэту</string>
<string name="invalid_master_password">Памылковы асноўны пароль. Паспрабуйце яшчэ раз.</string>
<string name="invalid_pin">Памылковы PIN. Паспрабуйце яшчэ раз.</string>
<string name="launch">Запусціць</string>
<string name="log_in_verb">Увайсці</string>
<string name="log_in_noun">Лагін</string>
<string name="log_out">Выйсці</string>
<string name="logout_confirmation">Вы сапраўды хочаце выйсці?</string>
<string name="remove_account">Выдаліць уліковы запіс</string>
<string name="remove_account_confirmation">Вы сапраўды хочаце выдаліць уліковы запіс?</string>
<string name="account_already_added">Уліковы запіс ужо дададзены</string>
<string name="switch_to_already_added_account_confirmation">Хочаце пераключыцца на яго зараз?</string>
<string name="master_password">Асноўны пароль</string>
<string name="master_password_required">Master password (required)</string>
<string name="new_master_password_required">New master password (required)</string>
<string name="more_options">More options</string>
<string name="my_vault">Маё сховішча</string>
<string name="name">Назва</string>
<string name="item_name_required">Item name (required)</string>
<string name="send_name_required">Send name (required)</string>
<string name="no">Не</string>
<string name="notes">Нататкі</string>
<string name="private_notes">Private notes</string>
<string name="okay">Okay</string>
<string name="password">Пароль</string>
<string name="save">Захаваць</string>
<string name="move">Перамясціць</string>
<string name="saving">Saving…</string>
<string name="settings">Налады</string>
<string name="show">Паказаць</string>
<string name="item_deleted">Элемент быў выдалены.</string>
<string name="submit">Адправіць</string>
<string name="sync">Сінхранізаваць</string>
<string name="uri">URI</string>
<string name="website_uri">Вэб-сайт (URI)</string>
<string name="username">Імя карыстальніка</string>
<string name="validation_field_required">Поле %1$s з\'яўляецца абавязковым.</string>
<string name="you_must_attach_a_file_to_save_this_send">You must attach a file to save this send.</string>
<string name="value_has_been_copied">%1$s скапіяваны</string>
<string name="verify_master_password">Праверка асноўнага пароля</string>
<string name="verify_pin">Праверка PIN</string>
<string name="view">Прагляд</string>
<string name="yes">Так</string>
<string name="account">Уліковы запіс</string>
<string name="account_created_success">Your new account has been created!</string>
<string name="set_bitwarden_as_passkey_manager_description">Set Bitwarden as your passkey provider in device settings.</string>
<string name="avoid_ambiguous_characters">Пазбягаць неадназначных сімвалаў</string>
<string name="bitwarden_autofill_service">Служба аўтазапаўнення Bitwarden</string>
<string name="change_master_password">Змяніць асноўны пароль</string>
<string name="close">Закрыць</string>
<string name="continue_text">Працягнуць</string>
<string name="create_account">Стварыць уліковы запіс</string>
<string name="create_an_account">Create an account</string>
<string name="edit_item">Рэдагаваць элемент</string>
<string name="edit_login">Edit login</string>
<string name="edit_card">Edit card</string>
<string name="edit_identity">Edit identity</string>
<string name="edit_note">Edit note</string>
<string name="edit_ssh_key">Edit SSH key</string>
<string name="enter_email_for_hint">Увядзіце адрас электроннай пошты ўліковага запісу для атрымання падказкі да асноўнага пароля.</string>
<string name="favorite">Абраны</string>
<string name="unfavorite">Unfavorite</string>
<string name="fingerprint">Адбітак пальца</string>
<string name="generate_password">Згенерыраваць пароль</string>
<string name="get_password_hint">Атрымаць падказку для асноўнага пароля</string>
<string name="import_items">Імпартаванне элементаў</string>
<string name="last_sync">Апошняя сінхранізацыя:</string>
<string name="length">Даўжыня</string>
<string name="lock">Заблакіраваць</string>
<string name="fifteen_minutes">15 хвілін</string>
<string name="one_hour">1 гадзіна</string>
<string name="one_minute">1 хвіліна</string>
<string name="four_hours">4 гадзіны</string>
<string name="immediately">Адразу</string>
<string name="vault_timeout_log_out_confirmation_title">Set session timeout to “Log out”?</string>
<string name="vault_timeout_log_out_confirmation_message">After the timeout period, you will be logged out. You will need to be connected to the internet to log in and access your vault again. Your settings and PIN saved on this device won’t change.</string>
<string name="logging_in">Logging in…</string>
<string name="login_to_bitwarden">Увайсці ў Bitwarden</string>
<string name="master_password_confirmation_val_message">Няправільна пацвярджэнне пароля.</string>
<string name="master_password_description">Асноўны пароль — гэта ключ, які выкарыстоўваецца для доступу да вашага сховішча. Ён вельмі важны, таму не забывайце яго. Аднавіць асноўны пароль немагчыма ў выпадку, калі вы яго забылі.</string>
<string name="master_password_hint">Падказка да асноўнага пароля (неабавязкова)</string>
<string name="master_password_hint_description">Падказка да асноўнага пароля можа дапамагчы вам успомніць яго, калі вы яго забылі.</string>
<plurals name="master_password_length_val_message_x">
<item quantity="one">Master password must be at least %d character long.</item>
<item quantity="few">Master password must be at least %d characters long.</item>
<item quantity="many">Master password must be at least %d characters long.</item>
<item quantity="other">Master password must be at least %d characters long.</item>
</plurals>
<string name="min_numbers">Мінімум лічбаў</string>
<string name="min_special">Мінімум спецыяльных сімвалаў</string>
<string name="never">Ніколі</string>
<string name="new_item_created">Створаны новы элемент.</string>
<string name="no_cards">There are no cards in your vault.</string>
<string name="add_card">Add card</string>
<string name="no_logins">There are no logins in your vault.</string>
<string name="no_identities">There are no identities in your vault.</string>
<string name="add_identity">Add identity</string>
<string name="no_notes">There are no notes in your vault.</string>
<string name="add_note">Add note</string>
<string name="add_ssh_key">Add SSH key</string>
<string name="no_text_sends">There are no text Sends in your vault.</string>
<string name="no_file_sends">There are no file Sends in your vault.</string>
<string name="no_ssh_keys">There are no SSH keys in your vault.</string>
<string name="no_archives_title">Archive is empty</string>
<string name="no_archives_message">Fill your archive with items you don’t want to see in search results and autofill suggestions but might need someday.</string>
<string name="new_text_send">New text Send</string>
<string name="new_file_send">New file Send</string>
<string name="no_username">No Username</string>
<string name="options">Параметры</string>
<string name="other">Iншае</string>
<string name="password_generator">Генератар пароляў</string>
<string name="password_hint">Падказка да пароля</string>
<string name="password_hint_alert">We’ve sent you an email with your master password hint.</string>
<string name="password_override_alert">Вы сапраўды хочаце перазапісаць бягучы пароль?</string>
<string name="retype_master_password">Увядзіце асноўны пароль паўторна</string>
<string name="retype_new_master_password_required">Re-type new master password (required)</string>
<string name="retype_master_password_required">Re-type master password (required)</string>
<string name="search_vault">Пошук у сховішчы</string>
<string name="select">Выбраць</string>
<string name="item_details">Падрабязнасці элемента</string>
<string name="item_updated">Элемент абноўлены.</string>
<string name="submitting">Submitting…</string>
<string name="syncing">Syncing…</string>
<string name="syncing_complete">Сінхранізацыя завершана.</string>
<string name="two_step_login">Двухэтапны ўваход</string>
<string name="unlock_with_biometrics">Unlock with Biometrics</string>
<string name="unlock_with_pin">Разблакіраваць PIN-кодам</string>
<string name="verification_code">Праверачны код</string>
<string name="view_login">View login</string>
<string name="view_card">View card</string>
<string name="view_identity">View identity</string>
<string name="view_note">View note</string>
<string name="view_ssh_key">View SSH key</string>
<string name="web_vault">Вэб-сховішча Bitwarden</string>
<string name="items">Элементы</string>
<string name="items_for_uri">Элементы для %1$s</string>
<string name="no_items_for_uri">У вашым сховішчы адсутнічаюць элементы для %1$s.</string>
<string name="no_items_for_vault">У вашым сховішчы адсутнічаюць элементы, якія адпавядаюць \"%1$s\"</string>
<string name="search_for_a_login_or_add_a_new_login">Search for a login or add a new login</string>
<string name="disabled">Адключана</string>
<string name="bitwarden_autofill_service_alert2">The easiest way to add new logins to your vault is from the Bitwarden Autofill Service. Learn more about using the Bitwarden Autofill Service by navigating to the “Settings” screen.</string>
<string name="autofill_noun">Autofill</string>
<string name="autofill_verb">Autofill</string>
<string name="autofill_or_view">Вы сапраўды хочаце аўтазапоўніць або паглядзець гэты элемент?</string>
<string name="search_x" comment="%1$s is a placeholder for the type of item being searched for (e.g. Logins).">Search %1$s</string>
<string name="learn_org">Даведацца пра арганізацыі</string>
<string name="authenticator_app_title">Праграма аўтэнтыфікацыі</string>
<string name="enter_verification_code_app">Увядзіце 6 лічбаў праверачнага кода з вашай праграмы аўтэнтыфікацыі.</string>
<string name="enter_verification_code_email">Увядзіце 6 лічбаў праверачнага кода, які быў адпраўлены на %1$s.</string>
<string name="enter_verification_code_new_device">We don’t recognize this device. Enter the code sent to your email to verify your identity.</string>
<string name="recovery_code_title">Код аднаўлення</string>
<string name="remember">Remember</string>
<string name="remember_email">Remember email</string>
<string name="send_verification_code_again">Адправіць праверачны код яшчэ раз</string>
<string name="verification_email_not_sent">Не атрымалася адправіць ліст для пацвярджэння. Паспрабуйце зноў.</string>
<string name="verification_email_sent">Адпраўлены ліст з пацвярджэннем.</string>
<string name="yubi_key_instruction">To continue, hold your Yubico security key against the back of the device or insert it into your device’s USB port, then touch its button.</string>
<string name="yubi_key_title">Ключ бяспекі YubiKey</string>
<string name="add_new_attachment">Дадаць новае далучэнне</string>
<string name="attachments">Далучэнні</string>
<string name="unable_to_download_file">Немагчыма спампаваць файл.</string>
<string name="downloading">Downloading…</string>
<string name="attachment_large_warning">Гэта далучэнне мае памер %1$s. Вы сапраўды хочаце спампаваць яго на сваю прыладу?</string>
<string name="authenticator_key">Ключ аўтэнтыфікацыі (TOTP)</string>
<string name="verification_code_totp">Праверачны код (TOTP)</string>
<string name="authenticator_key_added">Ключ аўтэнтыфікацыі дададзены.</string>
<string name="authenticator_key_read_error">Немагчыма прачытаць ключ аўтэнтыфікацыі.</string>
<string name="point_your_camera_at_the_qr_code">Навядзіце камеру на QR-код. Сканаванне адбудзецца аўтаматычна.</string>
<string name="copy_totp">Скапіяваць TOTP</string>
<string name="copy_totp_automatically_description">Калі падчас уваходу выкарыстоўваецца ключ аўтэнтыфікацыі, то неабходна скапіяваць праверачны код TOTP у буфер абмену пры аўтазапаўненні ўваходу.</string>
<string name="copy_totp_automatically">Скапіяваць TOTP аўтаматычна</string>
<string name="premium_required">Для выкарыстання гэтай функцыі патрабуецца прэміяльны статус.</string>
<string name="attachment_deleted">Далучэнне выдалена</string>
<string name="attachments_unavailable">Attachments unavailable</string>
<string name="attachments_are_a_premium_feature">Attachments are a Premium feature. Your current plan does not include access to this feature.</string>
<string name="choose_file">Выбраць файл</string>
<string name="file">Файл</string>
<string name="no_file_chosen">Файл не выбраны</string>
<string name="file_name">File name</string>
<string name="no_attachments">Далучэнні адсутнічаюць.</string>
<string name="file_source">Крыніца файла</string>
<string name="max_file_size">Максімальны памер файла 100 МБ.</string>
<string name="required_max_file_size">Required. Maximum file size is 100 MB.</string>
<string name="learn_more">Даведацца больш</string>
<string name="api_url">URL-адрас сервера API</string>
<string name="client_certificate_mtls">Client certificate (mTLS)</string>
<string name="certificate_used_for_client_authentication">Certificate used for client authentication.</string>
<string name="custom_environment">Карыстальніцкае асяроддзе</string>
<string name="custom_environment_footer">Для дасведчаных карыстальнікаў. Можна ўвесці URL-адрасы асобна для кожнай службы.</string>
<string name="environment_saved">URL-адрас сервера асяроддзя захаваны.</string>
<string name="identity_url">URL-адрас сервера пасведчання</string>
<string name="self_hosted_environment">Асяроддзе ўласнага хостынгу</string>
<string name="self_hosted_environment_footer">Увядзіце асноўны URL-адрас вашага лакальнага размяшчэння ўсталяванага Bitwarden.</string>
<string name="server_url">URL-адрас сервера</string>
<string name="web_vault_url">URL-адрас сервера вэб-сховішча</string>
<string name="custom_fields">Карыстальніцкія палі</string>
<string name="copy_number">Скапіяваць нумар</string>
<string name="copy_security_code">Скапіяваць код бяспекі</string>
<string name="number">Нумар</string>
<string name="security_code">Код бяспекі</string>
<string name="scan_card">Scan card</string>
<string name="scan_card_instruction">Position your card within the frame to scan it.</string>
<string name="hold_steady_and_ensure_all_card_details_are_visible">Hold steady and ensure all card details are visible</string>
<string name="type_card">Картка</string>
<string name="type_identity">Пасведчанне</string>
<string name="type_login">Лагін</string>
<string name="type_secure_note">Абароненая нататка</string>
<string name="address1">Адрас 1</string>
<string name="address2">Адрас 2</string>
<string name="address3">Адрас 3</string>
<string name="april">Красавік</string>
<string name="august">Жнівень</string>
<string name="brand">Тып карткі</string>
<string name="card_details">Card Details</string>
<string name="card_scanned">Card scanned</string>
<string name="cardholder_name">Імя ўладальніка карткі</string>
<string name="city_town">Горад / Пасёлак</string>
<string name="company">Кампанія</string>
<string name="country">Краіна</string>
<string name="december">Снежань</string>
<string name="dr">Доктар</string>
<string name="expiration_month">Месяц завяршэння</string>
<string name="expiration_year">Год завяршэння</string>
<string name="february">Люты</string>
<string name="first_name">Імя</string>
<string name="january">Студзень</string>
<string name="july">Ліпень</string>
<string name="june">Чэрвень</string>
<string name="last_name">Прозвішча</string>
<string name="full_name">Поўнае імя</string>
<string name="license_number">Нумар ліцэнзіі</string>
<string name="march">Сакавік</string>
<string name="may">Травень</string>
<string name="middle_name">Імя па бацьку</string>
<string name="mr">С-р</string>
<string name="mrs">С-ня</string>
<string name="ms">Пані</string>
<string name="mx">Mx</string>
<string name="november">Лістапад</string>
<string name="october">Кастрычнік</string>
<string name="passport_number">Нумар пашпарта</string>
<string name="phone">Тэлефон</string>
<string name="september">Верасень</string>
<string name="ssn">Нумар сацыяльнага страхавання</string>
<string name="state_province">Рэгіён / Вобласць</string>
<string name="title">Зварот</string>
<string name="zip_postal_code">Паштовы індэкс</string>
<string name="address">Адрас</string>
<string name="expiration">Тэрмін дзеяння</string>
<string name="show_website_icons">Паказваць значкі вэб-сайтаў</string>
<string name="show_website_icons_help">Show website icons help</string>
<string name="show_website_icons_description">Паказваць распазнавальны відарыс побач з кожным лагінам.</string>
<string name="icons_url">URL-адрас сервера значкоў</string>
<string name="vault_is_locked">Сховішча заблакіравана</string>
<string name="go_to_my_vault">Перайсці ў сховішча</string>
<string name="collections">Калекцыі</string>
<string name="no_items_collection">У гэтай калекцыі адсутнічаюць элементы.</string>
<string name="no_items_folder">У гэтай папцы адсутнічаюць элементы.</string>
<string name="no_items_trash">У сметніцы адсутнічаюць элементы.</string>
<string name="autofill_accessibility_summary">Assist with filling username and password fields in other apps and on the web.</string>
<string name="autofill_service_description">Служба аўтазапаўнення Bitwarden выкарыстоўвае Android Autofill Framework для запаўнення ўліковых даных у іншых праграмах на вашай прыладзе.</string>
<string name="bitwarden_autofill_go_to_settings">Немагчыма аўтаматычна адкрыць меню наладаў аўтазапаўнення Android. Вы можаце перайсці ў меню наладаў аўтазапаўнення ўручную з Налады Android > Сістэма > Мова і ўвод > Дадаткова > Служба аўтазапаўнення.</string>
<string name="custom_field_name">Карыстальніцкая назва поля</string>
<string name="field_type_boolean">Булева</string>
<string name="field_type_hidden">Схавана</string>
<string name="field_type_linked">Звязана</string>
<string name="field_type_text">Тэкст</string>
<string name="select_type_field">Які тып карыстальніцкага поля вы хочаце дадаць?</string>
<string name="remove">Выдаліць</string>
<string name="add_website">Дадаць вэб-сайт</string>
<string name="base_domain">Асноўны дамен</string>
<string name="default_text">Default (%1$s)</string>
<string name="exact">Дакладна</string>
<string name="host">Вузел</string>
<string name="reg_ex">Рэгулярны выраз</string>
<string name="starts_with">Пачынаецца з</string>
<string name="uri_match_detection">Выяўленне супадзення URI</string>
<string name="match_detection">Выяўленне супадзенняў</string>
<string name="autofill_and_save">Аўтазапоўніць і захаваць</string>
<string name="organization">Арганізацыя</string>
<string name="try_again">Паспрабуйце яшчэ раз</string>
<string name="created">Created: %1$s</string>
<string name="password_updated">Password updated: %1$s</string>
<string name="last_edited">Last edited: %1$s</string>
<string name="invalid_email">Памылковы адрас электроннай пошты.</string>
<string name="cards">Карткі</string>
<string name="identities">Пасведчанні</string>
<string name="identification">Ідэнтыфікацыя</string>
<string name="logins">Лагіны</string>
<string name="secure_notes">Абароненыя нататкі</string>
<string name="personal_details">Personal Details</string>
<string name="contact_info">Contact Info</string>
<string name="check_password_for_data_breaches">Check password for data breaches</string>
<plurals name="password_exposed">
<item quantity="one">This password has been exposed %d time in data breaches. You should change it.</item>
<item quantity="few">This password has been exposed %d times in data breaches. You should change it.</item>
<item quantity="many">This password has been exposed %d times in data breaches. You should change it.</item>
<item quantity="other">This password has been exposed %d times in data breaches. You should change it.</item>
</plurals>
<string name="password_safe">Гэты пароль не быў знойдзены ў вядомых базах уцечак. Можна працягваць яго выкарыстоўваць.</string>
<string name="identity_name">Імя пасведчання</string>
<string name="value">Значэнне</string>
<string name="password_history">Гісторыя пароляў</string>
<string name="password_history_count"><annotation link="passwordHistory">Password history: <annotation arg="0">%1$s</annotation></annotation></string>
<string name="types">Тыпы</string>
<string name="no_passwords_to_list">Няма пароляў для паказу.</string>
<string name="search_file_sends">Пошук файлаў Send</string>
<string name="search_text_sends">Пошук тэкставых Send\'аў</string>
<string name="type">Тып</string>
<string name="move_down">Перамясціць уніз</string>
<string name="move_up">Перамясціць уверх</string>
<string name="owner">Уладальнік</string>
<string name="no_collections_to_list">У спісе адсутнічаюць калекцыі.</string>
<string name="moved_item_to_org">%1$s перамешчана ў %2$s.</string>
<string name="select_one_collection">Вы павінны выбраць прынамсі адну калекцыю.</string>
<string name="share">Абагуліць</string>
<string name="move_to_organization">Перамясціць у арганізацыю</string>
<string name="no_orgs_to_list">Няма арганізацый для паказу.</string>
<string name="move_to_org_desc">Выберыце арганізацыю, у якую вы хочаце перамясціць гэты элемент. Пры перамяшчэнні ў арганізацыю ўсе правы ўласнасці на дадзены элемент пяройдуць да гэтай арганізацыі. Вы больш не будзеце адзіным уласнікам гэтага элемента пасля яго перамяшчэння.</string>
<string name="number_of_words">Колькасць слоў</string>
<string name="passphrase">Парольная фраза</string>
<string name="word_separator">Раздзяляльнік слоў</string>
<string name="clear">Ачысціць</string>
<string name="generator">Генератар</string>
<string name="no_folders_to_list">У спісе адсутнічаюць папкі.</string>
<string name="fingerprint_phrase">Фраза адбітка пальца</string>
<string name="your_accounts_fingerprint">Your account’s fingerprint phrase</string>
<string name="export_vault">Экспартаваць сховішча</string>
<string name="lock_now">Заблакіраваць зараз</string>
<string name="pin">PIN</string>
<string name="unlock">Разблакіраваць</string>
<string name="thirty_minutes">30 хвілін</string>
<string name="set_pin_description">Прызначце PIN-код для разблакіроўкі Bitwarden. Налады PIN-кода будуць скінуты, калі вы калі-небудзь цалкам выйдзеце з праграмы.</string>
<string name="logged_in_as_on">Вы ўвайшлі як %1$s у %2$s.</string>
<string name="vault_locked_master_password">Ваша сховішча заблакіравана. Увядзіце асноўны пароль для працягу.</string>
<string name="vault_locked_pin">Ваша сховішча заблакіравана. Увядзіце PIN-код для працягу.</string>
<string name="dark">Цёмная</string>
<string name="light">Светлая</string>
<string name="five_minutes">5 хвілін</string>
<string name="ten_seconds">10 секунд</string>
<string name="thirty_seconds">30 секунд</string>
<string name="twenty_seconds">20 секунд</string>
<string name="two_minutes">2 хвіліны</string>
<string name="clear_clipboard">Ачысціць буфер абмену</string>
<string name="clear_clipboard_description">Аўтаматычна ачышчаць скапіяваныя значэнні з вашага буфера абмену.</string>
<string name="default_uri_match_detection">Прадвызначанае выяўленне супадзення URI</string>
<string name="default_uri_match_detection_description">URI match detection controls how Bitwarden identifies autofill suggestions.</string>
<string name="theme">Тэма</string>
<string name="theme_description">Change the application’s color theme</string>
<string name="copy_notes">Скапіяваць нататку</string>
<string name="require_master_password_on_app_restart">Require master password on app restart?</string>
<string name="pin_require_master_password_restart">Вы сапраўды хочаце, каб пасля перазапуску праграма патрабавала асноўны пароль для разблакіроўкі?</string>
<string name="ask_to_add_item">Ask to add item</string>
<string name="ask_to_add_item_description">Ask to add an item if one isn’t found in your vault.</string>
<string name="on_restart">Пры перазапуску праграмы</string>
<string name="capitalize">Вялікія літары</string>
<string name="include_number">Уключыць лічбу</string>
<string name="download">Спампаваць</string>
<string name="download_file">Download file</string>
<string name="login_expired">Тэрмін дзеяння вашага сеансу завяршыўся.</string>
<string name="biometrics_direction">Біяметрычныя праверка</string>
<string name="device_verification">Device verification</string>
<string name="biometrics_failed">Biometrics Failed</string>
<string name="biometrics_decoding_failure">Log in with your Master Password or PIN then re-enable biometric login in Settings.</string>
<string name="use_biometrics_to_unlock">Выкарыстоўваць біяметрычныя даныя для разблакіроўкі</string>
<string name="file_format">Фармат файла</string>
<string name="export_vault_master_password_description">Увядзіце ваш асноўны пароль для экспартавання даных сховішча.</string>
<string name="send_verification_code_to_email">Адправіць праверачны код на ваш адрас электроннай пошты</string>
<string name="code_sent">Код адпраўлены!</string>
<string name="confirm_your_identity">Пацвердзіце сваю асобу для працягу.</string>
<string name="export_vault_warning">Пры экспартаванні файл утрымлівае даныя вашага сховішча ў незашыфраваным фармаце. Яго не варта захоўваць або адпраўляць па неабароненых каналах (напрыклад, па электроннай пошце). Выдаліце яго адразу пасля выкарыстання.</string>
<string name="export_vault_file_pw_protect_info">Гэты экспартаваны файл будзе абаронены паролем, які неабходна будзе ўвесці для яго расшыфроўкі.</string>
<string name="export_vault_confirmation_title">Пацвердзіць экспартаванне сховішча</string>
<string name="warning">Папярэджанне</string>
<string name="export_vault_failure">There was a problem exporting your vault. If the problem persists, you’ll need to export from the web vault.</string>
<string name="export_vault_success">Сховішча паспяхова экспартавана</string>
<string name="clone">Кланіраваць</string>
<string name="password_generator_policy_in_effect">Адна або больш палітык арганізацыі ўплывае на налады генератара</string>
<string name="unable_to_save_attachment">Узнікла праблема падчас захавання гэтага далучэння. Калі праблема застанецца, вы можаце захаваць іх з вэб-сховішча.</string>
<string name="save_attachment_success">Далучэнне паспяхова захавана</string>
<string name="autofill_tile_accessibility_required">Please turn on “Autofill Accessibility Service” from Bitwarden Settings to use the Autofill tile.</string>
<string name="autofill_tile_uri_not_found">Палі для пароляў не знойдзены</string>
<string name="soft_deleting">Sending to trash…</string>
<string name="item_soft_deleted">Элемент быў адпраўлены ў сметніцу.</string>
<string name="restore">Аднавіць</string>
<string name="restoring">Restoring…</string>
<string name="item_restored">Элемент быў адноўлены.</string>
<string name="trash">Сметніца</string>
<string name="do_you_really_want_to_permanently_delete_cipher">Вы сапраўды хочаце выдаліць назаўсёды? Гэтае дзеянне немагчыма адрабіць.</string>
<string name="do_you_really_want_to_restore_cipher">Вы сапраўды хочаце аднавіць гэты элемент?</string>
<string name="do_you_really_want_to_soft_delete_cipher">Вы сапраўды хочаце адправіць элемент у сметніцу?</string>
<string name="account_biometric_invalidated">Разблакіроўка па біяметрыі для гэтага ўліковага запісу адключана. Чакаецца праверка асноўным паролем.</string>
<string name="enable_sync_on_refresh">Уключыць сінхранізацыю пры абнаўленні</string>
<string name="enable_sync_on_refresh_description">Сінхранізацыя сховішча чырканнем уніз</string>
<string name="log_in_sso">Адзіны ўваход прадпрыемства (SSO)</string>
<string name="log_in_sso_summary">Quickly log in using your organization’s single sign-on portal. Please enter your organization’s identifier to begin.</string>
<string name="org_identifier">Ідэнтыфікатар арганізацыі.</string>
<string name="login_sso_error">Зараз немагчыма ўвайсці з SSO</string>
<string name="set_master_password">Прызначыць асноўны пароль</string>
<string name="master_password_policy_in_effect">Адна або больш палітык арганізацыі патрабуе, каб ваш асноўны пароль адказваў наступным патрабаванням:</string>
<string name="policy_in_effect_min_complexity">Мінімальны ўзровень складанасці %1$s</string>
<string name="policy_in_effect_min_length">Мінімальная даўжыня %1$s</string>
<string name="policy_in_effect_uppercase">Уключыць адну або некалькі вялікіх літар</string>
<string name="policy_in_effect_lowercase">Уключыць адну або некалькі малых літар</string>
<string name="policy_in_effect_numbers">Уключыць адну або некалькі лічбаў</string>
<string name="policy_in_effect_special">Уключаць хаця б адзін з наступных спецыяльных сімвалаў: %1$s</string>
<string name="master_password_policy_validation_title">Памылковы пароль</string>
<string name="master_password_policy_validation_message">Пароль не адпавядае патрабаванням арганізацыі. Калі ласка, праверце інфармацыю пра палітыку і паспрабуйце яшчэ раз.</string>
<string name="loading">Загрузка</string>
<string name="terms_of_service">Умовы выкарыстання</string>
<string name="privacy_policy">Палітыка прыватнасці</string>
<string name="passkey_management">Passkey management</string>
<string name="autofill_services">Службы аўтазапаўнення</string>
<string name="display_autofill_suggestions">Display autofill suggestions</string>
<string name="autofill_suggestions_inline">Inline (shows in keyboard)</string>
<string name="autofill_suggestions_popup">Popup (shows over input field)</string>
<string name="accessibility">Спецыяльныя магчымасці</string>
<string name="accessibility_description5">Required to use the Autofill Quick-Action Tile.</string>
<string name="personal_ownership_policy_in_effect">Палітыка арганізацыі ўплывае на вашы параметры ўласнасці.</string>
<string name="send">Send</string>
<string name="send_details">Send Details</string>
<string name="all_sends">Усе Send\'ы</string>
<string name="text">Тэкст</string>
<string name="text_to_share">Text to share</string>
<string name="type_text">Тэкст</string>
<string name="hide_text_by_default">Пры доступе да Send прадвызначана хаваць тэкст</string>
<string name="type_file">Файл</string>
<string name="deletion_date">Дата выдалення</string>
<string name="deletion_time">Час выдалення</string>
<string name="deletion_date_info">Send будзе незваротна выдалены ў азначаныя дату і час.</string>
<string name="who_can_view">Who can view</string>
<string name="anyone_with_the_link">Anyone with the link</string>
<string name="anyone_with_link_can_view_send">Anyone with this link can view this Send</string>
<string name="specific_people">Specific people</string>
<string name="specific_people_verification_info">After sharing this Send link, individuals will need to verify their email with a code to view this Send</string>
<string name="anyone_with_password">Anyone with a password set by you</string>
<string name="add_email">Add email</string>
<string name="pending_delete">Чаканне выдалення</string>
<string name="expired">Пратэрмінавана</string>
<string name="expires_at">Expires at %s</string>
<string name="expires_tomorrow">Expires tomorrow</string>
<string name="expires_on">Expires on %s</string>
<string name="stops_logging_on">Stops logging on %1$s at %2$s</string>
<string name="maximum_access_count">Максімальная колькасць доступаў</string>
<string name="maximum_access_count_info">Калі прызначана, то карыстальнікі больш не змогуць атрымаць доступ да гэтага Send пасля таго, як будзе дасягнута максімальная колькасць зваротаў.</string>
<string name="maximum_access_count_reached">Дасягнута максімальная колькасць доступаў</string>
<string name="current_access_count">Бягучая колькасць доступаў</string>
<string name="remove_password">Выдаліць пароль</string>
<string name="removing_send_password">Выдаленне пароля</string>
<string name="password_removed">Пароль выдалены</string>
<string name="add_a_send">Дадаць Send</string>
<string name="copy_link">Скапіяваць спасылку</string>
<string name="share_link">Абагуліць спасылку</string>
<string name="send_link">Спасылка на Send</string>
<string name="search_sends">Пошук у Send\'ах</string>
<string name="edit_send">Рэдагаваць Send</string>
<string name="edit_file_send">Edit file Send</string>
<string name="edit_text_send">Edit text Send</string>
<string name="add_file_send">New file Send</string>
<string name="add_text_send">New text Send</string>
<string name="are_you_sure_delete_send">Вы сапраўды хочаце выдаліць гэты Send?</string>
<string name="send_deleted">Send быў выдалены.</string>
<string name="send_updated">Send updated</string>
<string name="one_day">1 дзень</string>
<string name="two_days">2 дні</string>
<string name="three_days">3 дні</string>
<string name="seven_days">7 дзён</string>
<string name="thirty_days">30 дзён</string>
<string name="custom">Карыстальніцкі</string>
<string name="custom_timeout">Custom timeout</string>
<string name="add_this_authenticator_key_to_a_login">Add this authenticator key to an existing login, or create a new login.</string>
<string name="send_disabled_warning">У адпаведнасці з палітыкай прадпрыемства, вы можаце выдаліць толькі бягучы Send.</string>
<string name="about_send">Пра Send</string>
<string name="hide_email">Схаваць мой адрас электроннай пошты ад атрымальнікаў</string>
<string name="send_options_policy_in_effect">Адна або больш палітык арганізацыі ўплываюць на параметры Send.</string>
<string name="send_file_premium_required">У бясплатных уліковых запісах можна адпраўляць толькі тэкст. Для адпраўкі файлаў праз Send, патрабуецца прэміяльны статус.</string>
<string name="sharing_with_specific_people_is_a_premium_feature">Sharing with specific people is a Premium feature. Your current plan does not include access to this feature.</string>
<string name="password_prompt">Паўторны запыт асноўнага пароля</string>
<string name="password_confirmation">Пацвярджэнне асноўнага пароля</string>
<string name="password_confirmation_desc">Гэта дзеянне абаронена. Паўторна ўвядзіце асноўны пароль, каб праверыць сваю асобу і працягнуць далей.</string>
<string name="update_master_password">Абнавіць асноўны пароль</string>
<string name="update_master_password_warning">Ваш асноўны пароль быў нядаўна зменены адміністратарам вашай арганізацыі. Для атрымання доступу да сховішча, вы павінны абнавіць яго. Працягваючы, вы выйдзіце з бягучага сеанса і вам неабходна будзе ўвайсці паўторна. Сеансы на іншых прыладах могуць заставацца актыўнымі на працягу адной гадзіны.</string>
<string name="updating_password">Абнаўленне пароля</string>
<string name="remove_master_password">Выдаліць асноўны пароль</string>
<string name="leave_organization">Выйсці з арганізацыі</string>
<string name="leave_organization_name">Выйсці з %1$s?</string>
<string name="are_you_sure_you_want_to_leave_organization">Are you sure you want to leave?</string>
<string name="leave_organization_button">Leave %1$s</string>
<string name="leave_organization_warning">By declining, your personal items will stay in your account, but you’ll lose access to shared items and organization features. <annotation link="learnMore">Learn more</annotation></string>
<string name="contact_your_admin_to_regain_access">Contact your admin to regain access.</string>
<string name="fido2_authenticate_web_authn">Аўтэнтыфікацыя WebAuthn</string>
<string name="fido2_return_to_app">Вярнуцца ў праграму</string>
<string name="reset_password_auto_enroll_invite_warning">Гэта арганізацыя мае карпаратыўную палітыку, якая будзе аўтаматычна зарэгіструе ваша скіданне пароля. Рэгістрацыя дазволіць адміністратарам арганізацыі змяняць ваш асноўны пароль.</string>
<string name="hours_minutes_format" comment="Used to display a number of hours and minutes">%1$s, %2$s</string>
<plurals name="hours_format" comment="Can be injected into a sentence with %1$s and %2$s">
<item quantity="one">%1$d hour</item>
<item quantity="few">%1$d hours</item>
<item quantity="many">%1$d hours</item>
<item quantity="other">%1$d hours</item>
</plurals>
<plurals name="minutes_format" comment="Can be injected into a sentence with %1$s and %2$s">
<item quantity="one">%1$d minute</item>
<item quantity="few">%1$d minutes</item>
<item quantity="many">%1$d minutes</item>
<item quantity="other">%1$d minutes</item>
</plurals>
<string name="vault_timeout_policy_in_effect_hours_minutes_format" comment="First value will be the number of hours (2 hours, 1 hour) and second value will be the number of minutes (15 minutes, 1 minute)">Your organization has set the maximum session timeout to %1$s and %2$s.</string>
<string name="vault_timeout_policy_in_effect_format" comment="Value will be a number of hours or minutes (15 minutes, or 1 minute)">Your organization has set the maximum session timeout to %1$s.</string>
<string name="this_setting_is_managed_by_your_organization">This setting is managed by your organization.</string>
<string name="your_organization_has_set_the_default_session_timeout_to_never">Your organization has set the default session timeout to never.</string>
<string name="your_organization_has_set_the_default_session_timeout_to_on_app_restart">Your organization has set the default session timeout to on app restart.</string>
<string name="vault_timeout_to_large">Час чакання вашага сховішча перавышае дазволеныя абмежаванні, якія прызначыла ваша арганізацыя.</string>
<string name="disable_personal_vault_export_policy_in_effect">Адна або больш палітык арганізацыі не дазваляюць вам экспартаваць асабістае сховішча.</string>
<string name="add_account">Дадаць уліковы запіс</string>
<string name="account_unlocked">Разблакіравана</string>
<string name="account_locked">Заблакіравана</string>
<string name="account_logged_out">Вы выйшлі</string>
<string name="account_switched_automatically">Вы пераключыліся на іншы даступны ўліковы запіс</string>
<string name="delete_account">Выдаліць уліковы запіс</string>
<string name="deleting_your_account_is_permanent">Выдаленне вашага ўліковага запісу з\'яўляецца незваротным дзеяннем</string>
<string name="delete_account_explanation">Ваш уліковы запіс і ўсе даныя сховішча будуць выдалены без магчымасці аднаўлення. Вы сапраўды хочаце працягнуць?</string>
<string name="your_account_has_been_permanently_deleted">Ваш уліковы запіс быў незваротна выдалены</string>
<string name="invalid_verification_code">Памылковы праверачны код.</string>
<string name="send_code">Адправіць код</string>
<string name="sending">Адпраўка</string>
<string name="resend_code">Адправіць код яшчэ раз</string>
<string name="a_verification_code_was_sent_to_your_email">Праверачны код адпраўлены на ваш адрас электроннай пошты</string>
<string name="submit_crash_logs">Адпраўляць справаздачы пра збоі</string>
<string name="options_expanded">Параметры разгорнуты. Дакраніцеся, каб згарнуць.</string>
<string name="options_collapsed">Параметры згорнуты. Дакраніцеся, каб разгарнуць.</string>
<string name="uppercase_ato_z">Вялікія літары (A-Z)</string>
<string name="lowercase_ato_z">Маленькія літары (a-z)</string>
<string name="numbers_zero_to_nine">Лічбы (0-9)</string>
<string name="special_characters">Спецыяльныя сімвалы (!@#$%^&*)</string>
<string name="filter_by_vault">Фільтр элементаў па сховішчу</string>
<string name="all_vaults">Усе сховішчы</string>
<string name="vaults">Сховішчы</string>
<string name="vault_filter_description">Сховішча: %1$s</string>
<string name="all">Усе</string>
<string name="totp">TOTP</string>
<string name="verification_codes">Праверачныя коды</string>
<string name="premium_subscription_required">Патрабуецца прэміяльная падпіска</string>
<string name="cannot_add_authenticator_key_scan_qr_code">Cannot add authenticator key? <annotation link="scanQrCode">Scan QR Code</annotation></string>
<string name="scan_qr_code">Сканіраваць QR-код</string>
<string name="cannot_scan_qr_code_enter_key_manually">Cannot scan QR code? <annotation link="enterKeyManually">Enter key manually</annotation></string>
<string name="authenticator_key_scanner">Ключ аўтэнтыфікацыі</string>
<string name="authenticator_key_help">Authenticator key help</string>
<string name="enter_key_manually">Увесці ключ уручную</string>
<string name="add_totp">Дадаць TOTP</string>
<string name="set_up_authenticator_key">Set up authenticator key</string>
<string name="once_the_key_is_successfully_entered">Пасля таго, як ваш ключ паспяхова ўведзены,
выберыце \"Дадаць TOTP\" для надзейнага захавання ключа</string>
<string name="never_lock_warning">Прызначыўшы параметр блакіравання \"Ніколі\", ваша сховішча будзе даступна кожнаму, хто мае доступ да вашай прылады. Калі вы выкарыстоўваеце гэты параметр, вы павінны быць упэўнены ў тым, што ваша прылада надзейна абаронена.</string>
<string name="environment_page_urls_error">Адзін або больш URL-адрасоў уведзены памылкова. Калі ласка, праверце іх і паспрабуйце захаваць яшчэ раз.</string>
<string name="generic_error_message">Мы не змаглі апрацаваць ваш запыт. Калі ласка, паспрабуйце яшчэ раз або звяжыцеся з намі.</string>
<string name="allow_screen_capture">Дазволіць здымкі экрана</string>
<string name="are_you_sure_you_want_to_enable_screen_capture">Вы сапраўды хочаце дазволіць здымкі экрана?</string>
<string name="log_in_requested">Выкананы запыт уваходу</string>
<string name="are_you_trying_to_log_in">Вы спрабуеце ўвайсці?</string>
<string name="log_in_attempt_by_x_on_y">Спроба ўваходу %1$s у %2$s</string>
<string name="device_type">Тып прылады</string>
<string name="ip_address">IP-адрас</string>
<string name="time">Час</string>
<string name="select_time">Select time</string>
<string name="switch_input_mode">Switch input mode</string>
<string name="confirm_log_in">Пацвердзіць уваход</string>
<string name="deny_log_in">Адхіліць уваход</string>
<string name="log_in_denied">Уваход адхілены</string>
<string name="approve_login_requests">Ухваліць запыт уваходу</string>
<string name="no_thanks">Не, дзякуй</string>
<string name="confim_log_in_attemp_for_x">Пацвердзіць спробу ўваходу для %1$s</string>
<string name="username_type">Тып імя карыстальніка</string>
<string name="plus_addressed_email">Адрасы электроннай пошты з плюсам</string>
<string name="catch_all_email">Адрас для ўсёй пошты дамена</string>
<string name="forwarded_email_alias">Псеўданім электроннай пошты для перасылкі</string>
<string name="random_word">Выпадковае слова</string>
<string name="email_required_parenthesis">Электронная пошта (абавязкова)</string>
<string name="domain_name">domain name</string>
<string name="domain_name_required_parenthesis">Імя дамена (абавязкова)</string>
<string name="api_key">API key</string>
<string name="api_key_required_parenthesis">Ключ API (абавязкова)</string>
<string name="service">Сэрвіс</string>
<string name="api_access_token_required_parenthesis">API access token (required)</string>
<string name="api_access_token">Токен доступу да API</string>
<string name="are_you_sure_you_want_to_overwrite_the_current_username">Вы сапраўды хочаце перазапісаць бягучае імя карыстальніка?</string>
<string name="generate_username">Генерыраваць імя карыстальніка</string>
<string name="plus_addressed_email_description">Use your email provider’s subaddress capabilities</string>
<string name="catch_all_email_description">Use your domain’s configured catch-all inbox.</string>
<string name="forwarded_email_description">Генерыраваць псеўданім электроннай пошты са знешнім сэрвісам перасылкі.</string>
<string name="accessibility_service_disclosure">Апісанне службы спецыяльных магчымасцей</string>
<string name="accessibility_disclosure_text">Bitwarden выкарыстоўвае службу спецыяльных магчымасцей для пошуку палёў уваходу ў праграмах і вэб-сайтах, пасля чаго вызначае належныя ідэнтыфікатары палёў для таго, каб увесці імя карыстальніка і пароль, які адпавядае знойдзенай праграме або вэб-сайту. Мы ніколі не захоўваем ніякай інфармацыі, якая забяспечвае нам служба, і ніколі не прыкладаем намаганняў па кантролі любых элементаў на экране за выключэннем увядзення ўліковых даных у тэкставым выглядзе.</string>
<string name="accept">Прыняць</string>
<string name="decline">Адхіліць</string>
<string name="login_request_has_already_expired">Запыт на ўваход пратэрмінаваны.</string>
<string name="login_attempt_from_x_do_you_want_to_switch_to_this_account">Спроба ўваходу з:
%1$s
Вы сапраўды хочаце перайсці на гэты ўліковы запіс?</string>
<string name="new_to_bitwarden">New to Bitwarden?</string>
<string name="get_master_passwordword_hint">Атрымаць падказку да асноўнага пароля</string>
<string name="logging_in_as_x_on_y">Вы ўваходзіце як %1$s у %2$s</string>
<string name="not_you">Не вы?</string>
<string name="log_in_with_master_password">Увайсці з асноўным паролем</string>
<string name="log_in_initiated">Ініцыяваны ўваход</string>
<string name="a_notification_has_been_sent_to_your_device">Апавяшчэнне было адпраўлена на вашу прыладу.</string>
<string name="please_make_sure_your_vault_is_unlocked_and_the_fingerprint_phrase_matches_on_the_other_device">Пераканайцеся, што ваша сховішча разблакіравана, а фраза адбітка пальца супадае з іншай прыладай.</string>
<string name="resend_notification">Адправіць апавяшчэнне паўторна</string>
<string name="view_all_login_options">Паглядзець усе варыянты ўваходу</string>
<string name="pending_log_in_requests">Чаканне запыту на ўваход</string>
<string name="decline_all_requests">Адхіліць усе запыты</string>
<string name="are_you_sure_you_want_to_decline_all_pending_log_in_requests">Вы сапраўды хочаце адхіліць усе запыты, якія чакаюць уваходу?</string>
<string name="no_pending_requests">Няма запытаў, якія чакаюць уваходу</string>
<string name="enable_camer_permission_to_use_the_scanner">Каб выкарыстоўваць сканер дайце дазвол на выкарыстанне камеры</string>
<string name="language">Мова</string>
<string name="language_change_x_description">Мова была зменена на %1$s. Перазапусціце праграму, каб убачыць змены</string>
<string name="default_system">Прадвызначана (сістэмная)</string>
<string name="weak_master_password">Ненадзейны асноўны пароль</string>
<string name="weak_password_identified_use_a_strong_password_to_protect_your_account">Вызначаны ненадзейны пароль. Выкарыстоўвайце надзейны пароль для абароны вашага ўліковага запісу. Вы сапраўды хочаце выкарыстоўваць ненадзейны пароль?</string>
<string name="weak">Ненадзейны</string>
<string name="good">Добры</string>
<string name="strong">Надзейны</string>
<string name="check_known_data_breaches_for_this_password">Праверыць у вядомых уцечках даных для гэтага пароля</string>
<string name="exposed_master_password">Скампраметаваны асноўны пароль</string>
<string name="password_found_in_a_data_breach_alert_description">Пароль знойдзены ва ўцечках даных. Выкарыстоўвайце ўнікальныя паролі для абароны свайго ўліковага запісу. Вы сапраўды хочаце выкарыстоўваць скампраметаваны пароль?</string>
<string name="weak_and_exposed_master_password">Ненадзейны і скампраметаваны асноўны пароль</string>
<string name="weak_password_identified_and_found_in_a_data_breach_alert_description">Вызначаны ненадзейны пароль, які знойдзены ва ўцечках даных. Выкарыстоўвайце надзейныя і ўнікальныя паролі для абароны свайго ўліковага запісу. Вы сапраўды хочаце выкарыстоўваць гэты пароль?</string>
<string name="there_are_no_items_that_match_the_search">Адсутнічаюць элементы, якія адпавядаюць пошуку</string>
<string name="self_hosted">Уласнае размяшчэнне</string>
<string name="region">Рэгіён</string>
<string name="update_weak_master_password_warning">Ваш асноўны пароль не адпавядае адной або некалькім палітыкам арганізацыі. Для атрымання доступу да сховішча, вы павінны абнавіць яго. Працягваючы, вы выйдзіце з бягучага сеанса і вам неабходна будзе ўвайсці паўторна. Актыўныя сеансы на іншых прыладах могуць заставацца актыўнымі на працягу адной гадзіны.</string>
<string name="current_master_password_required">Current master password (required)</string>
<string name="approve_with_my_other_device">Approve with my other device</string>
<string name="request_admin_approval">Запытаць ухваленне адміністратара</string>
<string name="approve_with_master_password">Ухваліць з дапамогай асноўнага пароля</string>
<string name="turn_off_using_public_device">Turn off using a public device</string>
<string name="remember_this_device">Запомніць гэту прыладу</string>
<string name="passkey">Ключ доступу</string>
<string name="passkey_will_not_be_copied">Passkey will not be copied</string>
<string name="the_passkey_will_not_be_copied_to_the_cloned_item_do_you_want_to_continue_cloning_this_item">The passkey will not be copied to the cloned item. Do you want to continue cloning this item?</string>
<string name="master_password_re_prompt_help">Дапамога з паўторным запытам асноўнага пароля</string>
<string name="admin_approval_requested">Патрабуецца ўхваленне адміністратара</string>
<string name="your_request_has_been_sent_to_your_admin">Ваш запыт адпраўлены адміністратару.</string>
<string name="you_will_be_notified_once_approved">Вы атрымаеце апавяшчэння пасля яго ўхвалення.</string>
<string name="trouble_logging_in">Праблемы з уваходам?</string>
<string name="block_auto_fill">Блакіраваць аўтазапаўненне</string>
<string name="no_uris_blocked">No URIs blocked</string>
<string name="auto_fill_will_not_be_offered_for_these_ur_is">Аўтазапаўненне для гэтых URI прапаноўвацца не будзе.</string>
<string name="edit_blocked_uri">Edit blocked URI</string>
<string name="new_blocked_uri">Новы заблакіраваны URI</string>
<string name="invalid_format_use_https_http_or_android_app">Памылковы фармат. Выкарыстоўвайце https://, http:// або androidapp://</string>
<string name="enter_uri">Увесці URI</string>
<string name="format_x_separate_multiple_ur_is_with_a_comma">Фармат: %1$s. Раздзяліце некалькі значэнняў URI коскай.</string>
<string name="invalid_uri">Памылковы URI</string>
<string name="the_urix_is_already_blocked">Гэты URI %1$s ужо заблакіраваны</string>
<string name="login_approved">Уваход ухвалены</string>
<string name="log_in_with_device_must_be_set_up_in_the_settings_of_the_bitwarden_app">Log in with device must be set up in the settings of the Bitwarden app.</string>
<string name="need_another_option_view_all_login_options">Need another option? <annotation link="viewAll">View all login options</annotation></string>
<string name="log_in_with_device">Увайсці з іншай прылады</string>
<string name="logging_in_on">Увайсці на</string>
<string name="logging_in_on_with_colon">Logging in on:</string>
<string name="vault">Сховішча</string>
<string name="appearance">Знешні выгляд</string>
<string name="account_security">Бяспеке акаўнта</string>
<string name="bitwarden_help_center">Даведачны цэнтр Bitwarden</string>
<string name="sync_now">Сінхранізаваць зараз</string>
<string name="unlock_options">Unlock options</string>
<string name="session_timeout">Session timeout</string>
<string name="session_timeout_action">Session timeout action</string>
<string name="account_fingerprint_phrase">Account fingerprint phrase</string>
<string name="passkey_management_explanation_long">Use Bitwarden to save new passkeys and log in with passkeys stored in your vault.</string>
<string name="autofill_services_explanation_long">Allow Bitwarden to use your saved login information to sign in to other apps on your device.</string>
<string name="use_inline_autofill_explanation_long">Choose how your autofill suggestions will appear when you sign in to other apps on your device.</string>
<string name="additional_options">Дадатковы параметры</string>
<string name="continue_to_web_app">Continue to web app?</string>
<string name="continue_to_x">Continue to %1$s?</string>
<string name="continue_to_help_center">Continue to Help center?</string>
<string name="continue_to_privacy_policy">Continue to privacy policy?</string>
<string name="continue_to_device_settings">Continue to device Settings?</string>
<string name="two_step_login_description_long">Make your account more secure by setting up two-step login in the Bitwarden web app.</string>
<string name="change_master_password_description_long">You can change your master password on the Bitwarden web app.</string>
<string name="learn_more_about_how_to_use_bitwarden_on_the_help_center">Learn more about how to use Bitwarden on the Help center.</string>
<string name="privacy_policy_description_long">Check out our privacy policy on bitwarden.com.</string>
<string name="explore_more_features_of_your_bitwarden_account_on_the_web_app">Explore more features of your Bitwarden account on the web app.</string>
<string name="learn_about_organizations_description_long">Bitwarden allows you to share your vault items with others by using an organization. Learn more on the bitwarden.com website.</string>
<string name="created_x">Created %1$s</string>
<string name="your_organization_requires_you_to_set_a_master_password">Your organization requires you to set a master password.</string>
<string name="set_up_an_unlock_option_to_change_your_vault_timeout_action">Set up an unlock option to change your vault timeout action.</string>
<string name="save_passkey_as_new_login">Save passkey as new login</string>
<string name="overwrite_passkey">Overwrite passkey?</string>
<string name="this_item_already_contains_a_passkey_are_you_sure_you_want_to_overwrite_the_current_passkey">This item already contains a passkey. Are you sure you want to overwrite the current passkey?</string>
<string name="duo_two_step_login_is_required_for_your_account">Duo two-step login is required for your account.</string>
<string name="follow_the_steps_from_duo_to_finish_logging_in">Follow the steps from Duo to finish logging in.</string>
<string name="launch_duo">Launch Duo</string>
<string name="your_passkey_will_be_saved_to_your_bitwarden_vault_for_x">Your passkey will be saved to your Bitwarden vault for %1$s</string>
<string name="your_password_will_be_saved_to_your_bitwarden_vault_for_x">Your password will be saved to your Bitwarden vault for %1$s</string>
<string name="passkeys_not_supported_for_this_app">Passkeys not supported for this app</string>
<string name="passkey_operation_failed_because_browser_is_not_privileged">Passkey operation failed because browser is not privileged</string>
<string name="passkey_operation_failed_because_browser_signature_does_not_match">Passkey operation failed because browser signature does not match</string>
<string name="passkey_operation_failed_because_of_missing_asset_links">Passkey operation failed because of missing asset links</string>
<string name="passkey_operation_failed_because_app_could_not_be_verified">Passkey operation failed because app could not be verified</string>
<string name="confirm_file_password">Пацвердзіць пароль файла</string>
<string name="file_password">Пароль файла</string>
<string name="password_protected">Password Protected</string>
<string name="password_used_to_export">Гэты пароль будзе выкарыстоўвацца для экспартавання і імпартавання гэтага файла</string>
<string name="autofill_suggestion">Autofill suggestion</string>
<string name="continue_to_complete_web_authn_verification">Continue to complete WebAuthn verification.</string>
<string name="launch_web_authn">Launch WebAuthn</string>
<string name="there_was_an_error_starting_web_authn_two_factor_authentication">There was an error starting WebAuthn two factor authentication</string>
<string name="self_hosted_server_url">Self-hosted server URL</string>
<string name="credential_operation_failed_because_user_could_not_be_verified">Credential operation failed because user could not be verified.</string>
<string name="passkey_operation_failed_because_user_could_not_be_verified">Passkey operation failed because user could not be verified.</string>
<string name="user_verification_direction">User verification</string>
<string name="create_account_on">Create account on</string>
<string name="create_account_on_with_colon">Create account on:</string>
<string name="we_sent_an_email_to">We sent an email to <annotation emphasis="bold"><annotation arg="0">%1$s</annotation></annotation>.</string>
<string name="by_continuing_you_agree_to_the_terms_of_service_and_privacy_policy">By continuing, you agree to the <annotation link="termsOfService">Terms of Service</annotation> and <annotation link="privacyPolicy">Privacy Policy</annotation></string>
<string name="unsubscribe">Unsubscribe</string>
<string name="check_your_email">Check your email</string>
<string name="open_email_app">Open email app</string>
<string name="email_verified">Email пацверджаны</string>
<string name="get_emails_from_bitwarden_for_announcements_advices_and_research_opportunities_unsubscribe_any_time">Get emails from Bitwarden for announcements, advice, and research opportunities. <annotation link="unsubscribe">Unsubscribe</annotation> at any time.</string>
<string name="security_prioritized">Security, prioritized</string>
<string name="welcome_message_1">Save logins, cards, and identities to your secure vault. Bitwarden uses zero-knowledge, end-to-end encryption to protect what’s important to you.</string>
<string name="welcome_message_2">Set up biometric unlock and autofill to log into your accounts without typing a single letter.</string>
<string name="quick_and_easy_login">Quick and easy login</string>
<string name="level_up_your_logins">Level up your logins</string>
<string name="welcome_message_3">Use the generator to create and save strong, unique passwords for all your accounts.</string>
<string name="your_data_when_and_where_you_need_it">Your data, when and where you need it</string>
<string name="welcome_message_4">Save unlimited passwords across unlimited devices with Bitwarden mobile, browser, and desktop apps.</string>
<string name="remove_passkey">Remove passkey</string>
<string name="passkey_removed">Passkey removed</string>
<string name="what_makes_a_password_strong">What makes a password strong?</string>
<string name="a_secure_memorable_password">A secure, memorable password</string>
<string name="account_setup">Account setup</string>
<string name="set_up_unlock">Set up unlock</string>
<string name="set_up_later">Set up later</string>
<string name="set_up_unlock_later">Set up unlock later?</string>
<string name="you_can_return_to_complete_this_step_anytime_from_account_security_in_settings">You can return to complete this step anytime from Account Security in Settings.</string>
<string name="confirm">Пацвердзіць</string>
<string name="set_up_biometrics_or_choose_a_pin_code_to_quickly_access_your_vault_and_autofill_your_logins">Set up biometrics or choose a PIN code to quickly access your vault and Autofill your logins.</string>
<string name="never_lose_access_to_your_vault">Never lose access to your vault</string>
<string name="the_best_way_to_make_sure_you_can_always_access_your_vault">The best way to make sure you can always access your vault is to set up safeguards from the start.</string>
<string name="one_of_the_best_ways_to_create_a_secure_and_memorable_password">One of the best ways to create a secure and memorable password is to use a passphrase. \nHere’s how:</string>
<string name="create_a_hint">Create a hint</string>
<string name="your_hint_will_be_send_to_you_via_email_when_you_request_it">Your hint will be sent to you via email when you request it.</string>
<string name="write_your_password_down">Write your password down</string>
<string name="keep_it_secret_keep_it_safe">Be careful to keep your written password somewhere secret and safe.</string>
<string name="prevent_account_lockout">Prevent account lockout</string>
<string name="generate_master_password">Generate master password</string>
<string name="generate_button_label">Generate</string>
<string name="write_this_password_down_and_keep_it_somewhere_safe">Write this password down and keep it somewhere safe.</string>
<string name="learn_about_other_ways_to_prevent_account_lockout">Learn about other ways to prevent account lockout</string>
<string name="learn_about_ways_to_prevent_account_lockout"><annotation link="onPreventAccountLockout">Learn about ways to prevent account lockout</annotation></string>
<string name="help_with_server_geolocations">Help with server geolocations</string>
<string name="email_address_required">Email address (required)</string>
<string name="select_the_link_in_the_email_to_verify_your_email_address_and_continue_creating_your_account">Select the link in the email to verify your email address and continue creating your account.</string>
<string name="change_email_address">Change email address</string>
<string name="next">Далей</string>
<string name="bitwarden_cannot_recover_a_lost_or_forgotten_master_password">Bitwarden cannot recover a lost or forgotten master password.</string>
<string name="bitwarden_cannot_reset_a_lost_or_forgotten_master_password">Bitwarden cannot reset a lost or forgotten master password.</string>
<string name="choose_your_master_password">Choose your master password</string>
<string name="choose_a_unique_and_strong_password_to_keep_your_information_safe">Choose a unique and strong password to keep your information safe.</string>
<plurals name="minimum_characters">
<item quantity="one">%d character</item>
<item quantity="few">%d characters</item>
<item quantity="many">%d characters</item>
<item quantity="other">%d characters</item>
</plurals>
<string name="expired_link">Пратэрмінаваная спасылка</string>
<string name="please_restart_registration_or_try_logging_in">Please restart registration or try logging in. You may already have an account.</string>
<string name="restart_registration">Restart registration</string>
<string name="authenticator_sync">Authenticator Sync</string>
<string name="allow_bitwarden_authenticator_syncing">Allow authenticator syncing</string>
<string name="there_was_an_issue_validating_the_registration_token">There was an issue validating the registration token.</string>
<string name="turn_on_autofill">Turn on autofill</string>
<string name="autofill_setup">Autofill setup</string>
<string name="turn_on_browser_autofill_integration">Turn on browser autofill integration</string>
<string name="browser_requires_special_permissions_for_bitwarden_singular">You’re using a browser that requires special permissions for Bitwarden to autofill your passwords.</string>
<string name="browser_requires_special_permissions_for_bitwarden_plural">You’re using browsers that requires special permissions for Bitwarden to autofill your passwords.</string>
<string name="youre_using_a_browser_that_requires_special_permissions_singular">You’re using a browser that requires special permissions for Bitwarden to autofill your passwords. Enable your preferred autofill integration below.</string>
<string name="youre_using_a_browser_that_requires_special_permissions_plural">You’re using browsers that requires special permissions for Bitwarden to autofill your passwords. Enable autofill for all your installed browsers to continue.</string>
<string name="use_autofill_to_log_into_your_accounts">Use autofill to log into your accounts with a single tap.</string>
<string name="turn_on_later">Turn on later</string>
<string name="turn_on_autofill_later">Turn on autofill later?</string>
<string name="turn_on_browser_autofill_integration_later">Turn on browser autofill integration later?</string>
<string name="return_to_complete_this_step_anytime_in_settings">You can return to complete this step anytime in Settings.</string>
<string name="what_bitwarden_has_to_offer">You can now explore everything Bitwarden has to offer and start managing your passwords securely.</string>
<string name="youre_all_set">You’re all set!</string>
<string name="error_connecting_with_the_duo_service_use_a_different_two_step_login_method_or_contact_duo_for_assistance">Error connecting with the Duo service. Use a different two-step login method or contact Duo for assistance.</string>
<string name="master_password_hint_not_specified">Падказка да асноўнага пароля</string>
<string name="new_master_password_hint">New master password hint</string>
<string name="get_started">Пачатак працы</string>
<string name="save_and_protect_your_data">Save and protect your data</string>
<string name="the_vault_protects_more_than_just_passwords">The vault protects more than just passwords. Store secure logins, IDs, cards and notes securely here.</string>
<string name="add_login">Add login</string>
<string name="share_files_and_data_securely_with_anyone_on_any_platform">Share files and data securely with anyone, on any platform. Your information will remain end-to-end encrypted while limiting exposure.</string>
<string name="send_sensitive_information_safely">Send sensitive information, safely</string>
<string name="import_saved_logins">Import saved logins</string>
<string name="use_a_computer_to_import_logins">Use a computer to import logins from an existing password manager</string>
<string name="you_can_return_to_complete_this_step_anytime_from_settings">You can return to complete this step anytime in Vault Settings.</string>
<string name="import_logins_later">Import logins later</string>
<string name="import_logins_later_dialog_title">Import logins later?</string>
<string name="do_you_have_a_computer_available">Do you have a computer available?</string>
<string name="the_following_instructions_will_guide_you_through_importing_logins">The following instructions will guide you through importing logins from your desktop or laptop computer</string>
<string name="import_logins">Import Logins</string>
<string name="from_your_computer_follow_these_instructions_to_export_saved_passwords">From your computer, follow these instructions to export saved passwords from your browser or other password manager. Then, safely import them to Bitwarden.</string>
<string name="give_your_vault_a_head_start">Give your vault a head start</string>
<string name="class_3_biometrics_description">Unlock with biometrics requires strong biometric authentication and may not be compatible with all biometric options on this device.</string>
<string name="class_2_biometrics_description">Unlock with biometrics requires strong biometric authentication and is not compatible with the biometrics options available on this device.</string>
<string name="on_your_computer_log_in_to_your_current_browser_or_password_manager">On your computer, <annotation emphasis="bold">log in to your current browser or password manager.</annotation></string>
<string name="export_your_passwords_this_option_is_usually_found_in_your_settings"><annotation emphasis="bold">Export your passwords.</annotation> This option is usually found in your settings.</string>
<string name="select_import_data_in_the_web_app_then_done_to_finish_syncing"><annotation emphasis="bold">Select Import data</annotation> in the web app, then Done below to finish syncing.</string>
<string name="step_1_of_3">Step 1 of 3</string>
<string name="export_your_saved_logins">Export your saved logins</string>
<string name="delete_this_file_after_import_is_complete">You’ll delete this file after import is complete.</string>
<string name="on_your_computer_open_a_new_browser_tab_and_go_to_vault_bitwarden_com">On your computer, open a new browser tab and <annotation emphasis="bold">go to <annotation arg="0">%1$s</annotation></annotation></string>
<string name="log_in_to_the_bitwarden_web_app">Log in to the Bitwarden web app.</string>
<string name="step_2_of_3">Step 2 of 3</string>
<string name="log_in_to_bitwarden">Увайсці ў Bitwarden</string>
<string name="step_3_of_3">Step 3 of 3</string>
<string name="import_logins_to_bitwarden">Import logins to Bitwarden</string>
<string name="in_the_bitwarden_navigation_find_the_tools_option_and_select_import_data">In the Bitwarden navigation, <annotation emphasis="bold">find the Tools</annotation> option and <annotation emphasis="bold">select Import data.</annotation></string>
<string name="fill_out_the_form_and_import_your_saved_password_file">Fill out the form and <annotation emphasis="bold">import your saved password file.</annotation></string>
<string name="for_your_security_be_sure_to_delete_your_saved_password_file">For your security, be sure to <annotation emphasis="bold">delete your saved password file.</annotation></string>
<string name="need_help_check_out_import_help">Need help? Check out <annotation link="importHelp">import help</annotation>.</string>
<string name="import_help">import help</string>
<string name="save_the_exported_file_somewhere_on_your_computer_you_can_find_easily"><annotation emphasis="bold">Save the exported file</annotation> somewhere on your computer you can find easily.</string>
<string name="this_is_not_a_recognized_bitwarden_server_you_may_need_to_check_with_your_provider_or_update_your_server">This is not a recognized Bitwarden server. You may need to check with your provider or update your server.</string>
<string name="syncing_logins_loading_message">Syncing logins…</string>
<string name="download_the_browser_extension">Download the browser extension</string>
<string name="go_to_bitwarden_com_download_to_integrate_bitwarden_into_browser">Go to bitwarden.com/download to integrate Bitwarden into your favorite browser for a seamless experience.</string>
<string name="use_the_web_app">Use the web app</string>
<string name="log_in_at_bitwarden_com_to_easily_manage_your_account">Log in at bitwarden.com to easily manage your account and update settings.</string>
<string name="autofill_passwords">Autofill passwords</string>
<string name="set_up_autofill_on_all_your_devices">Set up autofill on all your devices to login with a single tap anywhere.</string>
<string name="import_successful">Import Successful!</string>
<string name="manage_your_logins_from_anywhere_with_bitwarden_tools">Manage your logins from anywhere with Bitwarden tools for web and desktop.</string>
<string name="bitwarden_tools">Bitwarden Tools</string>
<string name="got_it">Зразумела</string>
<string name="no_logins_were_imported">No logins were imported</string>
<string name="import_error">Памылка імпартавання</string>
<string name="logins_imported">Logins imported</string>
<string name="remember_to_delete_your_imported_password_file_from_your_computer">Remember to delete your imported password file from your computer</string>
<string name="type_ssh_key">Ключ SSH</string>
<string name="public_key">Public key</string>
<string name="private_key">Private key</string>
<string name="ssh_keys">SSH keys</string>
<string name="copy_public_key">Скапіяваць публічны ключ</string>
<string name="copy_fingerprint">Скапіяваць адбітак пальца</string>
<string name="enable_notifications">Enable notifications</string>
<plurals name="notifications_content_description">
<item quantity="one">%d notification</item>
<item quantity="few">%d notifications</item>
<item quantity="many">%d notifications</item>
<item quantity="other">%d notifications</item>
</plurals>
<string name="log_in_quickly_and_easily_across_devices">Log in quickly and easily across devices</string>
<string name="bitwarden_can_notify_you_each_time_you_receive_a_new_login_request_from_another_device">Bitwarden can notify you each time you receive a new login request from another device.</string>
<string name="skip_for_now">Skip for now</string>
<string name="done_text">Гатова</string>
<string name="page_number_x_of_y">%1$s of %2$s</string>
<string name="copy_identity_name">Copy identity name</string>
<string name="copy_company">Copy company</string>
<string name="copy_ssn">Copy social security number</string>
<string name="copy_passport_number">Copy passport number</string>
<string name="copy_first_name">Copy first name</string>
<string name="copy_last_name">Copy last name</string>
<string name="copy_license_number">Copy license number</string>
<string name="copy_middle_name">Copy middle name</string>
<string name="copy_email">Copy email</string>
<string name="copy_phone">Copy phone number</string>
<string name="copy_address">Copy address</string>
<string name="biometrics_no_longer_supported_title">Biometrics are no longer supported on this device</string>
<string name="biometrics_no_longer_supported">You’ve been logged out because your device’s biometrics don’t meet the latest security requirements. To update settings, log in once again or contact your administrator for access.</string>
<string name="choose_three_or_four_random_words">Choose three or four random words</string>
<string name="pick_three_or_four_random_unrelated_words">Pick three or four random, unrelated words that you can easily remember. Think of <annotation emphasis="bold">objects, places, or things</annotation> you like.</string>
<string name="combine_those_words_together">Combine those words together</string>
<string name="put_the_words_together_in_any_order_to_form_your_passphrase">Put the words together in any order to form your passphrase. <annotation emphasis="bold">Use hyphens, spaces, or leave them as one long word</annotation>—your choice!</string>
<string name="make_it_yours">Make it yours</string>
<string name="add_a_number_or_symbol_to_make_it_even_stronger"><annotation emphasis="bold">Add a number or symbol</annotation> to make it even stronger. Now you have a unique, secure, and memorable passphrase!</string>
<string name="need_some_inspiration">Need some inspiration?</string>
<string name="check_out_the_passphrase_generator">Check out the passphrase generator</string>
<string name="we_couldnt_verify_the_servers_certificate">We couldn’t verify the server’s certificate. The certificate chain or proxy settings on your device or your Bitwarden server may not be set up correctly.</string>
<string name="copy_private_key">Скапіяваць прыватны ключ</string>
<string name="login_credentials">Login Credentials</string>
<string name="autofill_options">Autofill Options</string>
<string name="use_this_button_to_generate_a_new_unique_password">Use this button to generate a new unique password.</string>
<string name="coachmark_1_of_3">1 OF 3</string>
<string name="coachmark_2_of_3">2 OF 3</string>
<string name="you_ll_only_need_to_set_up_authenticator_key">You’ll only need to set up Authenticator Key for logins that require two-factor authentication with a code. The key will continuously generate six-digit codes you can use to log in.</string>
<string name="coachmark_3_of_3">3 OF 3</string>
<string name="you_must_add_a_web_address_to_use_autofill_to_access_this_account">You must add a web address to use autofill to access this account.</string>
<string name="learn_about_new_logins">Learn about new logins</string>
<string name="we_ll_walk_you_through_the_key_features_to_add_a_new_login">We’ll walk you through the key features to add a new login.</string>
<string name="explore_the_generator">Explore the generator</string>
<string name="learn_more_about_generating_secure_login_credentials_with_guided_tour">Learn more about generating secure login credentials with a guided tour.</string>
<string name="import_client_certificate">Import client certificate</string>
<string name="enter_the_client_certificate_password_and_alias">Enter the client certificate password and the desired alias for this certificate.</string>
<string name="alias">Alias</string>
<string name="use_the_generator_to_create_secure_passwords_passphrases_and_usernames">Use the generator to create secure passwords, passphrases and usernames.</string>
<string name="passphrases_are_strong_passwords_that_are_often_easier_to_remember_and_type_than_random_passwords">Passphrases are strong passwords that are often easier to remember and type than random passwords. They are helpful for logging into accounts where Autofill is not available, like a streaming service on your TV.</string>
<string name="unique_usernames_add_an_extra_layer_of_security_and_can_help_prevent_hackers_from_finding_your_accounts">Unique usernames add an extra layer of security and can help prevent hackers from finding your accounts.</string>
<string name="coachmark_1_of_6">1 OF 6</string>
<string name="coachmark_2_of_6">2 OF 6</string>
<string name="coachmark_3_of_6">3 OF 6</string>
<string name="coachmark_4_of_6">4 OF 6</string>
<string name="coachmark_5_of_6">5 OF 6</string>
<string name="coachmark_6_of_6">6 OF 6</string>
<string name="use_these_options_to_adjust_your_password_to_your_account_requirements">Use these options to adjust your password to meet your account website’s requirements.</string>
<string name="after_you_save_your_new_password_to_bitwarden_don_t_forget_to_update_it_on_your_account_website">After you save your new password to Bitwarden, don’t forget to update it on your account website.</string>
<string name="verify_your_identity">Verify your identity</string>
<string name="error_loading_certificate">Error loading certificate</string>
<string name="certificate_alias">Certificate alias</string>
<string name="import_certificate">Import certificate</string>
<string name="choose_system_certificate">Choose system certificate</string>
<string name="certificate_installed">Certificate installed</string>
<string name="certificate_installation_failed">Certificate installation failed</string>
<string name="unsupported_certificate_type">Unsupported certificate type</string>
<string name="certificate_password_incorrect">Certificate password incorrect</string>
<string name="invalid_certificate_chain">Invalid certificate chain</string>
<string name="system_certificates_are_not_as_secure_as_importing_certificates_to_bitwarden">Using a system certificate is less secure than storing the certificate with Bitwarden. Continuing will display a list of available system certificates if one is already installed.</string>
<string name="link">Link</string>
<string name="passkey_operation_failed_because_host_url_is_not_present_in_request">Passkey operation failed because host URL is not present in request.</string>
<string name="passkey_operation_failed_because_app_signature_is_invalid">Passkey operation failed because app signature is invalid.</string>
<string name="passkey_registration_failed_due_to_an_internal_error">Passkey registration failed due to an internal error.</string>
<string name="passkey_operation_failed_because_relying_party_cannot_be_identified">Passkey operation failed because relying party cannot be identified.</string>
<string name="passkey_operation_failed_because_the_request_is_invalid">Passkey operation failed because the request is invalid.</string>
<string name="passkey_operation_failed_because_no_item_was_selected">Passkey operation failed because no item was selected.</string>
<string name="passkey_operation_failed_because_the_request_is_unsupported">Passkey operation failed because the request is unsupported.</string>
<string name="password_operation_failed_because_the_selected_item_does_not_exist">Password operation failed because the selected item does not exist.</string>
<string name="password_operation_failed_because_the_selected_item_does_not_have_a_valid_password">Password operation failed because the selected item does not have a valid password.</string>
<string name="password_operation_failed_because_no_item_was_selected">Password operation failed because no item was selected.</string>
<string name="credential_operation_failed_because_the_request_is_invalid">Credential operation failed because the request is invalid.</string>
<string name="credential_operation_failed_because_the_request_is_unsupported">Credential operation failed because the request is unsupported.</string>
<string name="credential_operation_failed_because_user_verification_attempts_exceeded">Credential operation failed because user verification attempts exceeded.</string>
<string name="credential_operation_failed_because_user_is_locked_out">Credential operation failed because user is locked out.</string>
<string name="credential_operation_failed_because_the_selected_item_does_not_exist">Credential operation failed because the selected item does not exist.</string>
<string name="credential_operation_failed_because_user_verification_was_cancelled">Credential operation failed because user verification was cancelled.</string>
<string name="self_host_server_url">Self-host server URL</string>
<string name="use_brave_autofill_integration">Use Brave autofill integration</string>
<string name="use_chrome_autofill_integration">Use Chrome autofill integration</string>
<string name="use_chrome_beta_autofill_integration">Use Chrome Beta autofill integration</string>
<string name="use_vivaldi_autofill_integration">Use Vivaldi autofill integration</string>
<string name="improves_login_filling_for_supported_websites_on_selected_browsers">Improves login filling for supported websites on selected browsers. Once enabled, you’ll be directed to browser settings to enable third-party autofill.</string>
<string name="show_more">Show more</string>
<string name="no_folder">No folder</string>
<string name="show_less">Show less</string>
<string name="add_field">Add field</string>
<string name="share_error_details">Share error details</string>
<string name="flight_recorder">Flight recorder</string>
<string name="flight_recorder_help">Flight recorder help</string>
<string name="view_recorded_logs">View recorded logs</string>
<string name="enable_flight_recorder_title">Enable flight recorder</string>
<string name="recorded_logs_title">Recorded logs</string>
<string name="no_logs_recorded">No logs recorded</string>
<string name="experiencing_an_issue">Experiencing an issue?</string>
<string name="enable_temporary_logging_to_collect_and_inspect_logs_locally">Enable temporary logging to collect and inspect logs locally. When enabled, application states and network calls may be logged—never sensitive vault information.</string>
<string name="to_get_started_set_a_logging_duration">To get started, set a logging duration. Logging
will automatically turn off after this period, giving you time to capture activity while reproducing
any issues.</string>
<string name="logs_will_be_automatically_deleted_after_30_days">Logs will be automatically deleted after 30 days. Bitwarden is only able to access your log data when you share it.</string>
<string name="for_details_on_what_is_and_isnt_logged">For details on what is and isn’t logged, visit the\n<annotation link="helpCenter">Bitwarden help center.</annotation></string>
<string name="logging_duration">Logging duration</string>
<string name="flight_recorder_one_hour">1 гадзіна</string>
<string name="flight_recorder_eight_hours">8 hours</string>
<string name="flight_recorder_twenty_four_hours">24 hours</string>
<string name="flight_recorder_one_week">1 week</string>
<string name="delete_all">Delete all</string>
<string name="share_all">Share all</string>
<string name="unable_to_share">Unable to share</string>
<string name="please_try_again_or_select_a_different_log">Please try again or select a different log.</string>
<string name="the_log_file_you_are_trying_to_share_has_been_removed">The log file you are trying to share has been removed.</string>
<string name="delete_log">Delete log</string>