-
Notifications
You must be signed in to change notification settings - Fork 0
/
toolbar.i18n.dart
2284 lines (2280 loc) · 89.1 KB
/
toolbar.i18n.dart
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
import 'package:i18n_extension/i18n_extension.dart';
// TODO: The translation need to be changed and re-reviewd
extension Localization on String {
static final _t = Translations.byLocale('en') +
{
'en': {
'Paste a link': 'Paste a link',
'Ok': 'Ok',
'Select Color': 'Select Color',
'Gallery': 'Gallery',
'Link': 'Link',
'Open': 'Open',
'Copy': 'Copy',
'Remove': 'Remove',
'Save': 'Save',
'Zoom': 'Zoom',
'Saved': 'Saved',
'Text': 'Text',
'Resize': 'Resize',
'Width': 'Width',
'Height': 'Height',
'Size': 'Size',
'Small': 'Small',
'Large': 'Large',
'Huge': 'Huge',
'Clear': 'Clear',
'Font': 'Font',
'Search': 'Search',
'Camera': 'Camera',
'Video': 'Video',
'Undo': 'Undo',
'Redo': 'Redo',
'Font family': 'Font family',
'Font size': 'Font size',
'Bold': 'Bold',
'Subscript': 'Subscript',
'Superscript': 'Superscript',
'Italic': 'Italic',
'Underline': 'Underline',
'Strike through': 'Strike through',
'Inline code': 'Inline code',
'Font color': 'Font color',
'Background color': 'Background color',
'Clear format': 'Clear format',
'Align left': 'Align left',
'Align center': 'Align center',
'Align right': 'Align right',
'Justify win width': 'Justify win width',
'Text direction': 'Text direction',
'Header style': 'Header style',
'Numbered list': 'Numbered list',
'Bullet list': 'Bullet list',
'Checked list': 'Checked list',
'Code block': 'Code block',
'Quote': 'Quote',
'Increase indent': 'Increase indent',
'Decrease indent': 'Decrease indent',
'Insert URL': 'Insert URL',
'Visit link': 'Visit link',
'Enter link': 'Enter link',
'Enter media': 'Enter media',
'Edit': 'Edit',
'Apply': 'Apply',
'Hex': 'Hex',
'Material': 'Material',
'Color': 'Color',
'Find text': 'Find text',
'Move to previous occurrence': 'Move to previous occurrence',
'Move to next occurrence': 'Move to next occurrence',
'Saved using the network': 'Saved using the network',
'Saved using the local storage': 'Saved using the local storage',
'Error while saving image': 'Error while saving image',
'Please enter a text for your link': "e.g., 'Learn more)",
'Please enter the link url': "e.g., 'https://example.com'",
'Please enter a valid image url': 'Please enter a valid image url'
},
'en_us': {
'Paste a link': 'Paste a link',
'Ok': 'Ok',
'Select Color': 'Select Color',
'Gallery': 'Gallery',
'Link': 'Link',
'Open': 'Open',
'Copy': 'Copy',
'Remove': 'Remove',
'Save': 'Save',
'Zoom': 'Zoom',
'Saved': 'Saved',
'Text': 'Text',
'Resize': 'Resize',
'Width': 'Width',
'Height': 'Height',
'Size': 'Size',
'Small': 'Small',
'Large': 'Large',
'Huge': 'Huge',
'Clear': 'Clear',
'Font': 'Font',
'Search': 'Search',
'Camera': 'Camera',
'Video': 'Video',
'Undo': 'Undo',
'Redo': 'Redo',
'Font family': 'Font family',
'Font size': 'Font size',
'Bold': 'Bold',
'Subscript': 'Subscript',
'Superscript': 'Superscript',
'Italic': 'Italic',
'Underline': 'Underline',
'Strike through': 'Strike through',
'Inline code': 'Inline code',
'Font color': 'Font color',
'Background color': 'Background color',
'Clear format': 'Clear format',
'Align left': 'Align left',
'Align center': 'Align center',
'Align right': 'Align right',
'Justify win width': 'Justify win width',
'Text direction': 'Text direction',
'Header style': 'Header style',
'Numbered list': 'Numbered list',
'Bullet list': 'Bullet list',
'Checked list': 'Checked list',
'Code block': 'Code block',
'Quote': 'Quote',
'Increase indent': 'Increase indent',
'Decrease indent': 'Decrease indent',
'Insert URL': 'Insert URL',
'Visit link': 'Visit link',
'Enter link': 'Enter link',
'Enter media': 'Enter media',
'Edit': 'Edit',
'Apply': 'Apply',
'Hex': 'Hex',
'Material': 'Material',
'Color': 'Color',
'Find text': 'Find text',
'Move to previous occurrence': 'Move to previous occurrence',
'Move to next occurrence': 'Move to next occurrence',
'Saved using the network': 'Saved using the network',
'Saved using the local storage': 'Saved using the local storage',
'Error while saving image': 'Error while saving image',
'Please enter a text for your link': "e.g., 'Learn more)",
'Please enter the link url': "e.g., 'https://example.com'",
'Please enter a valid image url': 'Please enter a valid image url'
},
'ar': {
'Paste a link': 'نسخ الرابط',
'Ok': 'نعم',
'Select Color': 'اختار اللون',
'Gallery': 'المعرض',
'Link': 'الرابط',
'Open': 'فتح',
'Copy': 'نسخ',
'Remove': 'إزالة',
'Save': 'حفظ',
'Zoom': 'تكبير',
'Saved': 'تم الحفظ',
'Text': 'نص',
'Resize': 'تحجيم',
'Width': 'عرض',
'Height': 'ارتفاع',
'Size': 'حجم',
'Small': 'صغير',
'Large': 'كبير',
'Huge': 'ضخم',
'Clear': 'تنظيف',
'Font': 'خط',
'Search': 'بحث',
'Camera': 'كاميرا',
'Video': 'فيديو',
'Undo': 'تراجع',
'Redo': 'تقدم',
'Font family': 'عائلة الخط',
'Font size': 'حجم الخط',
'Bold': 'عريض',
'Subscript': 'نص سفلي',
'Superscript': 'نص علوي',
'Italic': 'مائل',
'Underline': 'تحته خط',
'Strike through': 'داخله خط',
'Inline code': 'كود بوسط السطر',
'Font color': 'لون الخط',
'Background color': 'لون الخلفية',
'Clear format': 'تنظيف التنسيق',
'Align left': 'محاذاة اليسار',
'Align center': 'محاذاة الوسط',
'Align right': 'محاذاة اليمين',
// i think it should be 'Justify with width'
// it is wrong in all properties
'Justify win width': 'تبرير مع العرض',
'Text direction': 'اتجاه النص',
'Header style': 'ستايل العنوان',
'Numbered list': 'قائمة مرقمة',
'Bullet list': 'قائمة منقطة',
'Checked list': 'قائمة للمهام',
'Code block': 'كود كامل',
'Quote': 'اقتباس',
'Increase indent': 'زيادة الهامش',
'Decrease indent': 'تنقيص الهامش',
'Insert URL': 'ادخل عنوان رابط',
'Visit link': 'زيارة الرابط',
'Enter link': 'ادخل رابط',
'Enter media': 'ادخل وسائط',
'Edit': 'تعديل',
'Apply': 'تطبيق',
'Hex': 'Hex',
'Material': 'Material',
'Color': 'اللون',
'Find text': 'بحث عن نص',
'Move to previous occurrence': 'الانتقال إلى الحدث السابق',
'Move to next occurrence': 'الانتقال إلى الحدث التالي',
'Saved using the network': 'تم الحفظ باستخدام الشبكة',
'Saved using the local storage':
'تم الحفظ باستخدام وحدة التخزين المحلية',
'Error while saving image': 'حدث خطأ أثناء حفظ الصورة',
'Please enter a text for your link': "e.g., 'Learn more)",
'Please enter the link url': "e.g., 'https://example.com'",
'Please enter a valid image url': 'Please enter a valid image url'
},
'da': {
'Paste a link': 'Indsæt link',
'Ok': 'Ok',
'Select Color': 'Vælg farve',
'Gallery': 'Galleri',
'Link': 'Link',
'Open': 'Åben',
'Copy': 'Kopi',
'Remove': 'Fjerne',
'Save': 'Gemme',
'Zoom': 'Zoom ind',
'Saved': 'Gemt',
'Text': 'Text',
'Resize': 'Resize',
'Width': 'Width',
'Height': 'Height',
'Size': 'Size',
'Small': 'Small',
'Large': 'Large',
'Huge': 'Huge',
'Clear': 'Clear',
'Font': 'Font',
'Search': 'Search',
'Camera': 'Camera',
'Video': 'Video',
'Undo': 'Undo',
'Redo': 'Redo',
'Font family': 'Font family',
'Font size': 'Font size',
'Bold': 'Bold',
'Subscript': 'Subscript',
'Superscript': 'Superscript',
'Italic': 'Italic',
'Underline': 'Underline',
'Strike through': 'Strike through',
'Inline code': 'Inline code',
'Font color': 'Font color',
'Background color': 'Background color',
'Clear format': 'Clear format',
'Align left': 'Align left',
'Align center': 'Align center',
'Align right': 'Align right',
'Justify win width': 'Justify win width',
'Text direction': 'Text direction',
'Header style': 'Header style',
'Numbered list': 'Numbered list',
'Bullet list': 'Bullet list',
'Checked list': 'Checked list',
'Code block': 'Code block',
'Quote': 'Quote',
'Increase indent': 'Increase indent',
'Decrease indent': 'Decrease indent',
'Insert URL': 'Insert URL',
'Visit link': 'Visit link',
'Enter link': 'Enter link',
'Enter media': 'Enter media',
'Edit': 'Edit',
'Apply': 'Apply',
'Find text': 'Find text',
'Move to previous occurrence': 'Move to previous occurrence',
'Move to next occurrence': 'Move to next occurrence',
'Saved using the network': 'Saved using the network',
'Saved using the local storage': 'Saved using the local storage',
'Error while saving image': 'Error while saving image',
'Please enter a text for your link': "e.g., 'Learn more)",
'Please enter the link url': "e.g., 'https://example.com'",
'Please enter a valid image url': 'Please enter a valid image url'
},
'de': {
'Paste a link': 'Link hinzufügen',
'Ok': 'OK',
'Select Color': 'Farbe auswählen',
'Gallery': 'Galerie',
'Link': 'Link',
'Open': 'Öffnen',
'Copy': 'Kopieren',
'Remove': 'Entfernen',
'Save': 'Speichern',
'Zoom': 'Zoomen',
'Saved': 'Gespeichert',
'Text': 'Text',
'Resize': 'Größe ändern',
'Width': 'Breite',
'Height': 'Höhe',
'Size': 'Größe',
'Small': 'Klein',
'Large': 'Groß',
'Huge': 'Riesig',
'Clear': 'Löschen',
'Font': 'Schrift',
'Search': 'Suchen',
'Camera': 'Kamera',
'Video': 'Video',
'Undo': 'Rückgängig',
'Redo': 'Wiederherstellen',
'Font family': 'Schriftart',
'Font size': 'Schriftgröße',
'Bold': 'Fett',
'Subscript': 'Tiefgestellt',
'Superscript': 'Hochgestellt',
'Italic': 'Kursiv',
'Underline': 'Unterstreichen',
'Strike through': 'Durchstreichen',
'Inline code': 'Inline-Code',
'Font color': 'Schriftfarbe',
'Background color': 'Hintergrundfarbe',
'Clear format': 'Formatierung löschen',
'Align left': 'Linksbündig ausrichten',
'Align center': 'Zentriert ausrichten',
'Align right': 'Rechtsbündig ausrichten',
'Justify win width': 'Blocksatz',
'Text direction': 'Textrichtung',
'Header style': 'Überschrift-Stil',
'Numbered list': 'Nummerierte Liste',
'Bullet list': 'Aufzählungsliste',
'Checked list': 'Checkliste',
'Code block': 'Code-Block',
'Quote': 'Zitat',
'Increase indent': 'Einzug vergrößern',
'Decrease indent': 'Einzug verkleinern',
'Insert URL': 'URL einfügen',
'Visit link': 'Link öffnen',
'Enter link': 'Link eingeben',
'Enter media': 'Medien einfügen',
'Edit': 'Bearbeiten',
'Apply': 'Anwenden',
'Find text': 'Text suchen',
'Move to previous occurrence': 'Zum vorherigen Auftreten springen',
'Move to next occurrence': 'Zum nächsten Auftreten springen',
'Saved using the network': 'Saved using the network',
'Saved using the local storage': 'Saved using the local storage',
'Error while saving image': 'Error while saving image',
'Please enter a text for your link': "e.g., 'Learn more)",
'Please enter the link url': "e.g., 'https://example.com'",
'Please enter a valid image url': 'Please enter a valid image url'
},
'fr': {
'Paste a link': 'Coller un lien',
'Ok': 'Ok',
'Select Color': 'Choisir une couleur',
'Gallery': 'Galerie',
'Link': 'Lien',
'Open': 'Ouvrir',
'Copy': 'Copier',
'Remove': 'Supprimer',
'Save': 'Sauvegarder',
'Zoom': 'Zoomer',
'Saved': 'Enregistrée',
'Text': 'Texte',
'Resize': 'Redimensionner',
'Width': 'Largeur',
'Height': 'Hauteur',
'Size': 'Taille',
'Small': 'Petit',
'Large': 'Grand',
'Huge': 'Énorme',
'Clear': 'Supprimer la mise en forme',
'Font': 'Police',
'Search': 'Rechercher',
'Camera': 'Caméra',
'Video': 'Vidéo',
'Undo': 'Annuler',
'Redo': 'Refaire',
'Font family': 'Famille de police',
'Font size': 'Taille de police',
'Bold': 'Gras',
'Subscript': 'Indice',
'Superscript': 'Exposant',
'Italic': 'Italique',
'Underline': 'Souligné',
'Strike through': 'Barré',
'Inline code': 'Code en ligne',
'Font color': 'Couleur de police',
'Background color': 'Couleur de fond',
'Clear format': 'Effacer la mise en forme',
'Align left': 'Aligner à gauche',
'Align center': 'Aligner au centre',
'Align right': 'Aligner à droite',
'Justify win width': 'Justifier',
'Text direction': 'Direction du texte',
'Header style': "Style d'en-tête",
'Numbered list': 'Liste numérotée',
'Bullet list': 'Liste à puces',
'Checked list': 'Check-list',
'Code block': 'Bloc de code',
'Quote': 'Citation',
'Increase indent': 'Augmenter le retrait',
'Decrease indent': 'Diminuer le retrait',
'Insert URL': 'Insérer une URL',
'Visit link': 'Visiter',
'Enter link': 'Entrer un lien',
'Enter media': 'Entrer un média',
'Edit': 'Modifier',
'Apply': 'Appliquer',
'Find text': 'Find text',
'Move to previous occurrence': 'Move to previous occurrence',
'Move to next occurrence': 'Move to next occurrence',
'Saved using the network': 'Saved using the network',
'Saved using the local storage': 'Saved using the local storage',
'Error while saving image': 'Error while saving image',
'Please enter a text for your link': "e.g., 'Learn more)",
'Please enter the link url': "e.g., 'https://example.com'",
'Please enter a valid image url': 'Please enter a valid image url'
},
'zh_cn': {
'Paste a link': '粘贴链接',
'Ok': '好',
'Select Color': '选择颜色',
'Gallery': '相簿',
'Link': '链接',
'Open': '打开',
'Copy': '复制',
'Remove': '移除',
'Save': '保存',
'Zoom': '放大',
'Saved': '已保存',
'Text': '文字',
'Resize': '调整大小',
'Width': '宽度',
'Height': '高度',
'Size': '文字大小',
'Small': '小字号',
'Large': '大字号',
'Huge': '超大字号',
'Clear': '清除',
'Font': '字体',
'Search': '搜索',
'Camera': '拍照',
'Video': '录像',
'Undo': '撤销',
'Redo': '重做',
'Font family': '字体',
'Font size': '字号',
'Bold': '粗体',
'Subscript': '下标',
'Superscript': '上标',
'Italic': '斜体',
'Underline': '下划线',
'Strike through': '删除线',
'Inline code': '内联代码',
'Font color': '字体颜色',
'Background color': '背景颜色',
'Clear format': '清除格式',
'Align left': '左对齐',
'Align center': '居中对齐',
'Align right': '右对齐',
'Justify win width': '两端对齐',
'Text direction': '文本方向',
'Header style': '标题样式',
'Numbered list': '有序列表',
'Bullet list': '无序列表',
'Checked list': '任务列表',
'Code block': '代码块',
'Quote': '引言',
'Increase indent': '增加缩进',
'Decrease indent': '减少缩进',
'Insert URL': '插入链接',
'Visit link': '访问链接',
'Enter link': '输入链接',
'Enter media': '输入媒体',
'Edit': '编辑',
'Apply': '应用',
'Find text': '搜索文本',
'Move to previous occurrence': '上一个匹配项',
'Move to next occurrence': '下一个匹配项',
'Saved using the network': 'Saved using the network',
'Saved using the local storage': 'Saved using the local storage',
'Error while saving image': 'Error while saving image',
'Please enter a text for your link': "e.g., 'Learn more)",
'Please enter the link url': "e.g., 'https://example.com'",
'Please enter a valid image url': 'Please enter a valid image url'
},
'zh_hk': {
'Paste a link': '貼上連結',
'Ok': '確定',
'Select Color': '選擇顏色',
'Gallery': '圖片庫',
'Link': '連結',
'Open': '開啓',
'Copy': '複製',
'Remove': '移除',
'Save': '儲存',
'Zoom': '放大',
'Saved': '已儲存',
'Text': '文字',
'Resize': '變更大小',
'Width': '寛',
'Height': '高',
'Size': '大小',
'Small': '小',
'Large': '大',
'Huge': '超大',
'Clear': '清除',
'Font': '字型',
'Search': '搜尋',
'Camera': '相機',
'Video': '錄影',
'Undo': '撤銷',
'Redo': '重做',
'Font family': '字體',
'Font size': '字號',
'Bold': '粗體',
'Subscript': '下標',
'Superscript': '上標',
'Italic': '斜體',
'Underline': '下劃線',
'Strike through': '刪除線',
'Inline code': '內聯代碼',
'Font color': '字體顏色',
'Background color': '背景顏色',
'Clear format': '清除格式',
'Align left': '左對齊',
'Align center': '居中對齊',
'Align right': '右對齊',
'Justify win width': '兩端對齊',
'Text direction': '文本方向',
'Header style': '標題樣式',
'Numbered list': '有序列表',
'Bullet list': '無序列表',
'Checked list': '任務列表',
'Code block': '代碼塊',
'Quote': '引言',
'Increase indent': '增加縮進',
'Decrease indent': '減少縮進',
'Insert URL': '插入鏈接',
'Visit link': '訪問鏈接',
'Enter link': '輸入鏈接',
'Enter media': '輸入媒體',
'Edit': '編輯',
'Apply': '應用',
'Find text': '搜尋文本',
'Move to previous occurrence': '上一個匹配項',
'Move to next occurrence': '下一個匹配項',
'Saved using the network': 'Saved using the network',
'Saved using the local storage': 'Saved using the local storage',
'Error while saving image': 'Error while saving image',
'Please enter a text for your link': "e.g., 'Learn more)",
'Please enter the link url': "e.g., 'https://example.com'",
'Please enter a valid image url': 'Please enter a valid image url'
},
'ja': {
'Paste a link': 'リンクをペースト',
'Ok': '完了',
'Select Color': '色を選択',
'Gallery': '写真集',
'Link': 'リンク',
'Open': '開く',
'Copy': 'コピー',
'Remove': '削除',
'Save': '保存',
'Zoom': '拡大',
'Saved': '保存済み',
'Text': '文字',
'Resize': 'サイズを調整',
'Width': '幅',
'Height': '高さ',
'Size': 'サイズ',
'Small': '小さい',
'Large': '大きい',
'Huge': 'でっかい',
'Clear': 'クリア',
'Font': 'フォント',
'Search': '検索',
'Camera': 'カメラ',
'Video': 'ビデオ',
'Undo': '取り消し',
'Redo': 'やり直し',
'Font family': 'フォントファミリー',
'Font size': 'フォントサイズ',
'Bold': '太字',
'Subscript': '下付き',
'Superscript': '上付き',
'Italic': '斜体',
'Underline': '下線',
'Strike through': '取り消し線',
'Inline code': 'インラインコード',
'Font color': 'フォントカラー',
'Background color': 'ベースカラー',
'Clear format': 'クリアフォーマット',
'Align left': '左揃え',
'Align center': 'センターアライメント',
'Align right': '右揃え',
'Justify win width': '両端揃え',
'Text direction': '文字方向',
'Header style': 'タイトルスタイル',
'Numbered list': '順序付きリスト',
'Bullet list': '順序無しリスト',
'Checked list': 'チェックボックス',
'Code block': 'コード',
'Quote': '引用',
'Increase indent': 'インデントを増やす',
'Decrease indent': 'インデントを減らす',
'Insert URL': 'ハイパーリンクを挿入',
'Visit link': 'ハイパーリンクを訪問',
'Enter link': 'ハイパーリンクを輸入',
'Enter media': 'ミディアムを輸入',
'Edit': '編集',
'Apply': '応用',
'Find text': '検索テキスト',
'Move to previous occurrence': '前のマッチ',
'Move to next occurrence': '次のマッチ',
'Saved using the network': 'Saved using the network',
'Saved using the local storage': 'Saved using the local storage',
'Error while saving image': 'Error while saving image',
'Please enter a text for your link': "e.g., 'Learn more)",
'Please enter the link url': "e.g., 'https://example.com'",
'Please enter a valid image url': 'Please enter a valid image url'
},
'ko': {
'Paste a link': '링크를 붙여넣어 주세요.',
'Ok': '확인',
'Select Color': '색상 선택',
'Gallery': '갤러리',
'Link': '링크',
'Open': '열기',
'Copy': '복사하기',
'Remove': '제거하기',
'Save': '저장하기',
'Zoom': '확대하기',
'Saved': '저장되었습니다.',
'Text': '텍스트',
'Resize': '크기조정',
'Width': '넓이',
'Height': '높이',
'Size': '크기',
'Small': '작게',
'Large': '크게',
'Huge': '매우크게',
'Clear': '초기화',
'Font': '글꼴',
'Search': '검색',
'Camera': '카메라',
'Video': '비디오',
'Undo': 'Undo',
'Redo': 'Redo',
'Font family': 'Font family',
'Font size': 'Font size',
'Bold': 'Bold',
'Subscript': 'Subscript',
'Superscript': 'Superscript',
'Italic': 'Italic',
'Underline': 'Underline',
'Strike through': 'Strike through',
'Inline code': 'Inline code',
'Font color': 'Font color',
'Background color': 'Background color',
'Clear format': 'Clear format',
'Align left': 'Align left',
'Align center': 'Align center',
'Align right': 'Align right',
'Justify win width': 'Justify win width',
'Text direction': 'Text direction',
'Header style': 'Header style',
'Numbered list': 'Numbered list',
'Bullet list': 'Bullet list',
'Checked list': 'Checked list',
'Code block': 'Code block',
'Quote': 'Quote',
'Increase indent': 'Increase indent',
'Decrease indent': 'Decrease indent',
'Insert URL': 'Insert URL',
'Visit link': 'Visit link',
'Enter link': 'Enter link',
'Enter media': 'Enter media',
'Edit': 'Edit',
'Apply': 'Apply',
'Find text': 'Find text',
'Move to previous occurrence': 'Move to previous occurrence',
'Move to next occurrence': 'Move to next occurrence',
'Saved using the network': 'Saved using the network',
'Saved using the local storage': 'Saved using the local storage',
'Error while saving image': 'Error while saving image',
'Please enter a text for your link': "e.g., 'Learn more)",
'Please enter the link url': "e.g., 'https://example.com'",
'Please enter a valid image url': 'Please enter a valid image url'
},
'ru': {
'Paste a link': 'Вставить ссылку',
'Ok': 'ОК',
'Select Color': 'Выбрать цвет',
'Gallery': 'Галерея',
'Link': 'Ссылка',
'Open': 'Открыть',
'Copy': 'Копировать',
'Remove': 'Удалить',
'Save': 'Сохранить',
'Zoom': 'Увеличить',
'Saved': 'Сохранено',
'Text': 'Текст',
'Resize': 'Resize',
'Width': 'Width',
'Height': 'Height',
'Size': 'Size',
'Small': 'Small',
'Large': 'Large',
'Huge': 'Huge',
'Clear': 'Clear',
'Font': 'Font',
'Search': 'Search',
'Camera': 'Camera',
'Video': 'Video',
'Undo': 'Undo',
'Redo': 'Redo',
'Font family': 'Font family',
'Font size': 'Font size',
'Bold': 'Bold',
'Subscript': 'Subscript',
'Superscript': 'Superscript',
'Italic': 'Italic',
'Underline': 'Underline',
'Strike through': 'Strike through',
'Inline code': 'Inline code',
'Font color': 'Font color',
'Background color': 'Background color',
'Clear format': 'Clear format',
'Align left': 'Align left',
'Align center': 'Align center',
'Align right': 'Align right',
'Justify win width': 'Justify win width',
'Text direction': 'Text direction',
'Header style': 'Header style',
'Numbered list': 'Numbered list',
'Bullet list': 'Bullet list',
'Checked list': 'Checked list',
'Code block': 'Code block',
'Quote': 'Quote',
'Increase indent': 'Increase indent',
'Decrease indent': 'Decrease indent',
'Insert URL': 'Insert URL',
'Visit link': 'Visit link',
'Enter link': 'Enter link',
'Enter media': 'Enter media',
'Edit': 'Edit',
'Apply': 'Apply',
'Find text': 'Find text',
'Move to previous occurrence': 'Move to previous occurrence',
'Move to next occurrence': 'Move to next occurrence',
'Saved using the network': 'Saved using the network',
'Saved using the local storage': 'Saved using the local storage',
'Error while saving image': 'Error while saving image',
'Please enter a text for your link': "e.g., 'Learn more)",
'Please enter the link url': "e.g., 'https://example.com'",
'Please enter a valid image url': 'Please enter a valid image url'
},
'es': {
'Paste a link': 'Pega un enlace',
'Ok': 'Ok',
'Select Color': 'Selecciona un color',
'Gallery': 'Galería',
'Link': 'Enlace',
'Open': 'Abrir',
'Copy': 'Copiar',
'Remove': 'Eliminar',
'Save': 'Guardar',
'Zoom': 'Zoom',
'Saved': 'Guardado',
'Text': 'Texto',
'Resize': 'Redimensionar',
'Width': 'Ancho',
'Height': 'Alto',
'Size': 'Tamaño',
'Small': 'Pequeño',
'Large': 'Grande',
'Huge': 'Muy grande',
'Clear': 'Borrar',
'Font': 'Fuente',
'Search': 'Buscar',
'Camera': 'Cámara',
'Video': 'Vídeo',
'Undo': 'Undo',
'Redo': 'Redo',
'Font family': 'Font family',
'Font size': 'Font size',
'Bold': 'Bold',
'Subscript': 'Subscript',
'Superscript': 'Superscript',
'Italic': 'Italic',
'Underline': 'Underline',
'Strike through': 'Strike through',
'Inline code': 'Inline code',
'Font color': 'Font color',
'Background color': 'Background color',
'Clear format': 'Clear format',
'Align left': 'Align left',
'Align center': 'Align center',
'Align right': 'Align right',
'Justify win width': 'Justify win width',
'Text direction': 'Text direction',
'Header style': 'Header style',
'Numbered list': 'Numbered list',
'Bullet list': 'Bullet list',
'Checked list': 'Checked list',
'Code block': 'Code block',
'Quote': 'Quote',
'Increase indent': 'Increase indent',
'Decrease indent': 'Decrease indent',
'Insert URL': 'Insert URL',
'Visit link': 'Visit link',
'Enter link': 'Enter link',
'Enter media': 'Enter media',
'Edit': 'Edit',
'Apply': 'Apply',
'Find text': 'Find text',
'Move to previous occurrence': 'Move to previous occurrence',
'Move to next occurrence': 'Move to next occurrence',
'Saved using the network': 'Saved using the network',
'Saved using the local storage': 'Saved using the local storage',
'Error while saving image': 'Error while saving image',
'Please enter a text for your link': "e.g., 'Learn more)",
'Please enter the link url': "e.g., 'https://example.com'",
'Please enter a valid image url': 'Please enter a valid image url'
},
'tr': {
'Paste a link': 'Bağlantıyı Yapıştır',
'Ok': 'Tamam',
'Select Color': 'Renk Seçin',
'Gallery': 'Galeri',
'Link': 'Bağlantı',
'Open': 'Açık',
'Copy': 'Kopyala',
'Remove': 'Kaldır',
'Save': 'Kayıt Et',
'Zoom': 'Yakınlaştır',
'Saved': 'Kaydedildi',
'Text': 'Text',
'Resize': 'Yeniden Boyutlandır',
'Width': 'Genişlik',
'Height': 'Yükseklik',
'Size': 'Boyut',
'Small': 'Küçük',
'Large': 'Büyük',
'Huge': 'Daha Büyük',
'Clear': 'Temizle',
'Font': 'Yazı tipi',
'Search': 'Ara',
'Camera': 'Kamera',
'Video': 'Video',
'Undo': 'Geri',
'Redo': 'İleri',
'Font family': 'Yazı Türü',
'Font size': 'Yazı Boyutu',
'Bold': 'Kalın',
'Subscript': 'Alt Simge',
'Superscript': 'Üst Simge',
'Italic': 'İtalik',
'Underline': 'Altı Çizili',
'Strike through': 'Üsti Çizili',
'Inline code': 'Inline code',
'Font color': 'Yazı Rengi',
'Background color': 'Vurgu Rengi',
'Clear format': 'Formatı Temizle',
'Align left': 'Sola Hizala',
'Align center': 'Ortaya Hizala',
'Align right': 'Sağa Hizala',
'Justify win width': 'Kenarlara Hizala',
'Text direction': 'Metin Yönü',
'Header style': 'Başlık Stili',
'Numbered list': 'Numaralı Liste',
'Bullet list': 'Madde Listesi',
'Checked list': 'Kontrol Listesi',
'Code block': 'Kod Blogu',
'Quote': 'Alıntı',
'Increase indent': 'Girintiyi Artır',
'Decrease indent': 'Girintiyi Azalt ',
'Insert URL': 'URL Giriniz',
'Visit link': 'Bağlantıyı Ziyaret Et',
'Enter link': 'Bağlantı Giriniz',
'Enter media': 'Medya Giriniz',
'Edit': 'Düzenle',
'Apply': 'Uygula',
'Find text': 'Find text',
'Move to previous occurrence': 'Move to previous occurrence',
'Move to next occurrence': 'Move to next occurrence',
'Saved using the network': 'Saved using the network',
'Saved using the local storage': 'Saved using the local storage',
'Error while saving image': 'Error while saving image',
'Please enter a text for your link': "e.g., 'Learn more)",
'Please enter the link url': "e.g., 'https://example.com'",
'Please enter a valid image url': 'Please enter a valid image url'
},
'uk': {
'Paste a link': 'Вставити посилання',
'Ok': 'ОК',
'Select Color': 'Вибрати колір',
'Gallery': 'Галерея',
'Link': 'Посилання',
'Open': 'Відкрити',
'Copy': 'Копіювати',
'Remove': 'Видалити',
'Save': 'Зберегти',
'Zoom': 'Збільшити',
'Saved': 'Збережено',
'Text': 'Текст',
'Resize': 'Resize',
'Width': 'Width',
'Height': 'Height',
'Size': 'Size',
'Small': 'Small',
'Large': 'Large',
'Huge': 'Huge',
'Clear': 'Clear',
'Font': 'Font',
'Search': 'Search',
'Camera': 'Camera',
'Video': 'Video',
'Undo': 'Undo',
'Redo': 'Redo',
'Font family': 'Font family',
'Font size': 'Font size',
'Bold': 'Bold',
'Subscript': 'Subscript',
'Superscript': 'Superscript',
'Italic': 'Italic',
'Underline': 'Underline',
'Strike through': 'Strike through',
'Inline code': 'Inline code',
'Font color': 'Font color',
'Background color': 'Background color',
'Clear format': 'Clear format',
'Align left': 'Align left',
'Align center': 'Align center',
'Align right': 'Align right',
'Justify win width': 'Justify win width',
'Text direction': 'Text direction',
'Header style': 'Header style',
'Numbered list': 'Numbered list',
'Bullet list': 'Bullet list',
'Checked list': 'Checked list',
'Code block': 'Code block',
'Quote': 'Quote',
'Increase indent': 'Increase indent',
'Decrease indent': 'Decrease indent',
'Insert URL': 'Insert URL',
'Visit link': 'Visit link',
'Enter link': 'Enter link',
'Enter media': 'Enter media',
'Edit': 'Edit',
'Apply': 'Apply',
'Find text': 'Find text',
'Move to previous occurrence': 'Move to previous occurrence',
'Move to next occurrence': 'Move to next occurrence',
'Saved using the network': 'Saved using the network',
'Saved using the local storage': 'Saved using the local storage',
'Error while saving image': 'Error while saving image',
'Please enter a text for your link': "e.g., 'Learn more)",
'Please enter the link url': "e.g., 'https://example.com'",
'Please enter a valid image url': 'Please enter a valid image url'
},
'pt': {
'Paste a link': 'Colar um link',
'Ok': 'Ok',
'Select Color': 'Selecionar uma cor',
'Gallery': 'Galeria',
'Link': 'Link',
'Open': 'Abra',
'Copy': 'Copiar',
'Remove': 'Remover',
'Save': 'Salvar',
'Zoom': 'Zoom',
'Saved': 'Salvo',
'Text': 'Texto',
'Resize': 'Redimencionar',
'Width': 'Largura',
'Height': 'Altura',
'Size': 'Tamanho',
'Small': 'Pequeno',
'Large': 'Grande',
'Huge': 'Gigante',
'Clear': 'Limpar',
'Font': 'Fonte',
'Search': 'Search',
'Camera': 'Camera',
'Video': 'Video',
'Undo': 'Undo',
'Redo': 'Redo',
'Font family': 'Font family',