-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathen.json
More file actions
2450 lines (2450 loc) · 170 KB
/
en.json
File metadata and controls
2450 lines (2450 loc) · 170 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
{
"Restore": "Restore",
"Restore as new": "Restore as new",
"Preview": "Preview",
"Edit a Name": "Edit a Name",
"Add a Name": "Add a Name",
"Add a Tag": "Add a Tag",
"Export": "Export",
"Success": "Success",
"Module": "Module",
"Drop content here": "Drop content here",
"Selector": "Selector",
"Attribute": "Attribute",
"Expression": "Expression",
"Global": "Global",
"Replace": "Replace",
"Format": "Format",
"Separator": "Separator",
"Next": "Next",
"Direction Rule": "Direction Rule",
"Edit": "Edit",
"Config": "Configuration",
"Group by": "Group by",
"Search": "Search",
"Use": "Use",
"Image Gallery": "Image Gallery",
"Delete": "Delete",
"Replace Image": "Replace Image",
"Crop": "Crop",
"Edit Image": "Edit Image",
"Save to Gallery": "Save to Gallery",
"Leave as External": "Leave as External",
"Default Palette": "Default Palette",
"My Palette": "My Palette",
"Selected:": "Selected:",
"Add to Favorites": "Add to Favorites",
"Copy to Project": "Copy to Project",
"Share to Project": "Share to Project",
"View all": "View all",
"Save as New": "Save as New",
"Comments": "Comments",
"Code Editor": "Code Editor",
"Background Color": "Background Color",
"Alignment": "Alignment",
"Drop here": "Drop here",
"Custom CSS": "Custom CSS",
"Default CSS": "Default CSS",
"Tags": "Tags",
"ID": "ID",
"Keep Module Styles": "Keep Module Styles",
"Inputs Text Color": "Inputs Text Color",
"Some elements may be hidden due to active view options.": "Some elements may be hidden due to activated view options.",
"Inputs Background Color": "Inputs Background Color",
"Input Background Color": "Input Background Color",
"Input Font Family": "Input Font Family",
"Input Height": "Input Height",
"This does not guarantee how your email will be previewed. Preview your annotations with <a href=\"https://developers.google.com/workspace/gmail/promotab/preview\" target=\"_blank\">Google validator</a>.": "This does not guarantee how your email will be previewed. Preview your annotations with <a href=\"https://developers.google.com/workspace/gmail/promotab/preview\" target=\"_blank\">Google validator</a>.",
"Thumbnails can be pulled from YouTube, TikTok or Vimeo. For other sources, add a custom thumbnail below.": "Thumbnails can be pulled from YouTube, TikTok or Vimeo. For other sources, add a custom thumbnail below.",
"Promo Image": "Promo Image",
"The aspect ratio of the added image does not match the others. Please replace it to match the {ratio} format": "The aspect ratio of the added image does not match the others. Please replace it to match the {ratio} format",
"Product Card URL": "Product Card URL",
"Inputs Height": "Inputs Height",
"Decrease Height": "Decrease Height",
"Increase Height": "Increase Height",
"Input Border Radius": "Input Border Radius",
"Inputs Border Radius": "Inputs Border Radius",
"Decrease Border Radius": "Decrease Border Radius",
"Increase Border Radius": "Increase Border Radius",
"Input": "Input",
"Checkbox": "Checkbox",
"Radio": "Radio",
"Select": "Select",
"Global Styles for all Form Elements": "Global Styles for all Form Elements",
"Add Form Element": "Add Form Element",
"Product Carousel": "Product Carousel",
"Product carousels display multiple image previews for a promotion": "Product carousels display multiple image previews for a promotion",
"Single Image Preview": "Single Image Preview",
"Adding image to your annotation brings your email messages to life, making them more discoverable and inspiring": "Adding image to your annotation brings your email messages to life, making them more discoverable and inspiring",
"Deal Annotation": "Deal Annotation",
"Text, Textarea, Email, Tel, Number, Date Time, Range": "Text, Textarea, Email, Tel, Number, Date Time, Range",
"Hidden Field": "Hidden Field",
"Used for sending data without user intervention": "Used for sending data without user intervention",
"Switcher": "Switcher",
"Multiple Choices": "Multiple Choices",
"Dropdown Menu": "Dropdown Menu",
"Section": "Section",
"Section {itemIndex} Title": "Section {itemIndex} Title",
"An error occurred when reaching OpenAI. Message from OpenAI:": "An error occurred when reaching OpenAI. Message from OpenAI:",
"Expanded": "Expanded",
"Form elements": "Form elements",
"Numbered List": "Numbered List",
"Titles Text Style": "Titles Text Style",
"Title Alignment": "Title Alignment",
"Success notification": "Success notification",
"The data has been applied successfully": "The data has been applied successfully",
"The data source link is unavailable. Please, make sure there is an access to the data source.": "The data source link is unavailable. Please, make sure there is an access to the data source.",
"Error notification": "Error notification",
"The process is running": "The process is running",
"Image processing": "Image processing",
"Can not upload an image.": "Can not upload an image.",
"Can not get image from an external source.": "Can not get image from an external source.",
"Aim for the drop zone!": "Aim for the drop zone!",
"Can`t delete the image": "Can`t delete the image",
"The image has been deleted successfully": "The image has been deleted successfully",
"The option is disabled because was overridden in the Code editor": "The option is disabled because was overridden in the Code editor",
"Please use the \"Export\" feature to get the compiled HTML code ready for mailings via your ESP. </br> HTML code is displayed within editor only for editing purposes and doesn't have compiled styles for your convenience.": "Please use the \"Export\" feature to get the compiled HTML code ready for mailings via your ESP. </br> HTML code is displayed within editor only for editing purposes and doesn't have compiled styles for your convenience.",
"If an email client doesn't support the non-standard font, a similar standard font will be used instead.": "If an email client doesn't support the non-standard font, a similar standard font will be used instead.",
"Anchor's Name": "Anchor's Name",
"Enter anchor's name": "Enter anchor's name",
"Button Text": "Button Text",
"Font Family": "Font Family",
"Label Font Family": "Label Font Family",
"Inputs Font Family": "Inputs Font Family",
"Labels Font Family": "Labels Font Family",
"Choose Font": "Choose Font",
"Font Size": "Font Size",
"Font Weight": "Font Weight",
"Controls the thickness of the selected text. Only weights supported by the current font are available.": "Controls the thickness of the selected text. Only weights supported by the current font are available.",
"Label Font Size": "Label Font Size",
"Labels Font Size": "Labels Font Size",
"Input Font Size": "Input Font Size",
"Inputs Font Size": "Inputs Font Size",
"Title Font Size": "Title Font Size",
"Font Size on Desktop": "Font Size on Desktop",
"Label Font Size on Desktop": "Label Font Size on Desktop",
"Font Size on Mobile": "Font Size on Mobile",
"Label Font Size on Mobile": "Label Font Size on Mobile",
"Food & Drinks": "Food & Drinks",
"Frequently used": "Frequently used",
"Flags": "Flags",
"Label language": "Label language",
"Time Zone": "Time Zone",
"Play Button Styles": "Play Button Styles",
"Image preview": "Image preview",
"Image Block Preview": "Image Block Preview",
"Image Block Rollover Preview": "Image Block Rollover Preview",
"Button Block Icon": "Button Block Icon",
"Banner Block Background": "Banner Block Background",
"Video Block Custom Thumbnail": "Video Block Custom Thumbnail",
"Menu Block Item {itemIndex} Icon": "Menu Block Item {itemIndex} Icon",
"Social Block Item {itemIndex} Icon": "Social Block Item {itemIndex} Icon",
"Container Background": "Container Background",
"Structure Background": "Structure Background",
"Stripe Background": "Stripe Background",
"Start again": "Start again",
"Header Stripes Background": "Header Stripes Background",
"Footer Stripes Background": "Footer Stripes Background",
"General Background": "General Background",
"Image Path": "Image Path",
"Responsive image": "Responsive image",
"Make the image to fit to the width of a mobile screen. Please note: It only works on devices that have support for media queries.": "Make the image to fit to the width of a mobile screen. Please note: It only works on devices that have support for media queries.",
"The image will automatically adjust to the width of the screen on mobile devices that support it": "The image will automatically adjust to the width of the screen on mobile devices that support it",
"Images won’t be adjusted to the width of the screen on mobile devices, which may lead to poor display of images and content": "Images won’t be adjusted to the width of the screen on mobile devices, which may lead to poor display of images and content",
"This setting is automatically enabled due to the image width and cannot be disabled for proper mobile display.": "This setting is automatically enabled due to the image width and cannot be disabled for proper mobile display.",
"Image Block": "Image Block",
"Text Block": "Text Block",
"Button Block": "Button Block",
"Spacer Block": "Spacer Block",
"Video Block": "Video Block",
"Social Block": "Social Block",
"Banner Block": "Banner Block",
"Timer Block": "Timer Block",
"Advanced Color Settings": "Advanced Color Settings",
"Labels Letter Case": "Labels Letter Case",
"Digital Labels": "Digital Labels",
"Timer Background Color": "Timer Background Color",
"Separator Font Color": "Separator Font Color",
"Separator Font": "Separator Font",
"Labels Font": "Labels Font",
"Digits Font": "Digits Font",
"Labels Font Color": "Labels Font Color",
"Labels Language": "Labels Language",
"Labels Color Days": "Labels Color Days",
"Labels Color Hours": "Labels Color Hours",
"Labels Color Minutes": "Labels Color Minutes",
"Labels Color Seconds": "Labels Color Seconds",
"Expiration Image": "Expiration Image",
"You have the option of displaying a different image when your countdown timer expires.": "You have the option of displaying a different image when your countdown timer expires.",
"Note: If a link is applied to the Timer block, this link will also be used for the expiration image.": "Note: If a link is applied to the Timer block, this link will also be used for the expiration image.",
"Display Days": "Display Days",
"Digits Font Color": "Digits Font Color",
"Digits Color Days": "Digits Color Days",
"Digits Color Hours": "Digits Color Hours",
"Digits Color Minutes": "Digits Color Minutes",
"Digits Color Seconds": "Digits Color Seconds",
"Menu Block": "Menu Block",
"HTML Block": "HTML Block",
"Carousel Block": "Carousel Block",
"Accordion Block": "Accordion Block",
"Form Block": "Form Block",
"Container": "Container",
"Container Form": "Container Form",
"Structure": "Structure",
"Structures": "Layouts",
"Structures & Modules": "Structures & Modules",
"Stripe": "Stripe",
"Image": "Image",
"Link": "Link",
"Text": "Text",
"Button": "Button",
"Spacer": "Spacer",
"Social Networks": "Social Networks",
"Menu": "Menu",
"HTML": "HTML",
"Banner": "Banner",
"Video": "Video",
"Timer": "Timer",
"AMP Carousel": "Carousel",
"AMP Accordion": "AMP Accordion",
"AMP Form": "AMP Form",
"Allows uploading and editing images": "Allows uploading and editing images and GIFs",
"Allows working on text styles, adding merge tags and lists": "Allows working on text styles, adding merge tags and lists",
"Allows designing buttons of any shape, size, and color": "Allows designing buttons of any shape, size, and color",
"Meant to visually separate elements with a horizontal line": "Meant to visually separate elements with a horizontal line",
"Offers 70+ social media icons and chats of different design styles": "Offers 70+ social media icons and chats of different design styles",
"Helps taking users from emails to necessary pages on your site": "Helps taking users from emails to necessary pages on your site",
"Allows adding elements with custom code in emails": "Allows adding elements with custom code in emails",
"Allows applying filters to images and placing text over them": "Allows applying filters to images and placing text over them",
"Allows setting thumbnail images & play buttons for videos": "Allows setting thumbnail images & play buttons for videos",
"Adds a countdown to a specific date. Use the timer in emails for promotions, launches, and events": "Adds a countdown to a specific date. Use the timer in emails for promotions, launches, and events",
"Retina Display Support": "Retina Display Support",
"The \"AMP Carousel\" block is currently being developed. Switch to the Old version of the Editor to access the full functionality needed to continue working on this email. Please note, that all changes you have already made to this email will be saved and available in the Old version": "Allows adding a rotating image carousel with customizable slides, supporting both interactive HTML and AMP HTML versions",
"The \"AMP Accordion\" block is currently being development. Switch to the Old version of the Editor to access the full functionality needed to continue working on this email. Please note, that all changes you have already made to this email will be saved and available in the Old version": "Allows adding a collapsible accordion with customizable sections, supporting AMP HTML version only",
"An AMP Form block lets users collect feedback or run surveys directly in an email. It includes input fields and can be added in the Editor, allowing recipients to respond right from their inbox": "An AMP Form block lets users collect feedback or run surveys directly in an email. It includes input fields and can be added in the Editor, allowing recipients to respond right from their inbox",
"Border Radius": "Border Radius",
"Decrease Border Radius by {step}": "Decrease Border Radius by {step}",
"Increase Border Radius by {step}": "Increase Border Radius by {step}",
"Top Left Border Radius": "Top Left Border Radius",
"Decrease Top Left Border Radius by {step}": "Decrease Top Left Border Radius by {step}",
"Increase Top Left Border Radius by {step}": "Increase Top Left Border Radius by {step}",
"Top Right Border Radius": "Top Right Border Radius",
"Decrease Top Right Border Radius by {step}": "Decrease Top Right Border Radius by {step}",
"Increase Top Right Border Radius by {step}": "Increase Top Right Border Radius by {step}",
"Bottom Right Border Radius": "Bottom Right Border Radius",
"Decrease Bottom Right Border Radius by {step}": "Decrease Bottom Right Border Radius by {step}",
"Increase Bottom Right Border Radius by {step}": "Increase Bottom Right Border Radius by {step}",
"Bottom Left Border Radius": "Bottom Left Border Radius",
"Decrease Bottom Left Border Radius by {step}": "Decrease Bottom Left Border Radius by {step}",
"Increase Bottom Left Border Radius by {step}": "Increase Bottom Left Border Radius by {step}",
"Radius for All Corners": "Radius for All Corners",
"Radius per Corner": "Radius per Corner",
"Outlook for Windows does not have a support for the border radius property. We recommend enabling the Outlook support option.": "Outlook for Windows does not have a support for the border radius property. We recommend enabling the Outlook support option.",
"It only works with CSS styles, so it is not supported by Outlook on Windows. We recommend enabling the Support for Outlook option.": "It only works with CSS styles, so it is not supported by Outlook on Windows. We recommend enabling the Support for Outlook option.",
"Border for All Sides": "Border for All Sides",
"Border per Side": "Border per Side",
"Outlook for Windows does not have support for a separate button border width setting": "Outlook for Windows does not have support for a separate button border width setting",
"Not supported by Outlook on Windows, so we recommend enabling the Support for Outlook option in the General Settings tab.": "Not supported by Outlook on Windows, so we recommend enabling the Support for Outlook option in the General Settings tab.",
"Outlook for Windows does not have support for dashed and dotted borders": "Outlook for Windows does not have support for dashed and dotted borders",
"Adjust to width": "Adjust to width",
"Not supported by Outlook for Windows. We recommend enabling the Outlook support option.": "Not supported by Outlook for Windows. We recommend enabling the Outlook support option.",
"Fit to Container on Desktop": "Fit to Container on Desktop",
"Adjust to width on Mobile": "Adjust to width on Mobile",
"Paragraph Bottom Space": "Paragraph Bottom Space",
"Anchor Link": "Anchor Link",
"Creates an anchor for this element. Anchor links in emails are designed to make navigation easier. They help take readers to specific places in the email without the need to scroll. <a href=\"https://support.stripo.email/en/articles/3174098-how-to-apply-anchor-hyperlinks\" target=\"_blank\">Learn more</a> about how it works and how to create one with Stripo.": "Creates an anchor for this element. Anchor links in emails are designed to make navigation easier. They help take readers to specific places in the email without the need to scroll. <a href=\"https://support.stripo.email/en/articles/3174098-how-to-apply-anchor-hyperlinks\" target=\"_blank\">Learn more</a> about how it works and how to create one with Stripo.",
"Anchor Links": "Anchor Links",
"An anchor link should not exceed more than 150 characters": "An anchor link should not exceed more than 150 characters",
"An alternate text should not exceed more than 255 characters": "An alternate text should not exceed more than 255 characters",
"A HEX color value should not exceed more than 8 symbols": "A HEX color value should not exceed more than 8 symbols",
"A keyword must have at least 2 characters": "A keyword must have at least 2 characters",
"Menu Item Type": "Menu Item Type",
"Menu Item {itemIndex} Type": "Menu Item {itemIndex} Type",
"Add template/pre-built modules, or structures with containers": "Add template/pre-built modules, or structures with containers",
"(Gallery disabled — only blocks can be dropped into a container, not other modules)": "(Gallery disabled — only blocks can be dropped into a container, not other modules)",
"<strong>Note:</strong> Stripe and Structure modules are hidden — you can drop only containers into a structure": "<strong>Note:</strong> Stripe and Structure modules are hidden — you can drop only containers into a structure",
"<strong>Note:</strong> Stripe modules are hidden — you can drop only structures and containers into a stripe": "<strong>Note:</strong> Stripe modules are hidden — you can drop only structures and containers into a stripe",
"Alignment on Desktop": "Alignment on Desktop",
"Alignment on Mobile": "Alignment on Mobile",
"Animals & Plants": "Animals & Plants",
"Activities": "Activities",
"Arrows": "Arrows",
"Hide Element": "Hide Element",
"This element will not be hidden in email clients which do not support media queries.": "This element will not be hidden in email clients which do not support media queries.",
"Hidden on Mobile": "Hidden on Mobile",
"The element will be hidden on Yahoo mobile App, as well as in mobile email client which do not support media queries.": "The element will be hidden on Yahoo mobile App, as well as in mobile email client which do not support media queries.",
"Hidden on Desktop": "Hidden on Desktop",
"Icon": "Icon",
"The icon inside the button will not show in Outlook 2002, 2007, 2010, 2013, 2016, 2019 on Windows.": "The icon inside the button will not show in Outlook 2002, 2007, 2010, 2013, 2016, 2019 on Windows.",
"Button label should not exceed more than 255 characters": "Button label should not exceed more than 255 characters",
"Block Background Color": "Block Background Color",
"Text Background Color": "Text Background Color",
"General Background Color": "General Background Color",
"Will be applied to the entire email": "Will be applied to the entire email",
"Responsive Design": "Responsive Design",
"All emails designed with Stripo are responsive by default, but you have the option to disable this feature.": "All emails designed with Stripo are responsive by default, but you have the option to disable this feature.",
"Your email will automatically adjust for smaller screens by displaying content in a single column. Side-by-side blocks will be stacked vertically": "Your email will automatically adjust for smaller screens by displaying content in a single column. Side-by-side blocks will be stacked vertically",
"Hide Image Download Icons": "Hide Image Download Icons",
"Prevents Gmail from showing download icons on wide images that don’t have links. Recommended to keep enabled for cleaner email design.": "Prevents Gmail from showing download icons on wide images that don’t have links. Recommended to keep enabled for cleaner email design.",
"Default Styles": "Default Styles",
"<p>The Appearance panel generates default base CSS styles, which are then placed in the Default CSS tab. These styles impact all template elements and their behavior. You can override them but not directly edit them.</p><p>By turning off this feature, you can freely utilize your custom HTML & CSS without our styles affecting it.</p>": "<p>The General Styles panel generates default base CSS styles, which are then placed in the Default CSS tab. These styles impact all template elements and their behavior. You can override them but not directly edit them.</p><p>By turning off this feature, you can freely utilize your custom HTML & CSS without our styles affecting it.</p>",
"This email is missing the markup required for General Styles. Default styles are disabled to prevent layout changes.": "This email is missing the markup required for General Styles. Default styles are disabled to prevent layout changes.",
"Your email will display the desktop version on mobile devices. Mobile-specific settings will be turned off in the Editor": "Your email will display the desktop version on mobile devices. Mobile-specific settings will be turned off in the Editor",
"Button Color": "Button Color",
"Label Color": "Label Color",
"Input Color": "Input Color",
"Input Text Color": "Input Text Color",
"Labels Color": "Labels Color",
"Show Label": "Show Label",
"Show \"Start Again\" Button": "Show \"Start Again\" Button",
"Label Name": "Label Name",
"Hover Button Styles": "Hover Button Styles",
"The {tag} inherits background color from the element <span id=\"linkTrigger\">{parentTag}</span>": "The {tag} inherits background color from the element <span id=\"linkTrigger\">{parentTag}</span>",
"This style is controlled globally in the <span id=\"linkTrigger\">General Styles</span> section.": "This style is controlled globally in the <span id=\"linkTrigger\">General Styles</span> section.",
"The {tag} inherits background color from control in General Styles: <span id=\"linkTrigger\">{parentTag}</span>": "The {tag} inherits background color from control in General Styles: <span id=\"linkTrigger\">{parentTag}</span>",
"The element this comment referred to is no longer in the email. You can keep the comment or <span id=\"linkTrigger\">delete it</span>.": "The element this comment referred to is no longer in the email. You can keep the comment or <span id=\"linkTrigger\">delete it</span>.",
"The element this comment referred to is no longer in the email.": "The element this comment referred to is no longer in the email.",
"The {tag} inherits background color from {parentTag} thus no \"radius\" changes are visible": "The {tag} inherits background color from \"{parentTag}\" element thus no \"radius\" changes are visible",
"The option \"hover button styles\" (changing colors upon a mouseover) is supported by a limited number of email clients. <a href=\"{link}\" target=\"_blank\">Learn more</a>": "The option \"hover button styles\" (changing colors upon a mouseover) is supported by a limited number of email clients. <a href=\"{link}\" target=\"_blank\">Learn more</a>",
"https://www.caniemail.com/features/css-pseudo-class-hover/": "https://www.caniemail.com/features/css-pseudo-class-hover/",
"Bulleted List": "Bulleted List",
"Bullets & Stars": "Bullets & Stars",
"Color": "Color",
"Font": "Font",
"Font Color": "Font Color",
"Border Color": "Border Color",
"Input Border Color": "Input Border Color",
"Border Top Color": "Border Top Color",
"Border Right Color": "Border Right Color",
"Border Bottom Color": "Border Bottom Color",
"Border Left Color": "Border Left Color",
"Margins on Desktop": "Margins on Desktop",
"Equalize Margins on Desktop": "Equalize Margins on Desktop",
"Margin Top on Desktop": "Margin Top on Desktop",
"Decrease Margin Top on Desktop by {step}": "Decrease Margin Top on Desktop by {step}",
"Increase Margin Top on Desktop by {step}": "Increase Margin Top on Desktop by {step}",
"Margin Right on Desktop": "Margin Right on Desktop",
"Decrease Margin Right on Desktop by {step}": "Decrease Margin Right on Desktop by {step}",
"Increase Margin Right on Desktop by {step}": "Increase Margin Right on Desktop by {step}",
"Margin Bottom on Desktop": "Margin Bottom on Desktop",
"Decrease Margin Bottom on Desktop by {step}": "Decrease Margin Bottom on Desktop by {step}",
"Increase Margin Bottom on Desktop by {step}": "Increase Margin Bottom on Desktop by {step}",
"Margin Left on Desktop": "Margin Left on Desktop",
"Decrease Margin Left on Desktop by {step}": "Decrease Margin Left on Desktop by {step}",
"Increase Margin Left on Desktop by {step}": "Increase Margin Left on Desktop by {step}",
"Margins on Mobile": "Margins on Mobile",
"Margins": "Margins",
"Equalize Margins on Mobile": "Equalize Margins on Mobile",
"Margin Top": "Margin Top",
"Decrease Margin Top by {step}": "Decrease Margin Top by {step}",
"Increase Margin Top by {step}": "Increase Margin Top by {step}",
"Margin Right": "Margin Right",
"Decrease Margin Right by {step}": "Decrease Margin Right by {step}",
"Increase Margin Right by {step}": "Increase Margin Right by {step}",
"Margin Bottom": "Margin Bottom",
"Decrease Margin Bottom by {step}": "Decrease Margin Bottom by {step}",
"Increase Margin Bottom by {step}": "Increase Margin Bottom by {step}",
"Margin Left": "Margin Left",
"Decrease Margin Left by {step}": "Decrease Margin Left by {step}",
"Increase Margin Left by {step}": "Increase Margin Left by {step}",
"Margin Top on Mobile": "Margin Top on Mobile",
"Decrease Margin Top on Mobile by {step}": "Decrease Margin Top on Mobile by {step}",
"Increase Margin Top on Mobile by {step}": "Increase Margin Top on Mobile by {step}",
"Margin Right on Mobile": "Margin Right on Mobile",
"Decrease Margin Right on Mobile by {step}": "Decrease Margin Right on Mobile by {step}",
"Increase Margin Right on Mobile by {step}": "Increase Margin Right on Mobile by {step}",
"Margin Bottom on Mobile": "Margin Bottom on Mobile",
"Decrease Margin Bottom on Mobile by {step}": "Decrease Margin Bottom on Mobile by {step}",
"Increase Margin Bottom on Mobile by {step}": "Increase Margin Bottom on Mobile by {step}",
"Margin Left on Mobile": "Margin Left on Mobile",
"Decrease Margin Left on Mobile by {step}": "Decrease Margin Left on Mobile by {step}",
"Increase Margin Left on Mobile by {step}": "Increase Margin Left on Mobile by {step}",
"Margins around the image": "Margins around the image",
"Margins around the button": "Margins around the button",
"Margins around the separator line": "Margins around the separator line",
"Margins around social network icons": "Margins around social network icons",
"Margins around the banner": "Margins around the banner",
"Margins around the timer": "Margins around the timer",
"Margins around elements formed by custom code": "Margins around elements formed by custom code",
"Margins around the structure": "Margins around the structure",
"Margins around the element": "Margins around the element",
"Padding on Desktop": "Padding on Desktop",
"Equalize Padding on Desktop": "Equalize Padding on Desktop",
"Padding Top on Desktop": "Padding Top on Desktop",
"Decrease Padding Top on Desktop by {step}": "Decrease Padding Top on Desktop by {step}",
"Increase Padding Top on Desktop by {step}": "Increase Padding Top on Desktop by {step}",
"Padding Right on Desktop": "Padding Right on Desktop",
"Decrease Padding Right on Desktop by {step}": "Decrease Padding Right on Desktop by {step}",
"Increase Padding Right on Desktop by {step}": "Increase Padding Right on Desktop by {step}",
"Padding Bottom on Desktop": "Padding Bottom on Desktop",
"Decrease Padding Bottom on Desktop by {step}": "Decrease Padding Bottom on Desktop by {step}",
"Increase Padding Bottom on Desktop by {step}": "Increase Padding Bottom on Desktop by {step}",
"Padding Left on Desktop": "Padding Left on Desktop",
"Decrease Padding Left on Desktop by {step}": "Decrease Padding Left on Desktop by {step}",
"Increase Padding Left on Desktop by {step}": "Increase Padding Left on Desktop by {step}",
"Padding on Mobile": "Padding on Mobile",
"Padding": "Padding",
"Equalize Padding on Mobile": "Equalize Padding on Mobile",
"Padding Top": "Padding Top",
"Decrease Padding Top by {step}": "Decrease Padding Top by {step}",
"Increase Padding Top by {step}": "Increase Padding Top by {step}",
"Padding Right": "Padding Right",
"Decrease Padding Right by {step}": "Decrease Padding Right by {step}",
"Increase Padding Right by {step}": "Increase Padding Right by {step}",
"Padding Bottom": "Padding Bottom",
"Decrease Padding Bottom by {step}": "Decrease Padding Bottom by {step}",
"Increase Padding Bottom by {step}": "Increase Padding Bottom by {step}",
"Padding Left": "Padding Left",
"Decrease Padding Left by {step}": "Decrease Padding Left by {step}",
"Increase Padding Left by {step}": "Increase Padding Left by {step}",
"Padding Top on Mobile": "Padding Top on Mobile",
"Decrease Padding Top on Mobile by {step}": "Decrease Padding Top on Mobile by {step}",
"Increase Padding Top on Mobile by {step}": "Increase Padding Top on Mobile by {step}",
"Padding Right on Mobile": "Padding Right on Mobile",
"Decrease Padding Right on Mobile by {step}": "Decrease Padding Right on Mobile by {step}",
"Increase Padding Right on Mobile by {step}": "Increase Padding Right on Mobile by {step}",
"Padding Bottom on Mobile": "Padding Bottom on Mobile",
"Decrease Padding Bottom on Mobile by {step}": "Decrease Padding Bottom on Mobile by {step}",
"Increase Padding Bottom on Mobile by {step}": "Increase Padding Bottom on Mobile by {step}",
"Padding Left on Mobile": "Padding Left on Mobile",
"Decrease Padding Left on Mobile by {step}": "Decrease Padding Left on Mobile by {step}",
"Increase Padding Left on Mobile by {step}": "Increase Padding Left on Mobile by {step}",
"Button padding that makes the space around the button text": "Button padding that makes the space around the button text",
"Paddings in the stripe add some space around the content area of the email": "Paddings in the stripe add some space around the content area of the email",
"Internal padding adds some space around containers and blocks": "Internal padding adds some space around containers and blocks",
"Internal padding creates space around containers and blocks": "Internal padding creates space around containers and blocks",
"Paddings around the block": "Paddings around the block",
"Paddings around the element": "Paddings around the element",
"Padding in the \"Text\" block makes space around the added text.": "Padding in the \"Text\" block makes space around the added text.",
"Please enter a valid link": "Please enter a valid link",
"The image with the invalid link cannot be saved to the image gallery": "The image with the invalid link cannot be saved to the image gallery",
"Parentheses": "Parentheses",
"Pictographs": "Pictographs",
"Punctuations": "Punctuations",
"Select color": "Select color",
"Decrease Separator by {step}": "Decrease Separator by {step}",
"Increase Separator by {step}": "Increase Separator by {step}",
"Left alignment": "Left alignment",
"Center alignment": "Center alignment",
"Right alignment": "Right alignment",
"Justify text": "Justify text",
"Border": "Border",
"Input Border": "Input Border",
"Border input mode": "Border input mode",
"Decrease border by {step}": "Decrease border by {step}",
"Increase border by {step}": "Increase border by {step}",
"Border Top": "Border Top",
"Decrease Border Top by {step}": "Decrease Border Top by {step}",
"Increase Border Top by {step}": "Increase Border Top by {step}",
"Border Right": "Border Right",
"Decrease Border Right by {step}": "Decrease Border Right by {step}",
"Increase Border Right by {step}": "Increase Border Right by {step}",
"Border Bottom": "Border Bottom",
"Decrease Border Bottom by {step}": "Decrease Border Bottom by {step}",
"Increase Border Bottom by {step}": "Increase Border Bottom by {step}",
"Border Left": "Border Left",
"Decrease Border Left by {step}": "Decrease Border Left by {step}",
"Increase Border Left by {step}": "Increase Border Left by {step}",
"Border around all structures in the stripe": "Border around all structures in the stripe",
"To display the structure radius, you need to set a background color.": "To display the structure radius, you need to set a background color.",
"Style": "Style",
"No Style": "No Style",
"Input Border Style": "Input Border Style",
"Text wrapping": "Text wrapping",
"Margins are not supported in Outlook": "Margins are not supported in Outlook",
"Not all email clients support the selected link protocol. Check the <a href=\"https://support.stripo.email/en/articles/5332466-what-are-link-protocols-compatible-with-emails\" target=\"_blank\">compatibility guide</a> to learn more about supported clients.": "Not all email clients support the selected link protocol. Check the <a href=\"https://support.stripo.email/en/articles/5332466-what-are-link-protocols-compatible-with-emails\" target=\"_blank\">compatibility guide</a> to learn more about supported clients.",
"Shorten URL with Bit.ly": "Shorten URL with Bit.ly",
"Original URL <br/> <span class=\"message-long-url\">{url}</span>": "Original URL <br/> <span class=\"message-long-url\">{url}</span>",
"Error occurred during url shortening.": "Error occurred during url shortening.",
"Error occurred during restoring original url.": "Error occurred during restoring original url.",
"Undo Shorten": "Undo Shorten",
"Url shortening limit exceeded.": "You have reached your links shortnening limit of your Bit.ly account.",
"The link has been removed from the Bit.ly service": "The link has been removed from the Bit.ly service",
"Drag-n-drop your image <a class=\"enter-url-action\">or paste URL</a>": "Drag-n-drop your image <a class=\"enter-url-action\">or paste URL</a>",
"Enter URL or back to <a class=\"enter-url-action\">Drag & Drop</a>": "Enter URL or back to <a class=\"enter-url-action\">Drag & Drop</a>",
"Click to select from the Image Library.": "Click to select from the Image Library.",
"You can also paste your image (PNG, JPG, or GIF) from clipboard or <a class=\"browse-action\">browse</a> your files": "You can also paste your image (PNG, JPG, or GIF) from clipboard or <a class=\"browse-action\">browse</a> your files",
"Copy image URL": "Copy image URL",
"Copied to clipboard": "Copied to clipboard",
"Failed to copy URL": "Failed to copy URL",
"Spacer Mode: Line": "Spacer Mode: Line",
"Spacer Mode: Space": "Spacer Mode: Space",
"Line Mode": "Line Mode",
"Spacer Mode": "Spacer Mode",
"on Facebook": "on Facebook",
"on X": "on X",
"on LinkedIn": "on LinkedIn",
"on Pinterest": "on Pinterest",
"by Email": "by Email",
"by {name}": "by {name}",
"Created": "Created",
"Modified": "Modified",
"Video Link": "Video Link",
"Email Address": "Email Address",
"Email Subject": "Email Subject",
"Email Body": "Email Body",
"Emojis": "Emojis",
"Enter Condition Name": "Enter Condition Name",
"Enter Condition Description": "Enter Condition Description",
"User Name": "User Name",
"Preview link": "Preview link",
"Short description": "Short description",
"Hashtags": "Hashtags",
"Alternate Text": "Alternate Text",
"Add to Title": "Add to Title",
"Title and Alternate Text Customization": "Title and Alternate Text Customization",
"Use your own title and alternative text to each icon": "Use your own title and alternative text to each icon",
"Title": "Title",
"Travel & Places": "Travel & Places",
"Will be added in Alt and Title attributes": "Will be added in Alt and Title attributes",
"Will be added in Alt attribute": "Will be added in Alt attribute",
"Site": "Site",
"Mail": "Mail",
"Tel": "Tel",
"File": "File",
"SMS": "SMS",
"Smileys & People": "Smileys & People",
"Other": "Other",
"Uncategorized": "Uncategorized",
"no tags": "no tags",
"General": "General",
"Special": "Special",
"Special Characters": "Special Characters",
"Mergetags": "Mergetags",
"Share": "Share",
"Link Types": "Link Types",
"Custom": "Custom",
"View in Browser": "View in Browser",
"Unsubscribe": "Unsubscribe",
"protocol type": "protocol type",
"The element will be included in both MIME versions of the email: classic HTML and AMP HTML": "The element will be included in both MIME versions of the email: classic HTML and AMP HTML",
"The element will be included only in the HTML MIME version of the email message. The item will be hidden in the AMP HTML version": "The element will be included only in the HTML MIME version of the email message. The item will be hidden in the AMP HTML version",
"The element will be included only in the AMP HTML MIME version of the email message. The item will be hidden in the HTML version": "The element will be included only in the AMP HTML MIME version of the email message. The item will be hidden in the HTML version",
"Click to add form elements, or drop other blocks into this area": "Click to add form elements, or drop other blocks into this area",
"Text Style": "Text Style",
"Bold": "Bold",
"Italic": "Italic",
"Underline": "Underline",
"Strikethrough": "Strikethrough",
"Superscript": "Superscript",
"Subscript": "Subscript",
"Delete styles": "Delete styles",
"Table": "Table",
"Insert column before": "Insert column before",
"Insert column after": "Insert column after",
"Insert row before": "Insert row before",
"Insert row after": "Insert row after",
"Delete rows": "Delete rows",
"Delete columns": "Delete columns",
"Merge cells": "Merge cells",
"Delete Table": "Delete Table",
"Copy row/column": "Copy row/column",
"Include in": "Include in",
"Include the element in the necessary version of the email, or in both. <a target=\"_blank\" href=\"https://stripo.email/blog/how-to-build-amp-emails-with-stripo/\">Learn more about ⚡ HTML (AMP HTML).</a>": "Include the element in the necessary version of the email, or in both. <a target=\"_blank\" href=\"https://stripo.email/blog/how-to-build-amp-emails-with-stripo/\">Learn more about ⚡ HTML (AMP HTML).</a>",
"Insert": "Insert",
"Link Color": "Link Color",
"Link text": "Title",
"Hover Link Color": "Hover Link Color",
"Add Hover Link Color": "Add Hover Link Color",
"All Found": "All Found",
"All tags": "All tags",
"All categories": "All categories",
"All styles": "All styles",
"Abstract": "Abstract",
"Agriculture, farming, & gardening": "Agriculture, farming, & gardening",
"AI, robots & drones": "AI, robots & drones",
"Animals": "Animals",
"Architecture & urban planning": "Architecture & urban planning",
"Art & design": "Art & design",
"Arts & multimedia": "Arts & multimedia",
"Auto service & repair": "Auto service & repair",
"Avatars": "Avatars",
"Awards": "Awards",
"Babies, kids & childhood": "Babies, kids & childhood",
"Badge": "Badge",
"Banking & finance": "Banking & finance",
"Basketball": "Basketball",
"Black Friday & Cyber Monday": "Black Friday & Cyber Monday",
"Buildings": "Buildings",
"Business & finance": "Business & finance",
"Business & management": "Business & management",
"Cartoon": "Cartoon",
"Chinese New Year": "Chinese New Year",
"Christmas": "Christmas",
"Cities & urban design": "Cities & urban design",
"Clothes & accessories": "Clothes & accessories",
"Computer & hardware": "Computer & hardware",
"Computer & internet security": "Computer & internet security",
"Computers, mobile & internet": "Computers, mobile & internet",
"Coronavirus/Covid-19": "Coronavirus/Covid-19",
"Culture & communities": "Culture & communities",
"Data analysis & databases": "Data analysis & databases",
"Desktop software": "Desktop software",
"Diseases, ailments & disorders": "Diseases, ailments & disorders",
"Easter": "Easter",
"Ecology & environmentalism": "Ecology & environmentalism",
"Education, school & learning": "Education, school & learning",
"Electronic devices & appliances": "Electronic devices & appliances",
"Emergency services": "Emergency services",
"Emoji": "Emoji",
"Emoji & avatars": "Emoji & avatars",
"Events & Entertainment": "Events & Entertainment",
"Fall": "Fall",
"Family & home": "Family & home",
"Fashion & beauty": "Fashion & beauty",
"Files & folders": "Files & folders",
"Filled outline": "Filled outline",
"Film & video": "Film & video",
"Fitness, yoga & diet": "Fitness, yoga & diet",
"Flat": "Flat",
"Food & drinks": "Food & drinks",
"Food, drinks & cooking": "Food, drinks & cooking",
"Football & soccer": "Football & soccer",
"Footwear": "Footwear",
"Furniture & home decorations": "Furniture & home decorations",
"Games & gaming": "Games & gaming",
"Gym": "Gym",
"Hair, makeup & cosmetics": "Hair, makeup & cosmetics",
"Halloween": "Halloween",
"Handdrawn": "Handdrawn",
"Health & fitness": "Health & fitness",
"Holidays & celebrations": "Holidays & celebrations",
"Hospitals & healthcare": "Hospitals & healthcare",
"Independence Day (US)": "Independence Day (US)",
"Insurance & security": "Insurance & security",
"iOS optimized": "iOS optimized",
"Isometric": "Isometric",
"IT infrastructure": "IT infrastructure",
"Landmarks": "Landmarks",
"Law enforcement": "Law enforcement",
"Law & legal matters": "Law & legal matters",
"Layouts": "Layouts",
"Life & lifestyle": "Life & lifestyle",
"Logos": "Logos",
"Logos & social media": "Logos & social media",
"Long Shadow": "Long Shadow",
"Love & romance": "Love & romance",
"Maps & navigation": "Maps & navigation",
"Marketing & SEO": "Marketing & SEO",
"Means of communication": "Means of communication",
"Military & war": "Military & war",
"Miscellaneous": "Miscellaneous",
"Mixed": "Mixed",
"Mobile devices & apps": "Mobile devices & apps",
"Mother's & Father's Day": "Mother's & Father's Day",
"Nations & cultures": "Nations & cultures",
"Nature, outdoors & adventure": "Nature, outdoors & adventure",
"Nature, plants & animals": "Nature, plants & animals",
"Network & communications": "Network & communications",
"New Year": "New Year",
"Office": "Office",
"Online social interaction": "Online social interaction",
"Other holidays": "Other holidays",
"Outline": "Outline",
"Pets & vets": "Pets & vets",
"Photography": "Photography",
"Pixel": "Pixel",
"Politics": "Politics",
"Professions & industries": "Professions & industries",
"Ramadan & Eid": "Ramadan & Eid",
"Real Estate": "Real Estate",
"Recreation & hobbies": "Recreation & hobbies",
"Relaxation & mental health": "Relaxation & mental health",
"Religion, philosophy & mythology": "Religion, philosophy & mythology",
"Science & research": "Science & research",
"Science & technology": "Science & technology",
"Seasons & Weather": "Seasons & Weather",
"Semi-solid": "Semi-solid",
"Sex & sexuality": "Sex & sexuality",
"Shipping, Delivery, & Fulfillment": "Shipping, Delivery, & Fulfillment",
"Shopping & e-commerce": "Shopping & e-commerce",
"Shopping & logistics": "Shopping & logistics",
"Signs & symbols": "Signs & symbols",
"Smooth": "Smooth",
"Social media": "Social media",
"Solid": "Solid",
"Sound & music": "Sound & music",
"Space & aliens": "Space & aliens",
"Sports": "Sports",
"Spring": "Spring",
"Summer": "Summer",
"Thanksgiving": "Thanksgiving",
"Tools & construction": "Tools & construction",
"Touch & hand gestures": "Touch & hand gestures",
"Tourism, hotels & hospitality": "Tourism, hotels & hospitality",
"Traffic signs": "Traffic signs",
"Transportation & automotive": "Transportation & automotive",
"User interface": "User interface",
"User interface optimal": "User interface optimal",
"Valentine's Day": "Valentine's Day",
"Vehicles & modes of transportation": "Vehicles & modes of transportation",
"Weather": "Weather",
"Web development & design": "Web development & design",
"Winter": "Winter",
"Winter sports": "Winter sports",
"Both": "Both",
"The menu will be arranged vertically on mobile devices": "The menu will be arranged vertically on mobile devices",
"When this setting is off, menu will look the same on desktop and mobile. We suggest turning the toggle on if your menu is long": "When this setting is off, menu will look the same on desktop and mobile. We suggest turning the toggle on if your menu is long",
"Fit to Container": "Fit to Container",
"Makes the image fit to the size of the container": "Makes the image fit to the size of the container",
"Makes the menu fit to the container width": "Makes the menu fit to the container width",
"Responsive Menu": "Responsive Menu",
"Makes menu items stack vertically on mobile devices": "Makes menu items stack vertically on mobile devices",
"Settings": "Settings",
"Modules": "Modules",
"Structure Layouts": "Structure Layouts",
"Structure Layouts. Add structure with containers like build the email layout": "Structure Layouts. Add structure with containers like build the email layout",
"Add structure with containers like build the email layout": "Add structure with containers like build the email layout",
"Personal": "Personal",
"Template Modules": "Template Modules",
"My Modules": "My Modules",
"No modules found": "No modules found",
"Favorites": "Favorites",
"Pre-Built": "Pre-Built",
"Styles": "Styles",
"Size": "Size",
"Menu Icons Configuration": "Menu Icons Configuration",
"Settings for all menu block items icons": "Settings for all menu block items icons",
"Size Type": "Size Type",
"Decrease Size by {step}": "Decrease Size by {step}",
"Increase Size by {step}": "Increase Size by {step}",
"Size on Desktop": "Size on Desktop",
"Decrease Size on Desktop by {step}": "Decrease Size on Desktop by {step}",
"Increase Size on Desktop by {step}": "Increase Size on Desktop by {step}",
"Size on Mobile": "Size on Mobile",
"Decrease Size on Mobile by {step}": "Decrease Size on Mobile by {step}",
"Increase Size on Mobile by {step}": "Increase Size on Mobile by {step}",
"Restore actual image size": "Restore actual image size",
"Changing of height": "Changing of height",
"Changing of width": "Changing of width",
"Banner Size": "Size",
"Decrease Banner Size by {step}": "Decrease Banner Size by {step}",
"Increase Banner Size by {step}": "Increase Banner Size by {step}",
"Banner Background color": "Banner Background color",
"Width, %": "Width, %",
"Width": "Width",
"Decrease Width by {step}": "Decrease Width by {step}",
"Increase Width by {step}": "Increase Width by {step}",
"Width on Desktop": "Width on Desktop",
"Decrease Width on Desktop by {step}": "Decrease Width on Desktop by {step}",
"Increase Width on Desktop by {step}": "Increase Width on Desktop by {step}",
"Height": "Height",
"Decrease Height by {step}": "Decrease Height by {step}",
"Increase Height by {step}": "Increase Height by {step}",
"Width on Mobile": "Width on Mobile",
"Decrease Width on Mobile by {step}": "Decrease Width on Mobile by {step}",
"Increase Width on Mobile by {step}": "Increase Width on Mobile by {step}",
"Height on Desktop, px": "Height on Desktop, px",
"Decrease Height on Desktop by {step}": "Decrease Height on Desktop by {step}",
"Increase Height on Desktop by {step}": "Increase Height on Desktop by {step}",
"Height on Mobile, px": "Height on Mobile, px",
"Decrease Height on Mobile by {step}": "Decrease Height on Mobile by {step}",
"Increase Height on Mobile by {step}": "Increase Height on Mobile by {step}",
"Height, px": "Height, px",
"The \"Line\" mode displays a horizontal line that visually separates blocks, allowing users to adjust the line’s thickness, style, and color.": "The <b>\"Line\"</b> mode displays a horizontal line that visually separates blocks, allowing users to adjust the line’s thickness, style, and color.",
"The \"Space\" mode adds only an empty gap, without a visible line, where it's used to create “breathing space” between elements, without emphasizing a boundary.": "The <b>\"Space\"</b> mode adds only an empty gap, without a visible line, where it's used to create “breathing space” between elements, without emphasizing a boundary.",
"None": "No marker",
"Blur Level, %": "Blur Level, %",
"Paragraph Style": "Paragraph Style",
"Icon Size": "Icon Size",
"Decrease Icon Size by {step}": "Decrease Icon Size by {step}",
"Increase Icon Size by {step}": "Increase Icon Size by {step}",
"Space Between Icons on Desktop": "Space Between Icons on Desktop",
"Decrease Space Between Icons on Desktop by {step}": "Decrease Space Between Icons on Desktop by {step}",
"Increase Space Between Icons on Desktop by {step}": "Increase Space Between Icons on Desktop by {step}",
"Space Between Icons": "Space Between Icons",
"Decrease Space Between Icons by {step}": "Decrease Space Between Icons by {step}",
"Increase Space Between Icons by {step}": "Increase Space Between Icons by {step}",
"Space Between Icons on Mobile": "Space Between Icons on Mobile",
"Decrease Space Between Icons on Mobile by {step}": "Decrease Space Between Icons on Mobile by {step}",
"Increase Space Between Icons on Mobile by {step}": "Increase Space Between Icons on Mobile by {step}",
"Rollover Effect": "Rollover Effect",
"The image that will display over current image on mouse hover.": "The image that will display over current image on mouse hover.",
"This feature is only supported by Yahoo! Mail, Ukr.net, AOL, Gmail, iCloud Mail, Outlook 2003, Outlook for Mac and macOS Apple Mail": "This feature is only supported by Yahoo! Mail, Ukr.net, AOL, Gmail, iCloud Mail, Outlook 2003, Outlook for Mac and macOS Apple Mail",
"The aspect ratio of the secondary image differs from the primary one. For correct feature work please edit the size of secondary image!": "The aspect ratio of the secondary image differs from the primary one. For correct feature work please edit the size of secondary image!",
"Custom Thumbnail": "Custom Thumbnail",
"Add a Social Icon": "Add a Social Icon",
"Social": "Socials",
"Chat": "Chats",
"Menu Items Number": "Menu Items Number",
"Decrease Menu Items Number by {step}": "Decrease Menu Items Number by {step}",
"Increase Menu Items Number by {step}": "Increase Menu Items Number by {step}",
"New items will be added to the end of list. If you decrease total amount items it will start removing from bottom": "New items will be added to the end of list. If you decrease total amount items it will start removing from bottom",
"Custom icons": "Custom icons",
"Colored logos": "Colored logos",
"Black logos": "Black logos",
"Gray logos": "Gray logos",
"White logos": "White logos",
"Circle color logos": "Circle color logos",
"Circle color with border": "Circle color with border",
"Rounded color logos": "Rounded color logos",
"Rounded color with border": "Rounded color with border",
"Square color logos": "Square color logos",
"Square color with border": "Square color with border",
"Circle black logos": "Circle black logos",
"Circle black with border": "Circle black with border",
"Rounded black logos": "Rounded black logos",
"Rounded black with border": "Rounded black with border",
"Square black logos": "Square black logos",
"Square black with border": "Square black with border",
"Circle gray logos": "Circle gray logos",
"Circle gray with border": "Circle gray with border",
"Rounded gray logos": "Rounded gray logos",
"Rounded gray with border": "Rounded gray with border",
"Square gray logos": "Square gray logos",
"Square gray with border": "Square gray with border",
"Circle white logos": "Circle white logos",
"Circle white with border": "Circle white with border",
"Rounded white logos": "Rounded white logos",
"Rounded white with border": "Rounded white with border",
"Square white logos": "Square white logos",
"Square white with border": "Square white with border",
"Filter by Element Type": "Filter by Element Type",
"Filter by Tags": "Filter by Tags",
"Sort by": "Sort by",
"Sort by oldest": "Sort by oldest",
"Sort by newest": "Sort by newest",
"Ascending": "Ascending",
"Descending": "Descending",
"There are no saved images in the folder yet.": "There are no saved images in the folder yet.",
"Standard": "Standard",
"Non standard": "Non standard",
"Max size: {maxfileSize}": "Max size: {maxfileSize} MB.",
"Max {maxfileSize} weight. PNG, JPG, GIF only.": "Max {maxfileSize} MB weight. PNG, JPG, GIF only.",
"{count, plural, zero{Load {count} more modules} one{Load {count} more module} two{Load {count} more modules} few{Load {count} more modules} many{Load {count} more modules} other{Load {count} more modules}}": "{count, plural, zero{Load {count} more modules} one{Load {count} more module} two{Load {count} more modules} few{Load {count} more modules} many{Load {count} more modules} other{Load {count} more modules}}",
"Load more": "Load more",
"Load More Members": "Load More Members",
"Localization {value}": "Localization {value}",
"Loading data": "Loading data",
"Links": "Links",
"Icons": "Icons",
"Link and Icons": "Link and Icons",
"Link Name should not exceed more than 500 characters": "Link Name should not exceed more than 500 characters",
"Link & Icon": "Link & Icon",
"Item {itemIndex} name": "Item {itemIndex} name",
"Menu item {itemIndex}": "Menu item {itemIndex}",
"Link Name": "Link Name",
"Alt text": "Item Name as Alt Text",
"Icon Alignment": "Icon Alignment",
"Icon Indent": "Icon Indent",
"Decrease Icon Indent by {step}": "Decrease Icon Indent by {step}",
"Increase Icon Indent by {step}": "Increase Icon Indent by {step}",
"or <a class=\"browse-action\">browse</a> your PNG, JPG, GIF files": "or <a class=\"browse-action\">browse</a> your PNG, JPG, GIF files",
"Drag & Drop": "Drag & Drop",
"Menu Item Name should not exceed more than 255 characters": "Menu Item Name should not exceed more than 255 characters",
"Item": "Item",
"There are no pictures found": "There are no pictures found",
"There are no pictures found. Please try changing your query.": "There are no pictures found. Please try changing your query.",
"Data": "Data",
"Message Area": "Message Area",
"<p>The header area is a place where companies usually put their logo, contact details, menus, and so on. It inherits the styles set for the header area.</p>": "<p>The header area is a place where companies usually put their logo, contact details, menus, and so on. It inherits the styles set for the header area.</p>",
"<p>The content area is the part of the email that is filled with content modules and blocks.</p>": "<p>The content area is the part of the email that is filled with content modules and blocks.</p>",
"<p>The footer area is a place for contact details, social media icons, an additional menu, etc. It inherits the styles set for the Footer area.</p>": "<p>The footer area is a place for contact details, social media icons, an additional menu, etc. It inherits the styles set for the Footer area.</p>",
"<p>The info area can be put above the header (in this case, it contains preview links); it can be put below the footer (in this case, it has unsubscribe links, terms of use, privacy policy, etc.).</p>": "<p>The info area can be put above the header (in this case, it contains preview links); it can be put below the footer (in this case, it has unsubscribe links, terms of use, privacy policy, etc.).</p>",
"Header": "Header",
"Content": "Content",
"Footer": "Footer",
"Info area": "Info area",
"Stripes Settings by Area": "Stripes Settings by Area",
"Heading Settings by Type": "Heading Settings by Type",
"Name": "Name",
"Name[Sort by]": "Name",
"Value": "Value",
"Date": "Date",
"Date Modified[Sort by]": "Date Modified",
"Recent Usage[Sort by]": "Recent Usage",
"Uncategorized view": "Uncategorized view",
"Grid": "Grid",
"Small Grid": "Small Grid",
"Masonry": "Masonry",
"List": "List",
"Common": "Common",
"Template": "Template",
"Stock": "Stock",
"Menu Items Color": "Menu Items Color",
"Menu Item Padding on Desktop": "Menu Item Padding on Desktop",
"Equalize Menu Item Padding on Desktop": "Equalize Menu Item Padding on Desktop",
"Top Menu Item Padding on Desktop": "Top Menu Item Padding on Desktop",
"Decrease Top Menu Item Padding on Desktop by {step}": "Decrease Top Menu Item Padding on Desktop by {step}",
"Increase Top Menu Item Padding on Desktop by {step}": "Increase Top Menu Item Padding on Desktop by {step}",
"Right Menu Item Padding on Desktop": "Right Menu Item Padding on Desktop",
"Decrease Right Menu Item Padding on Desktop by {step}": "Decrease Right Menu Item Padding on Desktop by {step}",
"Increase Right Menu Item Padding on Desktop by {step}": "Increase Right Menu Item Padding on Desktop by {step}",
"Bottom Menu Item Padding on Desktop": "Bottom Menu Item Padding on Desktop",
"Decrease Bottom Menu Item Padding on Desktop by {step}": "Decrease Bottom Menu Item Padding on Desktop by {step}",
"Increase Bottom Menu Item Padding on Desktop by {step}": "Increase Bottom Menu Item Padding on Desktop by {step}",
"Left Menu Item Padding on Desktop": "Left Menu Item Padding on Desktop",
"Decrease Left Menu Item Padding on Desktop by {step}": "Decrease Left Menu Item Padding on Desktop by {step}",
"Increase Left Menu Item Padding on Desktop by {step}": "Increase Left Menu Item Padding on Desktop by {step}",
"Menu Item Padding on Mobile": "Menu Item Padding on Mobile",
"Menu Item Padding": "Menu Item Padding",
"Equalize Menu Item Padding on Mobile": "Equalize Menu Item Padding on Mobile",
"Top Menu Item Padding": "Top Menu Item Padding",
"Decrease Top Menu Item Padding by {step}": "Decrease Top Menu Item Padding by {step}",
"Increase Top Menu Item Padding by {step}": "Increase Top Menu Item Padding by {step}",
"Right Menu Item Padding": "Right Menu Item Padding",
"Decrease Right Menu Item Padding by {step}": "Decrease Right Menu Item Padding by {step}",
"Increase Right Menu Item Padding by {step}": "Increase Right Menu Item Padding by {step}",
"Bottom Menu Item Padding": "Bottom Menu Item Padding",
"Decrease Bottom Menu Item Padding by {step}": "Decrease Bottom Menu Item Padding by {step}",
"Increase Bottom Menu Item Padding by {step}": "Increase Bottom Menu Item Padding by {step}",
"Left Menu Item Padding": "Left Menu Item Padding",
"Decrease Left Menu Item Padding by {step}": "Decrease Left Menu Item Padding by {step}",
"Increase Left Menu Item Padding by {step}": "Increase Left Menu Item Padding by {step}",
"Top Menu Item Padding on Mobile": "Top Menu Item Padding on Mobile",
"Decrease Top Menu Item Padding on Mobile by {step}": "Decrease Top Menu Item Padding on Mobile by {step}",
"Increase Top Menu Item Padding on Mobile by {step}": "Increase Top Menu Item Padding on Mobile by {step}",
"Right Menu Item Padding on Mobile": "Right Menu Item Padding on Mobile",
"Decrease Right Menu Item Padding on Mobile by {step}": "Decrease Right Menu Item Padding on Mobile by {step}",
"Increase Right Menu Item Padding on Mobile by {step}": "Increase Right Menu Item Padding on Mobile by {step}",
"Bottom Menu Item Padding on Mobile": "Bottom Menu Item Padding on Mobile",
"Decrease Bottom Menu Item Padding on Mobile by {step}": "Decrease Bottom Menu Item Padding on Mobile by {step}",
"Increase Bottom Menu Item Padding on Mobile by {step}": "Increase Bottom Menu Item Padding on Mobile by {step}",
"Left Menu Item Padding on Mobile": "Left Menu Item Padding on Mobile",
"Decrease Left Menu Item Padding on Mobile by {step}": "Decrease Left Menu Item Padding on Mobile by {step}",
"Increase Left Menu Item Padding on Mobile by {step}": "Increase Left Menu Item Padding on Mobile by {step}",
"Stripe Background Color": "Stripe Background Color",
"Content Background Color": "Content Background Color",
"Content Bg Color": "Content Background Color",
"Success Background Color": "\"Background Color\" in the \"Success\" tab",
"Seasons": "Seasons",
"Decoration": "Decoration",
"Image Category": "Image Category",
"only": "only",
"Stripes are the highest structural elements of a template that divide content into horizontal sections. Every stripe might have its type: Header, Content, Footer, Info area": "Stripes are the highest structural elements of a template that divide content into horizontal sections. Every stripe might have its type: Header, Content, Footer, Info area",
"Background Repeat": "Background Repeat",
"Stripe Background Image": "Stripe Background Image",
"The background image of the stripe. The image will not be displayed in an Outlook app on Windows email clients. We recommend choosing a stripe background color similar to the selected image as a fallback": "The background image of the stripe. The image will not be displayed in an Outlook app on Windows email clients. We recommend choosing a stripe background color similar to the selected image as a fallback",
"Activate Display Conditions": "Activate Display Conditions",
"Create or select a condition to show the recipients different content depending on whether a specified condition is met for a specific email recipient. <a target=\"_blank\" href=\"https://support.stripo.email/en/articles/6459670-new-editor-display-conditions\">Learn more.</a>": "Create or select a condition to show the recipients different content depending on whether a specified condition is met for a specific email recipient. <a target=\"_blank\" href=\"https://support.stripo.email/en/articles/6459670-new-editor-display-conditions\">Learn more.</a>",
"Category": "Category",
"Description": "Description",
"Code Before Module": "Code Before Module",
"Code After Module": "Code After Module",
"Condition Name": "Condition Name",
"My Custom Rule": "My Custom Rule",
"Provide a description of this condition and its effects. Character limit: 500.": "Provide a description of this condition and its effects. Character limit: 500.",
"Disable Line Wrap": "Disable Line Wrap",
"Enable Word Break": "Enable Word Break",
"Enable synchronisation": "Enable synchronisation",
"Line wrapping is carried out character-by-character so that the text is within the specified block width. The option does not work for Chinese, Korean, and Japanese text.": "Line wrapping is carried out character-by-character so that the text is within the specified block width. The option does not work for Chinese, Korean, and Japanese text.",
"Underline Link": "Underline Link",
"Text Alignment": "Text Alignment",
"Text Alignment on Desktop": "Text Alignment on Desktop",
"Text Alignment on Mobile": "Text Alignment on Mobile",
"Text node": "Text node",
"Back": "Back",
"Restore This Version": "Restore This Version",
"Previous patch": "Previous patch",
"Next patch": "Next patch",
"Version History": "Version History",
"Failed to load version history. Contact support for assistance.": "Failed to load version history. Contact support for assistance.",
"Restoring version...": "Restoring version...",
"Version restored successfully": "Version restored successfully",
"Failed to restore version": "Failed to restore version",
"Search in Version History": "Search in Version History",
"Search by name version, tag or date": "Search by name version, tag or date",
"{count, plural, =1{{count} Change} other{{count} Changes}}": "{count, plural, =1{{count} Change} other{{count} Changes}}",
"Show Changes": "Show Changes",
"Add a tag name": "Add a tag name",
"Add a version name": "Add a version name",
"Today": "Today",
"Up to the Form Block": "Up to the Form Block",
"Up to the AMP Accordion": "Up to the AMP Accordion",
"Up to the Container": "Up to the Container",
"Up to the Structure": "Up to the Structure",
"Up to the Stripe": "Up to the Stripe",
"Up to the Block": "Up to the Block",
"Currency Symbols": "Currency Symbols",
"Currency": "Currency",
"Content Border": "Content Border",
"Restore to Default Values": "Restore to Default Values",
"Photo": "Photostock",
"on Pexels.com and Pixabay.com": "on Pexels.com and Pixabay.com",
"place, holiday, mood...": "Place, holiday, mood...",
"Search for stock images by photos": "Search for stock images by photos",
"GIFs": "GIFs",
"on IconFinder.com": "on IconFinder.com",
"search in English only": "search in English only",
"Search for stock images by icons": "Search for stock images by icons",
"Search gifs": "Search gifs",
"It is not possible to upload more than 50 files simultaneously. If possible, please try to complete this over a few iterations.": "It is not possible to upload more than 50 files simultaneously. If possible, please try to complete this over a few iterations.",
"Line Height": "Line Height",
"Decrease Line Height by {step}": "Decrease Line Height by {step}",
"Increase Line Height by {step}": "Increase Line Height by {step}",
"Line Height on Desktop": "Line Height on Desktop",
"Decrease Line Height on Desktop by {step}": "Decrease Line Height on Desktop by {step}",
"Increase Line Height on Desktop by {step}": "Increase Line Height on Desktop by {step}",
"Line Height on Mobile": "Line Height on Mobile",
"Decrease Line Height on Mobile by {step}": "Decrease Line Height on Mobile by {step}",
"Increase Line Height on Mobile by {step}": "Increase Line Height on Mobile by {step}",
"The background image is displayed in its original size.": "The background image is displayed in its original size.",
"Sets a fixed size in pixels. The image will not scale beyond this value.": "Sets a fixed size in pixels. The image will not scale beyond this value.",
"Sets the size of the background image in percent of the container.": "Sets the size of the background image in percent of the container.",
"Resize the background image to cover the entire container, even if it has to stretch the image or cut a little bit off one of the edges.": "Resize the background image to cover the entire container, even if it has to stretch the image or cut a little bit off one of the edges.",
"The image fits inside the container without cropping; empty space may appear.": "The image fits inside the container without cropping; empty space may appear.",
"Containers Gap on Desktop": "Containers Gap on Desktop",
"Decrease Containers Gap on Desktop by {step}": "Decrease Containers Gap on Desktop by {step}",
"Increase Containers Gap on Desktop by {step}": "Increase Containers Gap on Desktop by {step}",
"Containers Gap on Mobile": "Containers Gap on Mobile",
"Containers Gap": "Containers Gap",
"Decrease Containers Gap on Mobile by {step}": "Decrease Containers Gap on Mobile by {step}",
"Increase Containers Gap on Mobile by {step}": "Increase Containers Gap on Mobile by {step}",
"Container {itemIndex}": "Container {itemIndex}",
"Container {itemIndex} Width": "Container {itemIndex} Width",
"Equalize Container Width": "Equalize Container Width",
"Decrease Container {itemIndex} Width by {step}": "Decrease Container {itemIndex} Width by {step}",
"Increase Container {itemIndex} Width by {step}": "Increase Container {itemIndex} Width by {step}",
"Align Left": "Align Left",
"Align Center": "Align Center",
"Align Right": "Align Right",