This repository has been archived by the owner on Apr 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
schemaTranslations.json
1989 lines (1989 loc) · 66.9 KB
/
schemaTranslations.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
{
"i18n.Global": {
"default": "Global",
"fr": "Global",
"it": "Globale",
"uk": "Глобально",
"zh": "全局"
},
"i18n.BackgroundAndLines": {
"default": "Background and lines",
"fr": "Arrière-plan et lignes",
"it": "Sfondo e linee",
"uk": "Фон та лінії",
"zh": "背景和线条"
},
"i18n.BannerBackground": {
"default": "Banner background",
"fr": "Bannière de l’arrière-plan",
"it": "Sfondo del banner",
"uk": "Фон банеру",
"zh": "横幅背景"
},
"i18n.PageBackground": {
"default": "Page background",
"fr": "Page de l’arrière-plan",
"it": "Sfondo pagina",
"uk": "Фон сторінки",
"zh": "页面背景"
},
"i18n.CommonDarkBackground": {
"default": "Common dark background",
"fr": "Arrière-plan sombre commun",
"it": "Sfondo scuro comune",
"uk": "Загальний темний фон",
"zh": "常见的黑色背景"
},
"i18n.ModalOverlayBackground": {
"default": "Modal overlay background",
"fr": "Arrière-plan de superposition modale",
"it": "Sfondo sovrapposizione modale",
"uk": "Модальний накладний фон",
"zh": "模式叠加背景"
},
"i18n.AlertPopupBoxBackground": {
"default": "Alert popup box background",
"fr": "Arrière-plan du popup d’alerte",
"it": "Sfondo della finestra popup di avviso",
"uk": "Спливаюче вікно попередження фону",
"zh": "警报弹出框背景"
},
"i18n.AlertPopupTextColor": {
"default": "Alert popup text color",
"fr": "Arrière-plan du popup d’alerte",
"it": "Colore testo popup allerta",
"uk": "Спливаюче вікно попередження кольору тексту",
"zh": "警告弹出框文本颜色"
},
"i18n.HorizontalLine": {
"default": "Horizontal line",
"fr": "Ligne horizontale",
"it": "Linea orizzontale",
"uk": "Горизонтальна лінія",
"zh": "水平线"
},
"i18n.BodyTextAndLinks": {
"default": "Body text and links",
"fr": "Texte du corps et des liens",
"it": "Corpo del testo e collegamenti",
"uk": "Основний текст та посилання",
"zh": "正文文本和链接"
},
"i18n.BodyTextFontFamily": {
"default": "Body text font family",
"fr": "Famille de police du texte du corps",
"it": "Famiglia di font del corpo del testo",
"uk": "Родина шрифту тексту тіла",
"zh": "正文文本字体系列"
},
"i18n.Karla": {
"default": "Karla",
"fr": "Karla",
"it": "Karla",
"uk": "Karla",
"zh": "Karla"
},
"i18n.Roboto": {
"default": "Roboto",
"fr": "Roboto",
"it": "Roboto",
"uk": "Roboto",
"zh": "Roboto"
},
"i18n.SourceSansPro": {
"default": "Source Sans Pro",
"fr": "Source Sans Pro",
"it": "Source Sans Pro",
"uk": "Source Sans Pro",
"zh": "Source Sans Pro"
},
"i18n.BodyTextFontSize": {
"default": "Body text font size",
"fr": "Taille de la police du texte du corps",
"it": "Dimensione font corpo del testo",
"uk": "Розмір шрифту тексту тіла",
"zh": "正文文本大小"
},
"i18n.BodyTextColor": {
"default": "Body text color",
"fr": "Couleur du texte du corps",
"it": "Colore corpo del testo",
"uk": "Колір тексту тіла",
"zh": "正文文本颜色"
},
"i18n.BodyTextHoverColor": {
"default": "Body text hover color",
"fr": "Couleur du texte \" hover \" du corps",
"it": "Colore corpo del testo all'hover",
"uk": "Колір тексту наведення",
"zh": "正文文本悬停颜色"
},
"i18n.SecondaryTextColor": {
"default": "Secondary text color",
"fr": "Couleur secondaire du texte",
"it": "Colore secondario testo",
"uk": "Колір другорядного тексту",
"zh": "二级文本颜色"
},
"i18n.SecondaryTextHoverColor": {
"default": "Secondary text hover color",
"fr": "Couleur secondaire du texte \" hover \" du corps",
"it": "Colore secondario testo all'hover",
"uk": "Колір другорядного тексту наведення",
"zh": "二级文本悬停颜色"
},
"i18n.LinkColor": {
"default": "Link color",
"fr": "Couleur du lien",
"it": "Colore link",
"uk": "Колір посилання",
"zh": "链接颜色"
},
"i18n.LinkHoverColor": {
"default": "Link hover color",
"fr": "Couleur du lien en \" hover \"",
"it": "Colore link all'hover",
"uk": "Колір наведення курсора",
"zh": "链接悬停时的颜色"
},
"i18n.LinkActiveColor": {
"default": "Link active color",
"fr": "Couleur du Lien actif",
"it": "Colore link attivo",
"uk": "Колір активного посилання",
"zh": "有效链接颜色"
},
"i18n.Headings": {
"default": "Headings",
"fr": "En-têtes",
"it": "Intestazioni",
"uk": "Заголовки",
"zh": "头"
},
"i18n.HeadingFontFamily": {
"default": "Heading font family",
"fr": "Typographie pour les titres",
"it": "Famiglia font intestazione",
"uk": "Родина шрифтів для заголовків",
"zh": "头部字体"
},
"i18n.MontserratLight": {
"default": "Montserrat Light",
"fr": "Montserrat Light",
"it": "Montserrat Light",
"uk": "Montserrat Light",
"zh": "Montserrat Light"
},
"i18n.Montserrat": {
"default": "Montserrat",
"fr": "Montserrat",
"it": "Montserrat",
"uk": "Montserrat",
"zh": "Montserrat"
},
"i18n.OpenSans": {
"default": "Open Sans",
"fr": "Open Sans",
"it": "Open Sans",
"uk": "Open Sans",
"zh": "Open Sans"
},
"i18n.OpenSansBold": {
"default": "Open Sans Bold",
"fr": "Open Sans Bold",
"it": "Open Sans Bold",
"uk": "Open Sans Bold",
"zh": "Open Sans Bold"
},
"i18n.Volkhov": {
"default": "Volkhov",
"fr": "Volkhov",
"it": "Volkhov",
"uk": "Volkhov",
"zh": "Volkhov"
},
"i18n.Heading1": {
"default": "Heading 1",
"fr": "Titre 1",
"it": "Intestazione 1",
"uk": "Заголовок 1",
"zh": "Heading 1"
},
"i18n.Heading2": {
"default": "Heading 2",
"fr": "Titre 2",
"it": "Intestazione 2",
"uk": "Заголовок 2",
"zh": "Heading 2"
},
"i18n.Heading3": {
"default": "Heading 3",
"fr": "Titre 3",
"it": "Intestazione 3",
"uk": "Заголовок 3",
"zh": "Heading 3"
},
"i18n.Heading4": {
"default": "Heading 4",
"fr": "Titre 4",
"it": "Intestazione 4",
"uk": "Заголовок 4",
"zh": "Heading 4"
},
"i18n.Heading5": {
"default": "Heading 5",
"fr": "Titre 5",
"it": "Intestazione 5",
"uk": "Заголовок 5",
"zh": "Heading 5"
},
"i18n.Heading6": {
"default": "Heading 6",
"fr": "Titre 6",
"it": "Intestazione 6",
"uk": "Заголовок 6",
"zh": "Heading 6"
},
"i18n.HeadingTextColor": {
"default": "Heading text color",
"fr": "Couleur du texte de l'en-tête",
"it": "Colore testo intestazione",
"uk": "Колір тексту заголовка",
"zh": "头部文本颜色"
},
"i18n.LoadingIndicators": {
"default": "Loading indicators",
"fr": "Indicateurs de chargement",
"it": "Indicatori caricamento",
"uk": "Індикатори завантаження",
"zh": "加载提示框"
},
"i18n.PageLoadingBar": {
"default": "Page loading bar",
"fr": "Barre de chargement de la page",
"it": "Barra di caricamento pagina",
"uk": "Рядок завантаження сторінки",
"zh": "页面加载条"
},
"i18n.SpinnerLightHalf": {
"default": "Spinner light half",
"fr": "Spinner light half",
"it": "Filatore metà chiara",
"uk": "Спінер світлої половини",
"zh": "Spinner light half"
},
"i18n.SpinnerDarkHalf": {
"default": "Spinner dark half",
"fr": "Spinner dark half",
"it": "Filatore metà scura",
"uk": "Спінер темної половини",
"zh": "Spinner dark half"
},
"i18n.ModalLoadingBackground": {
"default": "Modal loading background",
"fr": "Arrière-plan du chargement du modale",
"it": "Sfondo caricamento modale",
"uk": "Модальний фон завантаження",
"zh": "模板加载背景"
},
"i18n.ProductThumbnailLoadingBackground": {
"default": "Product thumbnail loading background",
"fr": "Arrière-plan du chargement de la vignette du produit",
"it": "Sfondo caricamento miniatura prodotto",
"uk": "Фон завантаження ескізів продукту",
"zh": "产品缩略图加载背景"
},
"i18n.ImageLoading": {
"default": "Image Loading",
"fr": "Téléchargement de l’image",
"it": "Caricamento immagine",
"uk": "Завантаження зображень",
"zh": "图片加载"
},
"i18n.CornerstoneDoesntLoadMostImages": {
"default": "Cornerstone doesn’t load most images until the user scrolls to them on the screen. Enable \"Lazyloading with LQIP\" below if you prefer to show a preview image and replace it with a better quality version as the user scrolls. Select \"Disabled\" below to fully turn off this feature.",
"fr": "Cornerstone ne charge pas la plupart des images jusqu’à ce que l’utilisateur les défile à l’écran. Activer \"Chargement lent avec LQIP\" ci-dessous si vous préférez afficher une image de Prévisualisation et la remplacer par une version de meilleure qualité quand l’utilisateur défilera. Sélectionnez \"Désactivé\" ci-dessous pour désactiver complètement cette fonctionnalité.",
"it": "Cornerstone non carica la maggior parte delle immagini finché l'utente non scrolla fino alle immagini. Attiva \"Lazyloading con LQIP\" di sotto se vuoi mostrare un'anteprima dell'immagine che verrà sostituito con un'immagine di qualità migliore quando l'utente scrolla. Seleziona \"Disattiva\" di sotto per disabilitare completamente questa funzione.",
"uk": "Cornerstone не завантажує більшість зображень, поки користувач не прокрутить їх до екрана. Увімкніть \"Lazyloading with LQIP\" нижче, якщо ви бажаєте показати зображення для попереднього перегляду та замінити його на більш якісну версію, як користувач прокручує. Виберіть \"Відключено\" нижче, щоб повністю вимкнути цю функцію.",
"zh": "Cornerstone不会加载很多图片,除非用户在屏幕上滚动他们。如果您愿意在用户滚动的时候,在高质量下预览图片和替换,下方选择启用\"Lazyloading with LQIP\"。在下方选择\"禁用\" ,可以完全关掉这个功能。"
},
"i18n.LazyloadingMode": {
"default": "Lazyloading Mode",
"fr": "Mode de chargement lent",
"it": "Modalità Lazyload",
"uk": "Режим відкладеного завантаження",
"zh": "延迟加载模式"
},
"i18n.Lazyload": {
"default": "Lazyload",
"fr": "Chargement lent",
"it": "Lazyload",
"uk": "Відкладене завантаження",
"zh": "延迟加载"
},
"i18n.LazyloadWithLQIP": {
"default": "Lazyload with LQIP",
"fr": "Chargement lent avec LQIP",
"it": "Lazyload con LQIP",
"uk": "Відкладене завантаження з LQIP",
"zh": "使用LQIP延迟加载"
},
"i18n.Disabled": {
"default": "Disabled",
"fr": "Désactivé",
"it": "Disabilitato",
"uk": "Вимкнено",
"zh": "禁用"
},
"i18n.Pages": {
"default": "Pages",
"fr": "Pages",
"it": "Pagine",
"uk": "Сторінки",
"zh": "页面"
},
"i18n.HideBreadcrumbs": {
"default": "Hide breadcrumbs",
"fr": "Cacher les breadcrumbs",
"it": "Nascondi le briciole di pane",
"uk": "Сховати хлібні крихти",
"zh": "隐藏面包屑"
},
"i18n.HidePageHeading": {
"default": "Hide page heading",
"fr": "Masquer le titre de page",
"it": "Nascondi intestazione della pagina",
"uk": "Сховати заголовок сторінки",
"zh": "隐藏页面头部"
},
"i18n.HideCategoryPageHeading": {
"default": "Hide category page heading",
"fr": "Masquer le titre de page de la catégorie",
"it": "Nascondi intestazione pagina categoria",
"uk": "Сховати заголовок сторінки категорії",
"zh": "隐藏分类页面头部"
},
"i18n.HideBlogPageHeading": {
"default": "Hide blog page heading",
"fr": "Masquer le titre de la page du blog",
"it": "Nascondi intestazione pagina blog",
"uk": "Сховати заголовок сторінки блогу",
"zh": "隐藏博客页面头部"
},
"i18n.HideContactUsPageHeading": {
"default": "Hide contact us page heading",
"fr": "Masquer le titre de la page contactez-nous",
"it": "Nascondi pagina contattaci",
"uk": "Сховати заголовок сторінки контактів",
"zh": "隐藏联系我们页面头部"
},
"i18n.Products": {
"default": "Products",
"fr": "Produits",
"it": "Prodotti",
"uk": "Продукція",
"zh": "产品"
},
"i18n.DisplayStyle": {
"default": "Display style",
"fr": "Style d’affichage",
"it": "Stile display",
"uk": "Стиль відображення",
"zh": "不显示样式"
},
"i18n.ShowProductsInAGrid": {
"default": "Show products in a grid",
"fr": "Afficher les produits dans une grille",
"it": "Mostra prodotti in una griglia",
"uk": "Показати продукти в сітці",
"zh": "以网格形式显示产品"
},
"i18n.ShowProductsInAList": {
"default": "Show products in a list",
"fr": "Afficher les produits dans une liste",
"it": "Mostra lista prodotti",
"uk": "Показати товари в списку",
"zh": "以列表形式显示产品"
},
"i18n.Blog": {
"default": "Blog",
"fr": "Blog",
"it": "Blog",
"uk": "Блог",
"zh": "博客"
},
"i18n.SizeOfImages": {
"default": "Size of images",
"fr": "Taille des images",
"it": "Dimensioni immagini",
"uk": "Розмір зображень",
"zh": "图片尺寸"
},
"i18n.OptimizedForTheme": {
"default": "Optimized for theme",
"fr": "Optimisé pour le thème",
"it": "Ottimizzato per il tema",
"uk": "Оптимізовано під тему",
"zh": "优化主题"
},
"i18n.SpecifyDimensions": {
"default": "Specify dimensions",
"fr": "Spécifier les dimensions",
"it": "Specifica dimensioni",
"uk": "Вкажіть розміри",
"zh": "指定的尺寸"
},
"i18n.Pricing": {
"default": "Pricing",
"fr": "Tarification",
"it": "Prezzo",
"uk": "Ціноутворення",
"zh": "定价"
},
"i18n.ShowPriceRangesForProducts": {
"default": "Show price ranges for products with variants. If disabled it will show the product price",
"fr": "Afficher les gammes de prix pour les produits avec variantes. S’il est désactivé, le prix du produit sera affiché",
"it": "Mostra range di prezzo per i prodotti con varianti. Se disabilitato sarà mostrato il prezzo del prodotto",
"uk": "Показати діапазони цін на продукти з варіантами. Якщо він відключений, він відображатиме ціну товару",
"zh": "当产品有属性选项时,显示价格范围。如果禁用将显示产品价格"
},
"i18n.PurchaseOptions": {
"default": "Purchase options",
"fr": "Options d'achat",
"it": "Opzioni per l'acquisto",
"uk": "Варіанти придбання",
"zh": "购买选项"
},
"i18n.HidePurchaseOptionsPriceAnd": {
"default": "Hide purchase options (price and add to cart button) for customers who aren't logged in",
"fr": "Masquer les options d’achat (prix et ajouter au bouton panier) pour les clients qui ne sont pas connectés",
"it": "Nascondi opzioni d'acquisto (prezzo e bottone aggiungi all'carrello) per utenti non loggati",
"uk": "Сховати параметри покупки (ціна та кнопка додавання у кошик) для клієнтів, які не ввійшли в систему",
"zh": "当客户未登录时,隐藏购买选项(价格和添加购物车按钮)在"
},
"i18n.FormInputFields": {
"default": "Form Input fields",
"fr": "Formulaire champs d’entrée",
"it": "Campi Input modulo",
"uk": "Поля введення форми",
"zh": "表格输入字段"
},
"i18n.LabelTextColor": {
"default": "Label text color",
"fr": "Couleur du texte du label",
"it": "Colore testo etichetta",
"uk": "Колір тексту мітки",
"zh": "标签文本颜色"
},
"i18n.FieldTextColor": {
"default": "Field text color",
"fr": "Couleur du texte des champs",
"it": "Colore testo campo",
"uk": "Колір тексту поля",
"zh": "字段文本颜色"
},
"i18n.FieldBackground": {
"default": "Field background",
"fr": "Arrière-plan du champ",
"it": "Sfondo campo",
"uk": "Фон поля",
"zh": "字段背景"
},
"i18n.FieldBackgroundDisabled": {
"default": "Field background disabled",
"fr": "Désactivé l’arrière-plan du champ",
"it": "Sfondo campo disabilitato",
"uk": "Фон поля вимкнено",
"zh": "字段背景禁用"
},
"i18n.FieldBorder": {
"default": "Field border",
"fr": "Bordure du champ",
"it": "Bordo campo",
"uk": "Кордон поля",
"zh": "字段边框"
},
"i18n.FieldBorderActive": {
"default": "Field border active",
"fr": "Activé la bordure du champ",
"it": "Bordo campo attivo",
"uk": "Кордон поля активний",
"zh": "字段边框启用"
},
"i18n.AdminBar": {
"default": "Admin Bar"
},
"i18n.ShowAdminBar": {
"default": "Show persistent admin bar when viewing storefront from your control panel"
},
"i18n.HeaderAndFooter": {
"default": "Header & Footer",
"fr": "En-tête & pied de page",
"it": "Header & Footer",
"uk": "Заголовок і колонтитул",
"zh": "头部 & 页脚"
},
"i18n.Header": {
"default": "Header",
"fr": "En-tête",
"it": "Header",
"uk": "Заголовок",
"zh": "头部"
},
"i18n.HeaderBackground": {
"default": "Header background",
"fr": "Arrière-plan de l’en-tête",
"it": "Sfondo header",
"uk": "Фон заоголовку",
"zh": "头部背景"
},
"i18n.Logo": {
"default": "Logo",
"fr": "Logo",
"it": "Logo",
"uk": "Логотип",
"zh": "Logo"
},
"i18n.LogoPosition": {
"default": "Logo position",
"fr": "Position du logo",
"it": "Posizione logo",
"uk": "Позиція логотипу",
"zh": "Logo位置"
},
"i18n.Right": {
"default": "Right",
"fr": "Droite",
"it": "Destra",
"uk": "Право",
"zh": "右"
},
"i18n.Center": {
"default": "Center",
"fr": "Centre",
"it": "Centro",
"uk": "Центр",
"zh": "中间"
},
"i18n.Left": {
"default": "Left",
"fr": "Gauche",
"it": "Sinistra",
"uk": "Ліво",
"zh": "左"
},
"i18n.LogoImageSize": {
"default": "Logo image size",
"fr": "Taille de l’image du logo",
"it": "Dimensioni immagine logo",
"uk": "Розмір зображення логотипу",
"zh": "Logo图片尺寸"
},
"i18n.OriginalAsUploaded": {
"default": "Original (as uploaded)",
"fr": "Original (tel que téléchargé)",
"it": "Originale (come caricato)",
"uk": "Оригінал (завантажено)",
"zh": "原始(上传)"
},
"i18n.LogoFontSize": {
"default": "Logo font size",
"fr": "Taille de la police du logo",
"it": "Dimensioni font logo",
"uk": "Розмір шрифту логотипу",
"zh": "Logo字体大小"
},
"i18n.LogoTextColor": {
"default": "Logo text color",
"fr": "Couleur du texte du logo",
"it": "Colore testo logo",
"uk": "Колір тексту логотипу",
"zh": "Logo文字颜色"
},
"i18n.UtilityNavigation": {
"default": "Utility navigation",
"fr": "Navigation utilitaire",
"it": "Navigazione utilità",
"uk": "Корисна навігація",
"zh": "实用工具导航"
},
"i18n.TextColor": {
"default": "Text color",
"fr": "Couleur du texte",
"it": "Colore testo",
"uk": "Колір тексту",
"zh": "文本颜色"
},
"i18n.TextHoverColor": {
"default": "Text hover color",
"fr": "Couleur du texte \" hover \"",
"it": "Colore testo all'hover",
"uk": "Колір наведення тексту",
"zh": "文本悬停颜色"
},
"i18n.CartDropdownBackground": {
"default": "Cart dropdown background",
"fr": "Arrière-plan du panier déroulant",
"it": "Sfondo menu a discesa carrello",
"uk": "Фон випадаючого кошика",
"zh": "购物车下拉背景"
},
"i18n.CartDropdownBorder": {
"default": "Cart dropdown border",
"fr": "Bordure du panier déroulant",
"it": "Bordo menu a discesa carrello",
"uk": "Кордон спадної кордону",
"zh": "购物车下拉边框"
},
"i18n.CartCounterBackground": {
"default": "Cart counter background",
"fr": "Arrière-plan du compteur du panier",
"it": "Sfondo contatore carrello",
"uk": "Фон лічильника кошику",
"zh": "购物车计数背景"
},
"i18n.MainNavigation": {
"default": "Main navigation",
"fr": "Navigation principale",
"it": "Navigazione principale",
"uk": "Основна навігація",
"zh": "主导航"
},
"i18n.HideLinksToWebPages": {
"default": "Hide links to web pages",
"fr": "Masquer les liens vers les pages Web",
"it": "Nascondi link alle pagine web",
"uk": "Приховати посилання на веб-сторінки",
"zh": "隐藏静态页面链接"
},
"i18n.DropdownMenuBackground": {
"default": "Dropdown menu background",
"fr": "Arrière-plan du menu déroulant",
"it": "Sfondo menu a discesa",
"uk": "Фон меню, що випадає",
"zh": "下拉菜单背景"
},
"i18n.DropdownMenuBorder": {
"default": "Dropdown menu border",
"fr": "Bordure du menu déroulant",
"it": "Bordo menu a discesa",
"uk": "Межа випадаючого меню",
"zh": "下拉菜单边框"
},
"i18n.DropdownMenuDisplayMode": {
"default": "Dropdown menu display mode",
"fr": "Mode d’affichage du menu déroulant",
"it": "Menu a discesa modalità display",
"uk": "Режим відображення меню, що випадає",
"zh": "下拉菜单显示模式"
},
"i18n.SimpleMenuDisplayDepthOf": {
"default": "Simple (Menu display depth of 3)",
"fr": "Simple (profondeur d’affichage du menu de 3)",
"it": "Semplice (Menu display profondità 3)",
"uk": "Простий (глибина відображення меню 3)",
"zh": "简单(菜单显示3级)"
},
"i18n.AlternateMaxMenuDisplayDepth": {
"default": "Alternate (Max menu display depth)",
"fr": "Alternative (profondeur d’affichage du menu max)",
"it": "Alternat (Profondità massima menu)",
"uk": "Альтернативна (Максимальна глибина відображення меню)",
"zh": "备选(最大菜单显示深度)"
},
"i18n.QuickSearchBackground": {
"default": "Quick search background",
"fr": "Arrière-plan de la recherche rapide",
"it": "Background ricerca veloce",
"uk": "Фон швидкого пошуку",
"zh": "快速搜索背景"
},
"i18n.SocialMediaIcons": {
"default": "Social media icons",
"fr": "Icônes des médias sociaux",
"it": "Icone social media",
"uk": "Значки соціальних медіа",
"zh": "社交媒体图标"
},
"i18n.SocialAccountsMustBeSet": {
"default": "Social accounts must be set up to use this feature.",
"fr": "Les comptes sociaux doivent être mis en place pour utiliser cette fonctionnalité.",
"it": "Gli account social devono essere configurati per poter usare questa funzionalità.",
"uk": "Для використання цієї функції потрібно створити соціальні акаунти.",
"zh": "必须设置社交账户才能使用该功能。"
},
"i18n.ShowSocialMediaIcons": {
"default": "Show social media icons",
"fr": "Afficher les icônes des médias sociaux",
"it": "Mostra icone social media",
"uk": "Показати піктограми соціальних медіа",
"zh": "显示社交媒体图标"
},
"i18n.FooterPlacement": {
"default": "Footer Placement",
"fr": "Placement du pied de page",
"it": "Posizionamento Footer",
"uk": "Розміщення нижнього колонтитулу",
"zh": "页脚位置"
},
"i18n.None": {
"default": "None",
"fr": "Aucun",
"it": "Nessun",
"uk": "Нічого",
"zh": "无"
},
"i18n.Footer": {
"default": "Footer",
"fr": "Pied de page",
"it": "Footer",
"uk": "Колонтитул",
"zh": "页脚"
},
"i18n.FooterBackground": {
"default": "Footer background",
"fr": "Arrière-plan du pied de page",
"it": "Sfondo footer",
"uk": "Фон нижнього колонтитулу",
"zh": "页脚背景"
},
"i18n.DisplaySettings": {
"default": "Display settings",
"fr": "Afficher les paramètres",
"it": "Impostazioni display",
"uk": "Налаштування дисплею",
"zh": "显示设置"
},
"i18n.ShowPoweredByBigCommerce": {
"default": "Show \"Powered by BigCommerce\"",
"fr": "Afficher \"Powered by BigCommerce\"",
"it": "Mostra \"Powered by BigCommerce\"",
"uk": "Показати \"Працює на BigCommerce\"",
"zh": "显示\"Powered by BigCommerce\""
},
"i18n.ShowBrandsInFooter": {
"default": "Show brands in footer",
"fr": "Afficher les marques sur le pied de page",
"it": "Mostra brand nel footer",
"uk": "Показати марки в нижньому колонтитулі",
"zh": "在页脚显示品牌"
},
"i18n.ShowCurrentYearAnd": {
"default": "Show \"©\", current year and store name",
"fr": "Afficher \"©\", l’année en cours et le nom de la boutique",
"it": "Mostra \"©\", anno corrente e nome negozio",
"uk": "Показати \"©\", рік та назву магазину",
"zh": "显示\"©\", 当前年份和店铺名称"
},
"i18n.PaymentIcons": {
"default": "Payment icons",
"fr": "Icônes de paiement",
"it": "Icone pagamenti",
"uk": "Платіжні іконки",
"zh": "支付图标"
},
"i18n.ShowAmericanExpress": {
"default": "Show American Express",
"fr": "Afficher American Express",
"it": "Mostra American Express",
"uk": "Показати American Express",
"zh": "显示American Express"
},
"i18n.ShowDiscover": {
"default": "Show Discover",
"fr": "Afficher Discover",
"it": "Mostra Discover",
"uk": "Показати Discover",
"zh": "显示Discover"
},
"i18n.ShowMastercard": {
"default": "Show Mastercard",
"fr": "Afficher Mastercard",
"it": "Mostra Mastercard",
"uk": "Показати Mastercard",
"zh": "显示Mastercard"
},
"i18n.ShowPayPal": {
"default": "Show PayPal",
"fr": "Afficher PayPal",
"it": "Mostra PayPal",
"uk": "Показати PayPal",
"zh": "显示 PayPal"
},
"i18n.ShowVisa": {
"default": "Show Visa",
"fr": "Afficher Visa",
"it": "Mostra Visa",
"uk": "Показати Visa",
"zh": "显示 Visa"
},
"i18n.ShowAmazonPay": {
"default": "Show Amazon Pay",
"fr": "Afficher Amazon Pay",
"it": "Mostra Amazon Pay",
"uk": "Покавзати Amazon Pay",
"zh": "显示 Amazon Pay"
},
"i18n.ShowGooglePay": {
"default": "Show Google Pay",
"fr": "Afficher Google Pay",
"it": "Mostra Google Pay",
"uk": "Показати Google Pay",
"zh": "显示 Google Pay"
},
"i18n.ApplePayColor": {
"default": "Apple Pay color",
"fr": "Couleur d’Apple Pay",
"it": "Colore Apple Pay",
"uk": "Колір Apple Pay",
"zh": "Apple 支付颜色"
},
"i18n.BlackWhiteText": {
"default": "Black (white text)",
"fr": "Noir (texte blanc)",
"it": "Nero (testo bianco)",
"uk": "Чорний (білий текст)",
"zh": "黑(白色字体)"
},
"i18n.WhiteBlackText": {
"default": "White (black text)",
"fr": "Blanc (texte noir)",
"it": "Bianco (testo nero)",
"uk": "Білий (чорний текст)",
"zh": "白(黑字体)"
},
"i18n.WhiteBlackTextWithBorder": {
"default": "White (black text with border)",
"fr": "Blanc (texte noir avec bordure)",
"it": "Bianco (testo nero con bordo)",
"uk": "Білий (чорний текст з облямівкою)",
"zh": "白(和字体带边框)"
},
"i18n.ShowKlarna": {
"default": "Show Klarna",
"fr": "Afficher Klarna",
"it": "Mostra Klarna",
"uk": "Показати Klarna",
"zh": "显示 Klarna"
},
"i18n.GeoTrustSSL": {
"default": "GeoTrust SSL",
"fr": "SSL GeoTrust",
"it": "GeoTrust SSL",
"uk": "GeoTrust SSL",
"zh": "Geo信任SSL"
},
"i18n.IfYouvePurchasedAGeoTrust": {
"default": "If you've purchased a GeoTrust SSL from BigCommerce, check your BigCommerce Account Dashboard for the correct Common Name to use here.",
"fr": "Si vous avez acheté un SSL GeoTrust auprès de BigCommerce, consultez le tableau de bord de votre compte BigCommerce pour le nom commun correct à utiliser ici.",
"it": "Sei hai acquistato un SSL GeoTrust da BigCommerce, verifica sulla Dashboard del tuo Account BigCommerce il corretto Nome Comune da utilizzare qui.",
"uk": "Якщо ви придбали GeoTrust SSL у BigCommerce, перевірте на панелі керування облікового запису BigCommerce правильну загальну назву, яку тут можна використовувати.",
"zh": "如果您有在Bigcommerce中购买Geo信任SSL,检查您的Bigcommerce账户的控制面板,获得在这里使用的正确的公共名称。"
},
"i18n.SSLCommonName": {
"default": "SSL Common Name",
"fr": "Nom commun du SSL",
"it": "Nome Comune SSL",
"uk": "Загальна назва SSL",
"zh": "SSL公共名称"
},
"i18n.SealSize": {
"default": "Seal size",
"fr": "Taille du sceau",
"it": "Dimensioni sigillo",
"uk": "Розмір печатки",
"zh": "标志尺寸"
},
"i18n.Medium": {
"default": "Medium",
"fr": "Moyen",
"it": "Medio",
"uk": "Середній",
"zh": "中"
},
"i18n.Small": {
"default": "Small",
"fr": "Petit",
"it": "Piccolo",
"uk": "Маленький",
"zh": "小"
},
"i18n.HomePage": {
"default": "Home Page",
"fr": "Page d'accueil",
"it": "Home Page",
"uk": "Домашня сторінка",
"zh": "首页"
},
"i18n.Carousel": {
"default": "Carousel",
"fr": "Carrousel",
"it": "Carosello",
"uk": "Карусель",
"zh": "轮播"
},
"i18n.ShowCarousel": {
"default": "Show carousel",
"fr": "Afficher le carrousel",
"it": "Mostra carosello",
"uk": "Показати карусель",
"zh": "显示轮播"
},
"i18n.ShowCarouselArrows": {
"default": "Show carousel arrows",
"fr": "Afficher les flèches du carrousel",
"it": "Mostra frecce carosello",
"uk": "Показати стрілки каруселі",
"zh": "显示轮播箭头"
},
"i18n.AllowImageToStretchOn": {
"default": "Allow image to stretch on large screens",
"fr": "Permettre à l’image de s’étirer sur de grands écrans",
"it": "Permetti di espandere l'immagine su schermi grandi",
"uk": "Дозволити зображення розтягуватися на великих екранах",
"zh": "允许图片在大屏幕上伸展"
},
"i18n.ContentBackground": {
"default": "Content background",
"fr": "Contenu de l’arrière-plan",
"it": "Sfondo contenuto",
"uk": "Фон вмісту",
"zh": "内容背景"
},
"i18n.HeaderText": {
"default": "Header text",
"fr": "Texte d'entête",
"it": "Testo header",
"uk": "Текст заголовка",
"zh": "头部文本"
},
"i18n.DescriptionText": {
"default": "Description text",
"fr": "Texte de description",
"it": "Testo descrizione",
"uk": "Текст опису",
"zh": "描述文本"
},
"i18n.Indicator": {
"default": "Indicator",
"fr": "Indicateur",
"it": "Indicatore",
"uk": "Індикатор",
"zh": "加载提示框"
},
"i18n.IndicatorActive": {
"default": "Indicator active",
"fr": "Indicateur actif",
"it": "Indicatore attivo",
"uk": "Індикатор активний",
"zh": "加载提示框启用"
},
"i18n.IndicatorBackground": {
"default": "Indicator background",
"fr": "Arrière-plan d’indicateur",
"it": "Indicatore sfondo",
"uk": "Фон індикатору",
"zh": "加载提示框背景"
},
"i18n.Arrow": {
"default": "Arrow",
"fr": "Flèche",
"it": "Freccia",
"uk": "Стрілка",
"zh": "箭头"
},
"i18n.ArrowBackground": {
"default": "Arrow background",
"fr": "Flèche de l’arrière-plan",
"it": "Sfondo freccia",
"uk": "Фон стрілки",
"zh": "箭头背景"