-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathmessages.json
3544 lines (3544 loc) · 102 KB
/
messages.json
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
{
"bitwarden": {
"message": "Bitwarden"
},
"filters": {
"message": "Mga Filter"
},
"allItems": {
"message": "Lahat ng mga item"
},
"favorites": {
"message": "Mga Paborito"
},
"types": {
"message": "Mga uri"
},
"typeLogin": {
"message": "Mag-login"
},
"typeCard": {
"message": "Karta"
},
"typeIdentity": {
"message": "Pagkakakilanla"
},
"typeSecureNote": {
"message": "Secure na tala"
},
"typeSshKey": {
"message": "SSH key"
},
"folders": {
"message": "Mga Folder"
},
"collections": {
"message": "Koleksyon"
},
"searchVault": {
"message": "Hanapin ang vault"
},
"addItem": {
"message": "Magdagdag ng item"
},
"shared": {
"message": "Iniimbak"
},
"share": {
"message": "I-share"
},
"moveToOrganization": {
"message": "Lumipat sa organisasyon"
},
"movedItemToOrg": {
"message": "$ITEMNAME$ lumipat sa $ORGNAME$",
"placeholders": {
"itemname": {
"content": "$1",
"example": "Secret Item"
},
"orgname": {
"content": "$2",
"example": "Company Name"
}
}
},
"welcomeBack": {
"message": "Welcome back"
},
"moveToOrgDesc": {
"message": "Pumili ng isang organisasyon kung saan mo nais na ipalipat ang item na ito. Ang paglipat sa isang organisasyon ay nagpapalipat ng pagmamay-ari ng item sa organisasyon na iyon. Hindi ka na magiging direktang may-ari ng item na ito kapag naipadala na ito."
},
"attachments": {
"message": "Mga Attachment"
},
"viewItem": {
"message": "Tingnan ang Item"
},
"name": {
"message": "Pangalan"
},
"uri": {
"message": "URI"
},
"uriPosition": {
"message": "URI $POSITION$",
"description": "A listing of URIs. Ex: URI 1, URI 2, URI 3, etc.",
"placeholders": {
"position": {
"content": "$1",
"example": "2"
}
}
},
"newUri": {
"message": "Bagong URI"
},
"username": {
"message": "Ang pangalan ng tagagamit"
},
"password": {
"message": "Ang Password"
},
"passphrase": {
"message": "Pasa salita"
},
"editItem": {
"message": "Baguhin ang Item"
},
"emailAddress": {
"message": "Email address"
},
"verificationCodeTotp": {
"message": "Code ng Pag-verify (TOTP)"
},
"website": {
"message": "Website"
},
"notes": {
"message": "Mga nota"
},
"customFields": {
"message": "Pasadyang mga patlang"
},
"launch": {
"message": "Paglulunsad"
},
"copyValue": {
"message": "Halaga ng kopya",
"description": "Copy value to clipboard"
},
"minimizeOnCopyToClipboard": {
"message": "Mag minimize kapag kinokopya sa clipboard"
},
"minimizeOnCopyToClipboardDesc": {
"message": "I-minimize ang application kapag kinokopya ang data ng isang item sa clipboard."
},
"toggleVisibility": {
"message": "I-toggle ang kakayahang makita"
},
"toggleCollapse": {
"message": "I-toggle ang pagbagal",
"description": "Toggling an expand/collapse state."
},
"cardholderName": {
"message": "Pangalan ng cardholder"
},
"number": {
"message": "Numero"
},
"brand": {
"message": "Tatak"
},
"expiration": {
"message": "Pag-expire"
},
"securityCode": {
"message": "Kodigo ng Seguridad"
},
"identityName": {
"message": "Pangalan ng Identidad"
},
"company": {
"message": "Kumpanya"
},
"ssn": {
"message": "Numero ng Seguridad Sosyal"
},
"passportNumber": {
"message": "Numero ng Pasaporte"
},
"licenseNumber": {
"message": "Numero ng Lisensya"
},
"email": {
"message": "Mag-email"
},
"phone": {
"message": "Telepono"
},
"address": {
"message": "Address"
},
"sshPrivateKey": {
"message": "Private key"
},
"sshPublicKey": {
"message": "Public key"
},
"sshFingerprint": {
"message": "Fingerprint"
},
"sshKeyAlgorithm": {
"message": "Key type"
},
"sshKeyAlgorithmED25519": {
"message": "ED25519"
},
"sshKeyAlgorithmRSA2048": {
"message": "RSA 2048-Bit"
},
"sshKeyAlgorithmRSA3072": {
"message": "RSA 3072-Bit"
},
"sshKeyAlgorithmRSA4096": {
"message": "RSA 4096-Bit"
},
"sshKeyGenerated": {
"message": "A new SSH key was generated"
},
"sshKeyWrongPassword": {
"message": "The password you entered is incorrect."
},
"importSshKey": {
"message": "Import"
},
"confirmSshKeyPassword": {
"message": "Confirm password"
},
"enterSshKeyPasswordDesc": {
"message": "Enter the password for the SSH key."
},
"enterSshKeyPassword": {
"message": "Enter password"
},
"sshAgentUnlockRequired": {
"message": "Please unlock your vault to approve the SSH key request."
},
"sshAgentUnlockTimeout": {
"message": "SSH key request timed out."
},
"enableSshAgent": {
"message": "Enable SSH agent"
},
"enableSshAgentDesc": {
"message": "Enable the SSH agent to sign SSH requests right from your Bitwarden vault."
},
"enableSshAgentHelp": {
"message": "The SSH agent is a service targeted at developers that allows you to sign SSH requests directly from your Bitwarden vault."
},
"premiumRequired": {
"message": "Kailangan ng premium"
},
"premiumRequiredDesc": {
"message": "Ang pagiging miyembro ng Premium ay kinakailangan upang magamit ang tampok na ito."
},
"errorOccurred": {
"message": "Nagkaproblema."
},
"error": {
"message": "Mali"
},
"decryptionError": {
"message": "Decryption error"
},
"couldNotDecryptVaultItemsBelow": {
"message": "Bitwarden could not decrypt the vault item(s) listed below."
},
"contactCSToAvoidDataLossPart1": {
"message": "Contact customer success",
"description": "This is part of a larger sentence. The full sentence will read 'Contact customer success to avoid additional data loss.'"
},
"contactCSToAvoidDataLossPart2": {
"message": "to avoid additional data loss.",
"description": "This is part of a larger sentence. The full sentence will read 'Contact customer success to avoid additional data loss.'"
},
"january": {
"message": "Enero"
},
"february": {
"message": "Pebrero"
},
"march": {
"message": "Marso"
},
"april": {
"message": "Abril"
},
"may": {
"message": "Mayo"
},
"june": {
"message": "Hunyo"
},
"july": {
"message": "Hulyo"
},
"august": {
"message": "Agosto"
},
"september": {
"message": "Setyembre"
},
"october": {
"message": "Oktubre"
},
"november": {
"message": "Nobyembre"
},
"december": {
"message": "Disyembre"
},
"ex": {
"message": "ex.",
"description": "Short abbreviation for 'example'."
},
"title": {
"message": "Pamagat"
},
"mr": {
"message": "Ginoo"
},
"mrs": {
"message": "Gng"
},
"ms": {
"message": "Ms"
},
"mx": {
"message": "Mx"
},
"dr": {
"message": "Dr"
},
"expirationMonth": {
"message": "Buwan ng Pagpaso"
},
"expirationYear": {
"message": "Taon ng Pag-expire"
},
"select": {
"message": "Piliin"
},
"other": {
"message": "Iba pa"
},
"generatePassword": {
"message": "Magtatag ng Password"
},
"generatePassphrase": {
"message": "Generate passphrase"
},
"type": {
"message": "Uri"
},
"firstName": {
"message": "Unang Pangalan"
},
"middleName": {
"message": "Gitnang Pangalan"
},
"lastName": {
"message": "Huling pangalan"
},
"fullName": {
"message": "Buong Pangalan"
},
"address1": {
"message": "Address 1"
},
"address2": {
"message": "Address 2"
},
"address3": {
"message": "Address 3"
},
"cityTown": {
"message": "Bayan/Town"
},
"stateProvince": {
"message": "Estado/Probinsya"
},
"zipPostalCode": {
"message": "Código ng Zip / Postal"
},
"country": {
"message": "Bayan"
},
"save": {
"message": "I-save"
},
"cancel": {
"message": "Kanselahin"
},
"delete": {
"message": "Alisin"
},
"favorite": {
"message": "Ang Paborito"
},
"edit": {
"message": "Baguhin"
},
"authenticatorKeyTotp": {
"message": "Susi ng Authenticator (TOTP)"
},
"folder": {
"message": "Folder/Direktoryo"
},
"newCustomField": {
"message": "Bagong custom field"
},
"value": {
"message": "Halaga"
},
"dragToSort": {
"message": "I-drag sa pag-aayos"
},
"cfTypeText": {
"message": "Teksto"
},
"cfTypeHidden": {
"message": "Nakatago"
},
"cfTypeBoolean": {
"message": "Boolean"
},
"cfTypeLinked": {
"message": "Nilikha",
"description": "This describes a field that is 'linked' (related) to another field."
},
"linkedValue": {
"message": "Naka link na halaga",
"description": "This describes a value that is 'linked' (related) to another value."
},
"remove": {
"message": "Alisin"
},
"nameRequired": {
"message": "Kailangan ang pangalan."
},
"addedItem": {
"message": "Ang item ay idinagdag"
},
"editedItem": {
"message": "Ang item ay nai-save"
},
"deleteItem": {
"message": "Tanggalin ang item"
},
"deleteFolder": {
"message": "Tanggalin ang folder"
},
"deleteAttachment": {
"message": "Tanggalin ang attachment"
},
"deleteItemConfirmation": {
"message": "Gusto mo bang talagang ipadala sa basura?"
},
"deletedItem": {
"message": "Item na ipinadala sa basurahan"
},
"overwritePasswordConfirmation": {
"message": "Sigurado ka bang gusto mong palitan ang kasalukuyang password?"
},
"overwriteUsername": {
"message": "I-overwrite ang username"
},
"overwriteUsernameConfirmation": {
"message": "Sigurado ka bang gusto mong palitan ang kasalukuyang username?"
},
"noneFolder": {
"message": "Walang folder",
"description": "This is the folder for uncategorized items"
},
"addFolder": {
"message": "Magdagdag ng folder"
},
"editFolder": {
"message": "Baguhin ang folder"
},
"regeneratePassword": {
"message": "Muling I-generate ang Password"
},
"copyPassword": {
"message": "Kopyahin ang password"
},
"regenerateSshKey": {
"message": "Regenerate SSH key"
},
"copySshPrivateKey": {
"message": "Copy SSH private key"
},
"copyPassphrase": {
"message": "Copy passphrase",
"description": "Copy passphrase to clipboard"
},
"copyUri": {
"message": "Kopyahin ang URI"
},
"copyVerificationCodeTotp": {
"message": "Kopyahin ang verification code (TOTP)"
},
"length": {
"message": "Kahabaan"
},
"passwordMinLength": {
"message": "Minimum password length"
},
"uppercase": {
"message": "Uppercase (A-Z)",
"description": "deprecated. Use uppercaseLabel instead."
},
"lowercase": {
"message": "Maliit na titik (a-z)",
"description": "deprecated. Use lowercaseLabel instead."
},
"numbers": {
"message": "Mga Bilang (0-9)",
"description": "deprecated. Use numbersLabel instead."
},
"specialCharacters": {
"message": "Mga espesyal na character (!@#$%^&*)"
},
"include": {
"message": "Include",
"description": "Card header for password generator include block"
},
"uppercaseDescription": {
"message": "Include uppercase characters",
"description": "Tooltip for the password generator uppercase character checkbox"
},
"uppercaseLabel": {
"message": "A-Z",
"description": "Label for the password generator uppercase character checkbox"
},
"lowercaseDescription": {
"message": "Include lowercase characters",
"description": "Full description for the password generator lowercase character checkbox"
},
"lowercaseLabel": {
"message": "a-z",
"description": "Label for the password generator lowercase character checkbox"
},
"numbersDescription": {
"message": "Include numbers",
"description": "Full description for the password generator numbers checkbox"
},
"numbersLabel": {
"message": "0-9",
"description": "Label for the password generator numbers checkbox"
},
"specialCharactersDescription": {
"message": "Include special characters",
"description": "Full description for the password generator special characters checkbox"
},
"specialCharactersLabel": {
"message": "!@#$%^&*",
"description": "Label for the password generator special characters checkbox"
},
"numWords": {
"message": "Ang bilang ng mga salitaNumero ng mga salita"
},
"wordSeparator": {
"message": "Separador ng salita"
},
"capitalize": {
"message": "Pagkapital",
"description": "Make the first letter of a word uppercase."
},
"includeNumber": {
"message": "Isama ang numero"
},
"close": {
"message": "Isara"
},
"minNumbers": {
"message": "Pinakamababang mga numero"
},
"minSpecial": {
"message": "Inakamababang espesyal",
"description": "Minimum Special Characters"
},
"ambiguous": {
"message": "Iwasan ang mga hindi malinaw na character",
"description": "deprecated. Use avoidAmbiguous instead."
},
"avoidAmbiguous": {
"message": "Avoid ambiguous characters",
"description": "Label for the avoid ambiguous characters checkbox."
},
"generatorPolicyInEffect": {
"message": "Enterprise policy requirements have been applied to your generator options.",
"description": "Indicates that a policy limits the credential generator screen."
},
"searchCollection": {
"message": "Maghanap ng koleksyon"
},
"searchFolder": {
"message": "Folder ng paghahanap"
},
"searchFavorites": {
"message": "Maghanap ng mga paborito"
},
"searchType": {
"message": "Uri ng paghahanap",
"description": "Search item type"
},
"newAttachment": {
"message": "Magdagdag ng bagong attachment"
},
"deletedAttachment": {
"message": "Attachment na natanggal"
},
"deleteAttachmentConfirmation": {
"message": "Sigurado ka bang gusto mong tanggalin ang attachment na ito?"
},
"attachmentSaved": {
"message": "Nailigtas ang attachment"
},
"file": {
"message": "Mag-file"
},
"selectFile": {
"message": "Pumili ng file"
},
"maxFileSize": {
"message": "Maximum na laki ng file ay 500 MB."
},
"encryptionKeyMigrationRequired": {
"message": "Encryption key migration required. Please login through the web vault to update your encryption key."
},
"editedFolder": {
"message": "Nai-save na folder"
},
"addedFolder": {
"message": "Idinagdag ang folder"
},
"deleteFolderConfirmation": {
"message": "Sigurado ka bang gusto mong tanggalin ang folder na ito?"
},
"deletedFolder": {
"message": "Tinanggal ang folder"
},
"loginOrCreateNewAccount": {
"message": "Maglog-in o gumawa ng bagong account para ma-access ang iyong ligtas na kahadeyero."
},
"createAccount": {
"message": "Gumawa ng Account"
},
"newToBitwarden": {
"message": "New to Bitwarden?"
},
"setAStrongPassword": {
"message": "Set a strong password"
},
"finishCreatingYourAccountBySettingAPassword": {
"message": "Finish creating your account by setting a password"
},
"logIn": {
"message": "Mag-log in"
},
"logInToBitwarden": {
"message": "Log in to Bitwarden"
},
"logInWithPasskey": {
"message": "Log in with passkey"
},
"loginWithDevice": {
"message": "Log in with device"
},
"useSingleSignOn": {
"message": "Use single sign-on"
},
"submit": {
"message": "Isumite"
},
"masterPass": {
"message": "Master Password"
},
"masterPassDesc": {
"message": "Ang master password ay ang password na gagamitin mo upang ma-access ang iyong kahadeyero. Napakaimportante na hindi mo makalimutan ang iyong master password. Walang paraan upang ma-recover ang password kapag nakalimutan mo ito."
},
"masterPassHintDesc": {
"message": "May isang pahiwatig para sa master password na makakatulong na maalala mo ang iyong password kapag nakalimutan mo ito."
},
"reTypeMasterPass": {
"message": "Muling i-type ang Master Password"
},
"masterPassHint": {
"message": "Mungkahi sa Master Password (opsyonal)"
},
"masterPassHintText": {
"message": "If you forget your password, the password hint can be sent to your email. $CURRENT$/$MAXIMUM$ character maximum.",
"placeholders": {
"current": {
"content": "$1",
"example": "0"
},
"maximum": {
"content": "$2",
"example": "50"
}
}
},
"masterPassword": {
"message": "Master password"
},
"masterPassImportant": {
"message": "Your master password cannot be recovered if you forget it!"
},
"confirmMasterPassword": {
"message": "Confirm master password"
},
"masterPassHintLabel": {
"message": "Master password hint"
},
"joinOrganization": {
"message": "Join organization"
},
"joinOrganizationName": {
"message": "Join $ORGANIZATIONNAME$",
"placeholders": {
"organizationName": {
"content": "$1",
"example": "My Org Name"
}
}
},
"finishJoiningThisOrganizationBySettingAMasterPassword": {
"message": "Finish joining this organization by setting a master password."
},
"settings": {
"message": "Mga Preperensya"
},
"accountEmail": {
"message": "Account email"
},
"requestHint": {
"message": "Request hint"
},
"requestPasswordHint": {
"message": "Request password hint"
},
"enterYourAccountEmailAddressAndYourPasswordHintWillBeSentToYou": {
"message": "Enter your account email address and your password hint will be sent to you"
},
"passwordHint": {
"message": "Mungkahi sa Password"
},
"enterEmailToGetHint": {
"message": "Ipasok ang iyong email address ng account para makatanggap ng hint ng iyong master password."
},
"getMasterPasswordHint": {
"message": "Makuha ang Punong Password na Hint"
},
"emailRequired": {
"message": "Kailangan ang email address."
},
"invalidEmail": {
"message": "Di-wasto na email address."
},
"masterPasswordRequired": {
"message": "Kailangan ang master password."
},
"confirmMasterPasswordRequired": {
"message": "Kailangan ang master password retype."
},
"masterPasswordMinlength": {
"message": "Ang master password ay dapat na hindi bababa sa $VALUE$ na mga character.",
"description": "The Master Password must be at least a specific number of characters long.",
"placeholders": {
"value": {
"content": "$1",
"example": "8"
}
}
},
"youSuccessfullyLoggedIn": {
"message": "You successfully logged in"
},
"youMayCloseThisWindow": {
"message": "You may close this window"
},
"masterPassDoesntMatch": {
"message": "Hindi tugma ang kumpirmasyon ng master password."
},
"newAccountCreated": {
"message": "Nalikha na ang iyong bagong account! Maaari ka nang mag-log in."
},
"newAccountCreated2": {
"message": "Your new account has been created!"
},
"youHaveBeenLoggedIn": {
"message": "You have been logged in!"
},
"masterPassSent": {
"message": "Pinadala na namin sa iyo ang email na may hint ng master password mo."
},
"unexpectedError": {
"message": "Isang hindi inaasahang error ang naganap."
},
"itemInformation": {
"message": "Impormasyon ng item"
},
"noItemsInList": {
"message": "Walang mga bagay na maipapakita."
},
"sendVerificationCode": {
"message": "Magpadala ng isang verification code sa iyong email"
},
"sendCode": {
"message": "Magpadala ng Code"
},
"codeSent": {
"message": "Ipinadala ang code"
},
"verificationCode": {
"message": "VerificationCode sa Filipino ay Pagsasagot sa Tanong"
},
"confirmIdentity": {
"message": "Kumpirmahin ang iyong identididad upang magpatuloy."
},
"verificationCodeRequired": {
"message": "Kailangan ang verification code."
},
"webauthnCancelOrTimeout": {
"message": "The authentication was cancelled or took too long. Please try again."
},
"invalidVerificationCode": {
"message": "Maling verification code"
},
"continue": {
"message": "Magpatuloy"
},
"enterVerificationCodeApp": {
"message": "Ipasok ang 6 na digit na code ng pagpapatunay mula sa iyong authenticator app."
},
"enterVerificationCodeEmail": {
"message": "Ipasok ang 6 digit verification code na ipinadala sa $EMAIL$.",
"placeholders": {
"email": {
"content": "$1",
"example": "example@gmail.com"
}
}
},
"verificationCodeEmailSent": {
"message": "Email ng pagpapatunay na ipinadala sa $EMAIL$.",
"placeholders": {
"email": {
"content": "$1",
"example": "example@gmail.com"
}
}
},
"rememberMe": {
"message": "Tandaan mo ako"
},
"sendVerificationCodeEmailAgain": {
"message": "Ipadala muli ang email ng verification code"
},
"useAnotherTwoStepMethod": {
"message": "Gamitin ang isa pang two-step na paraan ng pag-login"
},
"insertYubiKey": {
"message": "Ipasok ang iyong YubiKey sa USB port ng iyong computer, pagkatapos ay hawakan ang pindutan nito."
},
"insertU2f": {
"message": "Ipasok ang iyong key ng seguridad sa USB port ng iyong computer. Kung may butones ito, hawakan ito."
},
"recoveryCodeDesc": {
"message": "Nawala ang access sa lahat ng iyong dalawang-factor provider? Gamitin ang iyong recovery code para patayin ang lahat ng dalawang-factor provider sa iyong account."
},
"recoveryCodeTitle": {
"message": "Recovery code"
},
"authenticatorAppTitle": {
"message": "App ng Authenticator"
},
"authenticatorAppDescV2": {
"message": "Enter a code generated by an authenticator app like Bitwarden Authenticator.",
"description": "'Bitwarden Authenticator' is a product name and should not be translated."
},
"yubiKeyTitleV2": {
"message": "Yubico OTP security key"
},
"yubiKeyDesc": {
"message": "Gumamit ng YubiKey upang ma access ang iyong account. Gumagana sa YubiKey 4, 4 Nano, 4C, at NEO aparato."
},
"duoDescV2": {
"message": "Enter a code generated by Duo Security.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
"duoOrganizationDesc": {
"message": "Patunayan sa Duo Security para sa iyong samahan gamit ang Duo Mobile app, SMS, tawag sa telepono, o U2F security key.",
"description": "'Duo Security' and 'Duo Mobile' are product names and should not be translated."
},
"verifyIdentity": {
"message": "Verify your Identity"
},
"weDontRecognizeThisDevice": {
"message": "We don't recognize this device. Enter the code sent to your email to verify your identity."
},
"continueLoggingIn": {
"message": "Continue logging in"
},
"webAuthnTitle": {
"message": "FIDO2 WebAuthn"
},
"webAuthnDesc": {
"message": "Gumamit ng anumang WebAuthn compatible security key upang ma access ang iyong account."
},
"emailTitle": {
"message": "Mag-email"
},
"emailDescV2": {
"message": "Enter a code sent to your email."
},
"loginUnavailable": {
"message": "Hindi magagamit ang pag-login"
},
"noTwoStepProviders": {
"message": "Ang account na ito ay may dalawang hakbang na pag login set up, gayunpaman, wala sa mga naka configure na dalawang hakbang na provider ang suportado ng aparatong ito."
},
"noTwoStepProviders2": {
"message": "Mangyaring magdagdag ng karagdagang mga provider na mas mahusay na suportado sa buong mga aparato (tulad ng isang authenticator app)."
},
"twoStepOptions": {
"message": "Mga pagpipilian para sa two-step login"
},
"selfHostedEnvironment": {
"message": "Kapaligirang self-hosted"
},
"selfHostedEnvironmentFooter": {
"message": "Tukuyin ang base URL ng iyong on premises na naka host sa pag install ng Bitwarden."
},
"selfHostedBaseUrlHint": {
"message": "Specify the base URL of your on-premises hosted Bitwarden installation. Example: https://bitwarden.company.com"
},
"selfHostedCustomEnvHeader": {
"message": "For advanced configuration, you can specify the base URL of each service independently."
},
"selfHostedEnvFormInvalid": {
"message": "You must add either the base Server URL or at least one custom environment."
},
"customEnvironment": {
"message": "Kapaligirang Custom"
},
"customEnvironmentFooter": {
"message": "Para sa mga advanced na gumagamit. Maaari mong tukuyin ang base URL ng bawat serbisyo nang independiyente."
},
"baseUrl": {
"message": "URL ng Server"
},
"authenticationTimeout": {
"message": "Authentication timeout"
},
"authenticationSessionTimedOut": {
"message": "The authentication session timed out. Please restart the login process."
},
"selfHostBaseUrl": {
"message": "Self-host server URL",
"description": "Label for field requesting a self-hosted integration service URL"
},
"apiUrl": {
"message": "URL ng API server"
},
"webVaultUrl": {
"message": "Web vault server URL - URL ng Server ng Web vault"
},
"identityUrl": {
"message": "Identity server URL - URL ng Server ng Identity"
},
"notificationsUrl": {
"message": "URL ng server ng mga abiso"
},
"iconsUrl": {
"message": "Icons server URL - URL ng Server ng Mga Icon"
},
"environmentSaved": {
"message": "Nai-save ang mga URL ng Kapaligiran"
},
"ok": {
"message": "Ok"
},
"yes": {
"message": "Oo"
},
"no": {
"message": "Hindi"
},
"overwritePassword": {
"message": "I-overwrite ang password"
},
"learnMore": {
"message": "Matuto nang higit pa"
},
"featureUnavailable": {
"message": "Hindi magagamit ang tampok"
},
"loggedOut": {
"message": "Umalis na"
},
"loggedOutDesc": {
"message": "You have been logged out of your account."
},
"loginExpired": {
"message": "Nag-expire na ang iyong session sa login."
},
"restartRegistration": {