-
-
Notifications
You must be signed in to change notification settings - Fork 160
/
Copy pathLocalizable.xcstrings
5235 lines (5235 loc) · 142 KB
/
Localizable.xcstrings
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
{
"sourceLanguage" : "en",
"strings" : {
"agent_not_running_notice_title" : {
"localizations" : {
"ca" : {
"stringUnit" : {
"state" : "translated",
"value" : "Agent inactiu"
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
"value" : "Agent wird Nicht Ausgeführt"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Agent Is Not Running"
}
},
"fi" : {
"stringUnit" : {
"state" : "translated",
"value" : "Agentti ei ole käynnissä"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
"value" : "L'agent n'est pas actif"
}
},
"it" : {
"stringUnit" : {
"state" : "translated",
"value" : "Secret Agent non è in esecuzione"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "エージェントが稼働していません"
}
},
"ko" : {
"stringUnit" : {
"state" : "translated",
"value" : "Agent가 실행되고 있지 않음"
}
},
"pt-BR" : {
"stringUnit" : {
"state" : "translated",
"value" : "Agent não está rodando"
}
},
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "SecretAgent尚未运行"
}
}
}
},
"agent_running_notice_detail_description" : {
"localizations" : {
"ca" : {
"stringUnit" : {
"state" : "translated",
"value" : "SecretAgent és un procés que s'executa en segon pla per signar peticions, per tal que no necessites tindre Secretive obert tot el temps.\n\n**Pots tancar Secretive, i tot continuarà funcionant.**"
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
"value" : "SecretAgent ist ein Prozess, der im Hintergrund läuft, um Anfragen zu signieren, so dass du Secretive nicht durchgehend geöffnet halten musst.\n\n**Du kannst Secretive schließen, und alles funktioniert weiter.**"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "SecretAgent is a process that runs in the background to sign requests, so you don't need to keep Secretive open all the time.\n\n**You can close Secretive, and everything will still keep working.**"
}
},
"fi" : {
"stringUnit" : {
"state" : "translated",
"value" : "SecretAgent on taustaprosessi joka allekirjoittaa pyyntöjä, joten Secretiveä ei tarvitse pitää käynnissä koko aikaa.
**Voit sulkea Secretiven, ja kaikki toimii yhä.**"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
"value" : "SecretAgent est un processus qui s'exécute en arrière-plan pour signer les demandes, de sorte que vous n'ayez pas besoin de garder Secretive ouvert en permanence.\n\n**Vous pouvez fermer Secretive, et tout continuera à fonctionner.**"
}
},
"it" : {
"stringUnit" : {
"state" : "translated",
"value" : "SecretAgent è un processo che viene eseguito in background per firmare le richieste, così che non devi tenere aperto Secretive tutto il tempo.\n\n**Puoi chiudere Secretive, e continuerà a funzionare.**"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "SecretAgent はバックグランドで稼働し署名を行います。Secretiveアプリを常に実行する必要はありません。\n\n**Secretiveアプリは終了しても問題ありません。アプリは機能し続けます。**"
}
},
"ko" : {
"stringUnit" : {
"state" : "translated",
"value" : "SecretAgent는 요청에 서명하기 위해 백그라운드에서 실행되는 프로세스이므로 Secretive를 항상 열어 둘 필요가 없습니다.\n\n**Secretive를 닫아도 모든 것이 계속 작동합니다.**"
}
},
"pt-BR" : {
"stringUnit" : {
"state" : "translated",
"value" : "SecretAgent é um processo que roda em background para assinar requisições para que você não precise manter o Secretive aberto a todo momento.\n\n**Você pode fechar o Secretive e tudo continuará funcionando.**"
}
},
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "SecretAgent是一个在后台进行请求处理的服务,所以您可以不用让Secretive 一直保持前台运行。 \n\n\n**您可以关闭 Secretive,所有服务都将正常运行。**\n\n\n"
}
}
}
},
"agent_running_notice_detail_title" : {
"localizations" : {
"ca" : {
"stringUnit" : {
"state" : "translated",
"value" : "L'agent secret està actiu"
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
"value" : "Secret Agent wird Ausgeführt"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Secret Agent is Running"
}
},
"fi" : {
"stringUnit" : {
"state" : "translated",
"value" : "SecretAgent on käynnissä"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
"value" : "SecretAgent est actif"
}
},
"it" : {
"stringUnit" : {
"state" : "translated",
"value" : "Secret Agent è in esecuzione"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "SecretAgentは稼働中"
}
},
"ko" : {
"stringUnit" : {
"state" : "translated",
"value" : "Secret Agent가 실행 중입니다."
}
},
"pt-BR" : {
"stringUnit" : {
"state" : "translated",
"value" : "Secret Agent está rodando"
}
},
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "SecretAgent运行中"
}
}
}
},
"agent_running_notice_title" : {
"localizations" : {
"ca" : {
"stringUnit" : {
"state" : "translated",
"value" : "Agent actiu"
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
"value" : "Agent wird Ausgeführt"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Agent is Running"
}
},
"fi" : {
"stringUnit" : {
"state" : "translated",
"value" : "Agentti on käynnissä"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
"value" : "L'agent est actif"
}
},
"it" : {
"stringUnit" : {
"state" : "translated",
"value" : "Agent è in esecuzione"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "エージェントは稼働中"
}
},
"ko" : {
"stringUnit" : {
"state" : "translated",
"value" : "Agent가 실행중"
}
},
"pt-BR" : {
"stringUnit" : {
"state" : "translated",
"value" : "Agent está rodando"
}
},
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "Agent运行中"
}
}
}
},
"agent_setup_notice_title" : {
"localizations" : {
"ca" : {
"stringUnit" : {
"state" : "translated",
"value" : "Inicialitza Secretive"
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
"value" : "Secretive Einrichten"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Setup Secretive"
}
},
"fi" : {
"stringUnit" : {
"state" : "translated",
"value" : "Asenna Secretive"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
"value" : "Configurer Secretive"
}
},
"it" : {
"stringUnit" : {
"state" : "translated",
"value" : "Imposta Secretive"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "Secretiveをセットアップ"
}
},
"ko" : {
"stringUnit" : {
"state" : "translated",
"value" : "Secretive 설치"
}
},
"pt-BR" : {
"stringUnit" : {
"state" : "translated",
"value" : "Configurar Secretive"
}
},
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "设置 Secretive"
}
}
}
},
"app_menu_help_button" : {
"localizations" : {
"ca" : {
"stringUnit" : {
"state" : "translated",
"value" : "Ajuda"
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
"value" : "Hilfe"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Help"
}
},
"fi" : {
"stringUnit" : {
"state" : "translated",
"value" : "Apua"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
"value" : "Aide"
}
},
"it" : {
"stringUnit" : {
"state" : "translated",
"value" : "Aiuto"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "ヘルプ"
}
},
"ko" : {
"stringUnit" : {
"state" : "translated",
"value" : "도움말"
}
},
"pt-BR" : {
"stringUnit" : {
"state" : "translated",
"value" : "Ajuda"
}
},
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "帮助"
}
}
}
},
"app_menu_new_secret_button" : {
"localizations" : {
"ca" : {
"stringUnit" : {
"state" : "translated",
"value" : "Nou secret"
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
"value" : "Neues Secret"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "New Secret"
}
},
"fi" : {
"stringUnit" : {
"state" : "translated",
"value" : "Uusi salaisuus"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
"value" : "Nouveau Secret"
}
},
"it" : {
"stringUnit" : {
"state" : "translated",
"value" : "Nuovo Segreto"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "新規シークレット"
}
},
"ko" : {
"stringUnit" : {
"state" : "translated",
"value" : "새 Secret"
}
},
"pt-BR" : {
"stringUnit" : {
"state" : "translated",
"value" : "Novo Segredo"
}
},
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "新密钥串"
}
}
}
},
"app_menu_setup_button" : {
"localizations" : {
"ca" : {
"stringUnit" : {
"state" : "translated",
"value" : "Inicialitza Secretive"
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
"value" : "Secretive Einrichten"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Setup Secretive"
}
},
"fi" : {
"stringUnit" : {
"state" : "translated",
"value" : "Asenna Secretive"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
"value" : "Configurer Secretive"
}
},
"it" : {
"stringUnit" : {
"state" : "translated",
"value" : "Imposta Secretive"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "セットアップ"
}
},
"ko" : {
"stringUnit" : {
"state" : "translated",
"value" : "Secretive 설치"
}
},
"pt-BR" : {
"stringUnit" : {
"state" : "translated",
"value" : "Configurar Secretive"
}
},
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "设置 Secretive"
}
}
}
},
"app_not_in_applications_notice_detail_description" : {
"localizations" : {
"ca" : {
"stringUnit" : {
"state" : "translated",
"value" : "Secretive necessita estar a la carpeta Apps per funcionar correctament. Per favor mogueu-lo i reobriu."
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
"value" : "Secretive muss sich in deinem Programme Ordner befinden, damit es richtig funktioniert. Bitte verschiebe die App und starten sie neu."
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Secretive needs to be in your Applications folder to work properly. Please move it and relaunch."
}
},
"fi" : {
"stringUnit" : {
"state" : "translated",
"value" : "Secretiven tulee olla Ohjelmat-kansiossa toimiakseen oikein. Ole hyvä ja käynnistä se uudelleen siirrettyäsi sen."
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
"value" : "Secretive doit se trouver dans votre dossier Applications pour fonctionner correctement. Veuillez le déplacer et relancer."
}
},
"it" : {
"stringUnit" : {
"state" : "translated",
"value" : "Secretive deve trovarsi nella cartella delle Applicazioni per funzionare correttamente. Per favore spostala e riavvia."
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "Secretiveは正しく動作するためにアプリケーションフォルダにある必要があります。アプリを移動して再度実行してください。"
}
},
"ko" : {
"stringUnit" : {
"state" : "translated",
"value" : "Secretive가 제대로 작동하려면 Applications 폴더에 있어야 합니다. 이동한 후 다시 실행해 주세요."
}
},
"pt-BR" : {
"stringUnit" : {
"state" : "translated",
"value" : "Secretive necessita estar no seu diretório de Aplicações para funcionar corretamente. Por favor mova-o e abra novamente."
}
},
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "Secretive 需要在应用程序文件夹中才能保持正常运行。请移动Secretive并重启"
}
}
}
},
"app_not_in_applications_notice_title" : {
"localizations" : {
"ca" : {
"stringUnit" : {
"state" : "translated",
"value" : "Secretive no es troba a la carpeta Apps"
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
"value" : "Secretive ist Nicht im Programme Ordner"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Secretive Is Not in Applications Folder"
}
},
"fi" : {
"stringUnit" : {
"state" : "translated",
"value" : "Secretive ei ole Ohjelmat-kansiossa"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
"value" : "Secretive n'est pas dans le dossier Applications"
}
},
"it" : {
"stringUnit" : {
"state" : "translated",
"value" : "Secretive non è nella cartella delle Applicazioni"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "Secretiveがアプリケーションフォルダにありません"
}
},
"ko" : {
"stringUnit" : {
"state" : "translated",
"value" : "Secretive가 Applications 폴더에 없음"
}
},
"pt-BR" : {
"stringUnit" : {
"state" : "translated",
"value" : "Secretive não está no diretório de Aplicações"
}
},
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "Secretive 不在系统应用文件夹中"
}
}
}
},
"auth_context_persist_for_duration_%@_%@" : {
"comment" : "When the user clicks the notification to leave a secret unlocked, they are shown a prompt to approve the action. This is the description, showing which secret will used. The first placeholder is the name of the secret. The second placeholder is a localized description of the time period it will remain unlocked for (eg: \"five minutes\")",
"extractionState" : "manual",
"localizations" : {
"ca" : {
"stringUnit" : {
"state" : "translated",
"value" : "desbloqueja el secret \"%1$@\" per a %2$@"
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
"value" : "Secret \"%1$@\" für %2$@ entsperren"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "unlock secret \"%1$@\" for %2$@"
}
},
"fi" : {
"stringUnit" : {
"state" : "translated",
"value" : "avaa salaisuuden \"%1$@\" lukitus ajaksi %2$@"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
"value" : "déverrouiller le secret \"%1$@\" pendant %2$@"
}
},
"it" : {
"stringUnit" : {
"state" : "translated",
"value" : "sblocca il Segreto \"%1$@\" per %2$@"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "シークレット“%1$@”のロックを解除します (%2$@間)"
}
},
"ko" : {
"stringUnit" : {
"state" : "translated",
"value" : "비밀 \"%1$@\"를 %2$@ 동안 잠금 해제"
}
},
"pt-BR" : {
"stringUnit" : {
"state" : "translated",
"value" : "destravar segredo \"%1$@\" for %2$@"
}
},
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "解锁密钥串 \"%1$@\" 给 %2$@"
}
}
}
},
"auth_context_persist_for_duration_unknown_%@" : {
"comment" : "When the user clicks the notification to leave a secret unlocked, they are shown a prompt to approve the action. This is the description, showing which secret will used. The placeholder is the name of the secret. This is a fallback used when a duration is unable to be specified.",
"extractionState" : "manual",
"localizations" : {
"ca" : {
"stringUnit" : {
"state" : "translated",
"value" : "desbloqueja el secret \"%1$@\""
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
"value" : "Secret \"%1$@\" entsperren"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "unlock secret \"%1$@\""
}
},
"fi" : {
"stringUnit" : {
"state" : "translated",
"value" : "avaa salaisuuden \"%1$@\" lukitus"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
"value" : "déverrouiller le secret \"%1$@\""
}
},
"it" : {
"stringUnit" : {
"state" : "translated",
"value" : "sblocca il Segreto \"%1$@\""
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "シークレット“%1$@”のロックを解除します"
}
},
"ko" : {
"stringUnit" : {
"state" : "translated",
"value" : "비밀 \"%1$@\" 잠금 해제"
}
},
"pt-BR" : {
"stringUnit" : {
"state" : "translated",
"value" : "destravar secreto \"%1$@\""
}
},
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "解锁密钥串 \"%1$@\""
}
}
}
},
"auth_context_request_decrypt_description_%@" : {
"comment" : "When the user performs a decryption action using a secret, they are shown a prompt to approve the action. This is the description, showing which secret will be used. The placeholder is the name of the secret. NOTE: This is currently not exposed in UI.",
"extractionState" : "manual",
"localizations" : {
"ca" : {
"stringUnit" : {
"state" : "translated",
"value" : "desencripta dades usant el secret \"%1$@\" "
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
"value" : "Daten mit dem Secret \"%1$@\" entschlüsseln"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "decrypt data using secret \"%1$@\""
}
},
"fi" : {
"stringUnit" : {
"state" : "translated",
"value" : "pura salaus käyttäen salaisuutta \"%1$@\""
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
"value" : "déchiffrer les données en utilisant le secret \"%1$@\"."
}
},
"it" : {
"stringUnit" : {
"state" : "translated",
"value" : "decifra i dati usando il Segreto \"%1$@\""
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "シークレット“%1$@”を使って復号化します"
}
},
"ko" : {
"stringUnit" : {
"state" : "translated",
"value" : "비밀 \"%1$@\"를 사용해서 데이터 복호화"
}
},
"pt-BR" : {
"stringUnit" : {
"state" : "translated",
"value" : "decriptar o dado utilizando segredo \"%1$@\""
}
},
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "使用密钥串 \"%1$@\" 解密数据"
}
}
}
},
"auth_context_request_deny_button" : {
"comment" : "When the user chooses to perform an action that requires Touch ID/password authentication, they are shown a prompt to approve the action. This is the deny button for that prompt.",
"extractionState" : "manual",
"localizations" : {
"ca" : {
"stringUnit" : {
"state" : "translated",
"value" : "Denega"
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
"value" : "Ablehnen"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Deny"
}
},
"fi" : {
"stringUnit" : {
"state" : "translated",
"value" : "Kiellä"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
"value" : "Refuser"
}
},
"it" : {
"stringUnit" : {
"state" : "translated",
"value" : "Nega"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "拒否"
}
},
"ko" : {
"stringUnit" : {
"state" : "translated",
"value" : "거부"
}
},
"pt-BR" : {
"stringUnit" : {
"state" : "translated",
"value" : "Negar"
}
},
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "拒绝"
}
}
}
},
"auth_context_request_encrypt_description_%@" : {
"comment" : "When the user performs an encryption action using a secret, they are shown a prompt to approve the action. This is the description, showing which secret will be used. The placeholder is the name of the secret. NOTE: This is currently not exposed in UI.",
"extractionState" : "manual",
"localizations" : {
"ca" : {
"stringUnit" : {
"state" : "translated",
"value" : "encripta dades usant el secret \"%1$@\""
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
"value" : "Daten mit dem Secret \"%1$@\" verschlüsseln"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "encrypt data using secret \"%1$@\""
}
},
"fi" : {
"stringUnit" : {
"state" : "translated",
"value" : "salaa käyttäen salaisuutta \"%1$@\""
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
"value" : "chiffrer les données en utilisant le secret \"%1$@\""
}
},
"it" : {
"stringUnit" : {
"state" : "translated",
"value" : "cifra i dati usando il Segreto \"%1$@\""
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "シークレット“%1$@”を使って暗号化します"
}
},
"ko" : {
"stringUnit" : {
"state" : "translated",
"value" : "비밀 \"%1$@\"를 사용해서 데이터 암호화"
}
},
"pt-BR" : {
"stringUnit" : {
"state" : "translated",
"value" : "encriptar dado utilizando o segredo \"%1$@\""
}
},
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "使用密钥串 \"%1$@\" 加密数据"
}
}
}
},
"auth_context_request_signature_description_%@_%@" : {
"comment" : "When the user performs a signature action using a secret, they are shown a prompt to approve the action. This is the description, showing which secret will be used, and where the request is coming from. The first placeholder is the name of the app requesting the operation. The second placeholder is the name of the secret.",
"extractionState" : "manual",
"localizations" : {
"ca" : {
"stringUnit" : {
"state" : "translated",
"value" : "signa una petición de \"%1$@\" usant el secret \"%2$@\""
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
"value" : "eine Anfrage von \"%1$@\" mit dem Secret \"%2$@\" signieren"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "sign a request from \"%1$@\" using secret \"%2$@\""
}
},
"fi" : {
"stringUnit" : {
"state" : "translated",
"value" : "allekirjoita pyyntö lähteestä \"%1$@\" käyttäen salaisuutta \"%2$@\""
}