-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLocalizable.xcstrings
More file actions
3587 lines (3574 loc) · 92.2 KB
/
Copy pathLocalizable.xcstrings
File metadata and controls
3587 lines (3574 loc) · 92.2 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
{
"sourceLanguage" : "en",
"strings" : {
"" : {
},
"·" : {
"comment" : "A period.",
"isCommentAutoGenerated" : true
},
"'%@' 프로젝트를 삭제하시겠습니까?" : {
"comment" : "A confirmation dialog asking the user to confirm the deletion of a project.",
"isCommentAutoGenerated" : true,
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Are you sure you want to delete '%@'?"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "'%@' プロジェクトを削除しますか?"
}
},
"ko" : {
"stringUnit" : {
"state" : "translated",
"value" : "'%@' 프로젝트를 삭제하시겠습니까?"
}
}
}
},
"@%@" : {
"comment" : "A username tag.",
"isCommentAutoGenerated" : true
},
"%lld" : {
"comment" : "A count of notes in a sidebar filter.",
"isCommentAutoGenerated" : true,
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "%lld"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "%lld"
}
},
"ko" : {
"stringUnit" : {
"state" : "translated",
"value" : "%lld"
}
}
}
},
"%lld / %lld" : {
"comment" : "A label showing the current photo index and total photo count. The first argument is the current photo index, starting from 1. The second argument is the total number of photos.",
"isCommentAutoGenerated" : true,
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "%1$lld / %2$lld"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "%1$lld / %2$lld"
}
},
"ko" : {
"stringUnit" : {
"state" : "translated",
"value" : "%1$lld / %2$lld"
}
}
}
},
"%lld chapters" : {
"comment" : "A label displaying the number of chapters in a project. The argument is the number of chapters in the project.",
"isCommentAutoGenerated" : true
},
"%lld photos" : {
"comment" : "A label showing the number of photos in a chapter. The argument is the count of photos in the chapter.",
"isCommentAutoGenerated" : true
},
"%lld photos · %lld chapters" : {
"comment" : "A footer with the number of photos and chapters in the project.",
"isCommentAutoGenerated" : true,
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "new",
"value" : "%1$lld photos · %2$lld chapters"
}
}
}
},
"%lld words" : {
"comment" : "A label that shows the number of words in the text being edited. The argument is the number of words in the text being edited.",
"isCommentAutoGenerated" : true
},
"%lld/%lld" : {
"comment" : "A label showing the current chapter number and total number of chapters.",
"isCommentAutoGenerated" : true,
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "new",
"value" : "%1$lld/%2$lld"
}
}
}
},
"%lld개 대기 중" : {
"comment" : "A label showing the number of pending uploads. The argument is the number of pending uploads.",
"isCommentAutoGenerated" : true,
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "%lld pending"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "%lld件 待機中"
}
},
"ko" : {
"stringUnit" : {
"state" : "translated",
"value" : "%lld개 대기 중"
}
}
}
},
"%lld개 사진을 삭제하시겠습니까?" : {
"comment" : "A confirmation dialog asking the user to delete the selected items. The argument is the number of selected items.",
"isCommentAutoGenerated" : true
},
"%lld개 선택" : {
"comment" : "A button that shows the number of items selected in the toolbar.",
"isCommentAutoGenerated" : true
},
"%lld열" : {
"comment" : "A button that sets the number of columns of photos.",
"extractionState" : "stale",
"isCommentAutoGenerated" : true,
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "%lld col"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "%lld列"
}
},
"ko" : {
"stringUnit" : {
"state" : "translated",
"value" : "%lld열"
}
}
}
},
"+%lld" : {
"comment" : "A plus sign with a number above it, used to indicate that there are more photos in a block than can be shown. The number is the count of photos that aren't shown.",
"extractionState" : "stale",
"isCommentAutoGenerated" : true,
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "+%lld"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "+%lld"
}
},
"ko" : {
"stringUnit" : {
"state" : "translated",
"value" : "+%lld"
}
}
}
},
"Aa" : {
"comment" : "A button to open the font menu.",
"isCommentAutoGenerated" : true
},
"Ch. %@" : {
"comment" : "A column of text that shows the chapter number and the chapter title. The argument is the string “%arg” or the string “%1$arg.%2$arg”.",
"isCommentAutoGenerated" : true
},
"CHAPTER %@" : {
"comment" : "A label that shows the chapter number. The argument is the string “%arg”, the string “%1$arg.%2$arg”, or the string “?”.",
"isCommentAutoGenerated" : true
},
"DISCOVER" : {
"comment" : "A heading for the title of the page.",
"isCommentAutoGenerated" : true
},
"Google로 로그인" : {
"comment" : "A button to log in with Google.",
"isCommentAutoGenerated" : true,
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Sign in with Google"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "Googleでログイン"
}
},
"ko" : {
"stringUnit" : {
"state" : "translated",
"value" : "Google로 로그인"
}
}
}
},
"H1" : {
"comment" : "A button that adds a heading to the text.",
"isCommentAutoGenerated" : true
},
"Library" : {
"comment" : "A button to dismiss the current view.",
"isCommentAutoGenerated" : true
},
"LINE으로 로그인" : {
},
"PHOTO ▸ TEXT" : {
"comment" : "A label that reads \"PHOTO ▸ TEXT\".",
"isCommentAutoGenerated" : true
},
"Photographers" : {
"comment" : "A title of the photographers section.",
"isCommentAutoGenerated" : true
},
"PHOTOGRAPHERS" : {
"comment" : "A heading for the photographers section in the explore view.",
"isCommentAutoGenerated" : true
},
"placeholder" : {
"comment" : "A placeholder label for a location.",
"isCommentAutoGenerated" : true
},
"PORTFOLIOS" : {
"comment" : "A heading for the user's portfolios.",
"isCommentAutoGenerated" : true
},
"Racconto" : {
"comment" : "The name of the app.",
"isCommentAutoGenerated" : true,
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Racconto"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "Racconto"
}
},
"ko" : {
"stringUnit" : {
"state" : "translated",
"value" : "Racconto"
}
}
}
},
"Racconto 시작하기" : {
"comment" : "A button label that opens the application.",
"isCommentAutoGenerated" : true,
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Get started with Racconto"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "Raccontoを始める"
}
},
"ko" : {
"stringUnit" : {
"state" : "translated",
"value" : "Racconto 시작하기"
}
}
}
},
"racconto.app/" : {
"comment" : "The prefix of a username.",
"isCommentAutoGenerated" : true,
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "racconto.app/"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "racconto.app/"
}
},
"ko" : {
"stringUnit" : {
"state" : "translated",
"value" : "racconto.app/"
}
}
}
},
"Section %@" : {
"comment" : "A label that shows the section number in a smaller font. The argument is the string “%02d”.",
"isCommentAutoGenerated" : true
},
"Side-by-Side 편집" : {
"comment" : "A title for a view that allows editing a side-by-side block.",
"isCommentAutoGenerated" : true,
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Side-by-Side Edit"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "サイドバイサイド編集"
}
},
"ko" : {
"stringUnit" : {
"state" : "translated",
"value" : "Side-by-Side 편집"
}
}
}
},
"TEXT ◂ PHOTO" : {
"comment" : "A label describing the layout of a stacked photo and text block.",
"isCommentAutoGenerated" : true
},
"username" : {
"comment" : "A label for the user's username.",
"isCommentAutoGenerated" : true,
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "username"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "username"
}
},
"ko" : {
"stringUnit" : {
"state" : "translated",
"value" : "username"
}
}
}
},
"가\n가" : {
"comment" : "A two-line title of a project.",
"isCommentAutoGenerated" : true
},
"가입한 이메일로 인증 링크를 보냈습니다." : {
"comment" : "A description of the email sent to confirm registration.",
"isCommentAutoGenerated" : true,
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Verification email has been sent. Please check your inbox."
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "登録したメールアドレスに認証リンクを送信しました。"
}
},
"ko" : {
"stringUnit" : {
"state" : "translated",
"value" : "가입한 이메일로 인증 링크를 보냈습니다."
}
}
}
},
"같은 챕터에 사진 블록이 없습니다" : {
"comment" : "A message displayed when there are no photo blocks in the same chapter.",
"isCommentAutoGenerated" : true,
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "No photo blocks in this chapter"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "同じチャプターに写真ブロックがありません"
}
},
"ko" : {
"stringUnit" : {
"state" : "translated",
"value" : "같은 챕터에 사진 블록이 없습니다"
}
}
}
},
"같은 챕터에 텍스트 블록이 없습니다" : {
"comment" : "A message displayed when there are no text blocks in the same chapter.",
"isCommentAutoGenerated" : true,
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "No text blocks in this chapter"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "同じチャプターにテキストブロックがありません"
}
},
"ko" : {
"stringUnit" : {
"state" : "translated",
"value" : "같은 챕터에 텍스트 블록이 없습니다"
}
}
}
},
"검색 결과가 없습니다." : {
"comment" : "A message displayed when there are no search results.",
"isCommentAutoGenerated" : true
},
"게시됨" : {
"comment" : "A project status.",
"isCommentAutoGenerated" : true,
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Published"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "公開中"
}
},
"ko" : {
"stringUnit" : {
"state" : "translated",
"value" : "게시됨"
}
}
}
},
"결합할 사진 블록 선택" : {
"comment" : "A label for selecting a photo block to pair with the current block.",
"isCommentAutoGenerated" : true,
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Select a photo block to pair"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "組み合わせる写真ブロックを選択"
}
},
"ko" : {
"stringUnit" : {
"state" : "translated",
"value" : "결합할 사진 블록 선택"
}
}
}
},
"결합할 텍스트 블록 선택" : {
"comment" : "A label for selecting a text block to pair with the current block.",
"isCommentAutoGenerated" : true,
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Select a text block to pair"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "組み合わせるテキストブロックを選択"
}
},
"ko" : {
"stringUnit" : {
"state" : "translated",
"value" : "결합할 텍스트 블록 선택"
}
}
}
},
"계정이 없으신가요? 회원가입" : {
"comment" : "A button that links to a registration screen.",
"isCommentAutoGenerated" : true,
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Don't have an account? Sign up"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "アカウントをお持ちでないですか?登録"
}
},
"ko" : {
"stringUnit" : {
"state" : "translated",
"value" : "계정이 없으신가요? 회원가입"
}
}
}
},
"고정" : {
"comment" : "A label for pinning a note.",
"isCommentAutoGenerated" : true,
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Pin"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "固定"
}
},
"ko" : {
"stringUnit" : {
"state" : "translated",
"value" : "고정"
}
}
}
},
"고정 해제" : {
"comment" : "A label for un-pinning a note.",
"isCommentAutoGenerated" : true,
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Unpin"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "固定解除"
}
},
"ko" : {
"stringUnit" : {
"state" : "translated",
"value" : "고정 해제"
}
}
}
},
"고정됨" : {
"comment" : "A heading for pinned notes.",
"isCommentAutoGenerated" : true,
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Pinned"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "固定済み"
}
},
"ko" : {
"stringUnit" : {
"state" : "translated",
"value" : "고정됨"
}
}
}
},
"공개" : {
"comment" : "A toggle that lets the user choose whether to make the project public.",
"isCommentAutoGenerated" : true,
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Public"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "公開"
}
},
"ko" : {
"stringUnit" : {
"state" : "translated",
"value" : "공개"
}
}
}
},
"공개된 프로젝트가 없습니다." : {
"comment" : "A description of the empty state of a user's public portfolio.",
"isCommentAutoGenerated" : true
},
"그리드" : {
"comment" : "A label for a grid-based layout.",
"isCommentAutoGenerated" : true,
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Grid"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "グリッド"
}
},
"ko" : {
"stringUnit" : {
"state" : "translated",
"value" : "그리드"
}
}
}
},
"기본 이름" : {
"comment" : "A label for the default name of a color label.",
"isCommentAutoGenerated" : true,
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Default name"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "デフォルト名"
}
},
"ko" : {
"stringUnit" : {
"state" : "translated",
"value" : "기본 이름"
}
}
}
},
"기본 정보" : {
"comment" : "A section for the basic information of a project.",
"isCommentAutoGenerated" : true,
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Basic info"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "基本情報"
}
},
"ko" : {
"stringUnit" : {
"state" : "translated",
"value" : "기본 정보"
}
}
}
},
"나란히 배치" : {
"comment" : "A label for a button that arranges two blocks side by side.",
"isCommentAutoGenerated" : true,
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Side by side"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "横並びに配置"
}
},
"ko" : {
"stringUnit" : {
"state" : "translated",
"value" : "나란히 배치"
}
}
}
},
"나란히 배치 해제" : {
"comment" : "A label for removing a block from side-by-side layout.",
"isCommentAutoGenerated" : true,
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Remove side by side"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "横並び解除"
}
},
"ko" : {
"stringUnit" : {
"state" : "translated",
"value" : "나란히 배치 해제"
}
}
}
},
"나란히 배치하려면 사진 블록과 텍스트 블록이 모두 필요합니다. 먼저 각 블록을 추가한 뒤 블록 메뉴(···)에서 설정하세요." : {
"comment" : "An alert message that appears when the user tries to add a side-by-side block without having both a photo and text block.",
"isCommentAutoGenerated" : true
},
"내림차순" : {
"comment" : "A label for sorting photos in descending order.",
"isCommentAutoGenerated" : true
},
"네이버로 로그인" : {
"comment" : "A button to log in with Naver.",
"isCommentAutoGenerated" : true,
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Sign in with Naver"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "Naverでログイン"
}
},
"ko" : {
"stringUnit" : {
"state" : "translated",
"value" : "네이버로 로그인"
}
}
}
},
"노트" : {
"comment" : "A title for a note view.",
"isCommentAutoGenerated" : true,
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Notes"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "ノート"
}
},
"ko" : {
"stringUnit" : {
"state" : "translated",
"value" : "노트"
}
}
}
},
"노트를 작성하세요..." : {
"comment" : "A placeholder text for the notes editor.",
"isCommentAutoGenerated" : true,
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Write a note..."
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "ノートを入力してください..."
}
},
"ko" : {
"stringUnit" : {
"state" : "translated",
"value" : "노트를 작성하세요..."
}
}
}
},
"다른 사용자" : {
"comment" : "A button that lets the user navigate back to the search form.",
"extractionState" : "stale",
"isCommentAutoGenerated" : true,
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Other user"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "別のユーザー"
}
},
"ko" : {
"stringUnit" : {
"state" : "translated",
"value" : "다른 사용자"
}
}
}
},
"다크 테마" : {
"comment" : "A toggle that lets the user enable or disable dark mode.",
"isCommentAutoGenerated" : true,
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Dark theme"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "ダークテーマ"
}
},
"ko" : {
"stringUnit" : {
"state" : "translated",
"value" : "다크 테마"
}
}
}
},
"당신의 사진이" : {
"comment" : "A title of a feature of the app.",
"isCommentAutoGenerated" : true,
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Your photos"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "あなたの写真が"
}
},
"ko" : {
"stringUnit" : {
"state" : "translated",
"value" : "당신의 사진이"
}
}
}
},
"독자 설정" : {
"comment" : "A label for the reader settings.",
"isCommentAutoGenerated" : true
},
"또는" : {
"comment" : "A separator between Apple and Google sign-in buttons.",
"isCommentAutoGenerated" : true,
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "or"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "または"
}
},
"ko" : {
"stringUnit" : {
"state" : "translated",
"value" : "또는"
}
}
}
},
"레이블 이름 저장" : {
"comment" : "A button that saves the color label names.",
"isCommentAutoGenerated" : true,
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Save label names"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "ラベル名を保存"
}
},
"ko" : {
"stringUnit" : {
"state" : "translated",
"value" : "레이블 이름 저장"